/* ============================================================
   FONTS — Gelica (full licence)
   ============================================================ */
@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-Extra-Light.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gelica';
    src: url('fonts/Gelica-Light.otf') format('opentype');
    font-weight: 300;
    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-Black.otf') format('opentype');
    font-weight: 900;
    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;
    --accent: #2B2B2B;
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --lavender: #D1C2F4;
    --pink: #EDC2E7;
    --yellow: #FFDC61;
    --white: #FFFFFF;
    --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;
}

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

em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

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

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

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

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

.nav-logo span {
    color: var(--gold);
}

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

.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--ink-soft);
    text-decoration: none;
    transition: color var(--transition);
}

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

.nav-cta {
    background: var(--ink) !important;
    color: var(--cream) !important;
    padding: 9px 20px !important;
    border-radius: var(--radius-pill) !important;
    font-size: 0.85rem !important;
    transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta:hover {
    background: var(--gold) !important;
    color: var(--ink) !important;
    transform: translateY(-1px);
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 13px 28px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    white-space: nowrap;
}

.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.25);
}

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

.btn-ghost:hover {
    background: var(--ink);
    color: var(--cream);
    border-color: var(--ink);
    transform: translateY(-2px);
}

.btn-ghost-white {
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-ghost-white:hover {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1rem;
}

/* ============================================================
   SECTION SHARED STYLES
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: var(--radius-pill);
    padding: 5px 14px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 18px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--ink-muted);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 30% 40%, rgba(209, 194, 244, 0.22) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 70% 60%, rgba(255, 220, 97, 0.14) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 50% 20%, rgba(237, 194, 231, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: var(--radius-pill);
    padding: 7px 16px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--ink-soft);
    margin-bottom: 32px;
    backdrop-filter: blur(8px);
}

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

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.1);
    }
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.6rem, 6vw, 4.5rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: var(--ink);
    margin-bottom: 24px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.hero-title em {
    color: var(--gold);
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--ink-muted);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.75;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    gap: 0;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 48px;
}

.stat-num {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--ink-muted);
    margin-top: 2px;
}

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

.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    color: var(--ink-muted);
    animation: bounce 2s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ============================================================
   PAIN BAND
   ============================================================ */
.pain-band {
    background: var(--ink);
    padding: 20px 0;
    overflow: hidden;
}

.pain-items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 0;
}

.pain-item {
    font-size: 0.85rem;
    color: rgba(245, 240, 232, 0.75);
    font-weight: 500;
    padding: 0 24px;
}

.pain-sep {
    color: rgba(245, 240, 232, 0.25);
    font-size: 1.2rem;
}

/* ============================================================
   QUIZ SECTION
   ============================================================ */
.quiz-section {
    padding: 100px 0;
    background: var(--cream);
}

.quiz-wrapper {
    max-width: 680px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-float);
    padding: 48px;
    border: 1px solid rgba(26, 23, 20, 0.06);
    min-height: 340px;
}

.quiz-step {
    display: none;
    animation: slideIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.quiz-step.active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

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

.quiz-progress {
    width: 100%;
    height: 3px;
    background: rgba(26, 23, 20, 0.08);
    border-radius: var(--radius-pill);
    margin-bottom: 36px;
    overflow: hidden;
}

.quiz-progress span {
    display: block;
    height: 100%;
    background: var(--gold);
    border-radius: var(--radius-pill);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.quiz-question {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 8px;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.quiz-sub-hint {
    font-size: 0.88rem;
    color: var(--ink-muted);
    margin-bottom: 28px;
}

.quiz-choices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 28px;
}

.quiz-choices-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.quiz-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 22px 16px;
    border: 1.5px solid rgba(26, 23, 20, 0.1);
    border-radius: var(--radius-md);
    background: var(--cream);
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-sans);
    text-align: center;
}

.quiz-card:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.12);
}

.quiz-card.selected {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
}

.card-icon {
    font-size: 1.6rem;
}

.card-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ink-soft);
    line-height: 1.3;
}

.quiz-input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
}

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

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

.quiz-next-btn {
    align-self: flex-end;
}

.quiz-done {
    text-align: center;
    padding: 20px 0;
}

.quiz-done-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.quiz-done h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--ink);
    letter-spacing: -0.02em;
}

.quiz-done p {
    font-size: 0.95rem;
    color: var(--ink-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

/* ============================================================
   ELIGIBILITY SECTION
   ============================================================ */
.eligibility-section {
    padding: 80px 0 100px;
    background: var(--cream-dark);
    border-top: 1px solid rgba(26, 23, 20, 0.06);
}

.eligibility-tag {
    color: var(--ink);
    border-color: rgba(26, 23, 20, 0.18);
}

.eligibility-wrapper {
    background: var(--cream);
    border: 1px solid rgba(26, 23, 20, 0.08);
}

.eligibility-result {
    padding: 20px;
}

.eli-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: var(--radius-pill);
    padding: 7px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #16A34A;
    margin-bottom: 24px;
}

.eli-note {
    margin-top: 16px;
    font-size: 0.83rem;
    color: var(--ink-muted);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
    padding: 100px 0;
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.service-card-large {
    grid-column: span 1;
}

.service-card {
    background: var(--white);
    border: 1px solid rgba(26, 23, 20, 0.07);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--lavender), var(--gold));
    opacity: 0;
    transition: opacity var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
    border-color: rgba(201, 168, 76, 0.15);
}

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

.service-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    color: var(--ink);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--ink-muted);
    line-height: 1.65;
    margin-bottom: 18px;
}

.service-price {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 16px;
}

.service-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--ink-muted);
    cursor: pointer;
    user-select: none;
    transition: color var(--transition);
}

.service-toggle:hover {
    color: var(--ink);
}

.service-toggle svg {
    transition: transform var(--transition);
}

.service-toggle.open svg {
    transform: rotate(180deg);
}

.service-detail {
    display: none;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(26, 23, 20, 0.08);
}

.service-detail.open {
    display: block;
}

.service-detail ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-detail li {
    font-size: 0.85rem;
    color: var(--ink-soft);
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.service-detail li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.8rem;
}

/* ============================================================
   PACK / BEST SELLER
   ============================================================ */
.pack-section {
    padding: 80px 0;
    background: var(--cream-dark);
}

.pack-card {
    background: var(--ink);
    border-radius: var(--radius-lg);
    padding: 52px;
    position: relative;
    overflow: hidden;
}

.pack-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.15), transparent 70%);
    pointer-events: none;
}

.pack-badge {
    display: inline-flex;
    background: var(--gold);
    color: var(--ink);
    border-radius: var(--radius-pill);
    padding: 6px 16px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
}

.pack-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.pack-left {
    flex: 1;
}

.pack-left h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--cream);
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    line-height: 1.2;
}

.pack-left p {
    font-size: 0.95rem;
    color: rgba(245, 240, 232, 0.65);
    margin-bottom: 24px;
    line-height: 1.7;
}

.pack-includes {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.pack-includes li {
    font-size: 0.9rem;
    color: rgba(245, 240, 232, 0.8);
    font-weight: 500;
}

.pack-payment {
    font-size: 0.82rem;
    color: rgba(245, 240, 232, 0.5);
    margin-bottom: 24px;
}

.pack-right {
    flex-shrink: 0;
}

.pack-price-box {
    background: rgba(245, 240, 232, 0.06);
    border: 1px solid rgba(245, 240, 232, 0.12);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    text-align: center;
    min-width: 240px;
}

.pack-price-old {
    font-size: 1.1rem;
    color: rgba(245, 240, 232, 0.35);
    text-decoration: line-through;
    margin-bottom: 4px;
    font-family: var(--font-serif);
}

.pack-price-new {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: -0.04em;
    margin-bottom: 8px;
}

.pack-price-save {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(34, 197, 94, 0.85);
    margin-bottom: 20px;
}

.pack-promo {
    font-size: 0.78rem;
    color: rgba(245, 240, 232, 0.45);
    line-height: 1.5;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-section {
    padding: 100px 0;
    background: var(--cream);
}

.process-timeline {
    display: flex;
    align-items: flex-start;
    gap: 0;
    max-width: 960px;
    margin: 0 auto 48px;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
}

.process-num {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(26, 23, 20, 0.08);
    line-height: 1;
    margin-bottom: 12px;
    transition: color var(--transition);
}

.process-step:hover .process-num {
    color: var(--gold);
}

.process-body h4 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.process-body p {
    font-size: 0.87rem;
    color: var(--ink-muted);
    line-height: 1.65;
    margin-bottom: 12px;
}

.process-tag {
    display: inline-block;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: var(--radius-pill);
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
}

.process-connector {
    flex-shrink: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, rgba(201, 168, 76, 0.3), rgba(201, 168, 76, 0.1));
    margin-top: 38px;
}

.process-guarantee {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(26, 23, 20, 0.07);
    border-radius: var(--radius-lg);
    padding: 20px 32px;
    font-size: 0.9rem;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: 12px;
}

.guarantee-icon {
    font-size: 1.3rem;
}

/* ============================================================
   SOCIAL PROOF
   ============================================================ */
.social-section {
    padding: 100px 0;
    background: var(--cream-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid rgba(26, 23, 20, 0.06);
    transition: all var(--transition);
}

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

.testi-stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.testimonial-card p {
    font-size: 0.92rem;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
    font-family: var(--font-serif);
}

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

.testi-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--lavender), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--ink);
    flex-shrink: 0;
}

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

.testi-author strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ink);
}

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

/* ============================================================
   OFFRES TABLE
   ============================================================ */
.offres-section {
    padding: 100px 0;
    background: var(--cream);
}

.offres-table {
    max-width: 800px;
    margin: 0 auto 20px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(26, 23, 20, 0.08);
    background: var(--white);
}

.offre-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
    padding: 18px 28px;
    align-items: center;
    border-bottom: 1px solid rgba(26, 23, 20, 0.05);
    font-size: 0.9rem;
    transition: background var(--transition);
}

.offre-row:last-child {
    border-bottom: none;
}

.offre-row:not(.offre-row-header):hover {
    background: rgba(201, 168, 76, 0.04);
}

.offre-row-header {
    background: var(--ink);
    color: rgba(245, 240, 232, 0.7);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.offre-price {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--gold);
    text-align: center;
    white-space: nowrap;
}

.offre-row-pack {
    background: rgba(201, 168, 76, 0.06);
    font-weight: 600;
    color: var(--ink);
}

.offre-price-pack s {
    color: var(--ink-muted);
    font-weight: 400;
    font-size: 0.85em;
    margin-left: 6px;
}

.offres-payment {
    text-align: center;
    font-size: 0.87rem;
    color: var(--ink-muted);
    margin-top: 20px;
}

/* ============================================================
   ELIGIBILITY STANDALONE
   ============================================================ */
.eligibility-standalone {
    padding: 100px 0;
    background: var(--cream-dark);
}

.eli-standalone-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.eli-standalone-left h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 18px;
    line-height: 1.18;
}

.eli-standalone-left p {
    font-size: 0.95rem;
    color: var(--ink-muted);
    line-height: 1.75;
    margin-bottom: 28px;
}

.eli-criteria {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.eli-criteria li {
    font-size: 0.9rem;
    color: var(--ink-soft);
    font-weight: 500;
}

.eli-quiz-mini {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 42px;
    border: 1px solid rgba(26, 23, 20, 0.07);
    box-shadow: var(--shadow-card);
    text-align: center;
}

.eli-mini-inner .quiz-question {
    font-size: 1.15rem;
    margin-bottom: 28px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
    padding: 100px 0;
    background: var(--cream);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid rgba(26, 23, 20, 0.07);
    border-radius: var(--radius-md);
    padding: 22px 24px;
    cursor: pointer;
    transition: all var(--transition);
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(201, 168, 76, 0.25);
    box-shadow: var(--shadow-soft);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.faq-q span {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--ink);
    line-height: 1.4;
}

.faq-q svg {
    flex-shrink: 0;
    color: var(--ink-muted);
    transition: transform var(--transition);
}

.faq-item.open .faq-q svg {
    transform: rotate(180deg);
}

.faq-a {
    display: none;
    font-size: 0.9rem;
    color: var(--ink-muted);
    line-height: 1.7;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(26, 23, 20, 0.06);
}

.faq-item.open .faq-a {
    display: block;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
    padding: 120px 0;
    background: var(--ink);
    position: relative;
    overflow: hidden;
}

.final-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.final-cta-inner h2 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--cream);
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin: 20px 0 20px;
}

.final-cta-inner h2 em {
    color: var(--gold);
}

.final-cta-inner p {
    font-size: 1.05rem;
    color: rgba(245, 240, 232, 0.6);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.final-cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.final-note {
    font-size: 0.83rem;
    color: rgba(245, 240, 232, 0.4);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #141210;
    padding: 64px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer .nav-logo {
    display: block;
    margin-bottom: 14px;
    color: var(--cream) !important;
}

.footer-brand p {
    font-size: 0.87rem;
    color: rgba(245, 240, 232, 0.45);
    line-height: 1.7;
}

.footer-links {
    display: contents;
}

.footer-col h5 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(245, 240, 232, 0.4);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 0.87rem;
    color: rgba(245, 240, 232, 0.6);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(245, 240, 232, 0.06);
    padding: 20px 24px;
    text-align: center;
}

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

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

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

    .process-timeline {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }

    .process-connector {
        display: none;
    }

    .process-step {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 20px;
    }

    .process-num {
        font-size: 1.8rem;
        min-width: 48px;
    }

    .pack-content {
        flex-direction: column;
        gap: 32px;
    }

    .pack-right {
        width: 100%;
    }

    .pack-price-box {
        min-width: 0;
    }

    .eli-standalone-inner {
        grid-template-columns: 1fr;
    }

    .offre-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .offre-row-header {
        display: none;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }
}

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

    .nav-burger {
        display: flex;
    }

    .hero-title {
        font-size: 2.2rem;
    }

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

    .quiz-choices {
        grid-template-columns: 1fr;
    }

    .quiz-choices-3 {
        grid-template-columns: 1fr 1fr;
    }

    .quiz-wrapper {
        padding: 28px 20px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-sep {
        display: none;
    }

    .pain-items {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .pain-sep {
        display: none;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-ctas .btn {
        text-align: center;
        justify-content: center;
    }

    .pack-card {
        padding: 32px 24px;
    }

    .final-cta-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .final-cta-btns .btn {
        text-align: center;
        justify-content: center;
    }
}

/* Mobile nav overlay */
.nav-mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(245, 240, 232, 0.97);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 999;
}

.nav-mobile-open .nav-links a {
    font-size: 1.4rem;
}

/* Scroll-triggered animations */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(26, 23, 20, 0.12);
    border-radius: var(--radius-pill);
    padding: 4px;
    backdrop-filter: blur(8px);
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border: none;
    border-radius: var(--radius-pill);
    background: transparent;
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ink-muted);
    transition: all var(--transition);
    font-family: var(--font-sans);
}

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

.lang-btn:not(.active):hover {
    background: rgba(26, 23, 20, 0.06);
    color: var(--ink);
}

.lang-flag {
    font-size: 1rem;
}

/* ============================================================
   HERO VISUAL PANEL
   ============================================================ */
.hero-visual-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    text-align: left;
}

.hero-visual-row .hero-stats {
    justify-content: flex-start;
}

.hero-right {
    position: relative;
}

.hero-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-float);
}

.hero-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}

.hero-float-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink);
    border: 1px solid rgba(26, 23, 20, 0.07);
    white-space: nowrap;
}

.hero-float-card-1 {
    bottom: -20px;
    left: -28px;
}

.hero-float-card-2 {
    top: -16px;
    right: -20px;
}

.float-card-icon {
    font-size: 1.2rem;
}

.float-card-label {
    font-size: 0.75rem;
    color: var(--ink-muted);
    font-weight: 400;
}

/* ============================================================
   VISUAL SECTION: MOCKUP SHOWCASE
   ============================================================ */
.visual-showcase {
    padding: 80px 0;
    background: var(--ink);
    overflow: hidden;
}

.visual-showcase-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.visual-showcase-left h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 600;
    color: var(--cream);
    letter-spacing: -0.03em;
    line-height: 1.18;
    margin-bottom: 16px;
}

.visual-showcase-left h2 em {
    color: var(--gold);
}

.visual-showcase-left p {
    font-size: 0.95rem;
    color: rgba(245, 240, 232, 0.6);
    line-height: 1.75;
    margin-bottom: 32px;
}

.visual-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}

.visual-checklist li {
    font-size: 0.9rem;
    color: rgba(245, 240, 232, 0.75);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.visual-checklist li::before {
    content: '✦';
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 1px;
}

.visual-showcase-right {
    position: relative;
}

.mockup-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
    display: block;
}

/* ============================================================
   VISUAL GROWTH SECTION
   ============================================================ */
.growth-visual-section {
    padding: 100px 0;
    background: var(--cream-dark);
    overflow: hidden;
}

.growth-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.growth-right h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 16px;
    line-height: 1.18;
}

.growth-right h2 em {
    color: var(--gold);
}

.growth-right p {
    font-size: 0.95rem;
    color: var(--ink-muted);
    line-height: 1.75;
}

.growth-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    display: block;
}

/* ============================================================
   RESPONSIVE — new sections
   ============================================================ */
@media (max-width: 900px) {
    .hero-visual-row {
        grid-template-columns: 1fr;
    }

    .hero-visual-row .hero-ctas {
        justify-content: center;
    }

    .hero-visual-row .hero-stats {
        justify-content: center;
    }

    .hero-right {
        display: none;
    }

    .visual-showcase-inner {
        grid-template-columns: 1fr;
    }

    .growth-inner {
        grid-template-columns: 1fr;
    }

    .growth-inner img {
        order: -1;
    }
}

@media (max-width: 640px) {
    .hero-visual-row {
        text-align: center;
    }

    .lang-switcher {
        display: none;
    }

    /* only visible in nav on desktop */
}