:root {
    --navy-950: #03192b;
    --navy-900: #06243b;
    --navy-850: #07304f;
    --navy-800: #0a3a5e;
    --blue-700: #0d5d8d;
    --blue-600: #1679ad;
    --sky-400: #69c6e8;
    --sky-200: #bce8f7;
    --ink: #0a1a26;
    --muted: #5e6d78;
    --paper: #f5f7f8;
    --white: #ffffff;
    --line: rgba(8, 45, 72, .14);
    --line-light: rgba(255,255,255,.16);
    --display: "Barlow Condensed", Impact, sans-serif;
    --body: "Manrope", Arial, sans-serif;
    --radius: 18px;
    --shadow: 0 24px 70px rgba(2, 24, 42, .16);
    --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--sky-400); color: var(--navy-950); }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: 120px 0; }
.section-dark { position: relative; padding: 120px 0; background: var(--navy-950); color: var(--white); overflow: hidden; }
.skip-link { position: fixed; top: -60px; left: 16px; z-index: 9999; background: #fff; color: #000; padding: 12px 18px; border-radius: 0 0 8px 8px; }
.skip-link:focus { top: 0; }

.site-header {
    position: absolute;
    inset: 0 0 auto 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255,255,255,.14);
    transition: background .25s ease, position .25s ease, box-shadow .25s ease;
}
.site-header.is-sticky {
    position: fixed;
    background: rgba(3,25,43,.93);
    box-shadow: 0 8px 30px rgba(0,0,0,.16);
    backdrop-filter: blur(14px);
}
.header-inner { min-height: 92px; display: grid; grid-template-columns: 210px 1fr 210px; align-items: center; gap: 24px; }
.brand { display: inline-flex; width: 190px; align-items: center; }
.brand img { width: 190px; height: 74px; object-fit: contain; filter: brightness(0) invert(1); }
.desktop-nav { justify-self: center; display: flex; align-items: center; gap: 34px; }
.desktop-nav a { color: rgba(255,255,255,.76); font-size: 13px; font-weight: 700; letter-spacing: .04em; transition: color .2s; }
.desktop-nav a:hover { color: #fff; }
.menu-toggle, .mobile-menu { display: none; }

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .01em;
    line-height: 1;
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--navy-950); background: var(--white); box-shadow: 0 14px 35px rgba(0,0,0,.15); }
.button-primary:hover { background: var(--sky-200); box-shadow: 0 18px 42px rgba(0,0,0,.22); }
.button-light { color: var(--navy-950); background: var(--white); }
.button-light:hover { background: var(--sky-200); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.06); }
.button-ghost:hover { border-color: #fff; background: rgba(255,255,255,.12); }
.button-small { min-height: 44px; padding: 0 20px; font-size: 12px; justify-self: end; }
.button-large { min-height: 60px; padding: 0 30px; }
.button-block { width: 100%; }

.hero {
    min-height: 850px;
    height: min(1000px, 100svh);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background: var(--navy-950);
}
.hero-media {
    position: absolute;
    inset: -18px;
    margin: 0;
    overflow: hidden;
    transform: scale(1.03);
}
.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2,20,36,.72) 0%, rgba(3,28,49,.36) 50%, rgba(3,24,43,.72) 100%);
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(3,22,38,.32) 0%, rgba(3,22,38,.06) 38%, rgba(3,22,38,.7) 100%);
}
.hero-grid {
    position: absolute;
    z-index: 2;
    inset: 0;
    opacity: .13;
    background-image: linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
    background-size: 120px 120px;
    mask-image: linear-gradient(to bottom, transparent 7%, #000 28%, #000 78%, transparent 100%);
}
.hero-content { position: relative; z-index: 3; text-align: center; padding-top: 88px; }
.hero-kicker, .section-label {
    font-family: var(--body);
    font-size: 11px;
    line-height: 1;
    letter-spacing: .2em;
    font-weight: 800;
    color: var(--blue-700);
    text-transform: uppercase;
}
.hero-kicker { display: inline-flex; color: rgba(255,255,255,.72); align-items: center; gap: 18px; }
.hero-kicker::before, .hero-kicker::after { content: ""; display: block; width: 46px; height: 1px; background: rgba(255,255,255,.35); }
.hero h1 {
    margin: 24px auto 22px;
    max-width: 940px;
    font-family: var(--display);
    font-size: clamp(62px, 7vw, 108px);
    line-height: .78;
    letter-spacing: -.025em;
    font-weight: 800;
    text-transform: uppercase;
}
.hero h1 span, .hero h1 em { display: block; }
.hero h1 em { margin: 17px 0 13px; font-style: normal; font-family: var(--body); font-size: clamp(13px, 1.4vw, 18px); line-height: 1; letter-spacing: .28em; font-weight: 700; color: var(--sky-200); }
.hero-lead { max-width: 750px; margin: 0 auto; color: rgba(255,255,255,.78); font-size: 17px; line-height: 1.75; }
.hero-actions { margin-top: 34px; display: flex; justify-content: center; gap: 12px; }
.hero-proof { margin: 54px auto 0; padding: 0; list-style: none; width: min(700px, 100%); display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(255,255,255,.2); }
.hero-proof li { padding: 20px 18px 0; display: flex; flex-direction: column; gap: 3px; border-right: 1px solid rgba(255,255,255,.15); }
.hero-proof li:last-child { border-right: 0; }
.hero-proof strong { font-family: var(--display); font-size: 23px; line-height: 1; letter-spacing: .02em; text-transform: uppercase; }
.hero-proof span { font-size: 11px; color: rgba(255,255,255,.58); }
.hero-scroll { position: absolute; z-index: 4; right: 30px; bottom: 34px; display: flex; align-items: center; gap: 16px; color: rgba(255,255,255,.7); font-size: 9px; font-weight: 800; letter-spacing: .16em; writing-mode: vertical-rl; }
.hero-scroll i { font-style: normal; font-size: 18px; writing-mode: initial; }

.section-label { margin-bottom: 34px; display: flex; align-items: center; gap: 14px; }
.section-label::after { content:""; height: 1px; width: 62px; background: currentColor; opacity: .35; }
.section-label-light { color: var(--sky-400); }
.eyebrow { margin: 0 0 16px; font-size: 12px; font-weight: 800; color: var(--blue-700); letter-spacing: .12em; text-transform: uppercase; }
.eyebrow-light { color: var(--sky-400); }
.section h2, .section-dark h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(48px, 5vw, 76px);
    line-height: .92;
    letter-spacing: -.025em;
    text-transform: uppercase;
}
.section h2 span, .section-dark h2 span { color: var(--blue-600); }
.section-dark h2 span { color: var(--sky-400); }

.problem { background: var(--paper); }
.problem-layout { display: grid; grid-template-columns: 1.35fr .65fr; gap: 90px; align-items: end; }
.problem-heading h2 { max-width: 850px; }
.problem-copy { padding-bottom: 5px; color: var(--muted); font-size: 17px; }
.problem-copy p { margin: 0 0 16px; }
.pain-grid { margin-top: 72px; display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.pain-card { min-height: 275px; padding: 34px 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .25s ease, transform .25s ease; }
.pain-card:hover { background: #fff; transform: translateY(-5px); }
.pain-card > span { display: inline-block; margin-bottom: 58px; font-size: 11px; font-weight: 800; color: var(--blue-600); }
.pain-card h3 { margin: 0 0 12px; font-family: var(--display); font-size: 27px; line-height: 1; text-transform: uppercase; }
.pain-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.statement::before { content:""; position:absolute; inset:auto -20% -60% 35%; height: 760px; background: radial-gradient(circle, rgba(22,121,173,.26), transparent 65%); }
.statement-inner { position: relative; z-index:1; max-width: 930px; text-align: center; }
.statement-mark { position:absolute; top:-92px; left:50%; transform:translateX(-50%); font-family:Georgia,serif; font-size:300px; line-height:1; color:rgba(255,255,255,.035); }
.statement .section-label { justify-content: center; }
.statement .section-label::before { content:""; height:1px; width:62px; background:currentColor; opacity:.35; }
.statement h2 { font-size: clamp(64px, 7vw, 112px); }
.statement p { margin: 34px auto 26px; max-width: 790px; color: rgba(255,255,255,.72); font-size: 18px; line-height: 1.8; }
.text-link { display:inline-flex; align-items:center; gap:12px; padding-bottom:6px; border-bottom:1px solid rgba(255,255,255,.45); font-size:13px; font-weight:800; letter-spacing:.04em; }
.text-link:hover { color:var(--sky-200); border-color:var(--sky-200); }

.method { background:#fff; }
.method-intro { display:grid; grid-template-columns: 1.25fr .55fr; gap:110px; align-items:end; }
.method-lead { margin:0 0 3px; color:var(--muted); font-size:17px; }
.steps { margin-top:80px; display:grid; grid-template-columns:repeat(4,1fr); }
.step { position:relative; min-height:300px; padding:0 30px 0 0; }
.step-number { display:inline-flex; width:52px; height:52px; align-items:center; justify-content:center; border:1px solid var(--line); border-radius:50%; font-family:var(--display); font-weight:700; font-size:18px; color:var(--blue-700); background:#fff; }
.step-line { position:absolute; top:26px; left:52px; right:0; height:1px; background:var(--line); }
.step:last-child .step-line { display:none; }
.step h3 { margin:60px 0 13px; font-family:var(--display); font-size:30px; line-height:1; text-transform:uppercase; }
.step p { margin:0; color:var(--muted); font-size:14px; line-height:1.8; }

.services { padding:140px 0; background:var(--navy-900); color:#fff; }
.services::before { content:""; position:absolute; }
.services-layout { display:grid; grid-template-columns:.85fr 1.15fr; gap:100px; }
.services-sticky { align-self:start; position:sticky; top:140px; }
.services-sticky h2 { font-size:clamp(52px,5vw,78px); }
.services-sticky > p:not(.eyebrow) { max-width:490px; margin:28px 0; color:rgba(255,255,255,.68); }
.service-list { border-top:1px solid var(--line-light); }
.service-item { display:grid; grid-template-columns:86px 1fr; gap:24px; padding:42px 0; border-bottom:1px solid var(--line-light); }
.service-icon { display:flex; align-items:center; justify-content:center; width:62px; height:62px; border:1px solid rgba(255,255,255,.23); border-radius:50%; font-family:var(--display); font-size:25px; color:var(--sky-400); }
.service-item h3 { margin:0 0 12px; font-family:var(--display); font-size:33px; line-height:1; text-transform:uppercase; }
.service-item p { margin:0; color:rgba(255,255,255,.64); font-size:15px; }

.outcomes { background:var(--paper); }
.outcomes-head { display:grid; grid-template-columns:.4fr 1fr; align-items:end; gap:60px; }
.outcomes-head .section-label { margin:0 0 8px; }
.outcomes-grid { margin-top:70px; display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid var(--line); border-left:1px solid var(--line); }
.outcome { min-height:190px; padding:30px; border-right:1px solid var(--line); border-bottom:1px solid var(--line); display:flex; flex-direction:column; justify-content:space-between; }
.outcome span { font-size:10px; font-weight:800; color:var(--blue-600); }
.outcome p { margin:48px 0 0; max-width:300px; font-family:var(--display); font-size:25px; line-height:1.12; text-transform:uppercase; }

.experience { background:#fff; overflow:hidden; }
.experience-layout { display:grid; grid-template-columns:.8fr 1.1fr; align-items:center; gap:110px; }
.portrait-wrap { position:relative; width:min(100%,480px); margin:auto; }
.portrait-wrap img { position:relative; z-index:2; width:100%; border-radius:50%; filter:saturate(.82) contrast(1.04); }
.portrait-ring { position:absolute; inset:-30px; z-index:1; border:1px solid var(--line); border-radius:50%; }
.portrait-ring::before, .portrait-ring::after { content:""; position:absolute; border-radius:50%; border:1px solid var(--line); }
.portrait-ring::before { inset:-28px; }
.portrait-ring::after { inset:42px; border-color:rgba(22,121,173,.22); }
.portrait-badge { position:absolute; z-index:3; right:-18px; bottom:34px; width:128px; height:128px; border-radius:50%; background:var(--navy-900); color:#fff; display:flex; flex-direction:column; justify-content:center; align-items:center; text-align:center; box-shadow:var(--shadow); }
.portrait-badge strong { font-family:var(--display); font-size:38px; line-height:.9; }
.portrait-badge span { max-width:86px; margin-top:7px; font-size:9px; line-height:1.35; text-transform:uppercase; letter-spacing:.08em; color:rgba(255,255,255,.7); }
.experience-copy .lead { margin:30px 0; padding-left:24px; border-left:2px solid var(--sky-400); font-size:18px; color:var(--muted); font-style:italic; }
.credentials { list-style:none; padding:0; margin:0; }
.credentials li { position:relative; padding:15px 0 15px 30px; border-bottom:1px solid var(--line); font-size:14px; font-weight:600; }
.credentials li::before { content:"✓"; position:absolute; left:0; color:var(--blue-600); font-weight:800; }

.comparison::before { content:""; position:absolute; inset:-50% 40% auto -20%; height:800px; background:radial-gradient(circle, rgba(22,121,173,.18), transparent 66%); }
.comparison .container { position:relative; }
.comparison-head { display:grid; grid-template-columns:.45fr 1fr; gap:60px; align-items:end; }
.comparison-head .section-label { margin-bottom:8px; }
.comparison-table { margin-top:70px; border:1px solid var(--line-light); border-radius:var(--radius); overflow:hidden; }
.comparison-row { display:grid; grid-template-columns:1fr 1fr; }
.comparison-row > div { padding:22px 28px; border-bottom:1px solid var(--line-light); color:rgba(255,255,255,.6); font-size:14px; }
.comparison-row > div + div { border-left:1px solid var(--line-light); color:#fff; background:rgba(255,255,255,.025); }
.comparison-row:last-child > div { border-bottom:0; }
.comparison-title > div { color:var(--sky-400); font-size:11px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; background:rgba(255,255,255,.045); }

.faq { background:var(--paper); }
.faq-layout { display:grid; grid-template-columns:.78fr 1.22fr; gap:100px; align-items:start; }
.faq-heading { position:sticky; top:140px; }
.faq-heading h2 { font-size:clamp(48px,4.7vw,70px); }
.faq-heading > p { margin:28px 0 0; max-width:500px; color:var(--muted); }
.accordion { border-top:1px solid var(--line); }
.faq-item { border-bottom:1px solid var(--line); }
.faq-item summary { list-style:none; cursor:pointer; display:flex; justify-content:space-between; gap:24px; padding:28px 0; font-family:var(--display); font-size:25px; line-height:1.1; text-transform:uppercase; }
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary span { width:32px; height:32px; border:1px solid var(--line); border-radius:50%; display:flex; align-items:center; justify-content:center; flex:0 0 auto; font-family:var(--body); font-size:18px; transition:transform .2s; }
.faq-item[open] summary span { transform:rotate(45deg); }
.faq-item p { margin:-5px 52px 28px 0; color:var(--muted); font-size:15px; }

.contact { padding:140px 0; }
.contact-glow { position:absolute; inset:auto auto -50% -20%; width:900px; height:900px; border-radius:50%; background:radial-gradient(circle, rgba(22,121,173,.3), transparent 65%); }
.contact-layout { position:relative; z-index:1; display:grid; grid-template-columns:.85fr 1fr; gap:100px; align-items:start; }
.contact-copy h2 { font-size:clamp(58px,6vw,92px); }
.contact-copy > p:not(.eyebrow) { margin:28px 0 0; max-width:560px; color:rgba(255,255,255,.68); font-size:17px; }
.contact-reassurance { margin-top:46px; display:grid; gap:0; border-top:1px solid var(--line-light); }
.contact-reassurance div { display:flex; justify-content:space-between; gap:20px; padding:17px 0; border-bottom:1px solid var(--line-light); }
.contact-reassurance strong { font-size:13px; }
.contact-reassurance span { font-size:12px; color:rgba(255,255,255,.5); text-align:right; }
.direct-contact { margin-top:34px; display:flex; gap:44px; }
.direct-contact a { display:flex; flex-direction:column; font-size:13px; font-weight:700; }
.direct-contact span { margin-bottom:4px; font-size:9px; color:var(--sky-400); letter-spacing:.14em; }
.form-card { background:#fff; color:var(--ink); padding:42px; border-radius:22px; box-shadow:0 30px 100px rgba(0,0,0,.28); }
.form-progress { display:grid; grid-template-columns:1fr 1fr; gap:8px; }
.form-progress span { height:3px; border-radius:99px; background:#dfe6ea; }
.form-progress span.active { background:var(--blue-600); }
.form-head { margin:28px 0 30px; }
.form-head > span { font-size:10px; font-weight:800; color:var(--blue-600); letter-spacing:.12em; text-transform:uppercase; }
.form-head h3 { margin:6px 0 4px; font-family:var(--display); font-size:36px; line-height:1; text-transform:uppercase; }
.form-head p { margin:0; color:var(--muted); font-size:13px; }
.form-alert { padding:12px 15px; margin-bottom:18px; border:1px solid #ebc2c2; background:#fff4f4; border-radius:10px; color:#8c2424; font-size:13px; }
.form-step { display:block; }
.js .form-step { display:none; }
.js .form-step.active { display:block; animation:formIn .3s ease; }
@keyframes formIn { from {opacity:0; transform:translateX(8px)} to {opacity:1; transform:none} }
.field-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.field { margin-bottom:16px; }
.field label { display:block; margin-bottom:7px; font-size:11px; font-weight:800; letter-spacing:.03em; color:#344957; }
.field input, .field select, .field textarea {
    width:100%;
    border:1px solid #d8e1e7;
    border-radius:11px;
    background:#fbfcfd;
    color:var(--ink);
    outline:none;
    transition:border-color .2s, box-shadow .2s, background .2s;
}
.field input, .field select { height:51px; padding:0 14px; }
.field textarea { padding:13px 14px; resize:vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color:var(--blue-600); background:#fff; box-shadow:0 0 0 3px rgba(22,121,173,.12); }
.field input.invalid, .field select.invalid, .field textarea.invalid { border-color:#b33c3c; }
.honeypot { position:absolute !important; left:-9999px !important; width:1px; height:1px; overflow:hidden; }
.consent { display:grid; grid-template-columns:18px 1fr; gap:10px; align-items:start; margin:4px 0 22px; font-size:11px; line-height:1.5; color:var(--muted); }
.consent input { margin-top:2px; width:16px; height:16px; accent-color:var(--blue-600); }
.consent a { text-decoration:underline; }
.form-actions { display:flex; align-items:center; gap:16px; }
.back-step { border:0; background:transparent; color:var(--muted); font-size:12px; font-weight:700; }
.submit-button { flex:1; background:var(--navy-900); color:#fff; box-shadow:none; }
.submit-button:hover { background:var(--blue-700); }
.form-error { min-height:18px; margin:10px 0 0; color:#9f2e2e; font-size:12px; }

.site-footer { background:#021521; color:#fff; padding:72px 0 100px; }
.footer-top { display:grid; grid-template-columns:1.4fr .55fr .8fr; gap:80px; }
.footer-brand img { width:220px; height:105px; object-fit:contain; filter:brightness(0) invert(1); }
.footer-brand p { max-width:360px; margin:18px 0 0; color:rgba(255,255,255,.5); font-size:13px; }
.footer-col { display:flex; flex-direction:column; gap:9px; }
.footer-col > span { margin-bottom:10px; color:var(--sky-400); font-size:9px; font-weight:800; letter-spacing:.18em; }
.footer-col a, .footer-col p { margin:0; color:rgba(255,255,255,.62); font-size:13px; }
.footer-col a:hover { color:#fff; }
.footer-bottom { margin-top:60px; padding-top:20px; border-top:1px solid rgba(255,255,255,.12); display:flex; justify-content:space-between; color:rgba(255,255,255,.38); font-size:11px; }
.footer-bottom p { margin:0; }
.mobile-cta { display:none; }

.reveal { opacity:1; transform:none; }
.js .reveal { opacity:0; transform:translateY(24px); transition:opacity .75s ease, transform .75s cubic-bezier(.2,.75,.25,1); }
.js .reveal.is-visible { opacity:1; transform:none; }

/* Thanks */
.thanks-body { min-height:100vh; background:var(--navy-950); color:#fff; }
.thanks-page { min-height:100vh; position:relative; display:grid; place-items:center; padding:40px 24px; overflow:hidden; }
.thanks-bg { position:absolute; inset:0; background:linear-gradient(rgba(3,25,43,.72),rgba(3,25,43,.86)), url('../img/hero-condominio.webp') center/cover; filter:blur(1px); }
.thanks-card { position:relative; width:min(760px,100%); padding:50px; border:1px solid rgba(255,255,255,.18); border-radius:24px; background:rgba(3,29,50,.82); backdrop-filter:blur(15px); text-align:center; box-shadow:0 30px 100px rgba(0,0,0,.34); }
.thanks-logo { display:inline-block; width:190px; }
.thanks-logo img { filter:brightness(0) invert(1); }
.success-icon { width:70px; height:70px; margin:28px auto 20px; border-radius:50%; display:grid; place-items:center; background:var(--sky-400); color:var(--navy-950); font-size:30px; font-weight:900; }
.thanks-card h1 { margin:10px 0 18px; font-family:var(--display); font-size:clamp(54px,7vw,82px); line-height:.9; text-transform:uppercase; }
.thanks-card > p:not(.eyebrow) { max-width:600px; margin:0 auto; color:rgba(255,255,255,.68); }
.thanks-next { margin:36px 0; display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid var(--line-light); border-bottom:1px solid var(--line-light); }
.thanks-next div { padding:20px 10px; display:flex; flex-direction:column; border-right:1px solid var(--line-light); }
.thanks-next div:last-child { border-right:0; }
.thanks-next strong { font-family:var(--display); color:var(--sky-400); font-size:24px; }
.thanks-next span { font-size:11px; color:rgba(255,255,255,.55); }
.thanks-back { display:block; margin-top:22px; color:rgba(255,255,255,.55); font-size:12px; }

/* Legal */
.legal-body { background:#fff; }
.legal-header { background:var(--navy-950); color:#fff; }
.legal-header .container { min-height:96px; display:flex; align-items:center; justify-content:space-between; }
.legal-header img { width:190px; height:75px; object-fit:contain; filter:brightness(0) invert(1); }
.legal-header a:last-child { font-size:12px; font-weight:700; }
.legal-page { max-width:820px; padding-top:90px; padding-bottom:100px; }
.legal-page h1 { margin:0 0 10px; font-family:var(--display); font-size:64px; line-height:.9; text-transform:uppercase; }
.legal-page h2 { margin:42px 0 10px; font-family:var(--display); font-size:28px; text-transform:uppercase; }
.legal-page p { color:var(--muted); }
.legal-page a { color:var(--blue-700); text-decoration:underline; }
.legal-updated { font-size:12px; }
.legal-footer { padding:22px 0; background:var(--navy-950); color:rgba(255,255,255,.55); font-size:12px; }

@media (max-width: 1050px) {
    .header-inner { grid-template-columns:180px 1fr 190px; }
    .desktop-nav { gap:20px; }
    .problem-layout, .method-intro, .outcomes-head, .comparison-head { gap:50px; }
    .services-layout, .faq-layout, .contact-layout { gap:60px; }
    .experience-layout { gap:70px; }
}

@media (max-width: 900px) {
    .container { width:min(calc(100% - 36px), var(--container)); }
    .section, .section-dark { padding:90px 0; }
    .header-inner { grid-template-columns:1fr auto; min-height:78px; }
    .brand { width:170px; }
    .brand img { width:170px; height:60px; }
    .desktop-nav, .header-inner > .button { display:none; }
    .menu-toggle { display:flex; width:44px; height:44px; border:1px solid rgba(255,255,255,.25); border-radius:50%; background:rgba(255,255,255,.06); flex-direction:column; align-items:center; justify-content:center; gap:6px; }
    .menu-toggle span { width:17px; height:1px; background:#fff; transition:transform .2s; }
    .menu-toggle[aria-expanded="true"] span:first-child { transform:translateY(3.5px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:last-child { transform:translateY(-3.5px) rotate(-45deg); }
    .mobile-menu { position:fixed; z-index:49; inset:78px 0 auto; padding:24px 18px 30px; background:rgba(3,25,43,.98); border-top:1px solid rgba(255,255,255,.1); display:flex; flex-direction:column; gap:4px; transform:translateY(-130%); opacity:0; pointer-events:none; transition:.28s ease; }
    .mobile-menu.open { transform:none; opacity:1; pointer-events:auto; }
    .mobile-menu > a:not(.button) { padding:14px 8px; color:rgba(255,255,255,.75); border-bottom:1px solid rgba(255,255,255,.08); font-size:14px; }
    .mobile-menu .button { margin-top:14px; }
    .hero { min-height:790px; height:100svh; }
    .hero h1 { font-size:clamp(58px,10vw,88px); }
    .hero-scroll { display:none; }
    .problem-layout, .method-intro, .outcomes-head, .comparison-head, .faq-layout, .contact-layout, .experience-layout { grid-template-columns:1fr; }
    .problem-copy, .method-lead { max-width:620px; }
    .pain-grid { grid-template-columns:1fr 1fr; }
    .steps { grid-template-columns:1fr 1fr; row-gap:50px; }
    .step:nth-child(2) .step-line { display:none; }
    .services-layout { grid-template-columns:1fr; }
    .services-sticky, .faq-heading { position:static; }
    .outcomes-grid { grid-template-columns:1fr 1fr; }
    .experience-layout { max-width:720px; }
    .portrait-wrap { width:min(76%,440px); }
    .contact-copy { max-width:700px; }
    .footer-top { grid-template-columns:1.2fr .7fr .9fr; gap:35px; }
}

@media (max-width: 700px) {
    body { padding-bottom:66px; }
    .container { width:min(calc(100% - 28px), var(--container)); }
    .section, .section-dark, .services, .contact { padding:76px 0; }
    .hero-media::after { background:linear-gradient(180deg, rgba(2,20,36,.28), rgba(2,20,36,.6)); }
    .hero { min-height:780px; height:auto; padding:130px 0 56px; align-items:center; }
    .hero-content { padding-top:0; }
    .hero-kicker { font-size:8px; letter-spacing:.14em; }
    .hero-kicker::before, .hero-kicker::after { width:24px; }
    .hero h1 { margin-top:24px; font-size:clamp(56px,16vw,76px); line-height:.81; }
    .hero h1 em { margin:15px 0 12px; font-size:10px; letter-spacing:.19em; }
    .hero-lead { max-width:520px; font-size:14px; line-height:1.7; }
    .hero-actions { margin-top:28px; flex-direction:column; }
    .button-large { width:100%; min-height:55px; }
    .hero-proof { margin-top:38px; }
    .hero-proof li { padding:15px 6px 0; }
    .hero-proof strong { font-size:18px; }
    .hero-proof span { font-size:8px; line-height:1.35; }
    .section-label { margin-bottom:25px; font-size:9px; }
    .section h2, .section-dark h2 { font-size:clamp(46px,13vw,62px); }
    .problem-layout { gap:28px; }
    .problem-copy { font-size:15px; }
    .pain-grid { margin-top:48px; grid-template-columns:1fr; }
    .pain-card { min-height:220px; }
    .pain-card > span { margin-bottom:40px; }
    .statement h2 { font-size:clamp(58px,16vw,80px); }
    .statement p { font-size:15px; }
    .steps { margin-top:55px; grid-template-columns:1fr; }
    .step { min-height:auto; padding:0 0 36px 78px; }
    .step-number { position:absolute; left:0; top:0; }
    .step-line { top:52px; left:26px; bottom:0; right:auto; height:auto; width:1px; }
    .step:nth-child(2) .step-line, .step:last-child .step-line { display:block; }
    .step:last-child .step-line { display:none; }
    .step h3 { margin:4px 0 12px; }
    .services-layout { gap:54px; }
    .service-item { grid-template-columns:58px 1fr; gap:18px; padding:30px 0; }
    .service-icon { width:48px; height:48px; font-size:20px; }
    .service-item h3 { font-size:27px; }
    .outcomes-head { gap:25px; }
    .outcomes-grid { margin-top:45px; grid-template-columns:1fr; }
    .outcome { min-height:150px; }
    .outcome p { margin-top:30px; }
    .experience-layout { gap:70px; }
    .portrait-wrap { width:82%; }
    .portrait-badge { width:105px; height:105px; right:-10px; }
    .comparison-table { margin-top:45px; }
    .comparison-row > div { padding:17px 13px; font-size:11px; }
    .comparison-title > div { font-size:8px; }
    .faq-layout { gap:45px; }
    .faq-item summary { font-size:21px; padding:23px 0; }
    .contact-layout { gap:55px; }
    .contact-copy > p:not(.eyebrow) { font-size:15px; }
    .contact-reassurance div { flex-direction:column; gap:2px; }
    .contact-reassurance span { text-align:left; }
    .direct-contact { flex-direction:column; gap:16px; }
    .form-card { padding:28px 20px; border-radius:18px; }
    .form-head h3 { font-size:31px; }
    .field-row { grid-template-columns:1fr; gap:0; }
    .form-actions { flex-direction:column-reverse; }
    .submit-button { width:100%; }
    .footer-top { grid-template-columns:1fr; gap:35px; }
    .footer-bottom { margin-top:38px; flex-direction:column; gap:8px; }
    .site-footer { padding-bottom:56px; }
    .mobile-cta { position:fixed; z-index:60; inset:auto 0 0; height:66px; display:grid; grid-template-columns:.8fr 1.2fr; background:#fff; box-shadow:0 -8px 30px rgba(0,0,0,.15); padding-bottom:env(safe-area-inset-bottom); }
    .mobile-cta a { display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:800; }
    .mobile-cta a:first-child { color:var(--navy-900); }
    .mobile-cta a:last-child { color:#fff; background:var(--navy-800); }
    .thanks-card { padding:34px 20px; }
    .thanks-next { grid-template-columns:1fr; }
    .thanks-next div { border-right:0; border-bottom:1px solid var(--line-light); }
    .thanks-next div:last-child { border-bottom:0; }
    .legal-page { padding-top:65px; }
    .legal-page h1 { font-size:48px; }
}


@supports (content-visibility: auto) {
    .problem, .statement, .method, .services, .outcomes, .experience, .comparison, .faq, .contact, .site-footer {
        content-visibility: auto;
        contain-intrinsic-size: auto 900px;
    }
}

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

/* Botones dentro del formulario: contraste sobre tarjeta blanca */
.form-card .next-step,
.form-card .submit-button {
    background: var(--navy-900);
    color: var(--white);
    box-shadow: none;
}
.form-card .next-step:hover,
.form-card .submit-button:hover {
    background: var(--blue-700);
}
