:root {
    --obsidian: #111318;
    --magenta: #c94a76;
    --violet: #6c5ce7;
    --ivory: #f7f5f4;
    --charcoal: #2a2d34;
    --white: #ffffff;
    --muted: #696c74;
    --line: rgba(17, 19, 24, 0.12);
    --dark-line: rgba(247, 245, 244, 0.12);
    --gradient: linear-gradient(135deg, var(--violet), var(--magenta));
    --shadow: 0 24px 70px rgba(17, 19, 24, 0.12);
    --radius: 24px;
    --shell: min(1180px, calc(100% - 40px));
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
    margin: 0;
    color: var(--charcoal);
    background: var(--ivory);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button,
input,
select,
textarea { font: inherit; }
button,
a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
    outline: 3px solid #9a8eff;
    outline-offset: 4px;
}

.shell { width: var(--shell); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 200; top: 12px; left: 12px; padding: 10px 16px; color: var(--white); background: var(--violet); border-radius: 8px; transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }

.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    color: var(--white);
    background: rgba(17, 19, 24, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 24px; }
.brand { display: inline-flex; flex-direction: column; color: var(--white); line-height: 1; text-decoration: none; letter-spacing: -0.02em; }
.brand > span { font-size: 1rem; font-weight: 800; }
.brand small { margin-top: 7px; color: rgba(255, 255, 255, 0.58); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.brand img { width: auto; height: 42px; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: clamp(16px, 2vw, 30px); }
.site-nav > a { position: relative; font-size: 0.84rem; font-weight: 650; text-decoration: none; }
.site-nav > a:not(.button)::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; content: ""; background: var(--magenta); transform: scaleX(0); transition: transform 180ms ease; }
.site-nav > a:hover::after { transform: scaleX(1); }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 11px; color: inherit; background: transparent; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 12px; }
.nav-toggle span:not(.sr-only) { display: block; height: 2px; margin: 4px 0; background: currentColor; border-radius: 2px; transition: transform 180ms ease, opacity 180ms ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-6px) rotate(-45deg); }

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    background: var(--gradient);
    border: 0;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(108, 92, 231, 0.28);
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}
.button:hover { box-shadow: 0 16px 38px rgba(201, 74, 118, 0.32); filter: brightness(1.08); transform: translateY(-2px); }
.button--small { min-height: 42px; padding: 10px 16px; font-size: 0.76rem; border-radius: 11px; }
.button--ghost { color: var(--white); background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.24); box-shadow: none; }
.button--ghost:hover { background: rgba(255, 255, 255, 0.11); box-shadow: none; }
.button--dark { background: var(--obsidian); box-shadow: 0 12px 30px rgba(17, 19, 24, 0.2); }

.hero {
    position: relative;
    min-height: 900px;
    padding: 150px 0 0;
    overflow: hidden;
    color: var(--white);
    background: var(--obsidian);
}
.hero::before { position: absolute; inset: 0; content: ""; background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px); background-size: 34px 34px; opacity: .12; mask-image: linear-gradient(to bottom, black, transparent 78%); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .22; pointer-events: none; }
.hero-glow--one { top: 3%; right: -18%; width: 720px; height: 720px; background: radial-gradient(circle, var(--magenta), transparent 68%); }
.hero-glow--two { bottom: 5%; left: -20%; width: 620px; height: 620px; background: radial-gradient(circle, var(--violet), transparent 68%); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr); align-items: center; gap: clamp(40px, 6vw, 82px); }
.hero-copy { padding-bottom: 70px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 18px; color: #e8e5ff; font-size: .72rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow > span { width: 28px; height: 1px; background: var(--magenta); }
.eyebrow--dark { color: var(--violet); }
.hero h1,
.section h2,
.closing h2,
.legal-main h1 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 500; line-height: 1.02; letter-spacing: -.045em; }
.hero h1 { max-width: 680px; font-size: clamp(3rem, 5.4vw, 5.4rem); }
.hero h1 em { color: transparent; font-style: normal; background: linear-gradient(110deg, #d8d2ff 10%, #d76690 80%); background-clip: text; -webkit-background-clip: text; }
.hero-lead { max-width: 620px; margin: 26px 0 30px; color: rgba(255, 255, 255, .72); font-size: clamp(1rem, 1.3vw, 1.14rem); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.microcopy { margin: 18px 0 0; color: rgba(255, 255, 255, .56); font-size: .78rem; }
.microcopy span { margin-right: 6px; color: #c8c1ff; }
.hero-visual { position: relative; min-width: 0; }
.hero-visual::after { position: absolute; inset: 8% 4% -1%; content: ""; border: 1px solid rgba(255,255,255,.12); border-radius: 42% 18% 32% 18%; transform: rotate(3deg); }
.hero-visual img { position: relative; z-index: 1; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border: 1px solid rgba(255,255,255,.14); border-radius: 40px 10px 40px 10px; box-shadow: 0 40px 100px rgba(0,0,0,.48); }
.visual-orbit { position: absolute; z-index: 2; top: -26px; right: 12%; width: 86px; height: 86px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; }
.visual-orbit::before { position: absolute; inset: 12px; content: ""; border: 1px solid var(--magenta); border-radius: inherit; }
.hero-chip { position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; padding: 12px 15px; color: rgba(255,255,255,.8); font-size: .68rem; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; background: rgba(17,19,24,.78); border: 1px solid rgba(255,255,255,.16); border-radius: 12px; backdrop-filter: blur(12px); }
.hero-chip span { display: grid; width: 28px; height: 28px; place-items: center; color: var(--white); background: var(--gradient); border-radius: 8px; }
.hero-chip--top { top: 12%; right: -4%; }
.hero-chip--bottom { bottom: 8%; left: -5%; }
.trust-strip { position: relative; z-index: 4; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 20px; background: rgba(247,245,244,.97); border-radius: 22px 22px 0 0; box-shadow: 0 -14px 60px rgba(0,0,0,.16); }
.trust-strip article { display: flex; min-width: 0; gap: 13px; padding: 24px 20px; color: var(--charcoal); }
.trust-strip article + article { border-left: 1px solid var(--line); }
.trust-strip article > span { display: grid; flex: 0 0 36px; width: 36px; height: 36px; place-items: center; color: var(--violet); background: rgba(108,92,231,.1); border-radius: 10px; font-weight: 900; }
.trust-strip h2 { margin: 0 0 3px; font-family: inherit; font-size: .8rem; font-weight: 850; letter-spacing: 0; }
.trust-strip p { margin: 0; color: var(--muted); font-size: .7rem; line-height: 1.45; }

.section { padding: clamp(88px, 10vw, 138px) 0; }
.section--light { background: var(--ivory); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .6fr); align-items: end; gap: 40px; margin-bottom: 58px; }
.section-heading h2,
.decision h2,
.expert-copy h2,
.center-heading h2,
.agenda-copy h2,
.faq-heading h2 { font-size: clamp(2.4rem, 4.8vw, 4.6rem); }
.section-heading > p { max-width: 520px; margin: 0; color: var(--muted); }
.section-heading--light h2 { color: var(--white); }
.section-heading--light > p { color: rgba(255,255,255,.6); }

.timeline { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.timeline li { position: relative; display: grid; grid-template-columns: auto 1fr; gap: 20px; min-height: 190px; padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background 180ms ease, transform 180ms ease; }
.timeline li:hover { z-index: 1; background: var(--white); box-shadow: var(--shadow); transform: translateY(-4px); }
.timeline li > span { color: var(--magenta); font-family: Georgia, serif; font-size: 1.15rem; }
.timeline h3 { margin: 0 0 8px; font-size: 1.05rem; }
.timeline p { margin: 0; color: var(--muted); font-size: .9rem; }

.products { color: var(--white); background: var(--obsidian); }
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.product-card { min-width: 0; overflow: hidden; background: #1a1d24; border: 1px solid var(--dark-line); border-radius: var(--radius); transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease; }
.product-card:hover { border-color: rgba(201,74,118,.48); box-shadow: 0 22px 60px rgba(0,0,0,.3); transform: translateY(-6px); }
.product-art { position: relative; height: 270px; overflow: hidden; background: radial-gradient(circle at 65% 30%, rgba(108,92,231,.42), transparent 38%), radial-gradient(circle at 30% 80%, rgba(201,74,118,.24), transparent 40%), #14161c; }
.product-art::after { position: absolute; inset: auto 8% 16px; height: 1px; content: ""; background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent); }
.product-art--water span { position: absolute; right: 25%; bottom: 32px; width: 112px; height: 172px; border: 6px solid rgba(255,255,255,.68); border-top-width: 24px; border-radius: 16px 16px 28px 28px; box-shadow: inset 0 -70px rgba(108,92,231,.22), 0 22px 40px rgba(0,0,0,.25); }
.product-art--water span::after { position: absolute; top: 35px; right: -45px; width: 46px; height: 78px; content: ""; border: 6px solid rgba(255,255,255,.68); border-left: 0; border-radius: 0 30px 30px 0; }
.product-art--water i { position: absolute; bottom: 30px; left: 25%; width: 58px; height: 130px; border: 4px solid rgba(255,255,255,.64); border-top-width: 17px; border-radius: 14px 14px 19px 19px; box-shadow: inset 0 -55px rgba(201,74,118,.22); }
.product-art--band span { position: absolute; top: 50%; left: 50%; width: 180px; height: 94px; border: 24px solid #2f333c; border-radius: 50%; box-shadow: 0 0 0 2px rgba(255,255,255,.1), 0 20px 40px rgba(0,0,0,.4); transform: translate(-50%,-50%) rotate(-14deg); }
.product-art--band span::after { position: absolute; top: 50%; left: 50%; width: 64px; height: 42px; content: ""; background: linear-gradient(135deg, #262932, #5f55b8); border: 2px solid rgba(255,255,255,.2); border-radius: 14px; box-shadow: inset 0 0 16px rgba(108,92,231,.36); transform: translate(-50%,-50%); }
.product-art--fir span,
.product-art--fir i { position: absolute; top: 47%; width: 80px; height: 190px; background: linear-gradient(160deg, #383b45, #1d2027); border: 2px solid rgba(255,255,255,.12); border-radius: 50% 50% 38% 38% / 28% 28% 65% 65%; box-shadow: inset 0 0 26px rgba(108,92,231,.28), 0 20px 40px rgba(0,0,0,.35); transform: translateY(-50%) rotate(18deg); }
.product-art--fir span { left: 34%; }
.product-art--fir i { right: 32%; transform: translateY(-50%) rotate(-18deg); }
.product-art--routine span { position: absolute; bottom: 38px; left: 28%; width: 62px; height: 140px; border: 4px solid rgba(255,255,255,.56); border-radius: 14px 14px 20px 20px; box-shadow: inset 0 -58px rgba(108,92,231,.22); }
.product-art--routine i { position: absolute; right: 25%; bottom: 42px; width: 110px; height: 100px; border: 20px solid #30333c; border-radius: 50%; transform: rotate(-16deg); }
.product-art--routine b { position: absolute; right: 44%; bottom: 38px; width: 65px; height: 130px; background: linear-gradient(160deg,#323640,#17191e); border: 2px solid rgba(255,255,255,.12); border-radius: 50% 50% 40% 40%; transform: rotate(18deg); }
.product-copy { padding: 28px; }
.product-copy > p:first-child { margin: 0 0 9px; color: #c8c1ff; font-size: .68rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.product-copy h3 { margin: 0 0 10px; font-size: 1.3rem; }
.product-copy h3 + p { min-height: 54px; margin: 0 0 20px; color: rgba(255,255,255,.58); font-size: .9rem; }
.product-copy a { display: inline-flex; gap: 10px; align-items: center; color: var(--white); font-size: .82rem; font-weight: 800; text-decoration: none; }
.product-copy a span { color: var(--magenta); transition: transform 180ms ease; }
.product-copy a:hover span { transform: translateX(5px); }

.decision-grid { display: grid; grid-template-columns: minmax(0,.85fr) minmax(380px,1fr); align-items: center; gap: clamp(60px, 9vw, 120px); }
.decision-copy > p:not(.eyebrow) { max-width: 540px; margin: 24px 0 30px; color: var(--muted); }
.decision-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.decision-list li { display: grid; grid-template-columns: 46px 1fr; gap: 16px; align-items: center; padding: 20px 4px; font-weight: 750; border-bottom: 1px solid var(--line); }
.decision-list span { color: var(--magenta); font-family: Georgia, serif; }

.expert-section { color: var(--white); background: linear-gradient(120deg, #111318 0%, #1c1827 62%, #291621 100%); }
.expert-grid { display: grid; grid-template-columns: minmax(320px,.75fr) minmax(0,1fr); align-items: center; gap: clamp(50px, 9vw, 120px); }
.expert-visual { position: relative; display: grid; min-height: 430px; place-items: center; border: 1px solid var(--dark-line); border-radius: 180px 180px 28px 28px; background: radial-gradient(circle at 50% 30%, rgba(108,92,231,.32), transparent 40%), rgba(255,255,255,.02); }
.expert-avatar { display: grid; width: 180px; height: 180px; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; box-shadow: 0 0 0 24px rgba(108,92,231,.06), 0 0 70px rgba(108,92,231,.18); }
.expert-avatar span { display: grid; width: 68px; height: 68px; place-items: center; font-family: Georgia, serif; font-size: 2.6rem; background: var(--gradient); border-radius: 50%; }
.expert-line { position: absolute; top: 48px; left: 50%; width: 1px; height: 50px; background: linear-gradient(var(--magenta), transparent); }
.expert-visual > p { position: absolute; right: 24px; bottom: 26px; margin: 0; color: rgba(255,255,255,.36); font-size: .58rem; font-weight: 800; letter-spacing: .15em; line-height: 1.5; text-align: right; }
.expert-copy > p:not(.eyebrow) { max-width: 640px; margin: 26px 0; color: rgba(255,255,255,.66); font-size: 1.05rem; }
.expert-note { display: flex; max-width: 580px; gap: 14px; padding: 18px; background: rgba(255,255,255,.05); border: 1px solid var(--dark-line); border-radius: 14px; }
.expert-note span { color: #c8c1ff; }
.expert-note p { margin: 0; color: rgba(255,255,255,.74); font-size: .84rem; }

.center-heading { max-width: 720px; margin: 0 auto 58px; text-align: center; }
.center-heading .eyebrow { justify-content: center; }
.easy-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; list-style: none; }
.easy-grid li { position: relative; padding: 42px 34px; text-align: center; }
.easy-grid li + li::before { position: absolute; top: 65px; left: 0; width: 1px; height: 90px; content: ""; background: var(--line); }
.easy-grid span { display: grid; width: 54px; height: 54px; margin: 0 auto 22px; place-items: center; color: var(--white); font-family: Georgia, serif; font-size: 1.25rem; background: var(--gradient); border-radius: 50%; box-shadow: 0 10px 28px rgba(108,92,231,.22); }
.easy-grid h3 { margin: 0 0 9px; }
.easy-grid p { max-width: 260px; margin: 0 auto; color: var(--muted); font-size: .9rem; }
.no-obligation { width: fit-content; margin: 34px auto 0; padding: 11px 16px; color: #3d3869; font-size: .8rem; font-weight: 750; background: rgba(108,92,231,.09); border-radius: 99px; }
.no-obligation span { margin-right: 6px; }

.agenda { color: var(--white); background: var(--obsidian); }
.agenda-grid { display: grid; grid-template-columns: minmax(0,.75fr) minmax(520px,1fr); align-items: start; gap: clamp(50px, 8vw, 100px); }
.agenda-copy { position: sticky; top: 115px; }
.agenda-copy > p:not(.eyebrow) { margin: 24px 0; color: rgba(255,255,255,.64); }
.agenda-copy ul { display: grid; gap: 12px; margin: 26px 0 34px; padding: 0; list-style: none; }
.agenda-copy li { display: flex; gap: 10px; align-items: center; font-size: .88rem; font-weight: 700; }
.agenda-copy li span { color: #c8c1ff; }
.privacy-note { display: flex; gap: 14px; padding: 17px; color: rgba(255,255,255,.57); background: rgba(255,255,255,.04); border: 1px solid var(--dark-line); border-radius: 14px; }
.privacy-note span { color: var(--magenta); font-size: 1.3rem; }
.privacy-note p { margin: 0; font-size: .78rem; }
.booking-form { padding: clamp(24px, 4vw, 44px); color: var(--charcoal); background: var(--ivory); border-radius: 28px; box-shadow: 0 38px 90px rgba(0,0,0,.34); }
.form-heading { display: flex; justify-content: space-between; align-items: baseline; gap: 18px; margin-bottom: 28px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.form-heading p { margin: 0; font-family: Georgia, serif; font-size: 1.6rem; font-weight: 700; }
.form-heading span { color: var(--muted); font-size: .68rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.field { min-width: 0; }
.field--full { grid-column: 1 / -1; }
.field label { display: block; margin: 0 0 7px; font-size: .76rem; font-weight: 800; }
.field label span { color: var(--muted); font-weight: 500; }
.field input,
.field select,
.field textarea { width: 100%; min-height: 48px; padding: 11px 13px; color: var(--charcoal); background: var(--white); border: 1px solid #d8d5d3; border-radius: 10px; outline: none; transition: border-color 160ms ease, box-shadow 160ms ease; }
.field textarea { min-height: 92px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--violet); box-shadow: 0 0 0 3px rgba(108,92,231,.13); }
.field [aria-invalid="true"] { border-color: #b3261e; box-shadow: 0 0 0 3px rgba(179,38,30,.08); }
.field small { display: block; margin-top: 5px; color: var(--muted); font-size: .66rem; }
.field-error { min-height: 16px; margin: 4px 0 -4px; color: #a01c16; font-size: .66rem; font-weight: 650; }
.consent label { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; font-weight: 550; line-height: 1.45; cursor: pointer; }
.consent input { width: 18px; min-height: 18px; margin-top: 2px; accent-color: var(--violet); }
.consent a { color: #5144c7; font-weight: 750; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.button--submit { width: 100%; min-height: 58px; justify-content: space-between; margin-top: 22px; padding-inline: 20px; }
.button--submit i { display: grid; width: 31px; height: 31px; place-items: center; font-style: normal; background: rgba(255,255,255,.16); border-radius: 9px; }
.button--submit[disabled] { cursor: wait; filter: grayscale(.25); opacity: .75; transform: none; }
.form-status { min-height: 20px; margin: 10px 0 0; color: #4a3abf; font-size: .78rem; font-weight: 750; text-align: center; }
.form-status.is-error { color: #a01c16; }
.form-footnote { margin: 7px 0 0; color: var(--muted); font-size: .66rem; text-align: center; }

.faq-grid { display: grid; grid-template-columns: minmax(300px,.62fr) minmax(0,1fr); align-items: start; gap: clamp(60px, 10vw, 130px); }
.faq-heading { position: sticky; top: 120px; }
.faq-heading > p:not(.eyebrow) { color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 4px; font-weight: 800; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: grid; flex: 0 0 30px; width: 30px; height: 30px; place-items: center; color: var(--violet); background: rgba(108,92,231,.09); border-radius: 50%; transition: transform 180ms ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -4px 46px 22px 4px; color: var(--muted); font-size: .9rem; }

.closing { position: relative; padding: clamp(95px, 12vw, 160px) 0; overflow: hidden; color: var(--white); background: #171920; text-align: center; }
.closing::before { position: absolute; inset: 0; content: ""; background-image: linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px); background-size: 48px 48px; }
.closing-glow { position: absolute; bottom: -360px; left: 50%; width: 800px; height: 600px; background: radial-gradient(circle, rgba(108,92,231,.55), rgba(201,74,118,.2) 40%, transparent 68%); transform: translateX(-50%); }
.closing-inner { position: relative; z-index: 1; max-width: 880px; }
.closing .eyebrow { justify-content: center; }
.closing h2 { font-size: clamp(2.8rem, 5.4vw, 5.3rem); }
.closing p:not(.eyebrow) { max-width: 680px; margin: 26px auto 30px; color: rgba(255,255,255,.62); }

.site-footer { padding: 70px 0 26px; color: rgba(255,255,255,.62); background: #0c0e12; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .65fr .65fr; gap: 60px; padding-bottom: 54px; }
.brand--footer { width: fit-content; }
.footer-grid > div:first-child > p { max-width: 420px; margin: 22px 0 0; font-size: .84rem; }
.footer-grid h2 { margin: 0 0 16px; color: var(--white); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid div:not(:first-child) a { margin: 5px 0; font-size: .8rem; text-decoration: none; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom { display: grid; grid-template-columns: 1.6fr auto auto; gap: 26px; align-items: start; padding-top: 24px; font-size: .66rem; border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: #c8c1ff; text-decoration: none; }
.whatsapp-float { position: fixed; z-index: 80; right: max(18px, env(safe-area-inset-right)); bottom: max(20px, env(safe-area-inset-bottom)); display: flex; align-items: center; gap: 9px; min-height: 48px; padding: 9px 15px 9px 9px; color: var(--white); font-size: .74rem; text-decoration: none; background: #187c4b; border: 1px solid rgba(255,255,255,.2); border-radius: 99px; box-shadow: 0 14px 32px rgba(0,0,0,.27); }
.whatsapp-float span { display: grid; width: 30px; height: 30px; place-items: center; background: rgba(255,255,255,.16); border-radius: 50%; }
.mobile-cta { display: none; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal[data-delay="1"] { transition-delay: 100ms; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.legal-body { background: var(--ivory); }
.legal-header { position: static; }
.legal-main { min-height: 65vh; padding: 90px 0 110px; }
.legal-main article { max-width: 820px; }
.legal-main .eyebrow { color: var(--violet); }
.legal-main h1 { max-width: 780px; font-size: clamp(2.7rem, 6vw, 5rem); }
.legal-lead { margin: 24px 0 50px; color: var(--muted); font-size: 1.05rem; }
.legal-section { padding: 24px 0; border-top: 1px solid var(--line); }
.legal-section h2 { margin: 0 0 10px; font-size: 1.1rem; }
.legal-section p,
.legal-section li { color: var(--muted); }
.legal-section ul { padding-left: 20px; }
.legal-back { margin-top: 36px; }

@media (max-width: 1040px) {
    .site-nav { gap: 16px; }
    .site-nav > a { font-size: .76rem; }
    .hero { min-height: auto; }
    .hero-grid { grid-template-columns: 1fr 1fr; }
    .hero h1 { font-size: clamp(2.9rem, 5.6vw, 4.4rem); }
    .trust-strip { grid-template-columns: repeat(2,1fr); }
    .trust-strip article:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
    .trust-strip article:nth-child(4) { border-top: 1px solid var(--line); }
    .agenda-grid { grid-template-columns: minmax(0,.7fr) minmax(480px,1fr); gap: 46px; }
}

@media (max-width: 860px) {
    :root { --shell: min(100% - 32px, 700px); }
    .nav-toggle { display: block; }
    .site-nav { position: fixed; inset: 77px 0 auto; display: grid; gap: 0; max-height: 0; padding: 0 20px; overflow: hidden; background: rgba(17,19,24,.98); opacity: 0; visibility: hidden; transition: max-height 220ms ease, opacity 180ms ease, visibility 180ms ease, padding 220ms ease; }
    .site-nav.is-open { max-height: calc(100vh - 77px); padding-block: 18px 28px; overflow-y: auto; opacity: 1; visibility: visible; }
    .site-nav > a { padding: 14px 4px; font-size: .92rem; border-bottom: 1px solid rgba(255,255,255,.08); }
    .site-nav .button { margin-top: 14px; border: 0; }
    .hero { padding-top: 125px; }
    .hero-grid,
    .section-heading,
    .decision-grid,
    .expert-grid,
    .agenda-grid,
    .faq-grid { grid-template-columns: 1fr; }
    .hero-copy { padding-bottom: 20px; }
    .hero-visual { max-width: 680px; }
    .timeline { grid-template-columns: repeat(2,1fr); }
    .product-grid { grid-template-columns: 1fr; }
    .product-copy h3 + p { min-height: auto; }
    .expert-visual { min-height: 360px; }
    .agenda-copy,
    .faq-heading { position: static; }
    .easy-grid li { padding-inline: 18px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid > div:first-child { grid-column: 1 / -1; }
    .footer-bottom { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
    :root { --shell: calc(100% - 28px); --radius: 18px; }
    html { scroll-padding-top: 78px; }
    body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
    .nav-wrap { min-height: 68px; }
    .brand > span { font-size: .86rem; }
    .brand small { font-size: .54rem; }
    .site-nav { inset-block-start: 69px; }
    .hero { padding-top: 110px; }
    .hero h1 { font-size: clamp(2.75rem, 13vw, 4rem); }
    .hero-lead { margin-block: 22px; }
    .button-row { display: grid; }
    .button-row .button { width: 100%; }
    .hero-visual { margin-top: 18px; }
    .hero-visual img { min-height: 290px; object-position: 67% center; border-radius: 24px 8px 24px 8px; }
    .hero-chip { max-width: 185px; font-size: .58rem; }
    .hero-chip--top { top: 7%; right: -5px; }
    .hero-chip--bottom { bottom: 6%; left: -4px; }
    .trust-strip { grid-template-columns: 1fr; margin-top: 52px; border-radius: 18px 18px 0 0; }
    .trust-strip article + article,
    .trust-strip article:nth-child(3) { border-top: 1px solid var(--line); border-left: 0; }
    .section { padding-block: 82px; }
    .section-heading { gap: 18px; margin-bottom: 38px; }
    .section-heading h2,
    .decision h2,
    .expert-copy h2,
    .center-heading h2,
    .agenda-copy h2,
    .faq-heading h2 { font-size: clamp(2.35rem, 12vw, 3.5rem); }
    .timeline { grid-template-columns: 1fr; }
    .timeline li { min-height: 0; padding: 26px 22px; }
    .product-art { height: 230px; }
    .product-copy { padding: 24px 20px; }
    .decision-grid,
    .expert-grid,
    .agenda-grid,
    .faq-grid { gap: 46px; }
    .decision-list li { grid-template-columns: 38px 1fr; }
    .expert-visual { min-height: 320px; }
    .expert-avatar { width: 140px; height: 140px; }
    .easy-grid { grid-template-columns: 1fr; }
    .easy-grid li { padding: 24px 16px; }
    .easy-grid li + li::before { top: 0; left: 50%; width: 80px; height: 1px; transform: translateX(-50%); }
    .no-obligation { border-radius: 14px; text-align: center; }
    .booking-form { padding: 24px 18px; border-radius: 20px; }
    .form-heading { display: block; }
    .form-heading span { display: block; margin-top: 4px; }
    .form-grid { grid-template-columns: 1fr; gap: 15px; }
    .field--full { grid-column: auto; }
    .faq-list summary { padding-block: 20px; }
    .closing { padding-block: 100px; }
    .footer-grid { grid-template-columns: 1fr; gap: 34px; }
    .footer-grid > div:first-child { grid-column: auto; }
    .whatsapp-float { right: 14px; bottom: calc(76px + env(safe-area-inset-bottom)); width: 48px; height: 48px; justify-content: center; padding: 8px; }
    .whatsapp-float b { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
    .mobile-cta { position: fixed; z-index: 79; right: 0; bottom: 0; left: 0; display: flex; min-height: calc(60px + env(safe-area-inset-bottom)); align-items: flex-start; justify-content: center; gap: 14px; padding: 17px 18px calc(13px + env(safe-area-inset-bottom)); color: var(--white); font-size: .84rem; font-weight: 850; text-decoration: none; background: var(--gradient); box-shadow: 0 -10px 30px rgba(17,19,24,.22); }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *,
    *::before,
    *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
    .reveal { opacity: 1; transform: none; }
}
