/* ============================================================
   FONTS — Gelica
   ============================================================ */
@font-face { font-family: 'Gelica'; src: url('fonts/Gelica-Regular.otf') format('opentype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Gelica'; src: url('fonts/Gelica-Medium.otf') format('opentype'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Gelica'; src: url('fonts/Gelica-Semi-Bold.otf') format('opentype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Gelica'; src: url('fonts/Gelica-Bold.otf') format('opentype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Gelica'; src: url('fonts/Gelica-Italic.otf') format('opentype'); font-weight: 400; font-style: italic; font-display: swap; }

/* ============================================================
   RESET & TOKENS
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --cream: #F5F0E8;
    --cream-dark: #EDE7D9;
    --ink: #1A1714;
    --ink-soft: #3D3830;
    --ink-muted: #7A7268;
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-dark: #A8893D;
    --white: #FFFFFF;
    --green: #2E7D32;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 999px;
    --shadow-soft: 0 2px 24px rgba(26, 23, 20, 0.07);
    --shadow-card: 0 4px 40px rgba(26, 23, 20, 0.10);
    --shadow-float: 0 8px 64px rgba(26, 23, 20, 0.15);
    --font-serif: 'Gelica', Georgia, serif;
    --font-sans: 'Inter', system-ui, sans-serif;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: var(--font-sans);
    background: var(--cream);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--gold);
}

strong { font-weight: 600; }

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 24px;
    transition: var(--transition);
}

.nav-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(245, 240, 232, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-pill);
    padding: 12px 12px 12px 28px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(26, 23, 20, 0.06);
}

.nav-logo {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.02em;
}
.nav-logo span { color: var(--gold); }

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

.nav-links a {
    text-decoration: none;
    color: var(--ink-soft);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--ink);
    background: rgba(26, 23, 20, 0.05);
}

.nav-links .nav-cta {
    background: var(--ink);
    color: var(--cream);
    padding: 10px 24px;
    font-weight: 600;
}

.nav-links .nav-cta:hover {
    background: var(--gold);
    color: var(--ink);
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-burger span {
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    padding: 160px 0 100px;
    text-align: center;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: var(--radius-pill);
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink-soft);
    margin-bottom: 32px;
}

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

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 24px;
}

.hero-title em {
    font-size: inherit;
    font-weight: 700;
}

.hero-line-1, .hero-line-2 {
    display: block;
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--ink-soft);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--ink-muted);
    font-weight: 500;
}

.stat-sep {
    width: 1px;
    background: rgba(26, 23, 20, 0.12);
    align-self: stretch;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-pill);
    padding: 14px 32px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--ink);
    color: var(--cream);
}

.btn-primary:hover {
    background: var(--gold);
    color: var(--ink);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201, 168, 76, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 2px solid rgba(26, 23, 20, 0.15);
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.btn-full { width: 100%; }

/* ============================================================
   SECTIONS — Base
   ============================================================ */
.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--ink);
    color: var(--cream);
}

.section-dark em { color: var(--gold-light); }

.section-dark .section-tag {
    border-color: rgba(201, 168, 76, 0.4);
    color: var(--gold-light);
}

.section-alt {
    background: var(--cream-dark);
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1.5px solid var(--gold);
    border-radius: var(--radius-pill);
    padding: 6px 18px;
    margin-bottom: 24px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.section-sub {
    font-size: 1.1rem;
    color: var(--ink-soft);
    max-width: 640px;
    line-height: 1.7;
}

.section:not(.section-dark) .container {
    text-align: center;
}

.section:not(.section-dark) .section-sub {
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   PAIN / PROBLEM GRID
   ============================================================ */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 56px;
    text-align: left;
}

.pain-card {
    background: rgba(245, 240, 232, 0.06);
    border: 1px solid rgba(245, 240, 232, 0.1);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: var(--transition);
}

.pain-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    background: rgba(245, 240, 232, 0.08);
}

.pain-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 16px;
}

.pain-card h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--cream);
}

.pain-card p {
    font-size: 0.95rem;
    color: rgba(245, 240, 232, 0.7);
    line-height: 1.6;
}

/* ============================================================
   SOLUTION FLOW
   ============================================================ */
.solution-flow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    margin-top: 56px;
    flex-wrap: wrap;
}

.flow-step {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    position: relative;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(26, 23, 20, 0.06);
}

.flow-num {
    position: absolute;
    top: -14px;
    left: 24px;
    width: 28px;
    height: 28px;
    background: var(--gold);
    color: var(--ink);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.flow-step h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.flow-step p {
    font-size: 0.9rem;
    color: var(--ink-muted);
    line-height: 1.6;
}

.flow-arrow {
    font-size: 2rem;
    color: var(--gold);
    align-self: center;
    font-weight: 700;
    margin-top: 20px;
}

.solution-result {
    margin-top: 48px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.05));
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: var(--radius-md);
    padding: 24px 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.solution-result p {
    font-size: 1.05rem;
    color: var(--ink-soft);
    line-height: 1.7;
}

/* ============================================================
   STEPS GRID (Comment ça marche)
   ============================================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
    text-align: left;
}

.step-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(26, 23, 20, 0.06);
    transition: var(--transition);
    position: relative;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.step-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(201, 168, 76, 0.2);
    line-height: 1;
    margin-bottom: 16px;
}

.step-card h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--ink);
}

.step-card p {
    font-size: 0.9rem;
    color: var(--ink-muted);
    line-height: 1.6;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
    text-align: left;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(26, 23, 20, 0.06);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--ink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-serif);
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--ink-muted);
}

/* ============================================================
   RESULTS BANNER
   ============================================================ */
.results-banner {
    display: flex;
    justify-content: center;
    gap: 64px;
    margin-top: 56px;
    padding: 40px;
    background: var(--ink);
    border-radius: var(--radius-lg);
    flex-wrap: wrap;
}

.result-stat { text-align: center; }

.result-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
}

.result-label {
    font-size: 0.9rem;
    color: rgba(245, 240, 232, 0.7);
    font-weight: 500;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-card {
    max-width: 560px;
    margin: 56px auto 0;
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-float);
    text-align: left;
}

.pricing-header {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    padding: 40px;
    text-align: center;
}

.pricing-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(26, 23, 20, 0.7);
    margin-bottom: 12px;
}

.pricing-amount {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
}

.pricing-period {
    display: block;
    font-size: 0.9rem;
    color: rgba(26, 23, 20, 0.6);
    margin-top: 4px;
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    padding: 32px 40px;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--ink-soft);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid rgba(26, 23, 20, 0.06);
}

.pricing-features li:last-child { border-bottom: none; }

.check {
    color: var(--green);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pricing-card .btn {
    margin: 0 40px 24px;
    width: calc(100% - 80px);
}

.pricing-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--ink-muted);
    padding: 0 40px 32px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
    max-width: 720px;
    margin: 48px auto 0;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid rgba(26, 23, 20, 0.1);
}

.faq-item summary {
    padding: 20px 0;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--ink);
    transition: color 0.2s;
}

.faq-item summary:hover { color: var(--gold); }

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold);
    transition: transform 0.3s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item p {
    padding: 0 0 20px;
    font-size: 0.95rem;
    color: var(--ink-muted);
    line-height: 1.7;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.section-cta {
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
    padding: 100px 0 120px;
    text-align: center;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 16px;
}

.cta-sub {
    font-size: 1.1rem;
    color: var(--ink-soft);
    max-width: 540px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-form-wrapper {
    max-width: 520px;
    margin: 0 auto;
}

.cta-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(26, 23, 20, 0.06);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.cta-form input {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    border: 1.5px solid rgba(26, 23, 20, 0.12);
    border-radius: var(--radius-sm);
    background: var(--cream);
    color: var(--ink);
    transition: var(--transition);
    outline: none;
}

.cta-form input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.cta-form input::placeholder {
    color: var(--ink-muted);
}

.cta-form .btn {
    margin-top: 8px;
}

.form-note {
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--ink-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--ink);
    color: rgba(245, 240, 232, 0.7);
    padding: 48px 0 32px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(245, 240, 232, 0.1);
    flex-wrap: wrap;
    gap: 24px;
}

.footer .nav-logo {
    color: var(--cream);
    font-size: 1.15rem;
}

.footer-brand p {
    font-size: 0.85rem;
    margin-top: 8px;
    color: rgba(245, 240, 232, 0.5);
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(245, 240, 232, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(245, 240, 232, 0.35);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .pain-grid,
    .steps-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .solution-flow {
        flex-direction: column;
        align-items: center;
    }

    .flow-arrow {
        transform: rotate(90deg);
        margin: 0;
    }

    .flow-step {
        max-width: 100%;
        width: 100%;
    }

    .results-banner {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-burger { display: flex; }

    body.nav-mobile-open .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: 16px;
        right: 16px;
        background: var(--cream);
        border-radius: var(--radius-md);
        padding: 24px;
        box-shadow: var(--shadow-float);
        z-index: 999;
        gap: 4px;
    }

    body.nav-mobile-open .nav-links a {
        padding: 14px 20px;
        font-size: 1rem;
        border-radius: var(--radius-sm);
    }

    body.nav-mobile-open .nav-links .nav-cta {
        margin-top: 8px;
        text-align: center;
    }

    body.nav-mobile-open .nav-burger span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    body.nav-mobile-open .nav-burger span:nth-child(2) { opacity: 0; }
    body.nav-mobile-open .nav-burger span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero { padding: 130px 0 60px; }
    .hero-title { font-size: 2rem; }
    .hero-sub { font-size: 1rem; }
    .hero-stats { gap: 24px; }
    .stat-num { font-size: 1.5rem; }

    .section { padding: 64px 0; }

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

    .form-row { grid-template-columns: 1fr; }

    .pricing-card .btn {
        margin: 0 24px 16px;
        width: calc(100% - 48px);
    }
    .pricing-features { padding: 24px; }
    .pricing-header { padding: 32px 24px; }
    .pricing-amount { font-size: 2.5rem; }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.7rem; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { width: 100%; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .stat-sep { display: none; }
}
