:root {
  --bg: #0d0d0e;
  --bg-2: #111113;
  --surface: #161619;
  --surface-2: #1c1c20;
  --text: #f5f2eb;
  --muted: #aaa7a0;
  --muted-2: #7b7974;
  --gold: #d7b665;
  --gold-light: #eed18a;
  --gold-dark: #a78945;
  --line: rgba(255,255,255,.1);
  --line-strong: rgba(255,255,255,.18);
  --radius: 22px;
  --shadow: 0 24px 80px rgba(0,0,0,.36);
  --font: "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --display: "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 82px; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: var(--font); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--gold); color: #121212; }

.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 999; background: var(--gold); color: #111; padding: 12px 18px; border-radius: 12px; font-weight: 700; }
.skip-link:focus { top: 12px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; transition: .25s ease; }
.site-header.scrolled, .site-header.menu-active { background: rgba(13,13,14,.88); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.header-inner { height: 78px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; }
.brand { font-family: var(--display); font-size: 22px; font-weight: 700; letter-spacing: -.05em; }
.brand span { color: var(--gold); }
.desktop-nav { display: flex; align-items: center; gap: 30px; color: var(--muted); font-size: 14px; }
.desktop-nav a { transition: color .2s ease; }
.desktop-nav a:hover { color: var(--text); }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 10px; }
.menu-button { display: none; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-strong); background: transparent; color: var(--text); position: relative; }
.menu-button span { position: absolute; left: 12px; right: 12px; height: 1.5px; background: currentColor; transition: .25s ease; }
.menu-button span:first-child { top: 17px; }
.menu-button span:last-child { top: 25px; }
.menu-button[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }
.mobile-menu { background: rgba(13,13,14,.98); border-top: 1px solid var(--line); height: calc(100dvh - 78px); }
.mobile-menu nav { display: flex; flex-direction: column; padding-block: 14px 28px; }
.mobile-menu nav > a:not(.button) { font-family: var(--display); font-size: clamp(25px, 8vw, 34px); font-weight: 600; letter-spacing: -.04em; padding: 15px 0; border-bottom: 1px solid var(--line); }
.mobile-menu .button { margin-top: 24px; }

.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 9px; border: 1px solid transparent; border-radius: 999px; padding: 11px 22px; font-weight: 700; font-size: 14px; transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease; cursor: pointer; }
.button:hover { transform: translateY(-1px); }
.button svg { width: 19px; height: 19px; fill: currentColor; }
.button-small { min-height: 42px; padding: 9px 18px; font-size: 13px; }
.button-large { min-height: 56px; padding: 14px 26px; font-size: 15px; }
.button-gold { background: var(--gold); color: #17140c; }
.button-gold:hover { background: var(--gold-light); }
.button-ghost { border-color: var(--line-strong); background: rgba(255,255,255,.025); }
.button-ghost:hover, .button-outline:hover { border-color: rgba(215,182,101,.65); background: rgba(215,182,101,.07); }
.button-outline { border-color: var(--line-strong); background: transparent; }

.hero { min-height: 760px; padding: 128px 0 78px; position: relative; overflow: hidden; }
.hero-glow { position: absolute; width: 780px; height: 780px; border-radius: 50%; background: radial-gradient(circle, rgba(215,182,101,.12), rgba(215,182,101,0) 68%); top: -360px; left: 42%; pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(390px,.92fr); gap: 80px; align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero-kicker { display: inline-flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--gold-light); }
.hero-kicker span { width: 20px; height: 1px; background: var(--gold); }
h1,h2,h3,p { margin-top: 0; }
h1,h2,h3 { font-family: var(--display); }
h1 { margin-bottom: 0; max-width: 740px; font-size: clamp(54px, 6.1vw, 86px); line-height: .98; letter-spacing: -.065em; font-weight: 600; }
h1 em, h2 em { color: var(--gold); font-style: normal; }
.hero h1 { margin-top: 22px; }
.hero-lead { max-width: 640px; margin: 26px 0 0; font-size: 18px; line-height: 1.65; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-proof { margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; gap: 40px; max-width: 600px; }
.hero-proof div { display: grid; gap: 3px; }
.hero-proof strong { font-size: 14px; }
.hero-proof span { color: var(--muted-2); font-size: 12px; }
.hero-visual { position: relative; }
.hero-image-wrap { position: relative; max-width: 470px; margin-left: auto; aspect-ratio: .74; border-radius: 30px; overflow: hidden; border: 1px solid var(--line); background: #090909; box-shadow: var(--shadow); }
.hero-image-wrap > img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; filter: contrast(1.02); }
.hero-image-shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(0,0,0,.08) 62%, rgba(0,0,0,.7) 100%); }
.hero-tag { position: absolute; z-index: 2; display: inline-flex; align-items: center; gap: 8px; background: rgba(15,15,16,.72); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(12px); border-radius: 999px; padding: 9px 13px; font-size: 11px; font-weight: 700; }
.hero-tag-top { top: 18px; right: 18px; }
.pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(215,182,101,.13); }
.hero-card { position: absolute; z-index: 2; left: 18px; right: 18px; bottom: 18px; border: 1px solid rgba(255,255,255,.15); background: rgba(14,14,15,.74); backdrop-filter: blur(16px); border-radius: 18px; padding: 17px 18px; display: grid; gap: 5px; }
.hero-card-label { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.hero-card strong { font-size: 14px; line-height: 1.4; }

.trust-strip { border-block: 1px solid var(--line); background: #101011; overflow: hidden; }
.ticker { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.ticker-track { width: max-content; display: flex; align-items: center; gap: 28px; padding: 18px 0; animation: ticker 36s linear infinite; }
.ticker-track span { color: #c0bdb6; white-space: nowrap; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.ticker-track i { color: var(--gold); font-style: normal; font-size: 8px; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding: 112px 0; }
.section-dark { background: #09090a; border-block: 1px solid var(--line); }
.section-soft { background: var(--bg-2); border-block: 1px solid var(--line); }
.section-heading { max-width: 720px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; }
h2 { margin: 16px 0 0; font-size: clamp(40px, 5vw, 64px); line-height: 1.04; letter-spacing: -.055em; font-weight: 600; }
.section-heading > p { max-width: 610px; margin: 20px 0 0; color: var(--muted); font-size: 17px; line-height: 1.65; }

.services-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; min-height: 310px; padding: 30px; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.012); transition: background .25s ease; }
.service-card:hover { background: rgba(255,255,255,.035); }
.service-featured { background: linear-gradient(145deg, rgba(215,182,101,.12), rgba(215,182,101,.025)); }
.service-badge { position: absolute; top: 24px; right: 24px; color: var(--gold-light); border: 1px solid rgba(215,182,101,.32); background: rgba(215,182,101,.06); border-radius: 999px; padding: 6px 10px; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.service-number { color: var(--gold); font-family: var(--display); font-size: 12px; letter-spacing: .08em; }
.service-card h3 { margin: 40px 0 0; font-size: 23px; line-height: 1.15; letter-spacing: -.035em; }
.service-card p { margin: 14px 0 26px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.service-card > a { margin-top: auto; display: flex; justify-content: space-between; gap: 12px; align-items: center; padding-top: 16px; border-top: 1px solid var(--line); font-size: 13px; font-weight: 700; }
.service-card > a span { color: var(--gold); font-size: 17px; }

.audio-compare { margin-top: 54px; display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center; }
.audio-card { padding: 28px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.audio-card-final { border-color: rgba(215,182,101,.25); background: linear-gradient(145deg, rgba(215,182,101,.08), var(--surface) 42%); }
.audio-topline { display: flex; justify-content: space-between; gap: 18px; align-items: flex-start; }
.audio-label { color: var(--muted-2); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.audio-card h3 { margin: 7px 0 0; font-size: 24px; letter-spacing: -.035em; }
.audio-card > p { margin: 16px 0 24px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.audio-chip { flex: 0 0 auto; border: 1px solid var(--line); color: var(--muted); border-radius: 999px; padding: 6px 9px; font-size: 10px; }
.audio-chip-gold { border-color: rgba(215,182,101,.32); color: var(--gold-light); background: rgba(215,182,101,.05); }
.compare-arrow { color: var(--gold); font-size: 26px; opacity: .75; }
.audio-player { display: flex; gap: 14px; align-items: center; padding-top: 21px; border-top: 1px solid var(--line); }
.audio-play { flex: 0 0 auto; width: 52px; height: 52px; border: 0; border-radius: 50%; background: var(--gold); color: #14110a; display: grid; place-items: center; cursor: pointer; }
.audio-play svg { width: 21px; height: 21px; fill: currentColor; }
.audio-play .icon-pause { display: none; }
.audio-player.playing .icon-play { display: none; }
.audio-player.playing .icon-pause { display: block; }
.audio-main { min-width: 0; flex: 1; }
.audio-range { width: 100%; height: 4px; appearance: none; -webkit-appearance: none; background: linear-gradient(to right, var(--gold) var(--progress,0%), #39383a var(--progress,0%)); border-radius: 99px; outline: 0; cursor: pointer; display: block; }
.audio-range::-webkit-slider-thumb { -webkit-appearance: none; width: 13px; height: 13px; border-radius: 50%; background: var(--gold-light); box-shadow: 0 0 0 3px rgba(215,182,101,.12); }
.audio-range::-moz-range-thumb { width: 13px; height: 13px; border: 0; border-radius: 50%; background: var(--gold-light); }
.audio-time { margin-top: 9px; display: flex; justify-content: space-between; color: var(--muted-2); font-size: 10px; font-variant-numeric: tabular-nums; }
.center-cta { margin-top: 36px; text-align: center; }

.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 110px; align-items: start; }
.about-sticky { position: sticky; top: 120px; }
.about-copy { padding-top: 4px; }
.about-copy p { color: var(--muted); font-size: 18px; line-height: 1.78; }
.about-copy .about-intro { color: var(--text); font-family: var(--display); font-size: 27px; line-height: 1.45; letter-spacing: -.03em; }
.about-highlight { margin-top: 36px; padding: 26px 28px; border-left: 2px solid var(--gold); background: rgba(215,182,101,.055); display: grid; gap: 5px; }
.about-highlight span { color: var(--muted); font-size: 13px; }
.about-highlight strong { font-family: var(--display); font-size: 21px; }

.steps-grid { margin-top: 54px; display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); }
.step { padding: 28px 22px 10px 0; border-right: 1px solid var(--line); min-height: 250px; }
.step + .step { padding-left: 22px; }
.step:last-child { border-right: 0; }
.step > span { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid rgba(215,182,101,.34); color: var(--gold); border-radius: 50%; font-size: 10px; }
.step h3 { margin: 48px 0 0; font-size: 19px; letter-spacing: -.03em; }
.step p { margin: 11px 0 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.audience-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.audience-chips span { padding: 11px 15px; border: 1px solid var(--line); border-radius: 999px; color: #d2cfc8; background: rgba(255,255,255,.02); font-size: 13px; }

.testimonials-section { background: #101011; border-block: 1px solid var(--line); }
.testimonials-grid { margin-top: 54px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testimonial { min-height: 340px; padding: 28px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); display: flex; flex-direction: column; }
.quote-mark { height: 48px; color: var(--gold); font-family: Georgia, serif; font-size: 64px; line-height: 1; opacity: .85; }
.testimonial > p { margin: 18px 0 30px; font-family: var(--display); font-size: 19px; line-height: 1.55; letter-spacing: -.02em; }
.person { margin-top: auto; display: flex; align-items: center; gap: 12px; padding-top: 19px; border-top: 1px solid var(--line); }
.person img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; background: #0b0b0c; border: 1px solid var(--line); }
.person div { display: grid; gap: 2px; }
.person strong { font-size: 13px; }
.person span { color: var(--muted-2); font-size: 11px; }

.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: start; }
.faq-heading { position: sticky; top: 120px; }
.faq-heading > p { color: var(--muted); line-height: 1.6; margin: 18px 0 24px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 22px 0; font-family: var(--display); font-size: 19px; font-weight: 600; letter-spacing: -.025em; }
summary::-webkit-details-marker { display: none; }
summary span { flex: 0 0 auto; width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--gold); font-family: var(--font); transition: transform .2s ease; }
details[open] summary span { transform: rotate(45deg); }
details p { max-width: 650px; margin: -3px 46px 23px 0; color: var(--muted); line-height: 1.7; font-size: 14px; }

.contact-section { position: relative; overflow: hidden; padding: 112px 0; background: #09090a; border-top: 1px solid var(--line); }
.contact-glow { position: absolute; width: 760px; height: 760px; left: -280px; bottom: -440px; background: radial-gradient(circle, rgba(215,182,101,.12), transparent 67%); pointer-events: none; }
.contact-grid { position: relative; display: grid; grid-template-columns: .95fr 1.05fr; gap: 90px; align-items: center; }
.contact-copy h2 { font-size: clamp(44px,5.6vw,70px); }
.contact-copy > p { max-width: 530px; margin: 22px 0 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.contact-links { margin-top: 30px; display: grid; max-width: 500px; border-top: 1px solid var(--line); }
.contact-links a { display: flex; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid var(--line); font-weight: 600; font-size: 14px; }
.contact-links a span { color: var(--gold); }
.contact-copy small { display: block; margin-top: 24px; color: var(--muted-2); line-height: 1.5; }
.contact-form { padding: 30px; border: 1px solid var(--line); border-radius: 26px; background: var(--surface); box-shadow: var(--shadow); }
.field + .field { margin-top: 18px; }
.field label { display: block; margin-bottom: 8px; font-size: 12px; font-weight: 700; color: #d5d2cc; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid var(--line-strong); border-radius: 13px; background: #101012; color: var(--text); outline: none; padding: 14px 15px; font-size: 15px; transition: border-color .2s ease, box-shadow .2s ease; }
.field input, .field select { min-height: 52px; }
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold-dark); box-shadow: 0 0 0 3px rgba(215,182,101,.08); }
.field input::placeholder, .field textarea::placeholder { color: #676662; }
.contact-form .button { width: 100%; margin-top: 22px; }
.form-note { margin: 11px 4px 0; color: var(--muted-2); font-size: 10px; line-height: 1.5; }

.footer { padding: 42px 0; border-top: 1px solid var(--line); background: #080809; }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 30px; }
.footer-grid > div:first-child p { color: var(--muted-2); margin: 8px 0 0; font-size: 12px; }
.footer-nav { display: flex; gap: 18px; color: var(--muted); font-size: 12px; }
.footer-meta { justify-self: end; text-align: right; color: var(--muted-2); display: grid; gap: 5px; font-size: 11px; }

.floating-whatsapp { position: fixed; right: max(18px, env(safe-area-inset-right)); bottom: max(18px, env(safe-area-inset-bottom)); z-index: 90; display: flex; align-items: center; gap: 9px; border-radius: 999px; background: var(--gold); color: #15120b; font-size: 12px; font-weight: 800; padding: 12px 16px 12px 13px; box-shadow: 0 12px 40px rgba(0,0,0,.4); }
.floating-whatsapp svg { width: 22px; height: 22px; fill: currentColor; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.7,.2,1); }
.js .reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .12s; }

@media (max-width: 1040px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .hero-grid { grid-template-columns: 1.08fr .92fr; gap: 44px; }
  h1 { font-size: clamp(48px, 6.8vw, 68px); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .step:nth-child(3) { border-right: 0; }
  .step:nth-child(n+4) { border-top: 1px solid var(--line); }
  .faq-grid { gap: 64px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 32px, 620px); }
  html { scroll-padding-top: 72px; }
  .site-header.scrolled, .site-header.menu-active { background: rgba(13,13,14,.94); }
  .header-inner { height: 68px; }
  .brand { font-size: 20px; }
  .header-cta { display: none; }
  .mobile-menu { height: calc(100dvh - 68px); }
  .mobile-menu nav { height: 100%; overflow-y: auto; padding-bottom: calc(24px + env(safe-area-inset-bottom)); }

  .hero { min-height: 0; padding: 102px 0 58px; }
  .hero-glow { width: 520px; height: 520px; top: -250px; left: 15%; }
  .hero-grid { display: flex; flex-direction: column; gap: 38px; }
  .hero-copy { width: 100%; }
  .hero-kicker { font-size: 9px; letter-spacing: .08em; }
  h1 { font-size: clamp(44px, 13.2vw, 62px); line-height: .98; letter-spacing: -.062em; }
  .hero h1 { margin-top: 18px; }
  .hero-lead { margin-top: 20px; font-size: 16px; line-height: 1.62; }
  .hero-actions { margin-top: 27px; display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-proof { margin-top: 27px; gap: 20px; justify-content: space-between; }
  .hero-proof div { flex: 1; }
  .hero-proof strong { font-size: 12px; }
  .hero-proof span { font-size: 10px; }
  .hero-visual { width: 100%; }
  .hero-image-wrap { max-width: none; width: 100%; margin: 0; aspect-ratio: .88; border-radius: 22px; }
  .hero-image-wrap > img { object-position: center 42%; }
  .hero-tag-top { top: 12px; right: 12px; }
  .hero-card { left: 12px; right: 12px; bottom: 12px; padding: 14px; }
  .hero-card-label { font-size: 9px; }
  .hero-card strong { font-size: 12px; }

  .trust-strip { margin-top: 0; }
  .ticker-track { padding: 14px 0; gap: 22px; }
  .ticker-track span { font-size: 10px; }

  .section { padding: 78px 0; }
  .eyebrow { font-size: 10px; }
  h2 { font-size: clamp(37px, 10.8vw, 50px); }
  .section-heading > p { font-size: 15px; margin-top: 17px; }

  .services-grid { margin-top: 38px; grid-template-columns: 1fr; border-left: 0; border-top: 0; gap: 10px; }
  .service-card { min-height: 0; padding: 23px; border: 1px solid var(--line); border-radius: 18px; }
  .service-card h3 { margin-top: 30px; font-size: 21px; }
  .service-card p { margin-top: 12px; margin-bottom: 21px; }
  .service-badge { top: 18px; right: 18px; }

  .audio-compare { margin-top: 38px; grid-template-columns: 1fr; gap: 12px; }
  .compare-arrow { transform: rotate(90deg); text-align: center; line-height: 1; padding: 2px; }
  .audio-card { padding: 21px; border-radius: 18px; }
  .audio-topline { align-items: center; }
  .audio-card h3 { font-size: 21px; }
  .audio-card > p { margin-bottom: 20px; }
  .audio-play { width: 48px; height: 48px; }
  .center-cta .button { width: 100%; }

  .about-grid { grid-template-columns: 1fr; gap: 35px; }
  .about-sticky { position: static; }
  .about-copy p { font-size: 16px; line-height: 1.72; }
  .about-copy .about-intro { font-size: 23px; }
  .about-highlight { margin-top: 28px; padding: 21px; }

  .steps-grid { margin-top: 38px; grid-template-columns: 1fr; border-top: 0; gap: 0; }
  .step, .step + .step { position: relative; min-height: 0; padding: 0 0 28px 58px; border: 0; border-top: 0; }
  .step:nth-child(n+4) { border-top: 0; }
  .step:not(:last-child)::before { content: ""; position: absolute; left: 18px; top: 36px; bottom: -2px; width: 1px; background: var(--line); }
  .step > span { position: absolute; left: 0; top: 0; }
  .step h3 { margin: 0; padding-top: 7px; font-size: 18px; }
  .step p { font-size: 13px; margin-top: 8px; }

  .audience-grid { grid-template-columns: 1fr; gap: 32px; }
  .audience-chips { gap: 7px; }
  .audience-chips span { padding: 9px 12px; font-size: 11px; }

  .testimonials-grid { margin-top: 38px; grid-template-columns: 1fr; gap: 10px; }
  .testimonial { min-height: 0; padding: 23px; border-radius: 18px; }
  .quote-mark { height: 38px; font-size: 54px; }
  .testimonial > p { margin-top: 12px; font-size: 17px; }

  .faq-grid { grid-template-columns: 1fr; gap: 35px; }
  .faq-heading { position: static; }
  .faq-heading .button { width: 100%; }
  summary { padding: 18px 0; font-size: 17px; }
  details p { margin-right: 38px; font-size: 13px; }

  .contact-section { padding: 78px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 38px; }
  .contact-copy h2 { font-size: clamp(40px, 11.8vw, 52px); }
  .contact-copy > p { font-size: 15px; }
  .contact-form { padding: 22px; border-radius: 20px; }

  .footer { padding: 34px 0 90px; }
  .footer-grid { grid-template-columns: 1fr; gap: 27px; align-items: start; }
  .footer-nav { flex-wrap: wrap; gap: 15px 22px; }
  .footer-meta { justify-self: start; text-align: left; }
  .floating-whatsapp { right: 14px; bottom: 14px; padding: 13px; }
  .floating-whatsapp span { display: none; }
  .floating-whatsapp svg { width: 25px; height: 25px; }
}

@media (max-width: 390px) {
  .container { width: calc(100% - 26px); }
  h1 { font-size: 42px; }
  .hero-proof { gap: 12px; }
  .service-card { padding: 20px; }
  .audio-chip { display: none; }
}

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

/* --- Hero sem foto: composição editorial + painel de produção --- */
.hero { min-height: 720px; padding: 132px 0 82px; }
.hero-grid { grid-template-columns: minmax(0,1.08fr) minmax(360px,.82fr); gap: clamp(54px,7vw,96px); }
.hero-copy { max-width: 720px; }
.hero-visual { width: 100%; }
.studio-panel {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(circle at 82% 12%, rgba(215,182,101,.12), transparent 30%),
    linear-gradient(145deg, #19191c, #111113 62%);
  box-shadow: var(--shadow);
}
.studio-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .32;
  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: 32px 32px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 88%);
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}
.studio-panel-top, .studio-now, .studio-services, .studio-link, .waveform { position: relative; z-index: 1; }
.studio-panel-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.studio-panel-top > div { display: grid; gap: 7px; }
.studio-panel-top strong { max-width: 270px; font-family: var(--display); font-size: 22px; line-height: 1.15; letter-spacing: -.035em; }
.studio-overline { color: var(--muted-2); font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.studio-status { display: inline-flex; align-items: center; gap: 7px; color: #d7d4cc; border: 1px solid var(--line); background: rgba(255,255,255,.025); border-radius: 999px; padding: 8px 10px; font-size: 10px; font-weight: 700; white-space: nowrap; }
.studio-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(215,182,101,.10); }
.waveform { height: 164px; margin: 40px 0 26px; display: flex; align-items: center; justify-content: space-between; gap: 4px; padding: 16px 0; border-block: 1px solid var(--line); }
.waveform span { flex: 1 1 auto; min-width: 3px; max-width: 8px; height: var(--h); border-radius: 999px; background: linear-gradient(to top, rgba(215,182,101,.28), var(--gold-light)); opacity: .86; }
.studio-now { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.studio-now-copy { display: grid; gap: 6px; }
.studio-now-copy span { color: var(--muted-2); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.studio-now-copy strong { max-width: 300px; font-size: 13px; line-height: 1.45; }
.studio-meter { display: flex; align-items: flex-end; gap: 3px; height: 34px; }
.studio-meter span { display: block; width: 4px; border-radius: 99px; background: var(--gold); opacity: .75; }
.studio-meter span:nth-child(1) { height: 28%; }
.studio-meter span:nth-child(2) { height: 65%; }
.studio-meter span:nth-child(3) { height: 92%; }
.studio-meter span:nth-child(4) { height: 58%; }
.studio-meter span:nth-child(5) { height: 38%; }
.studio-services { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.studio-services span { border: 1px solid var(--line); background: rgba(255,255,255,.022); border-radius: 999px; padding: 8px 10px; color: #cbc8c1; font-size: 10px; line-height: 1; }
.studio-link { margin-top: 25px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--gold-light); font-size: 12px; font-weight: 800; }
.studio-link span { font-size: 16px; }

.person-avatar { width: 48px; height: 48px; flex: 0 0 48px; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(215,182,101,.28); background: rgba(215,182,101,.07); color: var(--gold-light); font-size: 11px; font-weight: 800; letter-spacing: .04em; }

/* organização visual: seções com ritmo mais consistente */
.section-heading { max-width: 760px; }
.services-grid { border-top-color: var(--line-strong); }
.service-card { background: linear-gradient(180deg, rgba(255,255,255,.014), transparent 55%); }
.testimonial { min-height: 300px; }

@media (max-width: 1040px) {
  .hero-grid { grid-template-columns: minmax(0,1fr) minmax(330px,.8fr); gap: 42px; }
  .studio-panel { min-height: 490px; }
}

@media (max-width: 760px) {
  .hero { padding: 100px 0 52px; }
  .hero-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
  .hero-copy { max-width: none; }
  .hero-visual { order: 2; }
  .studio-panel { min-height: 0; padding: 19px; border-radius: 21px; }
  .studio-panel-top strong { font-size: 19px; }
  .studio-status { padding: 7px 9px; font-size: 9px; }
  .waveform { height: 116px; margin: 28px 0 20px; gap: 3px; padding: 12px 0; }
  .waveform span { min-width: 2px; max-width: 6px; }
  .studio-now { align-items: center; }
  .studio-now-copy strong { font-size: 12px; }
  .studio-services { margin-top: 18px; gap: 6px; }
  .studio-services span { padding: 7px 9px; font-size: 9px; }
  .studio-link { margin-top: 19px; padding-top: 16px; }
  .hero-proof { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-proof div { min-width: 0; padding: 13px 14px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.018); }
  .hero-proof { border-top: 0; padding-top: 0; }
  .section { padding: 70px 0; }
  .testimonials-grid { gap: 12px; }
  .testimonial { min-height: 0; }
}

@media (max-width: 390px) {
  .studio-panel-top { gap: 12px; }
  .studio-panel-top strong { font-size: 17px; }
  .studio-status { font-size: 8px; }
  .waveform { height: 100px; }
  .hero-proof { grid-template-columns: 1fr; }
}
