/* Base Styles */
:root {
    --primary-color: #5046e5;
    --primary-light: #6e66ff;
    --primary-dark: #3a32b0;
    --secondary-color: #9c6eff;
    --accent-color: #ff6b6b;
    --text-color: #333333;
    --text-light: #666666;
    --bg-color: #f4f6ff;
    --bg-light: #f8f9fc;
    --bg-gradient: linear-gradient(135deg, #5046e5 0%, #9c6eff 100%);
    --card-shadow: 0 10px 30px rgba(80, 70, 229, 0.1);
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background: linear-gradient(135deg, #f4f6ff 0%, #eeeaff 100%);
    overflow-x: hidden;
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-title .inline-logo {
    height: 3rem;
    vertical-align: middle;
    position: relative;
    top: -0.25rem;
    margin-left: 0.5rem;
    margin-right: 0.15rem;
}

.demo-logo {
    height: 2.8rem;
    vertical-align: middle;
    position: relative;
    top: -2px;
    margin: 0 6px 0 8px;
}

.action-section-logo {
    height: 2.8rem;
    vertical-align: middle;
    position: relative;
    top: -3px;
    margin: 0 6px 0 0;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--bg-gradient);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: -30px;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle-strong {
    text-align: center;
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-top: -30px;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1.1rem;
    text-decoration: none;
    z-index: 10;
    position: relative;
}

.cta-button i {
    margin-right: 8px;
}

.cta-button.primary {
    background: linear-gradient(135deg, #3951c6 0%, #4a63d2 100%);
    color: white;
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    transition: all 0.6s ease;
    z-index: -1;
}

.cta-button.primary:hover::before {
    left: 100%;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(80, 70, 229, 0.5);
}

.cta-button.secondary {
    background: white;
    color: #2b5cc5;
    border: 1px solid #4a78d3;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-button.secondary:hover {
    background: #2b5cc5;
    color: white;
    border-color: #2b5cc5;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(43, 92, 197, 0.3);
}

.cta-button.full-width {
    width: 100%;
    justify-content: center;
    padding: 10px 15px;
    font-size: 0.9rem;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    position: relative;
    z-index: 10;
}

.cta-center {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* Header & Navigation */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
}

.logo img {
    height: 35px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a.cta-button:hover {
    text-decoration: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding-top: 90px;
    padding-bottom: 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: white;
    z-index: 1;
    background: 
        linear-gradient(135deg, #2c3e8c 0%, #3951c6 60%, #4a63d2 100%);
}

.hero {
    padding-top: 90px;
    padding-bottom: 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: white;
    z-index: 1;
    background: linear-gradient(135deg, #2c3e8c 0%, #3951c6 60%, #4a63d2 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at center, rgba(255, 255, 255, 0.5) 1px, transparent 1.5px);
    background-size: 8px 8px;
    z-index: 0;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.15) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(100, 149, 237, 0.4) 0%, rgba(65, 105, 225, 0.2) 30%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: pulse 15s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-5%, 5%) scale(1.05);
        opacity: 0.4;
    }
    100% {
        transform: translate(-2%, -2%) scale(0.95);
        opacity: 0.3;
    }
}

.hero .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 5;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 550px;
    position: relative;
}

.logo-mark {
    position: relative;
    margin-bottom: 18px;
    width: 50px;
    height: 50px;
}

.gilbert-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4169E1 0%, #6495ED 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 800;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    transform: rotate(-8deg);
    transition: all 0.3s ease;
}

.gilbert-icon:hover {
    transform: rotate(0) scale(1.05);
}

.gilbert-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4169E1 0%, #6495ED 100%);
    border-radius: 16px;
    z-index: 1;
    opacity: 0.6;
    transform: rotate(-8deg);
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        transform: rotate(-8deg) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: rotate(-8deg) scale(1.15);
        opacity: 0.2;
    }
    100% {
        transform: rotate(-8deg) scale(1);
        opacity: 0.6;
    }
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    position: relative;
}

.hero h1 .highlight {
    color: white;
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #B0E2FF 10%, #E1FFFF 50%, #B0E2FF 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 8px rgba(176, 226, 255, 0.4);
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 0 5px;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: -2px;
    width: calc(100% + 4px);
    height: 10px;
    background: linear-gradient(135deg, #B0E2FF 0%, #E1FFFF 100%);
    z-index: -1;
    border-radius: 6px;
    opacity: 0.5;
    transform: skewX(-12deg);
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--text-color);
}

.benefit i {
    color: var(--primary-color);
    font-size: 1rem;
}

.benefit-badge {
    background: rgba(255, 255, 255, 0.95);
    color: #303684;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(8px);
    border: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.benefit-badge:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.benefit-badge i {
    color: white;
    font-size: 1rem;
    background: #3951c6;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
    text-shadow: none;
}

.hero .subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.5;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    max-width: 90%;
}

.hero-image {
    flex: 1;
    max-width: 600px; /* Agrandissement supplu00e9mentaire de l'image */
    position: relative;
    z-index: 2;
    perspective: 1000px;
    padding: 0;
}

.dashboard-preview {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    will-change: transform;
    border: none;
    position: relative;
    transform-origin: center center;
    animation: dashboard-float 6s ease-in-out infinite;
    transform: perspective(1000px) rotateY(-10deg);
}

/* Suppression de l'effet qui causait la ligne bleue */
.dashboard-preview::after {
    display: none;
}

/* Éléments décoratifs autour de l'image */
.dashboard-decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 3;
}

.decorative-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #4169E1, #6495ED);
    border-radius: 50%;
    opacity: 0.8;
    box-shadow: 0 0 15px rgba(65, 105, 225, 0.5);
}

.dot-1 {
    top: 10%;
    left: -20px;
    animation: float-dot 3s infinite ease-in-out;
}

.dot-2 {
    bottom: 15%;
    right: -15px;
    width: 8px;
    height: 8px;
    animation: float-dot 2.5s infinite ease-in-out 0.5s;
}

.dot-3 {
    top: -15px;
    right: 20%;
    width: 10px;
    height: 10px;
    animation: float-dot 4s infinite ease-in-out 1s;
}

@keyframes float-dot {
    0% { transform: translateY(0); }
    50% { transform: translateY(10px); }
    100% { transform: translateY(0); }
}

@keyframes dashboard-float {
    0% {
        transform: perspective(1000px) rotateY(-10deg) translateY(0);
    }
    50% {
        transform: perspective(1000px) rotateY(-8deg) translateY(-10px);
    }
    100% {
        transform: perspective(1000px) rotateY(-10deg) translateY(0);
    }
}

/* Bloc supprimu00e9 */

/* Animation shine supprimu00e9e */

/* Suppression du ::before qui causait la ligne bleue */
.dashboard-preview::before {
    display: none;
}

/* Animation supprimée */

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(-5deg) translateY(-10px);
    box-shadow: 0 20px 40px rgba(80, 70, 229, 0.2);
}

.hero-wave {
    position: absolute;
    bottom: -2px; /* Ajustement pour u00e9liminer la ligne bleue */
    left: 0;
    width: 100%;
    z-index: 4;
    line-height: 0; /* Supprime l'espace qui peut causer une ligne */
}

.hero-wave svg path {
    fill: #ffffff;
}

/* Trusted By Section */
.trusted-by {
    padding: 40px 0;
    background-color: #f8f9fc;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
}

.trusted-by .container {
    width: 95%;
    max-width: 1800px;
}

.trusted-title {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.trusted-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 40px;
    margin: 0 auto;
    padding: 15px 0;
    width: 100%;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-item:hover {
    filter: grayscale(0);
    opacity: 1;
}

.logo-item img {
    max-height: 32px;
    max-width: 120px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-item-il img {
    max-height: 65px;
    max-width: 180px;
}

.floating-assistant {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    animation: float 3s ease-in-out infinite;
}

.floating-logo {
    width: 65px;
    height: 65px;
    filter: drop-shadow(0 5px 15px rgba(80, 70, 229, 0.3));
    transition: all 0.3s ease;
}

.floating-logo:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 25px rgba(80, 70, 229, 0.5));
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Features Section */
.featuresmain {
    background: linear-gradient(135deg, #f4f6ff 0%, #eeeaff 100%);
    overflow: hidden;
    padding: 60px 0;
    margin: 0;
}

/* Logo en fond supprimu00e9 */
.brand-watermark {
    display: none;
}

.features-intro {
    position: relative;
    text-align: center;
    margin-bottom: 60px;
    z-index: 2;
}

.brand-accent {
    font-size: 70px;
    font-weight: 900;
    color: #3951c6;
    background: linear-gradient(135deg, #2c3e8c 0%, #3951c6 60%, #4a63d2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 10px;
    filter: drop-shadow(0 5px 10px rgba(57, 81, 198, 0.3));
}

.brand-name {
    position: relative;
    color: #3951c6;
    font-weight: 900;
}

/* Barre sous GILBERT supprimu00e9e */
.brand-name::after {
    display: none;
}

.brand-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #3951c6, transparent);
    margin: 30px auto;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
    perspective: 1000px;
}

.action-section {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding: 60px 0;
    background-color: #f8f9ff;
    margin-top: 60px;
}

.action-card {
    position: relative;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

/* Styles pour les menus déroulants */
.expand-details {
    background: #3951c6;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 16px;
    margin-top: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border-radius: 25px;
    transition: background 0.3s ease;
}

.expand-details:hover {
    background: #2c3e8c;
}

.expand-details i {
    margin-left: 8px;
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.expand-details.active i {
    transform: rotate(180deg);
}

.details-panel {
    background: #f8f9ff;
    border-radius: 10px;
    padding: 0;
    margin-top: 10px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-5px);
    transition: max-height 0.6s cubic-bezier(0.33, 1, 0.68, 1),
                opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1),
                transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                padding 0.2s ease-in-out;
    border: 1px solid transparent;
    will-change: max-height, opacity, transform;
}

.details-panel.active {
    padding: 15px;
    max-height: 450px;
    opacity: 1;
    transform: translateY(0);
    border: 1px solid rgba(57, 81, 198, 0.1);
}

/* Animation subtile des items de la liste */
.details-panel .key-points li {
    opacity: 0;
    transform: translateX(-5px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition-delay: calc(0.05s * var(--item-index, 0));
}

.details-panel.active .key-points li {
    opacity: 1;
    transform: translateX(0);
}

.details-panel h4 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #2c3e8c;
    font-weight: 700;
    border-bottom: 2px solid rgba(57, 81, 198, 0.2);
    padding-bottom: 8px;
    position: relative;
}

.key-points {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.key-points li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.key-emoji {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 14px;
    font-size: 1.2rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.key-points li {
    position: relative;
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    background: rgba(249, 250, 255, 0.8);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.key-points li:hover {
    transform: translateX(3px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Couleurs pour les key points du premier panel */
.action-card.first .key-points li:nth-child(1) .key-emoji {
    background: linear-gradient(135deg, #E9F7FE 0%, #CDE8FB 100%);
    color: #1A73E8;
}

.action-card.first .key-points li:nth-child(2) .key-emoji {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    color: #F57C00;
}

.action-card.first .key-points li:nth-child(3) .key-emoji {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    color: #388E3C;
}

.action-card.first .key-points li:nth-child(4) .key-emoji {
    background: linear-gradient(135deg, #F3E5F5 0%, #E1BEE7 100%);
    color: #8E24AA;
}

/* Couleurs pour les key points du deuxième panel */
.action-card.second .key-points li:nth-child(1) .key-emoji {
    background: linear-gradient(135deg, #E8EAF6 0%, #C5CAE9 100%);
    color: #3F51B5;
}

.action-card.second .key-points li:nth-child(2) .key-emoji {
    background: linear-gradient(135deg, #FBE9E7 0%, #FFCCBC 100%);
    color: #FF5722;
}

.action-card.second .key-points li:nth-child(3) .key-emoji {
    background: linear-gradient(135deg, #E1F5FE 0%, #B3E5FC 100%);
    color: #039BE5;
}

.action-card.second .key-points li:nth-child(4) .key-emoji {
    background: linear-gradient(135deg, #FCE4EC 0%, #F8BBD0 100%);
    color: #D81B60;
}

/* Couleurs pour les key points du troisième panel */
.action-card.third .key-points li:nth-child(1) .key-emoji {
    background: linear-gradient(135deg, #F1F8E9 0%, #DCEDC8 100%);
    color: #689F38;
}

.action-card.third .key-points li:nth-child(2) .key-emoji {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    color: #1976D2;
}

.action-card.third .key-points li:nth-child(3) .key-emoji {
    background: linear-gradient(135deg, #FFFDE7 0%, #FFF9C4 100%);
    color: #FBC02D;
}

.action-card.third .key-points li:nth-child(4) .key-emoji {
    background: linear-gradient(135deg, #EFEBE9 0%, #D7CCC8 100%);
    color: #795548;
}

.details-summary {
    color: #3951c6;
    margin: 10px 0 0 0;
    padding: 10px;
    font-size: 0.85rem;
    line-height: 1.4;
    background: rgba(57, 81, 198, 0.04);
    border-radius: 8px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.summary-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #3951c6;
    border-radius: 50%;
    margin-right: 8px;
}

.action-card.second {
    grid-template-columns: 0.8fr 1.2fr;
}

.action-image {
    width: 100%;
}

.action-image {
    position: relative;
    cursor: pointer;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    transform: perspective(800px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.action-image:hover {
    transform: perspective(800px) rotateX(0) rotateY(0) translateZ(10px);
    box-shadow: 0 25px 50px rgba(57, 81, 198, 0.25);
}

.action-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transform-style: preserve-3d;
    transition: box-shadow 0.5s ease;
}

.action-image:hover img {
    box-shadow: 0 25px 40px rgba(57, 81, 198, 0.3);
}

.action-image::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 12px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0) 60%,
        rgba(255, 255, 255, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* Animation statique au survol remplacu00e9e par l'animation interactive */
.action-image {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateZ(0);
}

.action-card.second .action-image {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateZ(0);
}

.action-card:hover .action-image::after {
    opacity: 1;
}

.action-card:hover .action-image img {
    box-shadow: 0 20px 40px rgba(80, 70, 229, 0.2);
}

.screenshots-wrapper {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding: 60px 0;
    max-width: 100%;
    width: 100%;
    background-color: #f8f9ff;
    margin-top: 60px;
}

.screenshot-card {
    position: relative;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.screenshot-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.screenshot-card:nth-child(even) .screenshot-inner {
    grid-template-columns: 0.8fr 1.2fr;
}

.screenshot-card:nth-child(2) .screenshot-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.screenshot-card:nth-child(2) .screenshot-content {
    flex: 0 0 40%;
}

.screenshot-card:nth-child(2) .screenshot-image {
    flex: 0 0 60%;
}

.screenshot-image {
    width: 100%;
}

.screenshot-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.screenshot-card:hover .screenshot-image img {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(80, 70, 229, 0.2);
}

.screenshot {
    position: relative;
    background: #f8f9ff;
    border-radius: 20px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(80, 70, 229, 0.08);
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    gap: 40px;
}

.screenshot:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(80, 70, 229, 0.15);
}

.feature-screenshot-container {
    position: relative;
    width: 100%;
}

.feature-screenshot {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    aspect-ratio: 16/10;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.screenshot:hover .feature-screenshot {
    box-shadow: 0 15px 30px rgba(80, 70, 229, 0.2);
}

.screenshot:nth-child(even) {
    direction: rtl;
}

.screenshot:nth-child(even) .screenshot-content,
.screenshot:nth-child(even) .feature-screenshot-container {
    direction: ltr;
}

.screenshot:nth-child(even) .screenshot-badge {
    left: auto;
    right: 15px;
}

.screenshot-content {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.screenshot-card:nth-child(even) .screenshot-inner {
    direction: rtl;
}

.screenshot-card:nth-child(even) .screenshot-content,
.screenshot-card:nth-child(even) .screenshot-image {
    direction: ltr;
}

.screenshot-card:nth-child(even) .screenshot-badge {
    left: auto;
    right: 0;
    transform: translate(10px, -10px);
}

.screenshot-card:nth-child(2) .screenshot-badge {
    left: auto;
    right: 0;
    transform: translate(10px, -10px);
}

.feature-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3rem;
    box-shadow: 0 5px 15px rgba(80, 70, 229, 0.3);
    z-index: 2;
    transform: translate(-10px, -10px);
}

.action-card.second .feature-badge {
    left: auto;
    right: 0;
    transform: translate(10px, -10px);
}

.feature-tag {
    display: inline-block;
    background: rgba(80, 70, 229, 0.1);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
    width: fit-content;
}

.screenshot:hover .screenshot-tag {
    background: rgba(80, 70, 229, 0.15);
}

.screenshots-slider {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin: 80px 0 60px;
    padding: 20px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Styles for the vanilla-tilt glare effect */
.js-tilt-glare {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.js-tilt-glare-inner {
    border-radius: var(--border-radius);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 100%);
    transform: rotate(180deg);
}

.feature-card {
    background: var(--bg-color);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(80, 70, 229, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(240, 240, 250, 0.8);
    backdrop-filter: blur(5px);
    transform-style: preserve-3d;
    will-change: transform;
    position: relative;
}

/* G dans les cartes supprimu00e9 */
.feature-card::before {
    display: none;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0) 60%,
        rgba(255, 255, 255, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(80, 70, 229, 0.15);
}

.feature-card:hover .feature-icon {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(80, 70, 229, 0.25);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #f0f3ff 0%, #e6ebff 100%);
    font-size: 2rem;
    color: var(--primary-color);
    position: relative;
    transition: all 0.3s ease;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(80, 70, 229, 0.1);
}

.emoji-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.feature-subtitle {
    font-size: 1rem;
    line-height: 1.5;
    color: #4a63d2;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px dashed rgba(74, 99, 210, 0.2);
    border-bottom: 1px dashed rgba(74, 99, 210, 0.2);
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3951c6;
    line-height: 1;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #2c3e8c 0%, #3951c6 60%, #4a63d2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
}

.feature-benefits {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed rgba(74, 99, 210, 0.2);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-color);
}

.benefit-item i {
    color: #3951c6;
    font-size: 0.8rem;
}

.feature-roi {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed rgba(74, 99, 210, 0.2);
}

.roi-scenario {
    background: rgba(57, 81, 198, 0.05);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
}

.roi-label {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 5px;
}

.roi-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #3951c6;
}

.feature-testimonial {
    margin-top: 20px;
    padding: 15px;
    background: rgba(57, 81, 198, 0.05);
    border-radius: 8px;
    position: relative;
}

.feature-testimonial:before {
    content: '\201C';
    position: absolute;
    top: 0;
    left: 10px;
    font-size: 40px;
    color: rgba(57, 81, 198, 0.2);
    line-height: 1;
}

.testimonial-content {
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 8px;
    line-height: 1.5;
}

.testimonial-author {
    font-size: 0.8rem;
    font-weight: 600;
    color: #3951c6;
    text-align: right;
}

.feature-case-study {
    margin-top: 20px;
    padding: 15px;
    background: rgba(57, 81, 198, 0.05);
    border-radius: 8px;
    border-left: 3px solid #3951c6;
}

.case-content {
    font-size: 0.9rem;
    line-height: 1.5;
}

.feature-card .feature-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-top: 0;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    transition: width 0.3s ease;
    border-radius: 3px;
    opacity: 0;
}

.nav-links a:hover::after {
    width: 30%;
    opacity: 0.7;
}

.nav-links a.cta-button::after {
    display: none;
}

.nav-links a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-links a.active::after {
    width: 100%;
    opacity: 1;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    text-align: left;
}

.feature-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-color);
}

.feature-list li:before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #4a63d2;
    font-weight: bold;
}

.feature-card:hover .feature-icon {
    transform: translateZ(50px);
}

.feature-icon.french {
    background: linear-gradient(135deg, #5046e5 0%, #3a32b0 100%);
}

.feature-icon.custom {
    background: linear-gradient(135deg, #9c6eff 0%, #7046e5 100%);
}

.feature-icon.brain {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff466b 100%);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    color: #2c3e8c;
    padding-bottom: 10px;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #3951c6, #5a75e6);
    border-radius: 3px;
}

.feature-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.5;
}

.feature-description strong {
    color: var(--text-color);
    font-weight: 600;
}

.feature-callout {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(80, 70, 229, 0.06);
    color: var(--primary-color);
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-top: 15px;
    transition: all 0.3s ease;
    transform: translateZ(20px);
    backdrop-filter: blur(2px);
}

.feature-card:hover .feature-callout {
    transform: translateZ(30px);
    background: rgba(80, 70, 229, 0.08);
}

/* Screenshots Section */
.screenshots {
    background-color: var(--bg-color);
}

.screenshots-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0 40px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.screenshots-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.screenshot {
    flex: 0 0 auto;
    width: calc(33.333% - 20px);
    min-width: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    scroll-snap-align: start;
    background: var(--bg-light);
}

.screenshot:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(80, 70, 229, 0.15);
}

.screenshot img {
    width: 100%;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.screenshot-info {
    flex: 1;
    position: relative;
    z-index: 2;
    padding: 20px;
    max-width: 450px;
}

.feature-content h3 {
    margin-bottom: 15px;
    color: var(--heading-color);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.feature-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 1rem;
    opacity: 0.8;
}

/* Demo Section */
.demo-wrapper {
    position: relative;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 1px solid rgba(57, 81, 198, 0.08);
    background: linear-gradient(135deg, #f4f6ff 0%, #eeeaff 100%);
}

.demo {
    background: linear-gradient(135deg, #f4f6ff 0%, #eeeaff 100%);
    padding: 100px 0 0;
    position: relative;
    z-index: 1;
}

/* Transition droite entre sections */

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    aspect-ratio: 16/9;
    background-color: #f5f7ff;
    z-index: 10;
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    object-fit: cover;
}

/* Styles pour la vidu00e9o avec pru00e9visualisation */
.video-frame {
    max-width: 800px;
    margin: 40px auto 120px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    aspect-ratio: 16/9;
    position: relative;
}

.video-preview {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3951c6 0%, #4a63d2 100%);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 2;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.play-icon:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.video-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.youtube-video {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 15px;
    background-color: #000;
}

.full-video {
    object-fit: cover;
    background-color: #000;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 15px;
    outline: none;
}

video:focus {
    outline: none;
}

video::-webkit-media-controls-panel {
    background: rgba(57, 81, 198, 0.3);
    backdrop-filter: blur(5px);
}

.video-controls-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-player-wrapper:hover .video-controls-overlay {
    opacity: 1;
}

.video-title {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 5px 15px;
    display: inline-block;
    background: rgba(57, 81, 198, 0.7);
    border-radius: 30px;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.demo-box {
    max-width: 700px;
    margin: 40px auto 0;
    background: #f0f5ff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(57, 81, 198, 0.1);
    box-shadow: 0 10px 30px rgba(57, 81, 198, 0.08);
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.demo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(57, 81, 198, 0.15);
}

.demo-content {
    padding: 20px;
}

.play-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3951c6 0%, #4a63d2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(57, 81, 198, 0.2);
    transition: transform 0.3s ease;
}

.demo-box:hover .play-circle {
    transform: scale(1.1);
}

.play-circle i {
    color: white;
    font-size: 24px;
    margin-left: 5px; /* Légèrement décalé pour l'alignement visuel */
}

.demo-content h3 {
    color: #2c3e8c;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.demo-content p {
    color: #555;
    max-width: 450px;
    margin: 0 auto;
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: #f5f7ff;
    border-radius: 15px;
    overflow: hidden;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    max-width: 100%;
    z-index: 1;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.video-container * {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

/* Suppression de tous les effets de focus */
.video-container *:focus,
.video-container *:active,
.video-container *:hover {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.video-placeholder:hover .video-thumbnail {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3951c6 0%, #4a63d2 100%);
    border-radius: 50%;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(57, 81, 198, 0.3);
    transition: all 0.3s ease;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.play-button i {
    color: white;
    font-size: 30px;
}

.video-placeholder:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 35px rgba(80, 70, 229, 0.5);
}

.video-placeholder:hover .video-thumbnail {
    transform: scale(1.05);
}

.play-button:hover {
    background: linear-gradient(135deg, #4a63d2 0%, #3951c6 100%);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    color: white;
    text-align: center;
    z-index: 2;
    font-weight: 600;
    font-size: 1.1rem;
    transition: opacity 0.3s ease;
}

.video-overlay span {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.video-placeholder:hover .video-overlay {
    background: linear-gradient(135deg, #303684 0%, #5046e5 40%, #6e66ff 80%, #9c6eff 100%);
    color: white;
    padding: 120px 0 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url('assets/images/grid-pattern.png');
    background-size: cover;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(156, 110, 255, 0.4) 0%, rgba(80, 70, 229, 0.2) 30%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: pulse 15s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-5%, 5%) scale(1.05);
        opacity: 0.4;
    }
    100% {
        transform: translate(-2%, -2%) scale(0.95);
        opacity: 0.3;
    }
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #f4f6ff 0%, #eeeaff 100%);
    padding: 0 0 100px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-top: none;
    margin-top: -5px;
}

.testimonials::before {
    display: none;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(245, 247, 250, 0.8), rgba(245, 247, 250, 0));
    pointer-events: none;
    z-index: 1;
}

.testimonials .section-title {
    margin-top: 0;
    padding-top: 35px;
}

/* Slider des témoignages */
.testimonials-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0 100px;
    z-index: 2;
}

.testimonials-slider-inner {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.testimonials-group {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 20px;
}

/* Style pour le dernier groupe qui peut avoir moins de 3 témoignages */
.testimonials-group:last-child {
    display: flex;
    justify-content: center;
}

.testimonials-group:last-child .testimonial-card {
    max-width: 370px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(80, 70, 229, 0.08);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(80, 70, 229, 0.15);
}

/* Navigation du slider */


.testimonials-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    background: rgba(255, 255, 255, 0.5);
    padding: 12px 20px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(80, 70, 229, 0.05);
    width: auto;
}

.testimonial-nav-btn {
    background: var(--bg-light);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(80, 70, 229, 0.1);
    transition: var(--transition);
    position: relative;
    z-index: 2;
    margin: 0 5px;
    border: 1px solid rgba(80, 70, 229, 0.08);
}

.testimonial-nav-btn:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 8px 20px rgba(80, 70, 229, 0.2);
}

.testimonial-dots {
    display: flex;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--bg-light);
    border: 1px solid var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.testimonial-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.testimonial-content {
    margin-bottom: 25px;
    position: relative;
}

.testimonial-content i {
    font-size: 1.5rem;
    color: var(--primary-light);
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: -5px;
}

.testimonial-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(80, 70, 229, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover .avatar {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(80, 70, 229, 0.3);
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(135deg, #f0f4ff 0%, #eeeaff 60%, #f5eeff 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(80, 70, 229, 0.1) 0%, rgba(80, 70, 229, 0) 70%);
    z-index: 1;
}

.pricing::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(80, 70, 229, 0.1) 0%, rgba(80, 70, 229, 0) 70%);
    z-index: 1;
}

.pricing .container {
    position: relative;
    z-index: 2;
}

.pricing .section-title {
    position: relative;
    margin-bottom: 20px;
    color: #2c3e8c;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-light);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 30px;
}

.pricing .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #3951c6 0%, #2c3e8c 100%);
    border-radius: 2px;
    opacity: 0.8;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    max-width: 850px;
    margin: 0 auto;
    perspective: 1000px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 10px 30px rgba(80, 70, 229, 0.08);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(240, 240, 250, 0.9);
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 255, 0.98) 100%);
    will-change: transform, box-shadow;
    transform-style: preserve-3d;
}

.pricing-card-header {
    margin-bottom: 15px;
}

.pricing-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #3951c6 0%, #5046e5 50%, #6e66ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.pricing-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 8px 20px rgba(80, 70, 229, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(5px);
}

.pricing-icon.startup {
    background: linear-gradient(135deg, #7C4DFF 0%, #9C6EFF 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.pricing-icon.enterprise {
    background: linear-gradient(135deg, #FF5252 0%, #FF8A80 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.pricing-icon .emoji-icon {
    font-size: 2rem;
    color: white;
    line-height: 1;
    transition: transform 0.3s ease;
}

.pricing-card:hover .pricing-icon {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(80, 70, 229, 0.25);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(80, 70, 229, 0.15);
}

.popular-badge, .beta-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff8d6a 100%);
    color: white;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 600;
    border-radius: 15px;
    box-shadow: 0 2px 5px rgba(255, 109, 63, 0.2);
}

.beta-badge {
    background: linear-gradient(135deg, #3951c6 0%, #6e66ff 100%);
    left: 15px;
    top: 15px;
    right: auto;
    box-shadow: 0 4px 10px rgba(57, 81, 198, 0.2);
    animation: pulse-badge 3s infinite;
    padding: 5px 10px;
    font-size: 0.7rem;
    border-radius: 20px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

@keyframes pulse-badge {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(80, 70, 229, 0.15);
    transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(244, 246, 255, 0.95) 0%, rgba(238, 234, 255, 0.95) 100%);
    border: none;
    transform: scale(1.02);
    z-index: 2;
    box-shadow: 0 15px 30px rgba(57, 81, 198, 0.15);
    position: relative;
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #5046e5 0%, #6e66ff 50%, #9c6eff 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: border-glow 4s infinite alternate;
    opacity: 0.85;
}

@keyframes border-glow {
    0% {
        opacity: 0.8;
    }
    100% {
        opacity: 1;
    }
}

.pricing-card.featured::after {
    display: none;
}

.pricing-card.featured:hover {
    transform: translateY(-5px);
    transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.price {
    margin: 10px 0;
    position: relative;
}

.price .amount {
    font-size: 2.1rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3951c6 0%, #5046e5 50%, #6e66ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.price .period {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 2px;
    display: block;
}

.price .discount {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    padding: 4px 10px;
    border-radius: 20px;
    margin-top: 8px;
    box-shadow: 0 3px 8px rgba(255, 107, 107, 0.2);
    animation: pulse-discount 3s infinite;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

@keyframes pulse-discount {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pricing-features {
    margin: 15px 0;
    padding: 0;
    list-style-type: none;
}

.pricing-features li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 32px;
    font-size: 0.85rem;
    text-align: left;
    transition: all 0.2s ease-out;
    color: var(--text-color);
    line-height: 1.5;
    font-weight: 400;
}

.pricing-features li:hover {
    transform: translateX(3px);
    transition: transform 0.2s ease-out;
}

/* Couleurs pour les emojis des fonctionnalités - Carte Ambassadeur */
.pricing-card:nth-child(1) .pricing-features li:nth-child(1) .feature-emoji {
    background: linear-gradient(135deg, #E9F7FE 0%, #CDE8FB 100%);
    color: #1A73E8;
}

.pricing-card:nth-child(1) .pricing-features li:nth-child(2) .feature-emoji {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    color: #F57C00;
}

.pricing-card:nth-child(1) .pricing-features li:nth-child(3) .feature-emoji {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    color: #388E3C;
}

.pricing-card:nth-child(1) .pricing-features li:nth-child(4) .feature-emoji {
    background: linear-gradient(135deg, #F3E5F5 0%, #E1BEE7 100%);
    color: #8E24AA;
}

.pricing-card:nth-child(1) .pricing-features li:nth-child(5) .feature-emoji {
    background: linear-gradient(135deg, #E8EAF6 0%, #C5CAE9 100%);
    color: #3F51B5;
}

.pricing-card:nth-child(1) .pricing-features li:nth-child(6) .feature-emoji {
    background: linear-gradient(135deg, #FBE9E7 0%, #FFCCBC 100%);
    color: #FF5722;
}

.pricing-card:nth-child(1) .pricing-features li:nth-child(7) .feature-emoji {
    background: linear-gradient(135deg, #E1F5FE 0%, #B3E5FC 100%);
    color: #039BE5;
}

.pricing-card:nth-child(1) .pricing-features li:nth-child(8) .feature-emoji {
    background: linear-gradient(135deg, #FCE4EC 0%, #F8BBD0 100%);
    color: #D81B60;
}

/* Couleurs pour les emojis des fonctionnalités - Carte Enterprise */
.pricing-card:nth-child(2) .pricing-features li:nth-child(1) .feature-emoji {
    background: linear-gradient(135deg, #F1F8E9 0%, #DCEDC8 100%);
    color: #689F38;
}

.pricing-card:nth-child(2) .pricing-features li:nth-child(2) .feature-emoji {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    color: #1976D2;
}

.pricing-card:nth-child(2) .pricing-features li:nth-child(3) .feature-emoji {
    background: linear-gradient(135deg, #FFFDE7 0%, #FFF9C4 100%);
    color: #FBC02D;
}

.pricing-card:nth-child(2) .pricing-features li:nth-child(4) .feature-emoji {
    background: linear-gradient(135deg, #EFEBE9 0%, #D7CCC8 100%);
    color: #795548;
}

.pricing-card:nth-child(2) .pricing-features li:nth-child(5) .feature-emoji {
    background: linear-gradient(135deg, #E0F7FA 0%, #B2EBF2 100%);
    color: #00ACC1;
}

.pricing-card:nth-child(2) .pricing-features li:nth-child(6) .feature-emoji {
    background: linear-gradient(135deg, #F3E5F5 0%, #E1BEE7 100%);
    color: #8E24AA;
}

.pricing-card:nth-child(2) .pricing-features li:nth-child(7) .feature-emoji {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    color: #388E3C;
}

.pricing-features .feature-emoji {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    line-height: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.pricing-card .cta-button {
    margin-top: 22px;
    padding: 12px 22px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.25s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    will-change: transform, box-shadow;
}

.pricing-card .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card .cta-button.primary.full-width,
.pricing-card .cta-button.primary.full-width {
    width: 100%;
    margin-top: 20px;
}

.pricing-card .cta-button.primary.full-width {
    box-shadow: 0 10px 20px rgba(80, 70, 229, 0.2);
    transform: translateY(0);
    background: linear-gradient(135deg, #f0f4ff 0%, #eeeaff 100%);
    color: #6366f1;
    border: 1px solid rgba(80, 70, 229, 0.3);
    font-weight: 600;
}

.pricing-card .cta-button.primary.full-width:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(80, 70, 229, 0.3);
    border-color: rgba(80, 70, 229, 0.5);
}

.pricing-card.featured .cta-button.primary.full-width {
    background: linear-gradient(135deg, #5046e5 0%, #6e66ff 50%, #9c6eff 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(80, 70, 229, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured .cta-button.primary.full-width::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card.featured .cta-button.primary.full-width:hover::before {
    opacity: 1;
}

.pricing-card.featured .cta-button.primary.full-width:hover {
    box-shadow: 0 15px 40px rgba(80, 70, 229, 0.4);
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #2c3e8c 0%, #3951c6 60%, #4a63d2 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-logo {
    height: 2.6rem;
    vertical-align: middle;
    filter: brightness(0) invert(1);
    position: relative;
    top: 12px;
}

.final-cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta .cta-button.primary {
    background: white;
    color: var(--primary-color);
}

.final-cta .cta-button.primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.final-cta .cta-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.final-cta .cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Footer */
footer {
    background-color: #2a2a4a;
    color: rgba(255, 255, 255, 0.8);
    padding: 70px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 0.95rem;
    line-height: 1.7;
}

footer h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: white;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-light);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .hero {
        padding-top: 90px;
        min-height: auto;
    }
    
    .hero .row {
        flex-direction: column;
        text-align: center;
        padding-bottom: 20px;
    }

    .benefit-badge {
        margin: 0 auto;
    }

    .cta-buttons {
        justify-content: center;
    }
    
    .hero-benefits {
        justify-content: center;
    }
    
    .subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .dashboard-preview {
        max-width: 90%;
        margin: 0 auto;
        transform: perspective(800px) rotateY(-5deg);
    }
}

@media (max-width: 900px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-image {
        justify-content: center;
        margin-top: 40px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .pricing-card {
        padding: 30px;
        width: 100%;
        margin-bottom: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .testimonials-group {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        max-width: 100%;
    }
    
    .pricing-grid {
        display: flex;
        flex-direction: column;
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 450px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.4rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card, .testimonial-card {
        padding: 25px 20px;
    }
    
    .floating-logo {
        width: 60px;
        height: 60px;
    }
    
    .hero-benefits {
        flex-direction: column;
        gap: 10px;
    }
    
    .badge {
        font-size: 0.8rem;
    }
    
    .section-subtitle-strong {
        font-size: 1.2rem;
    }
}
