/* ─── Reset & base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a1a1a;
    background: #faf7f2;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }

/* ─── Variables ─────────────────────────────────────────────── */
:root {
    --ink:        #1a1a1a;
    --ink-light:  #4a4040;
    --ink-muted:  #7a7060;
    --bg:         #faf7f2;
    --bg-warm:    #f2ede4;
    --bg-card:    #ffffff;
    --bg-dark:    #111110;
    --accent:     #e8601c;
    --accent-alt: #f4854a;
    --gold:       #c9a84c;
    --success:    #16a34a;
    --border:     #e8e0d4;
    --radius-sm:  6px;
    --radius:     12px;
    --radius-lg:  20px;
    --radius-xl:  32px;
    --shadow-sm:  0 1px 3px rgba(0,0,0,.06);
    --shadow-md:  0 4px 16px rgba(0,0,0,.08);
    --shadow-lg:  0 12px 40px rgba(0,0,0,.12);
    --trans:      all .22s ease;
    --max-w:      1100px;
}

/* ─── Utils ─────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.eyebrow {
    font-size: .75rem; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase; color: var(--accent);
    margin-bottom: 12px; display: block;
}
.section { padding: 96px 0; }
.section-alt { background: var(--bg-warm); }
.section-dark { background: var(--bg-dark); color: #f0ede8; }
.section-dark h2, .section-dark h3 { color: #f0ede8; }
.section-dark .eyebrow { color: var(--accent-alt); }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

h1 { font-family: 'Inter', sans-serif; font-size: clamp(2rem, 5vw, 3.25rem); line-height: 1.08; font-weight: 900; color: var(--ink); letter-spacing: -.02em; }
h2 { font-family: 'Inter', sans-serif; font-size: clamp(1.6rem, 3.5vw, 2.4rem); line-height: 1.15; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
h3 { font-family: 'Inter', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--ink); }
p { line-height: 1.7; }

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 4px;
    font-size: .9375rem; font-weight: 700; cursor: pointer;
    transition: var(--trans); border: 2px solid transparent;
    white-space: nowrap; letter-spacing: -.01em;
}
.btn-primary {
    background: var(--accent); color: #fff;
    box-shadow: 0 4px 20px rgba(232,96,28,.3);
}
.btn-primary:hover {
    background: #c94f10; transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(232,96,28,.4);
}
.btn-outline {
    background: transparent; color: var(--ink);
    border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.2); }
.btn-ghost:hover { background: rgba(255,255,255,.22); }
.btn-lg { padding: 18px 40px; font-size: 1rem; }

/* ─── Nav ───────────────────────────────────────────────────── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 16px 0;
    transition: background .3s, box-shadow .3s, padding .3s;
}
.nav.scrolled {
    background: rgba(250,250,249,.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}
.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px;
}
.nav-logo {
    display: flex; align-items: center; flex-shrink: 0;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
    font-size: .875rem; font-weight: 500; color: rgba(255,255,255,0.9);
    transition: color .2s;
}
.nav-links a:hover { color: #fff; }
.nav.scrolled .nav-links a { color: var(--ink-light); }
.nav.scrolled .nav-links a:hover { color: var(--accent); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
@media (max-width: 768px) {
    .nav-links { display: none; }
}

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    padding: 120px 0 80px;
    background: url('/public/IA-Mastery-Hero-BG.jpg') center center / cover no-repeat;
    position: relative; overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(20,10,0,.72) 0%, rgba(20,10,0,.45) 55%, rgba(20,10,0,.15) 100%);
}
.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
    align-items: center; position: relative;
}
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}
.hero-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(232,96,28,.15); border: 1px solid rgba(232,96,28,.3);
    border-radius: 50px; padding: 6px 14px;
    font-size: .8rem; font-weight: 600; color: var(--accent-alt);
    margin-bottom: 24px;
}
.hero-pill-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent); animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(.7); }
}
.hero h1 { color: #ffffff; margin-bottom: 20px; text-shadow: 0 2px 16px rgba(0,0,0,.4); }
.hero h1 em {
    font-style: normal; color: #ffb87a;
    border-bottom: 3px solid var(--accent);
}
.hero-sub { font-size: 1rem; color: #ede8e0; margin-bottom: 16px; font-weight: 500; text-shadow: 0 1px 8px rgba(0,0,0,.3); }
.hero-body { color: #ffffff; margin-bottom: 32px; line-height: 1.8; text-shadow: 0 1px 6px rgba(0,0,0,.35); }
.hero-band {
    display: flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius); padding: 14px 20px;
    margin-bottom: 32px;
}
.hero-band-icon {
    width: 36px; height: 36px; background: var(--accent);
    border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.hero-band-text { font-size: .85rem; color: #c8c4bc; line-height: 1.5; }
.hero-band-text strong { color: #f0ede8; display: block; }
.hero-bullets {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px;
    margin-bottom: 36px;
}
.hero-bullet {
    display: flex; align-items: center; gap: 8px;
    color: #e8e4dc; font-size: .85rem; font-weight: 500;
}
.hero-bullet-icon {
    width: 20px; height: 20px; background: rgba(22,163,74,.2);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.hero-bullet-icon svg { width: 11px; height: 11px; color: #4ade80; }
@media (max-width: 600px) { .hero-bullets { grid-template-columns: 1fr; } }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.hero-micro { font-size: .8rem; color: #a09890; text-shadow: 0 1px 4px rgba(0,0,0,.3); }
.hero-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 32px; position: relative;
    box-shadow: 0 24px 64px rgba(0,0,0,.5);
}
.hero-card-title {
    font-size: 1.375rem; font-weight: 800; color: var(--ink);
    line-height: 1.2; margin-bottom: 4px;
}
.hero-card-title span { color: var(--accent); }
.hero-card-subtitle {
    font-size: .8125rem; color: #6a6560; margin-bottom: 20px;
}
.hero-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
@media (max-width: 500px) { .hero-form-row { grid-template-columns: 1fr; } }
.hero-form-group { display: flex; flex-direction: column; gap: 5px; }
.hero-form-group label {
    font-size: .75rem; font-weight: 600; color: #4a4040;
    text-transform: uppercase; letter-spacing: .05em;
}
.hero-form-group input,
.hero-form-group select {
    padding: 10px 13px; border: 1.5px solid #e0d8d0;
    border-radius: var(--radius-sm); font-size: .9rem; font-family: inherit;
    color: var(--ink); background: #faf8f5; transition: border-color .2s;
    width: 100%; outline: none;
}
.hero-form-group input:focus,
.hero-form-group select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(232,96,28,.1);
}
.hero-form-submit {
    width: 100%; padding: 14px; background: var(--accent); color: #fff;
    border: none; border-radius: var(--radius-sm); font-family: inherit;
    font-size: .9375rem; font-weight: 700; cursor: pointer;
    transition: background .2s, transform .15s; margin-top: 4px;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.hero-form-submit:hover { background: #c94f10; transform: translateY(-1px); }
.hero-form-trust {
    display: flex; align-items: center; gap: 10px; margin-top: 14px;
}
.hero-form-trust-avatars {
    display: flex; flex-shrink: 0;
}
.hero-form-trust-avatars img {
    width: 28px; height: 28px; border-radius: 50%;
    border: 2px solid #fff; margin-left: -8px; object-fit: cover;
}
.hero-form-trust-avatars img:first-child { margin-left: 0; }
.hero-form-trust-text { font-size: .75rem; color: #7a7060; line-height: 1.4; }
.hero-form-trust-text strong { color: var(--ink); display: block; }
.hero-form-stars { color: var(--accent); font-size: .75rem; }
.cohort-badge {
    font-size: .7rem; font-weight: 600; padding: 3px 8px;
    border-radius: 50px; white-space: nowrap;
}
.cohort-badge.open { background: rgba(22,163,74,.2); color: #4ade80; }
.cohort-badge.soon { background: rgba(244,162,97,.15); color: #f4a261; }
.cohort-badge.future { background: rgba(255,255,255,.1); color: #9a968e; }
.hero-places { font-size: .8rem; color: #7a7670; margin-top: 16px; }
.hero-places strong { color: var(--accent-alt); }

/* ─── Cities ────────────────────────────────────────────────── */
.cities-strip {
    background: var(--ink); padding: 16px 0; overflow: hidden;
}
.cities-inner {
    display: flex; gap: 40px; align-items: center;
    animation: scroll-x 20s linear infinite; width: max-content;
}
@keyframes scroll-x {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.city-item {
    display: flex; align-items: center; gap: 8px;
    font-size: .8rem; font-weight: 500; color: #9a968e;
    white-space: nowrap;
}
.city-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* ─── Personas ───────────────────────────────────────────────── */
.personas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
@media (max-width: 900px) { .personas-grid { grid-template-columns: 1fr; } }
.persona-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 28px; transition: var(--trans);
}
.persona-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.persona-name { font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.persona-role { font-size: .8rem; color: var(--ink-muted); margin-bottom: 20px; }
.persona-before, .persona-after {
    padding: 12px 16px; border-radius: var(--radius-sm);
    font-size: .875rem; line-height: 1.6;
}
.persona-before {
    background: #fef2f2; color: #b91c1c; margin-bottom: 12px;
    border-left: 3px solid #ef4444;
}
.persona-after {
    background: #f0fdf4; color: #166534;
    border-left: 3px solid #22c55e;
}
.persona-label {
    font-size: .7rem; font-weight: 700; letter-spacing: .08em;
    text-transform: uppercase; margin-bottom: 4px; display: block;
}
.persona-before .persona-label { color: #dc2626; }
.persona-after .persona-label { color: #16a34a; }
.hero-quote {
    font-size: 1.2rem; font-style: italic; color: var(--ink-light);
    border-left: 4px solid var(--accent); padding-left: 20px;
    margin-bottom: 48px;
}

/* ─── Pour qui ───────────────────────────────────────────────── */
.profiles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
@media (max-width: 900px) { .profiles-grid { grid-template-columns: 1fr; } }
.profile-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 32px; text-align: center;
    transition: var(--trans);
}
.profile-card:hover { box-shadow: var(--shadow-md); border-color: var(--accent); }
.profile-icon {
    width: 56px; height: 56px; background: rgba(232,96,28,.1);
    border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.profile-icon svg { width: 28px; height: 28px; color: var(--accent); }
.profile-card h3 { margin-bottom: 12px; }
.profile-card p { font-size: .875rem; color: var(--ink-light); line-height: 1.7; }

/* ─── Ce qu'on vend ──────────────────────────────────────────── */
.value-quote {
    background: var(--ink); color: #f0ede8; border-radius: var(--radius-xl);
    padding: 40px 48px; font-size: 1.1rem; font-style: italic;
    line-height: 1.7; position: relative; margin-bottom: 48px;
}
.value-quote::before {
    content: '"'; position: absolute; top: -20px; left: 40px;
    font-size: 5rem; color: var(--accent); font-style: normal;
    font-family: 'Syne', sans-serif; line-height: 1;
}
.actif-band {
    background: linear-gradient(135deg, #e8601c 0%, #f4a261 100%);
    color: #fff; border-radius: var(--radius-lg); padding: 24px 32px;
    font-size: 1rem; font-weight: 600; margin-bottom: 48px;
    text-align: center; line-height: 1.5;
}
.actif-band strong { font-size: 1.1rem; text-decoration: underline; text-underline-offset: 4px; }
.components-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 768px) { .components-grid { grid-template-columns: 1fr; } }
.component-card {
    display: flex; gap: 20px; padding: 24px;
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
    transition: var(--trans);
}
.component-card:hover { box-shadow: var(--shadow-md); border-color: var(--accent); }
.component-num {
    font-family: 'Inter', sans-serif; font-size: 2rem; font-weight: 900;
    color: var(--accent); opacity: .3; flex-shrink: 0; line-height: 1;
}
.component-body h3 { font-size: 1rem; margin-bottom: 6px; }
.component-body p { font-size: .875rem; color: var(--ink-light); line-height: 1.6; }

/* ─── Étapes horizontales ────────────────────────────────────── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0; margin-top: 48px; position: relative;
}
.steps-grid.steps-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
    .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
    .steps-grid.steps-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .steps-grid, .steps-grid.steps-4 { grid-template-columns: 1fr; }
}
.step-row {
    display: flex; flex-direction: column; align-items: flex-start;
    padding: 28px 24px; position: relative;
    background: var(--bg-card); border: 1px solid var(--border);
    margin-right: -1px; margin-bottom: -1px;
    transition: var(--trans);
}
.step-row:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.step-row:last-child { border-radius: 0 var(--radius) var(--radius) 0; margin-right: 0; }
.step-row:hover { background: var(--bg-warm); z-index: 1; border-color: var(--accent); }
.step-num {
    width: 44px; height: 44px; border-radius: 4px;
    background: var(--accent); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 900;
    flex-shrink: 0; margin-bottom: 16px;
    transition: var(--trans);
}
.step-row:hover .step-num { background: var(--ink); }
.step-connector {
    display: none;
}
.step-body h3 { margin-bottom: 6px; font-size: 1rem; }
.step-body p { font-size: .8125rem; color: var(--ink-light); line-height: 1.55; }

/* ─── Livrables ──────────────────────────────────────────────── */
.deliverables-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
@media (max-width: 900px) { .deliverables-grid { grid-template-columns: 1fr; } }
.deliverable-card {
    padding: 24px; background: var(--bg-card);
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    transition: var(--trans);
}
.deliverable-card:hover { box-shadow: var(--shadow-md); }
.deliverable-icon {
    width: 44px; height: 44px; border-radius: var(--radius-sm);
    background: rgba(232,96,28,.1); display: flex; align-items: center;
    justify-content: center; margin-bottom: 16px;
}
.deliverable-icon svg { width: 22px; height: 22px; color: var(--accent); }
.deliverable-card h3 { font-size: .9375rem; margin-bottom: 8px; }
.deliverable-card p { font-size: .8125rem; color: var(--ink-light); line-height: 1.6; }

/* ─── Timeline ───────────────────────────────────────────────── */
.timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 48px; position: relative; }
.timeline::before {
    content: ''; position: absolute; top: 28px; left: 28px; right: 28px;
    height: 2px; background: rgba(255,255,255,.1);
}
@media (max-width: 900px) {
    .timeline { grid-template-columns: 1fr 1fr; }
    .timeline::before { display: none; }
}
@media (max-width: 480px) { .timeline { grid-template-columns: 1fr; } }
.tl-item { position: relative; }
.tl-dot {
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(255,255,255,.07); border: 2px solid rgba(255,255,255,.15);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px; position: relative; z-index: 1;
}
.tl-dot svg { width: 22px; height: 22px; color: var(--accent-alt); }
.tl-tag {
    font-size: .75rem; font-weight: 700; color: var(--accent-alt);
    letter-spacing: .05em; margin-bottom: 6px; display: block;
}
.tl-title { font-size: .9375rem; font-weight: 700; color: #f0ede8; margin-bottom: 8px; }
.tl-desc { font-size: .8rem; color: #9a968e; line-height: 1.6; }
.tl-item.pro-only .tl-dot { background: rgba(201,168,76,.1); border-color: rgba(201,168,76,.3); }
.tl-item.pro-only .tl-dot svg { color: var(--gold); }
.tl-item.pro-only .tl-tag { color: var(--gold); }

/* ─── Sécurité stats ─────────────────────────────────────────── */
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
@media (max-width: 768px) { .stats-row { grid-template-columns: 1fr; } }
.stat-card {
    text-align: center; padding: 32px 24px;
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg);
}
.stat-number {
    font-family: 'Inter', sans-serif; font-size: 2.5rem; font-weight: 900;
    color: var(--accent-alt); margin-bottom: 8px; letter-spacing: -.03em;
}
.stat-label { font-size: .875rem; color: #9a968e; line-height: 1.6; }
.security-rule {
    display: flex; align-items: center; gap: 12px;
    background: rgba(22,163,74,.1); border: 1px solid rgba(22,163,74,.2);
    border-radius: var(--radius); padding: 16px 20px; margin-top: 32px;
    font-size: .9rem; color: #86efac;
}
.security-rule svg { width: 20px; height: 20px; color: #4ade80; flex-shrink: 0; }

/* ─── Comparatif ─────────────────────────────────────────────── */
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; margin-top: 48px; }
.compare-table th, .compare-table td {
    padding: 16px 20px; text-align: left; font-size: .875rem;
    border-bottom: 1px solid var(--border);
}
.compare-table th:first-child { border-radius: var(--radius) 0 0 0; }
.compare-table th:last-child { border-radius: 0 var(--radius) 0 0; }
.compare-table tr:hover td { background: #f8f7f4; }
.compare-table .highlight td {
    background: rgba(232,96,28,.04); font-weight: 600;
}
.compare-table .highlight td:first-child { border-left: 3px solid var(--accent); }
.compare-tag {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: .75rem; font-weight: 600; padding: 3px 8px;
    border-radius: 50px; background: rgba(232,96,28,.12); color: var(--accent);
}

/* ─── Tarifs ─────────────────────────────────────────────────── */
.pricing-toggle {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    margin-bottom: 40px;
}
.toggle-label { font-size: .875rem; font-weight: 500; color: var(--ink-light); cursor: pointer; }
.toggle-switch {
    width: 44px; height: 24px; background: var(--border);
    border-radius: 50px; position: relative; cursor: pointer;
    transition: background .2s;
}
.toggle-switch.active { background: var(--accent); }
.toggle-knob {
    width: 18px; height: 18px; background: #fff; border-radius: 50%;
    position: absolute; top: 3px; left: 3px; transition: transform .2s;
}
.toggle-switch.active .toggle-knob { transform: translateX(20px); }
/* ─── Pricing grid ───────────────────────────────────────────── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    align-items: stretch;
}
@media (max-width: 900px) {
    .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
}
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 36px 28px;
    position: relative;
    transition: var(--trans);
    display: flex; flex-direction: column;
    margin-right: -1px;
}
.pricing-card:first-child { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.pricing-card:last-child  { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; margin-right: 0; }
@media (max-width: 900px) {
    .pricing-card, .pricing-card:first-child, .pricing-card:last-child {
        border-radius: var(--radius-lg); margin-right: 0;
    }
}
.pricing-card:hover { z-index: 1; box-shadow: var(--shadow-lg); }
.pricing-card.recommended {
    background: var(--ink);
    border: 2px solid var(--ink);
    border-radius: var(--radius-lg);
    z-index: 2;
    margin-top: -16px;
    margin-bottom: -16px;
    padding-top: 52px;
    padding-bottom: 52px;
    box-shadow: var(--shadow-lg);
}
@media (max-width: 900px) {
    .pricing-card.recommended { margin-top: 0; margin-bottom: 0; padding-top: 36px; padding-bottom: 36px; }
}
.pricing-card.recommended .pricing-name { color: rgba(255,255,255,.6); }
.pricing-card.recommended .pricing-price { color: #fff; }
.pricing-card.recommended .pricing-price span { color: rgba(255,255,255,.5); }
.pricing-card.recommended .pricing-duration { color: rgba(255,255,255,.5); }
.pricing-card.recommended .pricing-normal-ref { color: rgba(255,255,255,.4); }
.pricing-card.recommended .pricing-monthly { color: rgba(255,255,255,.6); }
.pricing-card.recommended .btn-outline { border-color: #fff; color: #fff; }
.pricing-card.recommended .btn-outline:hover { background: #fff; color: var(--ink); }
.pricing-card.recommended .btn-primary { background: var(--accent); }
.recommended-badge {
    position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: #fff;
    font-size: .7rem; font-weight: 700; padding: 4px 16px; border-radius: 4px;
    white-space: nowrap; letter-spacing: .06em; text-transform: uppercase;
}
.pricing-name {
    font-weight: 700; font-size: .9375rem; color: var(--ink-muted);
    margin-bottom: 20px; text-transform: uppercase; letter-spacing: .08em;
}
.pricing-price {
    font-family: 'Inter', sans-serif; font-size: 2.75rem; font-weight: 900;
    color: var(--ink); line-height: 1; margin-bottom: 4px; letter-spacing: -.04em;
}
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--ink-muted); }
.pricing-monthly {
    display: none; font-size: .9rem; color: var(--ink-muted); margin-bottom: 6px;
}
.pricing-duration { font-size: .8rem; color: var(--ink-muted); margin-bottom: 28px; }
.pricing-meta {
    display: inline-block; margin-top: 10px; margin-bottom: 4px;
    font-size: .8rem; font-weight: 600; letter-spacing: .05em;
    color: var(--accent); background: rgba(232,96,28,.08);
    border: 1px solid rgba(232,96,28,.2); border-radius: 20px;
    padding: 3px 10px;
}
.pricing-card.recommended .pricing-meta {
    color: #f4a261; background: rgba(244,162,97,.15); border-color: rgba(244,162,97,.3);
}
.pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex: 1; }
.pricing-feature {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: .875rem; color: var(--ink-light); line-height: 1.5;
}
.pricing-card.recommended .pricing-feature { color: rgba(255,255,255,.75); }
.pricing-feature-check { color: var(--success); flex-shrink: 0; margin-top: 2px; }
.pricing-feature-check svg { width: 16px; height: 16px; }
.pricing-card.recommended .pricing-feature-check { color: #4ade80; }
.booking-band {
    background: linear-gradient(135deg, rgba(232,96,28,.08), rgba(244,162,97,.08));
    border: 1px solid rgba(232,96,28,.2); border-radius: var(--radius);
    padding: 16px 20px; margin-bottom: 32px; font-size: .875rem;
    color: var(--ink-light); line-height: 1.6;
}
.booking-band strong { color: var(--accent); }
/* Early Bird band */
.early-bird-band {
    background: linear-gradient(135deg, #fff8f0, #fff3e0);
    border: 1.5px solid rgba(232,96,28,.35);
    border-radius: var(--radius-lg);
    padding: 18px 24px; margin-bottom: 32px;
}
.eb-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.eb-left { display: flex; align-items: center; gap: 14px; }
.eb-flame { font-size: 1.5rem; }
.eb-title { font-weight: 700; color: var(--accent); font-size: .95rem; }
.eb-sub { font-size: .8rem; color: var(--ink-muted); margin-top: 2px; }
.eb-countdown {
    display: flex; gap: 8px; align-items: center;
    font-family: 'Inter', sans-serif; font-weight: 700;
}
.eb-unit { text-align: center; }
.eb-val {
    background: var(--accent); color: #fff;
    border-radius: 8px; padding: 4px 10px;
    font-size: 1.1rem; min-width: 36px; display: block; line-height: 1.4;
}
.eb-lbl { font-size: .65rem; color: var(--ink-muted); font-weight: 400; margin-top: 2px; text-align: center; display: block; }
.eb-sep { font-size: 1.2rem; color: var(--accent); align-self: flex-start; margin-top: 4px; }
.eb-badge {
    display: inline-block; background: rgba(232,96,28,.12); color: var(--accent);
    font-size: .65rem; font-weight: 700; letter-spacing: .06em;
    text-transform: uppercase; border-radius: 4px; padding: 2px 6px;
    vertical-align: middle; margin-left: 4px;
}
.pricing-normal-ref {
    font-size: .8rem; color: var(--ink-muted); margin-bottom: 4px;
    text-decoration: line-through; opacity: .7;
}
.upgrade-note {
    text-align: center; font-size: .8125rem; color: var(--ink-muted);
    margin-top: 24px; padding: 16px;
    background: #f8f7f4; border-radius: var(--radius);
}

/* ─── Pricing v2 ────────────────────────────────────────────── */
.pricing-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
    margin-bottom: 56px;
}
@media (max-width: 900px) {
    .pricing-grid-v2 { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}

.pcard {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    display: flex; flex-direction: column; gap: 8px;
    transition: box-shadow .2s, transform .2s;
    position: relative;
}
.pcard:hover {
    box-shadow: 0 8px 32px rgba(20,10,0,.10);
    transform: translateY(-3px);
}
.pcard-featured {
    border-color: var(--accent);
    box-shadow: 0 4px 24px rgba(232,96,28,.14);
}
.pcard-featured:hover {
    box-shadow: 0 12px 40px rgba(232,96,28,.22);
}
.pcard-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: #fff;
    font-size: .75rem; font-weight: 700; letter-spacing: .05em;
    padding: 4px 16px; border-radius: 20px; white-space: nowrap;
}
.pcard-name {
    font-size: 1.125rem; font-weight: 700; color: var(--ink);
    text-transform: uppercase; letter-spacing: .06em; margin-top: 8px;
}
.pcard-target {
    font-size: .8125rem; color: var(--ink-muted); line-height: 1.5;
    min-height: 48px;
}
.pcard-price {
    font-size: 2.25rem; font-weight: 800; color: var(--ink);
    line-height: 1.1; margin-top: 12px;
}
.pcard-price span { font-size: 1rem; font-weight: 600; color: var(--ink-muted); }
.pcard-eb-label {
    font-size: .72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .07em; color: var(--accent);
    background: rgba(232,96,28,.08); border-radius: 4px;
    display: inline-block; padding: 2px 8px; width: fit-content;
}
.pcard-normal {
    font-size: .8125rem; color: var(--ink-muted);
}
.pcard-normal s { opacity: .6; }
.pcard-meta {
    display: flex; gap: 6px; align-items: center; flex-wrap: wrap;
    font-size: .8125rem; color: var(--ink); font-weight: 500; margin-top: 4px;
}
.pcard-meta span:nth-child(even) { color: var(--ink-muted); }
.pcard-install {
    font-size: .8rem; color: var(--ink-muted); font-style: italic;
}
.pcard-cta { width: 100%; justify-content: center; margin-top: 20px; }

/* ─── Compare table ─────────────────────────────────────────── */
.compare-wrap {
    margin-bottom: 40px;
}
.compare-title {
    font-size: 1.125rem; font-weight: 700; color: var(--ink);
    text-align: center; margin-bottom: 24px; text-transform: uppercase;
    letter-spacing: .06em;
}
.compare-table-scroll { overflow-x: auto; }
.compare-table {
    width: 100%; border-collapse: collapse;
    font-size: .875rem;
}
.compare-table thead tr {
    border-bottom: 2px solid var(--border);
}
.compare-table th {
    padding: 12px 16px; text-align: center;
    font-weight: 700; color: var(--ink);
    font-size: .8125rem; text-transform: uppercase; letter-spacing: .05em;
}
.compare-table th.compare-feature-col { text-align: left; }
.compare-table th.compare-featured-col {
    color: var(--accent);
    background: rgba(232,96,28,.05);
}
.compare-table td {
    padding: 13px 16px; border-bottom: 1px solid var(--border);
    color: var(--ink); vertical-align: middle;
}
.compare-table td.compare-featured-col {
    background: rgba(232,96,28,.04);
}
.compare-table td:not(.compare-feature-col) { text-align: center; }
.compare-table small { color: var(--ink-muted); display: block; font-size: .76rem; margin-top: 2px; }
.compare-table tr:hover td { background: #faf9f7; }
.compare-table tr:hover td.compare-featured-col { background: rgba(232,96,28,.07); }
.compare-total-row td {
    background: var(--neutral-50, #f8f7f4) !important;
    font-size: .9375rem; border-top: 2px solid var(--border);
}
.check { color: #16a34a; font-weight: 700; font-size: 1rem; }
.check-x2 { font-size: .875rem; }
.dash { color: var(--ink-muted); font-size: 1.1rem; }

/* ─── Pricing footer ────────────────────────────────────────── */
.pricing-footer {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    padding-top: 8px;
}
.pricing-footer-modes {
    display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
    font-size: .8125rem; font-weight: 600; color: var(--ink);
}
.pricing-footer-modes span:nth-child(even) { color: var(--ink-muted); }
.pricing-footer-mentions {
    font-size: .8rem; color: var(--ink-muted); text-align: center;
}

/* ─── FAQ ───────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0; margin-top: 48px; }
.faq-item {
    border-bottom: 1px solid var(--border); overflow: hidden;
}
.faq-question {
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 0; cursor: pointer; gap: 16px;
    font-weight: 600; color: var(--ink); font-size: .9375rem;
    user-select: none; transition: color .2s;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
    width: 24px; height: 24px; border-radius: 50%; background: var(--border);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    transition: var(--trans);
}
.faq-icon svg { width: 14px; height: 14px; transition: transform .2s; }
.faq-item.open .faq-icon { background: var(--accent); }
.faq-item.open .faq-icon svg { transform: rotate(45deg); color: #fff; }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    font-size: .875rem; color: var(--ink-light); line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }

/* ─── Closing ────────────────────────────────────────────────── */
.closing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 48px 0; }
@media (max-width: 768px) { .closing-grid { grid-template-columns: 1fr; } }
.closing-card {
    padding: 32px; border-radius: var(--radius-lg); font-size: .875rem; line-height: 1.8;
}
.closing-card.without {
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
}
.closing-card.with {
    background: rgba(22,163,74,.08); border: 1px solid rgba(22,163,74,.25);
}
.closing-card h3 { font-size: 1rem; margin-bottom: 16px; }
.closing-card.without h3 { color: #f87171; }
.closing-card.with h3 { color: #4ade80; }
.closing-card ul { display: flex; flex-direction: column; gap: 8px; }
.closing-card.without ul li { color: #9a968e; padding-left: 16px; position: relative; }
.closing-card.without ul li::before { content: '×'; position: absolute; left: 0; color: #f87171; }
.closing-card.with ul li { color: #86efac; padding-left: 16px; position: relative; }
.closing-card.with ul li::before { content: '✓'; position: absolute; left: 0; color: #4ade80; }

/* ─── Formulaire ─────────────────────────────────────────────── */
.form-section { background: var(--bg-warm); }
.form-wrapper {
    max-width: 720px; margin: 0 auto;
    background: var(--bg-card); border-radius: var(--radius-xl);
    padding: 48px; box-shadow: var(--shadow-lg);
}
@media (max-width: 600px) { .form-wrapper { padding: 28px 20px; } }
.form-header { text-align: center; margin-bottom: 40px; }
.form-header h2 { margin-bottom: 12px; }
.form-header p { color: var(--ink-light); font-size: .9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label {
    font-size: .8125rem; font-weight: 600; color: var(--ink-light);
    text-transform: uppercase; letter-spacing: .06em;
}
.form-group label span { color: var(--accent); }
.form-control {
    padding: 12px 16px; border: 1.5px solid var(--border);
    border-radius: var(--radius); font-size: .9375rem; font-family: inherit;
    color: var(--ink); background: var(--bg); transition: var(--trans);
    width: 100%;
}
.form-control:focus {
    outline: none; border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(232,96,28,.1);
}
textarea.form-control { resize: vertical; min-height: 100px; }
.form-check {
    display: flex; align-items: flex-start; gap: 10px;
    margin-bottom: 14px; cursor: pointer;
}
.form-check input[type="checkbox"] {
    width: 18px; height: 18px; accent-color: var(--accent);
    flex-shrink: 0; cursor: pointer; margin-top: 2px;
}
.form-check span { font-size: .875rem; color: var(--ink-light); line-height: 1.5; }
.form-submit { text-align: center; margin-top: 32px; }
.form-submit .btn { min-width: 300px; justify-content: center; }
.form-note { font-size: .8rem; color: var(--ink-muted); margin-top: 12px; }
.alert {
    padding: 14px 18px; border-radius: var(--radius); margin-bottom: 24px;
    font-size: .875rem; display: flex; align-items: flex-start; gap: 10px;
}
.alert-error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.alert-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.alert svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.cohort-info-band {
    background: rgba(232,96,28,.06); border: 1px solid rgba(232,96,28,.2);
    border-radius: var(--radius); padding: 12px 16px;
    font-size: .8125rem; color: var(--ink-light); margin-bottom: 24px;
}
.cohort-info-band strong { color: var(--accent); }

/* ─── Formule cards ──────────────────────────────────────────── */
.formule-cards {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px; margin-top: 4px;
}
.formule-card {
    border: 2px solid var(--border); border-radius: var(--radius-lg);
    padding: 18px 14px; cursor: pointer; position: relative;
    transition: var(--trans); text-align: center; background: var(--bg);
}
.formule-card:hover { border-color: var(--accent); background: rgba(232,96,28,.03); }
.formule-card.selected {
    border-color: var(--accent); background: rgba(232,96,28,.05);
    box-shadow: 0 0 0 3px rgba(232,96,28,.12);
}
.formule-badge {
    position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: #fff; font-size: .65rem; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase; border-radius: 20px;
    padding: 3px 10px; white-space: nowrap;
}
.formule-name { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1rem; color: var(--ink); margin-bottom: 4px; letter-spacing: -.01em; }
.formule-desc { font-size: .75rem; color: var(--ink-muted); margin-bottom: 10px; }
.formule-price { font-family: 'Inter', sans-serif; font-weight: 900; font-size: 1.15rem; color: var(--accent); letter-spacing: -.02em; }
.formule-price span { font-size: .75rem; font-weight: 500; color: var(--ink-muted); }
.formule-normal-ref { font-size: .7rem; color: var(--ink-muted); text-decoration: line-through; margin-top: 2px; opacity: .7; }
.formule-type-badge {
    display: inline-block; font-size: .6rem; font-weight: 800; letter-spacing: .07em;
    text-transform: uppercase; padding: 2px 8px; border-radius: 20px; margin-bottom: 6px;
    background: rgba(30,90,200,.12); color: #1e5ac8;
}
.formule-group { border-color: rgba(30,90,200,.3); }
.formule-group.selected { border-color: #1e5ac8; background: rgba(30,90,200,.06); }
.formule-group:hover { border-color: rgba(30,90,200,.5); }

/* ─── Payment mode options ───────────────────────────────────── */
.payment-modes { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.payment-mode-option {
    border: 2px solid var(--border); border-radius: var(--radius);
    padding: 14px 18px; cursor: pointer; display: flex;
    align-items: center; gap: 12px; transition: var(--trans); position: relative;
}
.payment-mode-option:hover { border-color: var(--accent); background: rgba(232,96,28,.03); }
.payment-mode-option.selected { border-color: var(--accent); background: rgba(232,96,28,.05); }
.pm-label { font-weight: 600; font-size: .9rem; color: var(--ink); min-width: 110px; }
.pm-desc { font-size: .8125rem; color: var(--ink-muted); flex: 1; }
.pm-eb-tag {
    background: rgba(232,96,28,.12); color: var(--accent);
    font-size: .65rem; font-weight: 700; letter-spacing: .06em;
    text-transform: uppercase; border-radius: 4px; padding: 2px 8px; white-space: nowrap;
}

/* ─── Schedule preview ───────────────────────────────────────── */
.schedule-box {
    background: linear-gradient(135deg, #f8f7f4, #fff);
    border: 1.5px solid var(--border); border-radius: var(--radius-lg);
    padding: 20px 24px;
}
.schedule-title { font-weight: 700; font-size: .875rem; color: var(--ink); margin-bottom: 14px; text-transform: uppercase; letter-spacing: .06em; }
.schedule-line {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 0; border-bottom: 1px solid var(--border); font-size: .875rem;
}
.schedule-line:last-child { border-bottom: none; }
.schedule-line-num { font-weight: 600; color: var(--ink-muted); min-width: 24px; }
.schedule-line-label { color: var(--ink-light); flex: 1; padding: 0 12px; }
.schedule-line-amount { font-family: 'Syne', sans-serif; font-weight: 700; color: var(--accent); }
.schedule-total {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 12px; margin-top: 4px; font-size: .875rem;
}
.schedule-total-label { font-weight: 700; color: var(--ink); }
.schedule-total-amount { font-family: 'Inter', sans-serif; font-weight: 900; font-size: 1.1rem; color: var(--ink); letter-spacing: -.02em; }

/* ─── CTA Final ──────────────────────────────────────────────── */
.cta-final {
    background: linear-gradient(160deg, #0f0f1a, #1a1a2e);
    padding: 96px 0; text-align: center;
}
.cta-final h2 { color: #f0ede8; margin-bottom: 16px; }
.cta-final p { color: #9a968e; margin-bottom: 40px; font-size: 1rem; }
.cta-final-micro { font-size: .8rem; color: #5a5650; margin-top: 16px; }

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
    background: #0a0a12; color: #5a5650;
    padding: 40px 0; text-align: center;
}
.footer-logo {
    font-family: 'Inter', sans-serif; font-weight: 900;
    font-size: 1.2rem; color: #f0ede8; margin-bottom: 8px; letter-spacing: -.02em;
}
.footer-logo span { color: var(--accent); }
.footer-tagline { font-size: .8rem; margin-bottom: 20px; }
.footer-cities {
    display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
    font-size: .75rem; margin-bottom: 20px; color: #7a7670;
}
.footer-copy { font-size: .75rem; }

/* ─── Misc ───────────────────────────────────────────────────── */
.divider { width: 40px; height: 3px; background: var(--accent); border-radius: 2px; margin: 16px 0 32px; }
.section-intro { max-width: 640px; color: var(--ink-light); margin-bottom: 0; }

/* ─── Cohort Calendar ────────────────────────────────────────── */
.cohort-cal-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: #d8d4cc;
    border: 1px solid #d8d4cc;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 40px;
}
.cohort-cal-month {
    background: #f5f3ef;
    padding: 14px 10px;
}
.cohort-cal-month-label {
    font-size: .68rem;
    font-weight: 700;
    color: #fff;
    background: var(--ink);
    text-align: center;
    padding: 6px 4px;
    letter-spacing: .07em;
    border-radius: 4px;
    margin-bottom: 10px;
}
.cohort-cal-dow {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 4px;
}
.cohort-cal-dow span {
    font-size: .58rem;
    font-weight: 600;
    color: #9a968e;
    text-align: center;
    padding: 2px 0;
}
.cohort-cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}
.cohort-cal-days span {
    font-size: .62rem;
    color: var(--ink);
    text-align: center;
    padding: 3px 1px;
    line-height: 1.4;
}
.cohort-cal-days span.cohort-cal-hl {
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1px auto;
    font-size: .58rem;
}
.cohort-events-title {
    font-size: .72rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .09em;
    margin-bottom: 20px;
}
.cohort-events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 48px;
}
.cohort-events-col { display: flex; flex-direction: column; }
.cohort-event-row {
    display: grid;
    grid-template-columns: 96px 3px 1fr;
    gap: 0 14px;
    align-items: stretch;
    padding: 13px 0;
    border-bottom: 1px solid #e8e4dc;
}
.cohort-event-row:last-child { border-bottom: none; }
.cohort-event-date {
    font-size: .8rem;
    font-weight: 700;
    color: var(--accent);
    padding-top: 2px;
    white-space: nowrap;
}
.cohort-event-bar {
    width: 3px;
    background: var(--accent);
    border-radius: 2px;
    min-height: 34px;
}
.cohort-event-title {
    font-size: .875rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 3px;
}
.cohort-event-desc {
    font-size: .75rem;
    color: #9a968e;
    font-style: italic;
}
.cohort-cal-footer {
    margin-top: 24px;
    font-size: .68rem;
    color: #b0aca4;
    font-style: italic;
}
@media (max-width: 1100px) {
    .cohort-cal-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .cohort-cal-grid { grid-template-columns: repeat(2, 1fr); }
    .cohort-events-grid { grid-template-columns: 1fr; }
    .cohort-event-row { grid-template-columns: 80px 3px 1fr; }
}
@media (max-width: 480px) {
    .cohort-cal-grid { grid-template-columns: 1fr; }
}
    

/* ===== bloc 2 ===== */

.nav-prompt-btn {
    background: none;
    border: 1.5px solid rgba(255,255,255,0.35);
    border-radius: 20px;
    color: rgba(255,255,255,0.9);
    font-family: inherit;
    font-size: .875rem;
    font-weight: 500;
    padding: 6px 14px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    white-space: nowrap;
}
.nav-prompt-btn:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.6);
}
.nav.scrolled .nav-prompt-btn {
    border-color: rgba(27,42,74,0.35);
    color: var(--ink);
}
.nav.scrolled .nav-prompt-btn:hover {
    background: var(--neutral-100, #f3f4f6);
    border-color: rgba(27,42,74,0.6);
}
.pc-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(17,24,39,0.55);
    backdrop-filter: blur(3px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.pc-overlay.open { display: flex; }
.pc-modal {
    background: #fff;
    border-radius: 14px;
    width: 100%;
    max-width: 660px;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 60px rgba(0,0,0,0.18), 0 8px 20px rgba(0,0,0,0.1);
    animation: pcSlideIn 0.22s ease;
}
@keyframes pcSlideIn {
    from { opacity: 0; transform: translateY(12px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.pc-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 24px 24px 16px;
    border-bottom: 1px solid #f3f4f6;
    flex-shrink: 0;
}
.pc-modal-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}
.pc-modal-subtitle {
    font-size: 0.8125rem;
    color: #6b7280;
}
.pc-close {
    background: #f3f4f6;
    border: none;
    border-radius: 8px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #6b7280;
    transition: background 0.15s, color 0.15s;
    flex-shrink: 0;
}
.pc-close:hover { background: #e5e7eb; color: #1f2937; }
.pc-tip {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 16px 24px 0;
    padding: 12px 14px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    font-size: 0.8125rem;
    color: #1d4ed8;
    line-height: 1.5;
    flex-shrink: 0;
}
.pc-tip svg { flex-shrink: 0; margin-top: 1px; color: #3b82f6; }
.pc-code-wrap {
    position: relative;
    margin: 16px 24px 24px;
    background: #1a1f2e;
    border-radius: 10px;
    overflow: hidden;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}
.pc-code {
    padding: 52px 20px 20px;
    font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', Consolas, monospace;
    font-size: 0.8125rem;
    line-height: 1.7;
    color: #e2e8f0;
    white-space: pre-wrap;
    word-break: break-word;
    overflow-y: auto;
    flex: 1;
    margin: 0;
}
.pc-copy-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 6px;
    color: #e2e8f0;
    font-family: inherit;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
    z-index: 1;
}
.pc-copy-btn:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.3); }
.pc-copy-btn.copied { background: rgba(16,185,129,0.25); border-color: rgba(16,185,129,0.5); color: #6ee7b7; }
