/* ============================================
   OneMoreLife — Landing Page Styles
   Design System: Teal + Gold, Premium
   Mobile-first, breakpoints: 768px, 1024px
   ============================================ */

/* --- CSS Variables --- */
:root {
    /* Ink palette */
    --ink: #111318;
    --ink-soft: #3B4049;
    --ink-muted: #8590A0;
    --surface: #F5F6F8;
    --surface-warm: #F9F8F5;
    --white: #FFFFFF;
    --border: #DFE2E7;

    /* Primary (teal) */
    --primary: #0D6B58;
    --primary-dark: #064D3E;
    --primary-light: #EDF5F2;

    /* Accent (gold) */
    --accent: #C0800A;
    --accent-light: #FBF5E9;

    /* Info (blue) */
    --info: #2B6EA0;
    --info-light: #EDF3F9;

    /* Danger (red) */
    --danger: #B04040;
    --danger-light: #FAF0EF;

    /* Typography */
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Layout */
    --max-width: 1120px;
    --radius: 8px;
    --radius-lg: 16px;
}

/* --- Reading Progress Bar --- */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
    background-size: 200% 100%;
    animation: progressGradient 3s ease infinite;
    z-index: 1002;
    transition: width 0.1s linear;
    width: 0%;
    box-shadow: 0 0 8px rgba(13, 107, 88, 0.3);
}

@keyframes progressGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* --- Skip to content --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-md);
    background: var(--primary);
    color: var(--white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 10000;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: var(--space-md);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink-soft);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-wrap: pretty;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease, opacity 0.2s ease;
}

ul, ol {
    list-style: none;
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    position: relative;
}

/* --- Section spacing --- */
section {
    padding: var(--space-4xl) 0;
}

/* --- Typography --- */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    text-align: center;
    line-height: 1.2;
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, var(--ink) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: var(--space-lg);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--ink-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.7;
}

/* --- Logo --- */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo__icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.logo__text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--white);
    letter-spacing: -0.02em;
    transition: opacity 0.2s ease;
}

.logo:hover .logo__text {
    opacity: 0.85;
}

.logo:hover .logo__icon {
    transform: scale(1.05);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo__more {
    color: var(--accent);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

.btn--gold {
    background: linear-gradient(135deg, var(--accent) 0%, #D49520 100%);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(192, 128, 10, 0.35);
    position: relative;
    overflow: hidden;
}

.btn--gold::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn--gold:hover::after {
    left: 120%;
}

.btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 128, 10, 0.45);
}

.btn--gold:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
}

.btn--gold.btn--lg {
    animation: goldPulse 3s ease-in-out infinite;
}

@keyframes goldPulse {
    0%, 100% {
        box-shadow: 0 4px 14px rgba(192, 128, 10, 0.35);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 8px 30px rgba(192, 128, 10, 0.5);
        transform: scale(1.02);
    }
}

.btn--teal {
    background: var(--primary);
    color: var(--white);
}

.btn--teal:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn--sm {
    font-size: 0.85rem;
    padding: 0.5rem 1.25rem;
}

.btn--lg {
    font-size: 1.15rem;
    padding: 1.1rem 2.5rem;
}

/* --- Sticky Header --- */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(17, 19, 24, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0.65rem 0;
}

.sticky-header.visible {
    transform: translateY(0);
}

.sticky-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sticky-header .logo__text {
    font-size: 1.05rem;
}

.sticky-header .logo__icon {
    width: 26px;
    height: 26px;
}

/* --- Hero --- */
.hero {
    background: var(--ink);
    padding: var(--space-xl) 0 var(--space-4xl);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero__bg-gradient {
    position: absolute;
    top: -20%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 107, 88, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: heroBlobFloat 12s ease-in-out infinite;
}

.hero__bg-gradient--2 {
    top: auto;
    right: auto;
    bottom: -25%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(192, 128, 10, 0.12) 0%, transparent 70%);
    animation: heroBlobFloat2 15s ease-in-out infinite;
}

@keyframes heroBlobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-30px, 20px) scale(1.05); }
    66% { transform: translate(20px, -15px) scale(0.95); }
}

@keyframes heroBlobFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(25px, -20px) scale(1.08); }
    66% { transform: translate(-15px, 25px) scale(0.92); }
}

.hero__scroll-hint {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--ink-muted);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.5;
    animation: scrollHintPulse 2s ease-in-out infinite;
}

.hero__scroll-hint svg {
    animation: scrollArrowBounce 1.5s ease-in-out infinite;
}

@keyframes scrollHintPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}

@keyframes scrollArrowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

.hero__nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg) 0;
}

.hero__nav .container {
    display: flex;
    align-items: center;
}

.hero__content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding-top: var(--space-4xl);
    padding-bottom: var(--space-2xl);
    transform: translateY(-2vh);
}

.hero__content .hero__title {
    animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    animation-delay: 0.2s;
}

.hero__content .hero__subtitle {
    animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    animation-delay: 0.4s;
}

.hero__content .hero__cta {
    animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    animation-delay: 0.6s;
}

.hero__content .hero__badges {
    animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    animation-delay: 0.8s;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, #FFFFFF 0%, #E8F5F0 40%, #C0800A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: var(--ink-muted);
    margin-bottom: var(--space-xl);
    letter-spacing: 0.04em;
    font-weight: 400;
}

.hero__cta {
    margin-bottom: var(--space-xl);
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-lg) var(--space-xl);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.8rem;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.4rem 0.75rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.badge svg {
    flex-shrink: 0;
}

/* --- Problem --- */
.problem {
    background: var(--white);
    position: relative;
}

.problem__list {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.problem__item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--ink-soft);
    padding: var(--space-sm) 0;
    border-left: 3px solid transparent;
    padding-left: var(--space-md);
    transition: all 0.3s ease;
    border-radius: 0 var(--radius) var(--radius) 0;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.problem__item:hover {
    border-left-color: var(--danger);
    background: rgba(176, 64, 64, 0.03);
}

.problem__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--danger-light);
    color: var(--danger);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 2px;
    transition: transform 0.2s ease;
}

.problem__item:hover .problem__icon {
    transform: scale(1.15);
}

/* --- Solution --- */
.solution {
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

.solution::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 1px solid rgba(13, 107, 88, 0.06);
    pointer-events: none;
}

.solution::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(13, 107, 88, 0.03);
    pointer-events: none;
}

.solution__inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-3xl);
    align-items: center;
}

.solution__text {
    margin-bottom: var(--space-lg);
    line-height: 1.8;
    max-width: 520px;
}

.solution .section-title {
    text-align: left;
}

.solution__content .btn {
    margin-top: var(--space-md);
}

/* Book Mockup */
.book-mockup {
    display: flex;
    perspective: 800px;
    animation: bookFloat 6s ease-in-out infinite;
}

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

.book-mockup__cover {
    width: 260px;
    min-height: 360px;
    background: linear-gradient(160deg, var(--primary-dark) 0%, var(--ink) 100%);
    border-radius: 2px var(--radius) var(--radius) 2px;
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    box-shadow:
        8px 8px 30px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.03),
        inset -2px 0 4px rgba(255, 255, 255, 0.05),
        20px 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotateY(-5deg);
}

.book-mockup__logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.book-mockup__heart {
    width: 48px;
    height: 48px;
}

.book-mockup__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
}

.book-mockup__subtitle {
    color: var(--ink-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: var(--space-xl);
}

.book-mockup__badge {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    background: rgba(192, 128, 10, 0.15);
    padding: var(--space-xs) var(--space-md);
    border-radius: 100px;
}

.book-mockup__spine {
    width: 16px;
    background: linear-gradient(90deg, var(--primary-dark) 0%, rgba(6, 77, 62, 0.7) 100%);
    border-radius: 2px 0 0 2px;
    box-shadow: -2px 0 6px rgba(0, 0, 0, 0.15);
    position: relative;
}

.book-mockup__spine::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 80%;
    background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.08) 50%, transparent 100%);
}

/* --- Modules --- */
.modules {
    background: var(--white);
    position: relative;
}

.modules::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border) 50%, transparent 100%);
}

.modules__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.module-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: all 0.4s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: auroraMove 3s ease-in-out infinite;
}

.module-card:hover::before {
    opacity: 1;
}

@keyframes auroraMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.module-card:hover {
    border-color: transparent;
    box-shadow: 0 8px 30px rgba(13, 107, 88, 0.12);
    transform: translateY(-4px);
    background: linear-gradient(180deg, var(--white) 0%, var(--primary-light) 100%);
}

.module-card:hover .module-card__number {
    background: var(--primary);
    color: var(--white);
    transform: rotate(-8deg) scale(1.1);
}

.module-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--primary-light);
    color: var(--primary);
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius);
    margin-bottom: var(--space-md);
    transition: all 0.3s ease;
    position: relative;
}

.module-card__number::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius) + 2px);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.module-card:hover .module-card__number::after {
    opacity: 0.3;
}

.module-card__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--ink);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--primary-light);
    display: inline-block;
}

.module-card__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.module-card__list li {
    position: relative;
    padding-left: var(--space-lg);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--ink-soft);
}

.module-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--primary-light);
}

/* --- Compare (Avant/Après) --- */
.compare {
    background: var(--surface);
}

.compare__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: stretch;
}

.compare__col {
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
}

.compare__col--before {
    background: linear-gradient(180deg, var(--danger-light) 0%, #fef8f7 100%);
    border: 1px solid rgba(176, 64, 64, 0.15);
}

.compare__col--after {
    background: linear-gradient(180deg, var(--primary-light) 0%, #f8fdfb 100%);
    border: 1px solid rgba(13, 107, 88, 0.15);
}

.compare__heading {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.compare__heading::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.compare__col--before .compare__heading::before {
    background: var(--danger);
    box-shadow: 0 0 8px rgba(176, 64, 64, 0.3);
}

.compare__col--after .compare__heading::before {
    background: var(--primary);
    box-shadow: 0 0 8px rgba(13, 107, 88, 0.3);
}

.compare__col--before .compare__heading {
    color: var(--danger);
}

.compare__col--after .compare__heading {
    color: var(--primary);
}

.compare__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.compare__list li {
    position: relative;
    padding-left: var(--space-xl);
    font-size: 0.95rem;
    line-height: 1.6;
}

.compare__col--before .compare__list li::before {
    content: '\2717';
    position: absolute;
    left: 0;
    color: var(--danger);
    font-weight: 700;
}

.compare__col--after .compare__list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* --- Stats --- */
.stats {
    background: linear-gradient(135deg, var(--ink) 0%, #0a2e24 50%, var(--ink) 100%);
    padding: var(--space-4xl) 0;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
    text-align: center;
    position: relative;
}

.stats__grid .stat {
    position: relative;
    padding: var(--space-lg) var(--space-xl);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.stats__grid .stat:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.stats__grid .stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
}

@media (max-width: 767px) {
    .stats__grid .stat:not(:last-child)::after {
        display: none;
    }
}

.stat__number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    line-height: 1;
    background: linear-gradient(135deg, var(--accent) 0%, #D49520 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat__plus {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    background: linear-gradient(135deg, var(--accent) 0%, #D49520 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat__label {
    display: block;
    font-size: 0.95rem;
    color: var(--ink-muted);
    margin-top: var(--space-sm);
}

/* --- Value Stack --- */
.value-stack {
    background: var(--white);
}

.value-stack__content {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
}

.value-stack__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    text-align: left;
    margin-bottom: var(--space-xl);
}

.value-stack__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg) var(--space-xl);
    background: var(--surface);
    border-radius: var(--radius);
    gap: var(--space-md);
    transition: all 0.2s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.value-stack__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--primary);
    transition: width 0.3s ease;
    opacity: 0.05;
}

.value-stack__item:hover::before {
    width: 100%;
}

.value-stack__item:hover {
    border-color: var(--primary-light);
    background: var(--primary-light);
}

.value-stack__name {
    font-size: 0.95rem;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.value-stack__name::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='8' fill='%230D6B58'/%3E%3Cpath d='M5.5 9l2.5 2.5L12.5 7' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.value-stack__price del {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--ink-muted);
}

.value-stack__total {
    font-size: 1rem;
    color: var(--ink-muted);
    margin-bottom: var(--space-lg);
}

.value-stack__total del {
    color: var(--ink-muted);
    position: relative;
}

.value-stack__total del::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    background: var(--danger);
    transform: rotate(-2deg);
}

.value-stack__pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.value-stack__old-price del {
    font-size: 1.25rem;
    color: var(--ink-muted);
}

.value-stack__price-final {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    background: linear-gradient(135deg, var(--accent) 0%, #D49520 60%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-stack__save {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.value-stack__social-proof {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: var(--space-md);
    letter-spacing: -0.01em;
}

.value-stack__cta {
    margin-bottom: var(--space-md);
}

.value-stack__item--bonus {
    background: var(--primary-light);
    border: 1px dashed var(--primary);
}

.value-stack__item--bonus:hover {
    background: var(--primary-light);
    border-color: var(--primary);
}

.value-stack__price--free {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.value-stack__note {
    font-size: 0.85rem;
    color: var(--ink-muted);
}

/* --- Urgency Banner --- */
.urgency-banner {
    background: linear-gradient(90deg, var(--accent) 0%, #D49520 40%, var(--accent) 80%, #D49520 100%);
    background-size: 200% 100%;
    animation: urgencyShimmer 4s ease-in-out infinite;
    color: var(--white);
    text-align: center;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    position: relative;
    z-index: 1;
}

@keyframes urgencyShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.urgency-banner__timer {
    font-family: var(--font-mono);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
}

/* --- Testimonials --- */
.testimonials {
    background: var(--surface-warm);
}

.testimonials__verified {
    text-align: center;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: var(--space-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.testimonial {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.testimonial::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, transparent 0%, var(--primary) 50%, var(--accent) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.testimonial:hover::before {
    opacity: 1;
}

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

.testimonial:hover .testimonial__quote::before {
    color: var(--primary-light);
}

.testimonial__stars {
    color: var(--accent);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: var(--space-md);
    display: inline-flex;
    gap: 1px;
}

.testimonial:hover .testimonial__stars {
    animation: starShimmer 0.6s ease forwards;
}

@keyframes starShimmer {
    0% { filter: brightness(1); }
    50% { filter: brightness(1.4); }
    100% { filter: brightness(1.1); }
}

.testimonial__quote {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--ink-soft);
    margin-bottom: var(--space-lg);
    position: relative;
    padding-left: var(--space-xl);
}

.testimonial__quote::before {
    content: '\201C';
    position: absolute;
    left: 0;
    top: -8px;
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--border);
    line-height: 1;
    transition: color 0.3s ease;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.testimonial:hover .testimonial__avatar {
    transform: scale(1.15);
}

.testimonial__info {
    display: flex;
    flex-direction: column;
}

.testimonial__info strong {
    font-size: 0.95rem;
    color: var(--ink);
}

.testimonial__info span {
    font-size: 0.85rem;
    color: var(--ink-muted);
}

/* --- Preview (Aperçu) --- */
.preview {
    background: var(--white);
}

.preview__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.callout {
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    border-left: 4px solid;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.callout--blue {
    background: linear-gradient(135deg, var(--info-light) 0%, #f0f6fc 100%);
    border-color: var(--info);
}

.callout--teal {
    background: linear-gradient(135deg, var(--primary-light) 0%, #f2faf7 100%);
    border-color: var(--primary);
}

.callout--red {
    background: linear-gradient(135deg, var(--danger-light) 0%, #fdf5f4 100%);
    border-color: var(--danger);
}

.callout__label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: var(--space-md);
    color: var(--ink);
}

.callout--blue .callout__label {
    color: var(--info);
}

.callout--teal .callout__label {
    color: var(--primary);
}

.callout--red .callout__label {
    color: var(--danger);
}

.callout__text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--ink-soft);
}

.callout__text strong {
    color: var(--ink);
}

/* --- FAQ --- */
.faq {
    background: var(--surface);
}

.faq__list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq__item {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq__item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(13, 107, 88, 0.06);
}

.faq__question {
    padding: var(--space-lg);
    font-weight: 600;
    font-size: 1rem;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    transition: all 0.2s ease;
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question::after {
    content: '';
    width: 7px;
    height: 7px;
    border-right: 2px solid var(--ink-muted);
    border-bottom: 2px solid var(--ink-muted);
    transform: rotate(45deg);
    flex-shrink: 0;
    margin-left: var(--space-md);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s ease;
}

.faq__item[open] .faq__question::after {
    transform: rotate(-135deg);
    border-color: var(--primary);
}

.faq__question:hover::after {
    border-color: var(--primary);
}

.faq__item[open] .faq__question {
    border-bottom: 1px solid var(--border);
}

.faq__answer {
    padding: var(--space-lg);
}

.faq__answer p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--ink-soft);
}

/* --- CTA Final --- */
.cta-final {
    background: var(--ink);
    padding: var(--space-4xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 150%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(192, 128, 10, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-final::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -25%;
    width: 150%;
    height: 200%;
    background: radial-gradient(ellipse at 70% 50%, rgba(13, 107, 88, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

/* Noise texture for dark sections */
.hero::before,
.stats::after,
.cta-final__inner {
    position: relative;
    z-index: 2;
}

.cta-final__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.cta-final__pricing {
    margin-bottom: var(--space-xl);
}

.cta-final__pricing del {
    color: var(--ink-muted);
    font-size: 1.25rem;
}

.cta-final__price {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-left: var(--space-md);
    background: linear-gradient(135deg, var(--accent) 0%, #D49520 60%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
}

.cta-final__button {
    margin-bottom: var(--space-lg);
}

.cta-final__badges {
    color: var(--ink-muted);
    font-size: 0.85rem;
    margin-bottom: var(--space-xl);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.cta-final__badges span {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    font-size: 0.8rem;
    backdrop-filter: blur(4px);
}

.cta-final__guarantee {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    color: var(--accent);
    font-size: 0.95rem;
    font-weight: 500;
    animation: guaranteePulse 3s ease-in-out infinite;
    margin-top: var(--space-xl);
    padding: var(--space-lg) var(--space-xl);
    border: 1px solid rgba(192, 128, 10, 0.2);
    border-radius: var(--radius-lg);
}

.cta-final__guarantee svg {
    width: 40px;
    height: 40px;
}

@keyframes guaranteePulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* --- Footer --- */
.footer {
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: var(--space-3xl) 0;
}

.footer__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__links {
    display: flex;
    gap: var(--space-xl);
}

.footer__links a {
    font-size: 0.9rem;
    color: var(--ink-muted);
    transition: color 0.2s ease;
    position: relative;
    padding-bottom: 2px;
}

.footer__links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.footer__links a:hover {
    color: var(--white);
}

.footer__links a:hover::after {
    width: 100%;
}

.footer__bottom {
    text-align: center;
}

.footer__bottom p {
    font-size: 0.85rem;
    color: var(--ink-muted);
    line-height: 1.7;
    letter-spacing: 0.01em;
}

.footer__disclaimer {
    margin-top: var(--space-sm);
    font-size: 0.8rem !important;
    opacity: 0.7;
}

/* --- Animations (scroll-triggered) --- */
.reveal {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    filter: blur(4px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.6s ease;
    will-change: opacity, transform, filter;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* Stagger children */
.modules__grid .reveal:nth-child(2) { transition-delay: 0.06s; }
.modules__grid .reveal:nth-child(3) { transition-delay: 0.12s; }
.modules__grid .reveal:nth-child(4) { transition-delay: 0.18s; }
.modules__grid .reveal:nth-child(5) { transition-delay: 0.24s; }
.modules__grid .reveal:nth-child(6) { transition-delay: 0.30s; }
.modules__grid .reveal:nth-child(7) { transition-delay: 0.36s; }
.modules__grid .reveal:nth-child(8) { transition-delay: 0.42s; }
.modules__grid .reveal:nth-child(9) { transition-delay: 0.48s; }

.testimonials__grid .reveal:nth-child(2) { transition-delay: 0.12s; }
.testimonials__grid .reveal:nth-child(3) { transition-delay: 0.24s; }
.testimonials__grid .reveal:nth-child(4) { transition-delay: 0.36s; }

.compare__grid .reveal:nth-child(2) { transition-delay: 0.15s; }

.preview__grid .reveal:nth-child(2) { transition-delay: 0.12s; }
.preview__grid .reveal:nth-child(3) { transition-delay: 0.24s; }

.faq__list .reveal:nth-child(2) { transition-delay: 0.08s; }
.faq__list .reveal:nth-child(3) { transition-delay: 0.16s; }
.faq__list .reveal:nth-child(4) { transition-delay: 0.24s; }
.faq__list .reveal:nth-child(5) { transition-delay: 0.32s; }
.faq__list .reveal:nth-child(6) { transition-delay: 0.40s; }
.faq__list .reveal:nth-child(7) { transition-delay: 0.48s; }
.faq__list .reveal:nth-child(8) { transition-delay: 0.56s; }

.problem__list .reveal:nth-child(2) { transition-delay: 0.08s; }
.problem__list .reveal:nth-child(3) { transition-delay: 0.16s; }
.problem__list .reveal:nth-child(4) { transition-delay: 0.24s; }
.problem__list .reveal:nth-child(5) { transition-delay: 0.32s; }

.stats__grid .reveal:nth-child(2) { transition-delay: 0.12s; }
.stats__grid .reveal:nth-child(3) { transition-delay: 0.24s; }
.stats__grid .reveal:nth-child(4) { transition-delay: 0.36s; }

.value-stack__list .reveal:nth-child(2) { transition-delay: 0.08s; }
.value-stack__list .reveal:nth-child(3) { transition-delay: 0.16s; }
.value-stack__list .reveal:nth-child(4) { transition-delay: 0.24s; }
.value-stack__list .reveal:nth-child(5) { transition-delay: 0.32s; }
.value-stack__list .reveal:nth-child(6) { transition-delay: 0.40s; }

/* --- Newsletter Section --- */
.newsletter {
    background: var(--surface);
    padding: var(--space-4xl) 0;
    text-align: center;
    position: relative;
}

.newsletter::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(13, 107, 88, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.newsletter__inner {
    max-width: 520px;
    margin: 0 auto;
    position: relative;
}

.newsletter__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--ink);
    margin-bottom: var(--space-sm);
}

.newsletter__desc {
    color: var(--ink-muted);
    font-size: 0.95rem;
    margin-bottom: var(--space-xl);
}

.newsletter__form {
    display: flex;
    gap: var(--space-sm);
    max-width: 420px;
    margin: 0 auto;
}

.newsletter__input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--ink);
    background: var(--white);
    outline: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.newsletter__input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(13, 107, 88, 0.08);
}

.newsletter__input::placeholder {
    color: var(--ink-muted);
}

.newsletter__note {
    font-size: 0.8rem;
    color: var(--ink-muted);
    margin-top: var(--space-md);
}

@media (max-width: 480px) {
    .newsletter__form {
        flex-direction: column;
    }
}

/* --- Social Proof Bar --- */
.social-proof-bar {
    background: linear-gradient(90deg, #0a1a15 0%, var(--ink) 50%, #0a1a15 100%);
    padding: 0.6rem 0;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.social-proof-bar__text {
    font-size: 0.8rem;
    color: var(--ink-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-flex;
    gap: var(--space-2xl);
    animation: marqueeScroll 20s linear infinite;
    white-space: nowrap;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Trust Bar --- */
.trust-bar {
    background: linear-gradient(180deg, var(--surface) 0%, var(--white) 100%);
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-bar__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-xl);
}

.trust-bar__item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.85rem;
    color: var(--ink-muted);
    position: relative;
    padding-right: var(--space-xl);
}

.trust-bar__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: var(--border);
}

.trust-bar__icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.trust-bar__item:hover .trust-bar__icon {
    transform: scale(1.15);
}

/* --- Responsive: 768px --- */
@media (min-width: 768px) {
    section {
        padding: var(--space-4xl) 0;
    }

    .hero {
        padding: var(--space-2xl) 0 var(--space-4xl);
    }

    .solution__inner {
        flex-direction: row;
        align-items: center;
        gap: var(--space-3xl);
    }

    .solution__content {
        flex: 1;
    }

    .solution__mockup {
        flex-shrink: 0;
    }

    .modules__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Bento: module 0 full width */
    .modules__grid .module-card:first-child {
        grid-column: 1 / -1;
        display: flex;
        align-items: center;
        gap: var(--space-2xl);
    }

    .modules__grid .module-card:first-child .module-card__list {
        flex: 1;
    }

    .modules__grid .module-card:first-child .module-card__title {
        font-size: 1.4rem;
    }

    .compare__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials__grid .testimonial:first-child {
        grid-column: 1 / -1;
    }

    .preview__grid {
        grid-template-columns: 1fr 1fr;
    }

    .preview__grid .callout:first-child {
        grid-column: 1 / -1;
    }

    .problem__item {
        font-size: 1.1rem;
    }

    .footer__top {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* --- Responsive: 1024px --- */
@media (min-width: 1024px) {
    .modules__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Bento: first child spans 2 cols on desktop */
    .modules__grid .module-card:first-child {
        grid-column: 1 / 3;
    }

    .testimonials__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .testimonials__grid .testimonial:first-child {
        grid-column: auto;
    }

    .preview__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .preview__grid .callout:first-child {
        grid-column: auto;
    }

    .book-mockup__cover {
        width: 280px;
        min-height: 380px;
    }
}

/* --- Tablet: 768-1024 fine tuning --- */
@media (min-width: 768px) and (max-width: 1023px) {
    .container {
        padding: 0 var(--space-xl);
    }

    .module-card {
        padding: var(--space-lg);
    }

    .book-mockup__cover {
        width: 220px;
        min-height: 320px;
    }
}

/* --- Mobile fine-tuning --- */
@media (max-width: 767px) {
    .hero__badges {
        flex-direction: column;
        align-items: center;
    }

    .cta-final__badges {
        flex-direction: column;
        align-items: center;
        gap: var(--space-xs);
    }

    .cta-final__badges span:nth-child(even) {
        display: none;
    }

    .value-stack__item {
        flex-direction: column;
        text-align: center;
        gap: var(--space-xs);
    }

    .cta-final__guarantee {
        flex-direction: column;
        text-align: center;
    }

    .hero__content {
        transform: translateY(0);
        padding-top: var(--space-3xl);
    }

    .hero__scroll-hint {
        display: none;
    }

    .solution .section-title {
        text-align: center;
    }

    section {
        padding: var(--space-3xl) 0;
    }

    .container {
        padding: 0 var(--space-md);
    }
}

@media (max-width: 480px) {
    .badge {
        font-size: 0.75rem;
    }

    .btn--lg {
        font-size: 1rem;
        padding: 0.9rem 1.75rem;
    }

    .module-card {
        padding: var(--space-lg);
    }

    .testimonial {
        padding: var(--space-lg);
    }

    .trust-bar__inner {
        flex-direction: column;
        gap: var(--space-md);
    }

    .trust-bar__item:not(:last-child)::after {
        display: none;
    }

    .back-to-top {
        bottom: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
    }

    .social-proof {
        left: 12px;
        right: 12px;
        font-size: 0.8rem;
    }

    .compare__col {
        padding: var(--space-lg);
    }
}

/* --- Global Polish: consistent transitions --- */
.module-card,
.testimonial,
.callout,
.faq__item,
.value-stack__item,
.stat {
    transition-property: transform, box-shadow, border-color, background, opacity;
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Legal Pages --- */
.page-header {
    background: var(--surface);
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--border);
}

.page-header__inner {
    display: flex;
    align-items: center;
}

.legal-page {
    padding: var(--space-3xl) 0;
    min-height: 60vh;
}

.legal-page__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--ink);
    margin-bottom: var(--space-2xl);
}

.legal-page__section {
    margin-bottom: var(--space-xl);
}

.legal-page__section h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--ink);
    margin-bottom: var(--space-md);
}

.legal-page__section p {
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

.legal-page__section a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-page__updated {
    margin-top: var(--space-2xl);
    font-size: 0.85rem;
    color: var(--ink-muted);
}

/* --- Social Proof Toast --- */
.social-proof {
    position: fixed;
    bottom: 80px;
    left: 24px;
    background: var(--white);
    color: var(--ink-soft);
    font-size: 0.85rem;
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(13, 107, 88, 0.08);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    z-index: 998;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--border);
    font-weight: 500;
}

.social-proof svg {
    filter: drop-shadow(0 2px 4px rgba(13, 107, 88, 0.2));
}

.social-proof.visible {
    transform: translateY(0);
    opacity: 1;
}

/* --- Focus Visible (Accessibility) --- */
.btn:focus-visible,
.faq__question:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: var(--radius);
}

.btn:focus-visible {
    box-shadow: 0 0 0 4px rgba(13, 107, 88, 0.15);
}

/* --- Selection --- */
::selection {
    background: rgba(13, 107, 88, 0.2);
    color: var(--ink);
}

/* --- Smooth font rendering --- */
h1, h2, h3 {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* --- Print styles --- */
@media print {
    .sticky-header,
    .social-proof,
    .hero__bg-gradient,
    .hero__scroll-hint,
    .back-to-top,
    .cursor-glow,
    .progress-bar,
    .urgency-banner {
        display: none !important;
    }

    section {
        padding: 1.5rem 0;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }

    .module-card,
    .testimonial,
    .callout {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }

    body {
        color: #000;
    }
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
        filter: none;
    }

    html {
        scroll-behavior: auto;
    }

    .hero__content .hero__title,
    .hero__content .hero__subtitle,
    .hero__content .hero__cta,
    .hero__content .hero__badges {
        animation: none;
        opacity: 1;
    }

    .book-mockup,
    .hero__bg-gradient,
    .hero__bg-gradient--2,
    .urgency-banner,
    .progress-bar,
    .module-card::before,
    .cta-final__guarantee,
    .hero__scroll-hint,
    .social-proof-bar__text {
        animation: none !important;
    }

    .btn--gold::after {
        display: none;
    }
}

/* --- Cursor Glow --- */
.cursor-glow {
    position: fixed;
    top: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    background: radial-gradient(circle, rgba(13, 107, 88, 0.06) 0%, transparent 70%);
    transition: opacity 0.3s ease;
    opacity: 0;
    will-change: transform;
}

.cursor-glow.active {
    opacity: 1;
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 14px rgba(13, 107, 88, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(13, 107, 88, 0.4);
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--ink);
    color: var(--white);
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-md) var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.cookie-banner__text {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--ink-muted);
    flex: 1;
    min-width: 240px;
}

.cookie-banner__text a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner__actions {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .cookie-banner__inner {
        flex-direction: column;
        text-align: center;
        padding: var(--space-lg);
    }
}
