/* ============ HERO ============ */
.hero {
    padding: calc(var(--nav-height) + 60px) 0 80px;
    position: relative;
    overflow: hidden;
    background: var(--white);
}

/* Animated rotating gold gradient */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150vmax;
    height: 150vmax;
    transform: translate(-50%, -50%);
    background: conic-gradient(
        from 0deg,
        rgba(212,168,67,0.32) 0deg,
        rgba(245,230,196,0.12) 60deg,
        transparent 120deg,
        transparent 200deg,
        rgba(212,168,67,0.22) 260deg,
        rgba(245,230,196,0.08) 310deg,
        rgba(212,168,67,0.32) 360deg
    );
    pointer-events: none;
    animation: heroSpin 18s linear infinite;
    filter: blur(80px);
}

@keyframes heroSpin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ── Centered layout ── */
.hero .container {
    position: relative;
    z-index: 1;
}

.hero-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* ── Badge ── */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px 7px 10px;
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-text);
    text-decoration: none;
    margin-bottom: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.hero-badge:hover {
    border-color: var(--gold);
    box-shadow: 0 2px 12px rgba(212,168,67,0.12);
}

.hero-badge span {
    font-weight: 700;
    color: var(--gold-hover);
}

.hero-badge .pulse {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-badge svg { color: var(--gray-text); transition: transform 0.3s ease; }
.hero-badge:hover svg { transform: translateX(3px); color: var(--gold); }

/* ── Title with clip-path reveal ── */
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 5.5vw, 68px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.035em;
    margin-bottom: 24px;
}

.hero-line {
    display: block;
    overflow: hidden;
    padding-bottom: 4px;
}

.hero-word {
    display: inline-block;
    animation: wordReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    opacity: 0;
    transform: translateY(100%);
}

.hero-line:nth-child(1) .hero-word { animation-delay: 0.15s; }
.hero-line:nth-child(2) .hero-word { animation-delay: 0.3s; }
.hero-line:nth-child(3) .hero-word { animation-delay: 0.45s; }

@keyframes wordReveal {
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 .highlight {
    color: var(--gold);
    position: relative;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: -4px;
    right: -4px;
    height: 8px;
    background: var(--gold-light);
    border-radius: 4px;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineReveal 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards;
}

@keyframes underlineReveal {
    to { transform: scaleX(1); }
}

/* ── Description ── */
.hero-description {
    font-size: 19px;
    color: var(--gray-text);
    line-height: 1.7;
    margin: 0 auto 36px;
    max-width: 540px;
    animation: fadeInUp 0.6s ease 0.55s forwards;
    opacity: 0;
}

/* ── CTAs ── */
.hero-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 28px;
    animation: fadeInUp 0.6s ease 0.65s forwards;
    opacity: 0;
}

/* ── Trust ── */
.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-text);
    animation: fadeInUp 0.5s ease 0.75s forwards;
    opacity: 0;
    margin-bottom: 64px;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.hero-trust svg { width: 14px; height: 14px; color: var(--green); }

.hero-trust-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gray-border);
    flex-shrink: 0;
}

/* ============ HERO MOCKUP ============ */
.hero-mockup-wrapper {
    position: relative;
    max-width: 1050px;
    margin: 0 auto;
    animation: mockupReveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
    opacity: 0;
    transform: translateY(40px);
}

@keyframes mockupReveal {
    to { opacity: 1; transform: translateY(0) perspective(2000px) rotateX(2deg); }
}

.hero-mockup-glow {
    position: absolute;
    bottom: -40px;
    left: 10%;
    right: 10%;
    height: 80px;
    background: radial-gradient(ellipse at 50% 100%, rgba(212,168,67,0.08) 0%, transparent 70%);
    filter: blur(20px);
    pointer-events: none;
    z-index: 0;
}

.hero-mockup-frame {
    position: relative;
    z-index: 1;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-border);
    overflow: hidden;
    box-shadow:
        0 1px 2px rgba(0,0,0,0.01),
        0 4px 8px rgba(0,0,0,0.02),
        0 12px 24px rgba(0,0,0,0.03);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-mockup-frame:hover {
    transform: translateY(-4px);
    box-shadow:
        0 1px 2px rgba(0,0,0,0.02),
        0 4px 8px rgba(0,0,0,0.03),
        0 12px 24px rgba(0,0,0,0.04);
}

.hero-mockup-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--gray-light);
    border-bottom: 1px solid var(--gray-border);
}

.hero-mockup-dots {
    display: flex;
    gap: 6px;
}

.hero-mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.hero-mockup-dots span:nth-child(1) { background: #FCA5A5; }
.hero-mockup-dots span:nth-child(2) { background: #FCD34D; }
.hero-mockup-dots span:nth-child(3) { background: #6EE7B7; }

.hero-mockup-url {
    flex: 1;
    margin-left: 4px;
    padding: 5px 14px;
    background: var(--white);
    border-radius: 8px;
    font-size: 12px;
    color: var(--gray-text);
    font-family: 'SF Mono', 'Fira Code', monospace;
}

.hero-mockup {
    width: 100%;
    display: block;
}

/* ── Floating cards ── */
.hero-float-card {
    position: absolute;
    z-index: 2;
    background: var(--white);
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06), 0 12px 32px rgba(0,0,0,0.08);
    border: 1px solid var(--gray-border);
    font-size: 13px;
    opacity: 0;
    animation: floatCardIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-float-card strong { display: block; font-weight: 700; color: var(--black); line-height: 1.3; }
.hero-float-card small { display: block; font-size: 11px; color: var(--gray-text); font-weight: 400; }

.hero-float-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-float-icon.gold { background: var(--gold-light); color: var(--gold); }
.hero-float-icon.green { background: #D1FAE5; color: var(--green); }
.hero-float-icon.blue { background: #DBEAFE; color: #2563EB; }
.hero-float-icon svg { width: 18px; height: 18px; }

.hero-float-1 {
    top: 15%;
    left: -40px;
    animation-delay: 1s;
    animation-name: floatCardIn, floatBob;
    animation-duration: 0.6s, 5s;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), ease-in-out;
    animation-delay: 1s, 1.6s;
    animation-iteration-count: 1, infinite;
    animation-fill-mode: forwards, none;
}

.hero-float-2 {
    top: 40%;
    right: -50px;
    animation-delay: 1.15s;
    animation-name: floatCardIn, floatBob2;
    animation-duration: 0.6s, 6s;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), ease-in-out;
    animation-delay: 1.15s, 1.75s;
    animation-iteration-count: 1, infinite;
    animation-fill-mode: forwards, none;
}

.hero-float-3 {
    bottom: 20%;
    left: -20px;
    animation-delay: 1.3s;
    animation-name: floatCardIn, floatBob;
    animation-duration: 0.6s, 5.5s;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), ease-in-out;
    animation-delay: 1.3s, 1.9s;
    animation-iteration-count: 1, infinite;
    animation-fill-mode: forwards, none;
}

@keyframes floatCardIn {
    from { opacity: 0; transform: translateY(20px) scale(0.9); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

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

@keyframes floatBob2 {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

/* ============ SOCIAL PROOF ============ */
.social-proof {
    padding: 40px 0;
    border-top: 1px solid var(--gray-border);
    border-bottom: 1px solid var(--gray-border);
    background: var(--off-white);
}

.social-proof .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.social-proof-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 40px;
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.social-proof-item:nth-child(1) { animation-delay: 0.1s; }
.social-proof-item:nth-child(3) { animation-delay: 0.2s; }
.social-proof-item:nth-child(5) { animation-delay: 0.3s; }
.social-proof-item:nth-child(7) { animation-delay: 0.4s; }

.social-proof-number {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
}

.social-proof-label { font-size: 13px; color: var(--gray-text); line-height: 1.3; }

.social-proof-divider { width: 1px; height: 40px; background: var(--gray-border); flex-shrink: 0; }

/* ============ PROBLEM - SOLUTION ============ */
.problem-solution { padding: 100px 0; }

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 72px;
}

.pain-card {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    opacity: 0.6;
}

.pain-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); border-color: transparent; }

.pain-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #FEE2E2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pain-icon svg { width: 22px; height: 22px; color: var(--red); }
.pain-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.pain-card p { font-size: 14px; color: var(--gray-text); line-height: 1.6; }

.transition-visual { text-align: center; margin-bottom: 72px; position: relative; }

.transition-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gray-border), transparent);
}

.transition-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--black);
    color: white;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.transition-badge svg { width: 20px; height: 20px; color: var(--gold); }

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.solution-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
}

.solution-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(212,168,67,0.1); border-color: var(--gold-light); }

.solution-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.solution-icon svg { width: 22px; height: 22px; color: var(--gold); }
.solution-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.solution-card p { font-size: 14px; color: var(--gray-text); line-height: 1.6; }

.solution-card .check-list { list-style: none; margin-top: 16px; }
.solution-card .check-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--gray-text); margin-bottom: 8px; }
.solution-card .check-list li svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; margin-top: 2px; }

/* ============ FEATURES — HORIZONTAL SCROLL ============ */
.features {
    background: var(--off-white);
    position: relative;
}

.features-header {
    padding: 40px 0 0;
    flex-shrink: 0;
}

.features .section-header { margin-bottom: 0; }

.features-scroll-wrapper {
    overflow: hidden;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.features-track {
    display: flex;
    gap: 0;
    will-change: transform;
    padding: 40px 0 0;
}

.feature-panel {
    flex: 0 0 80vw;
    width: 80vw;
    max-width: 1100px;
    padding: 0 40px;
    box-sizing: border-box;
}

.feature-panel:first-child {
    margin-left: max(40px, calc((100vw - 1100px) / 2));
}

.feature-panel:last-child {
    margin-right: max(40px, calc((100vw - 1100px) / 2));
}

.feature-panel-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-progress {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0,0,0,0.06);
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.features-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--gold-hover));
    border-radius: 0 2px 2px 0;
    transition: width 0.05s linear;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.feature-tag.planning { background: #DBEAFE; color: #2563EB; }
.feature-tag.membres { background: #D1FAE5; color: #059669; }
.feature-tag.paiements { background: #FEE2E2; color: #DC2626; }
.feature-tag.wod { background: #FEF3C7; color: #D97706; }
.feature-tag.communication { background: #EDE9FE; color: #7C3AED; }
.feature-tag.apps { background: var(--gold-light); color: var(--gold-hover); }
.feature-tag svg { width: 14px; height: 14px; }

.feature-text h3 {
    font-family: var(--font-display);
    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.feature-text > p { font-size: 16px; color: var(--gray-text); line-height: 1.7; margin-bottom: 24px; max-width: 460px; }

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--black); line-height: 1.5; }

.feature-list li .check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.feature-list li .check-icon svg { width: 12px; height: 12px; color: var(--gold); }

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold-hover);
    text-decoration: none;
    transition: gap 0.2s ease;
}

.feature-link:hover { gap: 10px; }
.feature-link svg { width: 16px; height: 16px; }

.feature-visual { position: relative; }
.feature-visual:hover .browser-frame { transform: translateY(-4px); box-shadow: 0 4px 8px rgba(0,0,0,0.03), 0 12px 24px rgba(0,0,0,0.06), 0 24px 48px rgba(0,0,0,0.08); }

.visual-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--gold);
    color: var(--black);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(212,168,67,0.3);
    z-index: 2;
}

.phone-mockup-group { display: flex; gap: 16px; justify-content: center; align-items: flex-end; }

.phone-mockup {
    background: var(--black);
    border-radius: 28px;
    padding: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.06), 0 16px 32px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
    max-width: 220px;
}

.phone-mockup:hover { transform: translateY(-6px); }
.phone-mockup img { width: 100%; border-radius: 20px; display: block; }
.phone-mockup.secondary { max-width: 200px; opacity: 0.9; transform: translateY(20px); }
.phone-mockup.secondary:hover { transform: translateY(14px); }
.phone-label { text-align: center; margin-top: 12px; font-size: 12px; font-weight: 600; color: var(--gray-text); }

/* ============ SECTION IA ============ */
.section-ia {
    padding: 120px 0;
    background: #0a0a14;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Animated grid background */
.ia-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212,168,67,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,168,67,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 70%);
}

/* Glow orbs */
.ia-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(100px);
}

.ia-glow-1 {
    width: 600px;
    height: 600px;
    top: -100px;
    left: -150px;
    background: radial-gradient(circle, rgba(212,168,67,0.15) 0%, transparent 70%);
    animation: ia-float-1 8s ease-in-out infinite;
}

.ia-glow-2 {
    width: 500px;
    height: 500px;
    bottom: -100px;
    right: -150px;
    background: radial-gradient(circle, rgba(212,168,67,0.10) 0%, transparent 70%);
    animation: ia-float-2 10s ease-in-out infinite;
}

@keyframes ia-float-1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(40px, 30px); }
}

@keyframes ia-float-2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, -40px); }
}

/* Hero IA */
.ia-hero { text-align: center; margin-bottom: 60px; position: relative; z-index: 1; }

.ia-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(212,168,67,0.12);
    border: 1px solid rgba(212,168,67,0.25);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 32px;
}

.ia-badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 8px rgba(34,197,94,0.6);
}

.ia-headline {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.ia-headline-gold {
    background: linear-gradient(135deg, var(--gold), #F5D78E, var(--gold));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: ia-shimmer 3s ease-in-out infinite;
}

@keyframes ia-shimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 200% center; }
}

.ia-subline {
    font-size: clamp(16px, 1.5vw, 20px);
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
}

/* Stats Bar */
.ia-stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 28px 48px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    max-width: 900px;
    margin: 0 auto 72px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(12px);
}

.ia-stat { text-align: center; flex: 1; }

.ia-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}

.ia-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

.ia-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

/* Demo Window */
.ia-demo { max-width: 800px; margin: 0 auto 80px; position: relative; z-index: 1; }

.ia-demo-window {
    background: #111122;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 4px 8px rgba(0,0,0,0.2),
        0 16px 48px rgba(0,0,0,0.4),
        0 0 0 1px rgba(212,168,67,0.08),
        0 0 80px rgba(212,168,67,0.06);
}

.ia-demo-topbar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.ia-demo-dots { display: flex; gap: 6px; }
.ia-demo-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.ia-demo-dots span:first-child { background: #ff5f57; }
.ia-demo-dots span:nth-child(2) { background: #ffbd2e; }
.ia-demo-dots span:last-child { background: #28c840; }

.ia-demo-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
}

.ia-demo-tab.active {
    background: rgba(212,168,67,0.12);
    color: var(--gold);
}

.ia-demo-status {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #22c55e;
    font-weight: 500;
}

.ia-demo-status-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 6px rgba(34,197,94,0.5);
}

.ia-demo-body { padding: 24px; }

.ia-demo-chat { display: flex; flex-direction: column; gap: 20px; }

.ia-chat-msg { display: flex; gap: 12px; align-items: flex-start; }

.ia-chat-avatar {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.ia-chat-avatar-user { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }

.ia-chat-avatar-ai {
    background: linear-gradient(135deg, var(--gold), #F5D78E);
    color: var(--black);
}

.ia-chat-avatar-ai svg { width: 16px; height: 16px; }

.ia-chat-bubble {
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.6;
    max-width: 520px;
}

.ia-chat-bubble-user {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.08);
}

.ia-chat-bubble-ai {
    background: rgba(212,168,67,0.08);
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(212,168,67,0.15);
}

.ia-chat-bubble-notif {
    background: rgba(34,197,94,0.06);
    border-color: rgba(34,197,94,0.15);
}

.ia-chat-name {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
    color: rgba(255,255,255,0.4);
}

.ia-chat-name.ia-gold { color: var(--gold); }

.ia-chat-meta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: rgba(212,168,67,0.7);
}

.ia-chat-meta svg { color: #22c55e; }

/* Chat animation */
.ia-chat-animated {
    opacity: 0;
    transform: translateY(12px);
}

.ia-chat-animated.ia-visible {
    animation: ia-msg-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.ia-chat-delayed.ia-visible {
    animation-delay: 1.2s;
}

@keyframes ia-msg-in {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Capabilities Grid */
.ia-capabilities {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.ia-cap {
    padding: 32px 24px;
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.ia-cap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(212,168,67,0.08) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ia-cap:hover {
    border-color: rgba(212,168,67,0.25);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 40px rgba(212,168,67,0.06);
}

.ia-cap:hover::after { opacity: 1; }

.ia-cap > * { position: relative; z-index: 1; }

.ia-cap-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: rgba(212,168,67,0.08);
    line-height: 1;
    margin-bottom: 16px;
}

.ia-cap:hover .ia-cap-number { color: rgba(212,168,67,0.15); }

.ia-cap-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(212,168,67,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ia-cap-icon svg { width: 22px; height: 22px; color: var(--gold); }

.ia-cap h3 {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.ia-cap p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
    margin-bottom: 16px;
}

.ia-cap-speed {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    padding: 4px 10px;
    background: rgba(212,168,67,0.1);
    border-radius: 6px;
}

.ia-cap-speed svg { color: var(--gold); }

/* Featured capabilities (larger, 2 first) */
.ia-cap-featured {
    grid-column: span 2;
    background: rgba(255,255,255,0.05);
    border-color: rgba(212,168,67,0.12);
}

.ia-cap-featured .ia-cap-number { font-size: 56px; color: rgba(212,168,67,0.12); }
.ia-cap-featured h3 { font-size: 18px; }
.ia-cap-featured p { font-size: 14px; color: rgba(255,255,255,0.55); }

/* Demo tags */
.ia-demo-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.ia-demo-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ia-demo-tag-cat { background: rgba(212,168,67,0.15); color: var(--gold); }
.ia-demo-tag-conf { background: rgba(34,197,94,0.12); color: #22c55e; }
.ia-demo-tag-new { background: rgba(59,130,246,0.12); color: #60a5fa; }

.ia-chat-speed {
    color: #22c55e;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.ia-chat-speed svg { color: #22c55e; }

/* Delayed animation variants */
.ia-chat-delayed-2.ia-visible {
    animation-delay: 2.2s;
}

/* Pipeline visual */
.ia-bottom {
    margin-top: 80px;
    text-align: center;
}

.ia-bottom-visual {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 36px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 100px;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}

.ia-pipeline-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
}

.ia-pip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.ia-pip-new { background: #60a5fa; box-shadow: 0 0 8px rgba(96,165,250,0.5); }
.ia-pip-contacted { background: var(--gold); box-shadow: 0 0 8px rgba(212,168,67,0.5); }
.ia-pip-trial { background: #a78bfa; box-shadow: 0 0 8px rgba(167,139,250,0.5); }
.ia-pip-converted { background: #22c55e; box-shadow: 0 0 8px rgba(34,197,94,0.5); animation: pulse 2s infinite; }

.ia-pipeline-arrow { color: rgba(255,255,255,0.2); display: flex; align-items: center; }
.ia-pipeline-arrow svg { width: 16px; height: 16px; }

.ia-bottom-text {
    font-size: 15px;
    color: rgba(255,255,255,0.45);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============ HP PRICING ============ */
.hp-pricing { padding: 100px 0; background: var(--off-white); }

.hp-billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.hp-bill-label { font-size: 14px; font-weight: 600; color: var(--gray-text); transition: color 0.2s; }
.hp-bill-label.hp-bill-active { color: var(--black); }

.hp-toggle {
    width: 48px;
    height: 26px;
    background: var(--gray-border);
    border-radius: 13px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
}

.hp-toggle::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.hp-toggle.active { background: var(--gold); }
.hp-toggle.active::after { transform: translateX(22px); }

.hp-bill-badge {
    background: #D1FAE5;
    color: #059669;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
}

.hp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
    align-items: start;
}

.hp-plan {
    background: white;
    border: 1px solid var(--gray-border);
    border-radius: 20px;
    padding: 36px 28px;
    position: relative;
    transition: all 0.3s ease;
}

.hp-plan:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }

.hp-plan-popular {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold), 0 8px 32px rgba(212,168,67,0.15);
    transform: scale(1.03);
}

.hp-plan-popular:hover { transform: scale(1.03) translateY(-4px); }

.hp-popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--black);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 100px;
    white-space: nowrap;
}

.hp-plan-header { margin-bottom: 24px; }

.hp-plan-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.hp-plan-icon svg { width: 22px; height: 22px; }
.hp-plan-icon.starter { background: #DBEAFE; color: #2563EB; }
.hp-plan-icon.pro { background: var(--gold-light); color: var(--gold-hover); }
.hp-plan-icon.business { background: #EDE9FE; color: #7C3AED; }

.hp-plan-header h3 { font-family: var(--font-display); font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.hp-plan-desc { font-size: 14px; color: var(--gray-text); }

.hp-plan-price { display: flex; align-items: baseline; gap: 2px; margin-bottom: 4px; }

.hp-price-amount {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
}

.hp-price-period { font-size: 15px; color: var(--gray-text); font-weight: 500; }

.hp-price-save {
    font-size: 12px;
    color: #059669;
    font-weight: 600;
    margin-bottom: 20px;
    min-height: 18px;
}

.hp-annual-only { visibility: hidden; }

.hp-plan-cta { width: 100%; justify-content: center; margin-bottom: 24px; }

.hp-plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.hp-plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--black);
    line-height: 1.4;
}

.hp-plan-features li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; }
.hp-feat-yes svg { color: var(--green); }
.hp-feat-no { color: var(--gray-text) !important; opacity: 0.5; }
.hp-feat-no svg { color: var(--gray-text); }
.hp-feat-gold svg { color: var(--gold); }
.hp-feat-gold { color: var(--black); }

.hp-pricing-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.hp-pricing-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gray-text);
    font-weight: 500;
}

.hp-pricing-trust span svg { width: 16px; height: 16px; color: var(--green); }

/* VS Concurrence */
.hp-vs {
    background: white;
    border: 1px solid var(--gray-border);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.hp-vs-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 28px;
    color: var(--black);
}

.hp-vs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.hp-vs-card {
    background: var(--off-white);
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
}

.hp-vs-name { font-size: 16px; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.hp-vs-price { font-size: 14px; color: var(--gray-text); margin-bottom: 12px; }

.hp-vs-lacks {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hp-vs-lacks span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 12px;
    color: #DC2626;
    font-weight: 500;
}

.hp-vs-lacks span svg { color: #DC2626; }

.hp-vs-reekia {
    background: var(--black);
    border-color: var(--gold);
}
.hp-vs-reekia .hp-vs-name { color: var(--gold); }
.hp-vs-reekia .hp-vs-price { color: var(--white); }
.hp-vs-has {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.hp-vs-has span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--green);
}

.hp-vs-bottom p {
    font-size: 14px;
    color: var(--gray-text);
}

.hp-vs-bottom p strong { color: var(--black); }

/* ============ ROI ============ */
.roi-section { padding: 100px 0; background: var(--white); }

.roi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.roi-calculator {
    background: var(--off-white);
    border: 1px solid var(--gray-border);
    border-radius: 20px;
    padding: 40px;
}

.roi-calculator h3 { font-family: var(--font-display); font-size: 22px; font-weight: 800; margin-bottom: 32px; }

.roi-field { margin-bottom: 24px; }
.roi-field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; color: var(--black); }
.roi-field label small { font-weight: 400; color: var(--gray-text); }

.roi-input, .roi-select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-border);
    border-radius: 10px;
    font-size: 16px;
    font-family: var(--font-body);
    background: var(--white);
    color: var(--black);
    transition: border-color 0.2s;
}

.roi-input:focus, .roi-select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,168,67,0.1); }

.roi-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.roi-range {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--gray-border);
    border-radius: 3px;
    outline: none;
}

.roi-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(212,168,67,0.3);
}

.roi-range-value { text-align: right; font-size: 14px; font-weight: 600; color: var(--gold-hover); margin-top: 4px; }

.roi-results { display: flex; flex-direction: column; gap: 24px; }

.roi-result-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.roi-result-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }

.roi-result-card.highlight {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(212,168,67,0.04), rgba(212,168,67,0.01));
}

.roi-result-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.roi-result-icon.gold { background: var(--gold-light); color: var(--gold); }
.roi-result-icon.green { background: #D1FAE5; color: var(--green); }
.roi-result-icon.blue { background: #DBEAFE; color: #2563EB; }
.roi-result-icon svg { width: 24px; height: 24px; }

.roi-result-value {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
    margin-bottom: 4px;
}

.roi-result-value.gold { color: var(--gold-hover); }
.roi-result-label { font-size: 14px; color: var(--gray-text); }

/* ============ TESTIMONIALS ============ */
.testimonials { padding: 100px 0; background: var(--off-white); }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }

.testimonial-stars { display: flex; gap: 2px; margin-bottom: 16px; }
.testimonial-stars svg { width: 18px; height: 18px; fill: var(--gold); color: var(--gold); }

.testimonial-text { font-size: 15px; line-height: 1.7; color: var(--black); flex: 1; margin-bottom: 24px; }
.testimonial-text em { color: var(--gold-hover); font-style: normal; font-weight: 600; }

.testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid var(--gray-border); }

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    color: var(--gold-hover);
    flex-shrink: 0;
}

.testimonial-name { font-size: 14px; font-weight: 700; color: var(--black); }
.testimonial-role { font-size: 12px; color: var(--gray-text); margin-top: 1px; }

/* ============ FINAL CTA ============ */
.final-cta {
    padding: 100px 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212,168,67,0.1) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.final-cta .section-title { color: white; margin-bottom: 16px; position: relative; z-index: 1; }
.final-cta .section-subtitle { color: rgba(255,255,255,0.6); margin: 0 auto 40px; position: relative; z-index: 1; }

.final-cta-buttons { display: flex; gap: 16px; justify-content: center; margin-bottom: 24px; position: relative; z-index: 1; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero-float-1 { left: -10px; }
    .hero-float-2 { right: -10px; }
    .hero-float-3 { left: 0; }

    .pain-grid, .solution-grid { grid-template-columns: 1fr; }
    .feature-panel { flex: 0 0 90vw; width: 90vw; padding: 0 24px; }
    .feature-panel-inner { grid-template-columns: 1fr; gap: 40px; }
    .feature-text { text-align: center; }
    .feature-text > p { max-width: 100%; margin-left: auto; margin-right: auto; }
    .feature-list { align-items: center; }
    .feature-link { justify-content: center; }
    .ia-capabilities { grid-template-columns: repeat(2, 1fr); }
    .ia-cap-featured { grid-column: span 2; }
    .ia-stats-bar { gap: 24px; padding: 24px 32px; }
    .ia-bottom-visual { flex-wrap: wrap; border-radius: 16px; justify-content: center; }
    .hp-pricing-grid { grid-template-columns: 1fr 1fr; }
    .hp-plan-popular { grid-column: 1 / -1; max-width: 400px; justify-self: center; }
    .hp-vs-grid { grid-template-columns: repeat(3, 1fr); }
    .roi-grid { grid-template-columns: 1fr; gap: 40px; }
    .roi-results { flex-direction: row; flex-wrap: wrap; }
    .roi-result-card { flex: 1; min-width: 200px; }
    .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero { padding-top: calc(var(--nav-height) + 32px); }
    .hero h1 { font-size: 32px; }
    .hero-description { font-size: 16px; }
    .hero-badge { font-size: 12px; }
    .hero-ctas { flex-direction: column; width: 100%; }
    .hero-ctas .btn { width: 100%; justify-content: center; }
    .hero-trust { flex-wrap: wrap; }
    .hero-float-card { display: none; }
    .hero-mockup-wrapper { margin: 0 -12px; }

    .social-proof .container { gap: 24px; }
    .social-proof-divider { display: none; }
    .social-proof-item { flex: 0 0 calc(50% - 12px); justify-content: center; }
    .social-proof-number { font-size: 26px; }

    .problem-solution, .section-ia, .hp-pricing, .roi-section, .testimonials, .final-cta { padding: 60px 0; }
    .hp-pricing-grid { grid-template-columns: 1fr; }
    .hp-plan-popular { max-width: 100%; order: -1; }
    .hp-vs-grid { grid-template-columns: 1fr; }
    .features-header { padding: 60px 0 40px; }
    .section-header { margin-bottom: 40px; }
    .transition-visual { margin-bottom: 48px; }
    .feature-panel { flex: 0 0 100vw; width: 100vw; padding: 0 20px; }
    .phone-mockup-group { gap: 10px; }
    .phone-mockup { max-width: 160px; }
    .phone-mockup.secondary { max-width: 140px; }
    .ia-capabilities { grid-template-columns: 1fr; }
    .ia-cap-featured { grid-column: span 1; }
    .ia-stats-bar { flex-wrap: wrap; gap: 16px; padding: 20px; }
    .ia-stat-divider { display: none; }
    .ia-stat { flex: 0 0 calc(50% - 8px); }
    .ia-demo-chat .ia-chat-bubble { max-width: 100%; }
    .ia-demo-topbar { flex-wrap: wrap; gap: 8px; }
    .ia-demo-status { margin-left: 0; }
    .ia-bottom-visual { padding: 16px 20px; gap: 8px; border-radius: 12px; }
    .ia-pipeline-step { font-size: 11px; }
    .ia-pipeline-arrow { display: none; }
    .ia-bottom-visual { display: grid; grid-template-columns: 1fr 1fr; }
    .comparatif-table-wrapper { margin: 0 -24px; border-radius: 0; border-left: none; border-right: none; }
    .comparatif-table thead th, .comparatif-table tbody td { padding: 12px 16px; font-size: 13px; }
    .roi-calculator { padding: 24px; }
    .roi-results { flex-direction: column; }
    .final-cta-buttons { flex-direction: column; align-items: center; }
    .final-cta-buttons .btn { width: 100%; max-width: 320px; justify-content: center; }
}
