/* Polices auto-hébergées — supprime deux origines tierces bloquantes
   (fonts.googleapis.com + fonts.gstatic.com) du chemin critique.
   Bricolage Grotesque et Outfit sont sous licence SIL Open Font License :
   l'auto-hébergement est autorisé. */
@font-face {
    font-family: 'Bricolage Grotesque';
    src: url('/fonts/bricolage-grotesque.woff2') format('woff2');
    font-weight: 400 800;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Outfit';
    src: url('/fonts/outfit.woff2') format('woff2');
    font-weight: 300 600;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --ink:    #0B0B14;
    --snow:   #FAFAF8;
    --cream:  #F3EFE9;
    --rose:   #F0166D;
    --plum:   #6D28D9;
    --jade:   #0F9D85;
    --amber:  #D97706;
    --border: rgba(0,0,0,0.09);
    --muted:  #6B6B7B;
    --rainbow: linear-gradient(90deg, #F0166D, #9333EA, #2563EB, #0F9D85, #D97706, #F0166D);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    color: var(--ink);
    background: var(--snow);
    overflow-x: hidden;
    line-height: 1.65;
}

h1, h2, h3, h4 {
    font-family: 'Bricolage Grotesque', sans-serif;
}

/* ── RAINBOW PROGRESS BAR ── */
.pb {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    background: var(--rainbow);
    background-size: 300%;
    animation: rainbow-move 4s linear infinite;
    width: 0%;
    z-index: 1000;
    transition: width 0.1s;
}

@keyframes rainbow-move {
    0%   { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 3px; left: 0; right: 0;
    z-index: 999;
    height: 68px;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(11,11,20,0.94);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.logo {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: white;
    letter-spacing: -0.3px;
}

.logo em { color: var(--rose); font-style: normal; }

.nav-right { display: flex; align-items: center; gap: 24px; }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--rose);
    color: white;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.1px;
    transition: opacity 0.2s, transform 0.2s;
    white-space: nowrap;
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background: var(--ink);
    display: flex;
    align-items: center;
    padding: 128px 48px 80px;
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -15%; right: -8%;
    width: 640px; height: 640px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240,22,109,0.14) 0%, rgba(109,40,217,0.07) 50%, transparent 70%);
    pointer-events: none;
}

.hero-glow-b {
    position: absolute;
    bottom: -18%; left: -4%;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15,157,133,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    max-width: 1080px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.65);
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 44px;
}

.tag-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--jade);
    animation: dot-blink 2s infinite;
}

@keyframes dot-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}

.hero h1 {
    font-size: clamp(3rem, 6.5vw, 5.6rem);
    font-weight: 800;
    color: white;
    line-height: 1.04;
    letter-spacing: -2.5px;
    margin-bottom: 32px;
    max-width: 840px;
}

.hero h1 .accent { color: var(--rose); }

.hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: rgba(255,255,255,0.5);
    max-width: 500px;
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 48px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 72px;
}

.btn-rose {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--rose);
    color: white;
    text-decoration: none;
    padding: 15px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.93rem;
    transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 28px rgba(240,22,109,0.32);
    white-space: nowrap;
}
.btn-rose:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 14px 36px rgba(240,22,109,0.42); }

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.93rem;
    transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn-outline-dark:hover { border-color: rgba(255,255,255,0.45); color: white; transform: translateY(-2px); }

.hero-metrics {
    display: flex;
    gap: 52px;
    flex-wrap: wrap;
}

.metric { display: flex; flex-direction: column; gap: 4px; }

.metric-val {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 2.1rem;
    font-weight: 800;
    color: white;
    letter-spacing: -1.5px;
    line-height: 1;
}

.metric-val.rose  { color: var(--rose); }
.metric-val.jade  { color: var(--jade); }

.metric-lbl {
    font-size: 0.74rem;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 500;
}

/* ── SHARED UTILITIES ── */
.s { padding: 96px 48px; }
.wrap { max-width: 1080px; margin: 0 auto; }

.label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.73rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--muted);
    margin-bottom: 18px;
}

.label::before {
    content: '';
    display: block;
    width: 22px; height: 2px;
    background: var(--rose);
    border-radius: 2px;
    flex-shrink: 0;
}

.h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.2px;
    margin-bottom: 16px;
}

.lead {
    font-size: 1.03rem;
    color: var(--muted);
    line-height: 1.75;
    max-width: 580px;
    font-weight: 400;
}

/* ── PAIN SECTION ── */
.pain { background: var(--snow); }

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
    margin-top: 48px;
}

.pain-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px;
    transition: box-shadow 0.28s, transform 0.28s, border-color 0.28s;
}

.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 48px rgba(0,0,0,0.08);
    border-color: transparent;
}

.ic {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.ic.rose   { background: rgba(240,22,109,0.08);  color: var(--rose); }
.ic.plum   { background: rgba(109,40,217,0.08);  color: var(--plum); }
.ic.jade   { background: rgba(15,157,133,0.08);  color: var(--jade); }
.ic.amber  { background: rgba(217,119,6,0.08);   color: var(--amber); }

.ic.lg { width: 52px; height: 52px; border-radius: 14px; margin-bottom: 22px; }

.pain-card h3 { font-weight: 700; font-size: 1rem; margin-bottom: 9px; letter-spacing: -0.2px; }
.pain-card p  { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* ── SOLUTION SECTION ── */
.sol { background: var(--ink); }

.sol .label { color: rgba(255,255,255,0.38); }
.sol .label::before { background: var(--jade); }
.sol .h2 { color: white; }
.sol .lead { color: rgba(255,255,255,0.48); }

.sol-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 52px;
    background: rgba(255,255,255,0.07);
    border-radius: 22px;
    overflow: hidden;
}

.sol-item {
    background: var(--ink);
    padding: 44px 32px;
    transition: background 0.25s;
}

.sol-item:hover { background: rgba(255,255,255,0.025); }

.sol-item .ic.rose { background: rgba(240,22,109,0.14); }
.sol-item .ic.plum { background: rgba(109,40,217,0.14); color: #A78BFA; }
.sol-item .ic.jade { background: rgba(15,157,133,0.14); }

.sol-item h3 { font-weight: 700; font-size: 1.1rem; color: white; margin-bottom: 10px; }
.sol-item p  { font-size: 0.87rem; color: rgba(255,255,255,0.48); line-height: 1.72; }

/* ── FEATURES SECTION ── */
.feat { background: var(--cream); }

.feat-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 44px;
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.feat-card {
    background: white;
    border-radius: 20px;
    padding: 36px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: box-shadow 0.28s, transform 0.28s;
}

.feat-card:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(0,0,0,0.09); }

.feat-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.feat-num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 0.76rem;
    font-weight: 800;
    color: rgba(0,0,0,0.14);
    letter-spacing: 1px;
}

.feat-card:nth-child(1) .ic { background: rgba(240,22,109,0.08);  color: var(--rose); }
.feat-card:nth-child(2) .ic { background: rgba(109,40,217,0.08);  color: var(--plum); }
.feat-card:nth-child(3) .ic { background: rgba(15,157,133,0.08);  color: var(--jade); }
.feat-card:nth-child(4) .ic { background: rgba(217,119,6,0.08);   color: var(--amber); }

.feat-card h3 { font-weight: 700; font-size: 1.08rem; margin-bottom: 10px; letter-spacing: -0.2px; }
.feat-card p  { font-size: 0.88rem; color: var(--muted); line-height: 1.72; }

.result-bar {
    margin-top: 14px;
    background: var(--ink);
    border-radius: 16px;
    padding: 22px 30px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.r-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--jade);
    flex-shrink: 0;
}

.result-bar p { color: rgba(255,255,255,0.72); font-size: 0.93rem; font-weight: 500; line-height: 1.5; }
.result-bar p strong { color: white; }

/* ── PROCESS SECTION ── */
.proc { background: var(--ink); }
.proc .label { color: rgba(255,255,255,0.38); }
.proc .label::before { background: var(--plum); }
.proc .h2 { color: white; }
.proc .lead { color: rgba(255,255,255,0.48); }

.proc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 52px;
    background: rgba(255,255,255,0.07);
    border-radius: 22px;
    overflow: hidden;
}

.proc-item {
    background: var(--ink);
    padding: 52px 36px;
    transition: background 0.25s;
}

.proc-item:hover { background: rgba(255,255,255,0.025); }

.proc-n {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 5.5rem;
    line-height: 1;
    letter-spacing: -4px;
    margin-bottom: 24px;
}

.proc-item:nth-child(1) .proc-n { background: linear-gradient(135deg, var(--rose) 0%, #C026D3 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.proc-item:nth-child(2) .proc-n { background: linear-gradient(135deg, var(--plum) 0%, #2563EB 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.proc-item:nth-child(3) .proc-n { background: linear-gradient(135deg, #0EA5E9 0%, var(--jade) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.proc-item h3 { font-weight: 700; font-size: 1.08rem; color: white; margin-bottom: 12px; }
.proc-item p  { font-size: 0.87rem; color: rgba(255,255,255,0.48); line-height: 1.72; }

/* ── PRICING SECTION ── */
.pricing { background: var(--snow); }

.pricing-center { text-align: center; }
.pricing-center .label { justify-content: center; }

.price-wrap {
    max-width: 560px;
    margin: 48px auto 0;
}

.price-card {
    background: white;
    border-radius: 28px;
    padding: 48px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.09);
    position: relative;
    overflow: hidden;
}

.price-stripe {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--rainbow);
    background-size: 300%;
    animation: rainbow-move 4s linear infinite;
}

.price-badge {
    display: inline-block;
    background: rgba(240,22,109,0.08);
    color: var(--rose);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.price-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 1.55rem;
    letter-spacing: -0.5px;
    margin-bottom: 5px;
}

.price-sub { color: var(--muted); font-size: 0.88rem; margin-bottom: 28px; }

.divider { height: 1px; background: rgba(0,0,0,0.07); margin: 28px 0; }

.price-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }

.price-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
}

.chk {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--ink);
    color: white;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.price-amounts {
    display: flex;
    align-items: baseline;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.amount {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 4.2rem;
    letter-spacing: -2.5px;
    line-height: 1;
}

.amount-info { display: flex; flex-direction: column; gap: 6px; }
.amount-lbl  { font-size: 0.78rem; color: var(--muted); font-weight: 500; }

.monthly-pill {
    display: inline-block;
    background: var(--cream);
    color: var(--plum);
    font-weight: 700;
    font-size: 0.92rem;
    padding: 5px 16px;
    border-radius: 50px;
}

/* ── ABOUT SECTION ── */
.about { background: var(--cream); }

.about-grid {
    display: grid;
    grid-template-columns: 268px 1fr;
    gap: 72px;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
}

.photo-frame { position: relative; }

.photo-ring {
    width: 248px; height: 248px;
    border-radius: 50%;
    padding: 3px;
    background: var(--rainbow);
    background-size: 300%;
    animation: rainbow-move 4s linear infinite;
}

.photo-inner {
    width: 100%; height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(240,22,109,0.15), rgba(109,40,217,0.15));
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}

.photo-inner img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

.photo-placeholder {
    font-size: 5rem;
    line-height: 1;
}

.photo-badge {
    position: absolute;
    bottom: 10px; right: -10px;
    background: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--ink);
    box-shadow: 0 4px 20px rgba(0,0,0,0.11);
    white-space: nowrap;
}

.about-name {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 2.1rem;
    letter-spacing: -1px;
    margin-bottom: 5px;
}

.about-role { color: var(--rose); font-size: 0.93rem; font-weight: 500; margin-bottom: 28px; }

.about-body p  { font-size: 0.93rem; color: #444; line-height: 1.82; margin-bottom: 14px; }
.about-body strong { color: var(--ink); font-weight: 600; }

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 8px;
    background: white;
    color: var(--ink);
    text-decoration: none;
    padding: 12px 26px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}
.about-link:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }

/* ── CTA FINAL ── */
.cta-final {
    padding: 96px 48px;
    background: var(--rose);
    text-align: center;
}

.cta-final .label { color: rgba(255,255,255,0.55); justify-content: center; }
.cta-final .label::before { background: white; }

.cta-final h2 {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 800;
    color: white;
    letter-spacing: -2px;
    line-height: 1.08;
    margin-bottom: 16px;
}

.cta-final .lead { color: rgba(255,255,255,0.68); max-width: 520px; margin: 0 auto 48px; }

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--rose);
    text-decoration: none;
    padding: 17px 38px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.97rem;
    box-shadow: 0 8px 28px rgba(0,0,0,0.18);
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-white:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 44px rgba(0,0,0,0.26); }

.cta-note { margin-top: 16px; font-size: 0.82rem; color: rgba(255,255,255,0.45); }

/* ── FOOTER ── */
footer {
    background: var(--ink);
    padding: 28px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-brand {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.45);
}

.footer-brand em { color: var(--rose); font-style: normal; }

.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }

.footer-links a {
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.65); }

/* ── FLOATING WA ── */
.wa {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 9999;
    width: 58px; height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 22px rgba(37,211,102,0.38);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: wa-ring 3s ease-in-out infinite;
}

.wa:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.55); animation: none; }

@keyframes wa-ring {
    0%,100% { box-shadow: 0 6px 22px rgba(37,211,102,0.38), 0 0 0 0 rgba(37,211,102,0.28); }
    50%      { box-shadow: 0 6px 22px rgba(37,211,102,0.38), 0 0 0 14px rgba(37,211,102,0); }
}

.wa svg { width: 28px; height: 28px; fill: white; }

/* ── REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .sol-grid, .proc-grid, .launch-grid { grid-template-columns: 1fr; }
    .feat-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; text-align: center; }
    .photo-frame { margin: 0 auto; }
    .feat-header { flex-direction: column; align-items: flex-start; }
}

/* ── LANCEMENT ── */
.launch { background: var(--ink); }
.launch .label { color: rgba(255,255,255,0.38); }
.launch .label::before { background: var(--amber); }
.launch .h2 { color: white; }
.launch .lead { color: rgba(255,255,255,0.48); }

.launch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 52px;
    background: rgba(255,255,255,0.07);
    border-radius: 22px;
    overflow: hidden;
}

.launch-item {
    background: var(--ink);
    padding: 40px 32px;
}

.launch-item h3 { font-weight: 700; font-size: 1.05rem; color: white; margin-bottom: 10px; margin-top: 18px; }
.launch-item p  { font-size: 0.87rem; color: rgba(255,255,255,0.48); line-height: 1.72; }

.launch-spots {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.spots-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.spot-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}

.spot-dot.taken { background: var(--rose); }

.spots-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
}

.spots-text strong { color: var(--rose); font-weight: 700; }

/* ── FAQ ── */
.faq { background: var(--snow); }

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 48px;
    max-width: 720px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 22px 0;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.2s;
}

.faq-q:hover { color: var(--rose); }

.faq-icon {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--cream);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.3s;
}

.faq-item.open .faq-icon { background: var(--rose); transform: rotate(45deg); }
.faq-item.open .faq-icon svg { stroke: white; }

.faq-a {
    display: none;
    padding: 0 0 20px;
    font-size: 0.91rem;
    color: var(--muted);
    line-height: 1.75;
    max-width: 600px;
}

.faq-item.open .faq-a { display: block; }

@media (max-width: 640px) {
    nav { padding: 0 20px; }
    .s, .hero, .cta-final { padding-left: 20px; padding-right: 20px; }
    footer { padding: 22px 20px; flex-direction: column; text-align: center; }
    .hero h1 { letter-spacing: -1.5px; }
    .wa { width: 52px; height: 52px; bottom: 18px; right: 18px; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .pain-grid { grid-template-columns: 1fr; }
}
