@font-face {
  font-family: "UAMI Avenir";
  src: local("Avenir LT Std Book"), local("Avenir Next Regular"), local("Avenir Book");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "UAMI Avenir";
  src: local("Avenir LT Std Medium"), local("Avenir Next Medium");
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
}
@font-face {
  font-family: "UAMI Avenir";
  src: local("Avenir LT Std Heavy"), local("Avenir Next Bold");
  font-style: normal;
  font-weight: 700 800;
  font-display: swap;
}

:root {
  --night: #1e0a3c;
  --deep: #4a1c7c;
  --primary: #6b35a0;
  --vibrant: #8b45d4;
  --lilac: #a87ad4;
  --lavender: #c9b3e8;
  --pink: #fd3db6;
  --pink-soft: #ff65c5;
  --paper: #fff;
  --mist: #f6f5f9;
  --ink-soft: #6b6b7b;
  --rule: #e8e6f0;
  --whatsapp: #25d366;
  --font: "UAMI Avenir", "Avenir Next", Avenir, "Segoe UI", system-ui, sans-serif;
  --container: 1240px;
  --page-x: clamp(1.25rem, 4vw, 3.5rem);
  --section-y: clamp(4.75rem, 8vw, 7.5rem);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 42px;
  --radius-pill: 999px;
  --shadow-sm: 0 8px 26px rgba(30,10,60,.07);
  --shadow-md: 0 24px 64px rgba(30,10,60,.12);
  --shadow-lg: 0 38px 90px -34px rgba(30,10,60,.48);
  --ease: cubic-bezier(.16,1,.3,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  min-height: 100dvh;
  color: var(--night);
  background: var(--paper);
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.62;
  letter-spacing: -.008em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { color: inherit; font: inherit; }
button { cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p, blockquote { margin: 0; }
strong, b { font-weight: 600; }
:focus-visible { outline: 3px solid var(--pink); outline-offset: 4px; }
::selection { color: var(--night); background: rgba(253,61,182,.28); }
[id] { scroll-margin-top: 6rem; }

.skip-link {
  position: fixed;
  z-index: 500;
  top: .75rem;
  left: .75rem;
  padding: .7rem 1rem;
  border-radius: var(--radius-pill);
  color: white;
  background: var(--night);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
.scroll-progress {
  position: fixed;
  z-index: 260;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}
.container { width: min(calc(100% - (var(--page-x) * 2)), var(--container)); margin-inline: auto; }
.section-pad { padding-block: var(--section-y); }
.section-pad-sm { padding-block: clamp(3rem, 5vw, 4.5rem); }
.band-mist { background: var(--mist); }

h1, h2, h3 { font-family: var(--font); color: var(--night); text-wrap: balance; }
h1 { max-width: 10ch; font-size: clamp(3rem, 5.3vw, 5.35rem); font-weight: 450; line-height: .98; letter-spacing: -.055em; }
h2 { max-width: 20ch; font-size: clamp(2rem, 3.55vw, 3.45rem); font-weight: 450; line-height: 1.05; letter-spacing: -.047em; }
h3 { font-size: clamp(1.2rem, 1.55vw, 1.48rem); font-weight: 600; line-height: 1.2; letter-spacing: -.025em; }
h1 em, h2 em, h3 em { color: var(--primary); font-style: normal; font-weight: 600; }
.lede { max-width: 58ch; margin-top: 1.35rem; color: var(--ink-soft); font-size: clamp(1.03rem, 1.25vw, 1.16rem); line-height: 1.62; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: var(--primary);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  line-height: 1.35;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; flex: none; background: var(--pink); }
.section-head { max-width: 52rem; }
.section-head h2 { margin-top: 1.35rem; }
.on-dark, .on-dark h2, .on-dark h3 { color: white; }
.on-dark h2 em { color: var(--lavender); }
.on-dark .eyebrow { color: var(--lavender); }
.on-dark .lede { color: rgba(255,255,255,.72); }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .9rem 1.3rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: .9rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  transition: transform .22s var(--ease), background .22s ease, color .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--primary); box-shadow: 0 14px 34px rgba(107,53,160,.24); }
.button-primary:hover { background: var(--deep); box-shadow: 0 18px 40px rgba(74,28,124,.28); }
.button-ghost { border-color: rgba(107,53,160,.2); background: rgba(255,255,255,.72); }
.button-ghost:hover { border-color: rgba(107,53,160,.35); background: white; }
.button-light { color: var(--night); background: white; box-shadow: 0 16px 44px rgba(0,0,0,.18); }
.button-light:hover { background: var(--mist); }
.text-link { display: inline-flex; align-items: center; gap: .55rem; margin-top: 2rem; color: var(--primary); font-size: .95rem; font-weight: 600; }
.text-link span { transition: transform .2s var(--ease); }
.text-link:hover span { transform: translateX(4px); }

.site-header {
  position: fixed;
  z-index: 250;
  inset: 0 0 auto;
  background: rgba(255,255,255,.82);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.site-header.is-scrolled { background: rgba(255,255,255,.94); border-color: rgba(30,10,60,.08); box-shadow: 0 12px 32px rgba(30,10,60,.05); }
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { width: clamp(7.5rem, 12vw, 9.2rem); }
.brand img { width: 100%; height: auto; }

.hero { position: relative; min-height: 100svh; display: grid; align-items: center; padding: clamp(8rem, 12vw, 10rem) 0 clamp(4.5rem, 8vw, 7rem); overflow: hidden; }
.hero::before { content: ""; position: absolute; width: 38rem; aspect-ratio: 1; top: -17rem; left: 43%; border-radius: 50%; background: radial-gradient(circle, rgba(201,179,232,.3), transparent 70%); pointer-events: none; }
.hero::after { content: ""; position: absolute; width: 14rem; height: 14rem; right: -7rem; bottom: 2rem; border-radius: 50%; border: 1px solid rgba(107,53,160,.12); pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0,.92fr) minmax(420px,1.08fr); align-items: center; gap: clamp(2.5rem,6vw,6rem); }
.hero-copy { max-width: 39rem; }
.hero-copy h1 { margin-top: 1.45rem; }
.hero-subtitle { margin-top: 1.4rem; color: var(--deep); font-size: clamp(1.25rem,2vw,1.65rem); font-weight: 600; line-height: 1.25; letter-spacing: -.025em; }
.hero-body { max-width: 57ch; margin-top: 1.1rem; color: var(--ink-soft); font-size: clamp(1rem,1.3vw,1.12rem); }
.hero-actions { margin-top: 2rem; display: flex; align-items: center; gap: 1.25rem; }
.hero-actions p { color: var(--ink-soft); font-size: .8rem; line-height: 1.45; }
.hero-actions strong { color: var(--night); }
.hero-media { position: relative; }
.video-shell { position: relative; aspect-ratio: 16/10.2; overflow: hidden; border-radius: clamp(1.5rem,3vw,2.8rem); background: var(--night); box-shadow: var(--shadow-lg); }
.video-shell::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.22); border-radius: inherit; pointer-events: none; }
.video-shell video { width: 100%; height: 100%; object-fit: cover; }
.video-label { position: absolute; z-index: 2; left: 1rem; bottom: 1rem; max-width: calc(100% - 5rem); padding: .65rem .85rem; overflow: hidden; border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-pill); color: white; background: rgba(30,10,60,.66); backdrop-filter: blur(14px); font-size: .68rem; font-weight: 600; letter-spacing: .11em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.video-toggle { position: absolute; z-index: 3; right: 1rem; bottom: 1rem; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; color: white; background: rgba(30,10,60,.66); backdrop-filter: blur(14px); font-size: .8rem; }

.case-strip { color: white; background: var(--night); overflow: hidden; }
.case-strip .eyebrow { color: var(--lavender); }
.strip-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 2rem; }
.strip-head p { max-width: 29rem; color: rgba(255,255,255,.66); font-size: .95rem; text-align: right; }
.strip-head strong { color: white; }
.quote-track { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); }
.quote-card { min-height: 17rem; padding: 1.75rem; border-right: 1px solid rgba(255,255,255,.14); }
.quote-card:first-child { border-left: 1px solid rgba(255,255,255,.14); }
.quote-card span { color: var(--pink-soft); font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.quote-card blockquote { margin-top: 1.5rem; color: rgba(255,255,255,.92); font-size: clamp(1rem,1.25vw,1.15rem); line-height: 1.55; }

.objection-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 3.5rem; }
.number-card { min-height: 27rem; display: flex; flex-direction: column; padding: clamp(1.5rem,2.5vw,2.25rem); border: 1px solid var(--rule); border-radius: var(--radius-lg); background: white; transition: transform .25s var(--ease), box-shadow .25s ease; }
.number-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.number-card .index { margin-bottom: auto; color: var(--lavender); font-size: clamp(3.2rem,5vw,5.4rem); font-weight: 450; line-height: 1; letter-spacing: -.07em; }
.number-card h3 { max-width: 18ch; margin-top: 2rem; }
.number-card p { margin-top: 1rem; color: var(--ink-soft); font-size: .96rem; }
.section-closing { max-width: 56rem; margin-top: 2.5rem; color: var(--ink-soft); font-size: clamp(1.05rem,1.6vw,1.35rem); }
.section-closing strong { color: var(--night); }

.meeting-grid { display: grid; grid-template-columns: minmax(0,.85fr) minmax(430px,1.15fr); align-items: start; gap: clamp(3rem,7vw,7rem); }
.meeting-intro { position: sticky; top: 7rem; }
.meeting-intro h2 { margin-top: 1.35rem; }
.outcome-panel { padding: clamp(1.6rem,3vw,2.8rem); border: 1px solid var(--rule); border-radius: var(--radius-xl); background: linear-gradient(150deg,#fff 25%,#f9f7fc); box-shadow: var(--shadow-sm); }
.panel-kicker { color: var(--primary); font-size: .75rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.outcome-list { margin-top: 1rem; }
.outcome-list li { display: grid; grid-template-columns: 2.5rem 1fr; gap: 1rem; padding-block: 1.5rem; border-top: 1px solid var(--rule); }
.outcome-list li > span { color: var(--pink); font-size: .75rem; font-weight: 600; }
.outcome-list p { margin-top: .5rem; color: var(--ink-soft); font-size: .95rem; }
.outcome-close { padding-top: 1.2rem; border-top: 1px solid var(--rule); color: var(--deep); font-weight: 600; }

.collaboration-band { position: relative; color: white; background: linear-gradient(145deg,var(--night),var(--deep)); overflow: hidden; }
.collaboration-band::after { content: ""; position: absolute; width: 34rem; aspect-ratio: 1; right: -13rem; bottom: -22rem; border-radius: 50%; border: 1px solid rgba(255,255,255,.12); box-shadow: 0 0 0 5rem rgba(255,255,255,.015),0 0 0 10rem rgba(255,255,255,.012); }
.collaboration-band .container { position: relative; z-index: 1; }
.team-compare { display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch; gap: 1.25rem; margin-top: 3.5rem; }
.team-compare article { padding: clamp(1.5rem,3vw,2.5rem); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-lg); background: rgba(255,255,255,.07); backdrop-filter: blur(14px); }
.team-label { color: var(--pink-soft); font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.team-compare ul { margin-top: 1.6rem; }
.team-compare li { position: relative; padding: 1rem 0 1rem 1.5rem; border-top: 1px solid rgba(255,255,255,.12); }
.team-compare li::before { content: ""; position: absolute; left: 0; top: 1.62rem; width: 6px; height: 6px; border-radius: 50%; background: var(--pink); }
.team-plus { width: 3.2rem; height: 3.2rem; align-self: center; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: var(--pink-soft); background: var(--night); font-size: 1.6rem; }
.band-note { max-width: 52rem; margin-top: 2.25rem; color: rgba(255,255,255,.72); }

.process-section { overflow: hidden; }
.process-list { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 4rem; border-top: 1px solid var(--rule); }
.process-list::before { content: ""; position: absolute; top: -1px; left: 0; width: 25%; height: 3px; background: var(--pink); }
.process-item { min-height: 26rem; padding: 1.6rem clamp(1.25rem,2vw,2rem); border-right: 1px solid var(--rule); }
.process-item:first-child { border-left: 1px solid var(--rule); }
.process-num { display: block; color: var(--lavender); font-size: clamp(2.8rem,4vw,4.5rem); line-height: 1; letter-spacing: -.06em; }
.process-item div { margin-top: 7rem; }
.process-item p { margin-top: .85rem; color: var(--ink-soft); font-size: .94rem; }

.one-at-time { position: relative; color: white; background: var(--primary); overflow: hidden; }
.one-at-time::before { content: ""; position: absolute; inset: 0; opacity: .26; background: radial-gradient(circle at 15% 10%,#fd3db6 0,transparent 24%),radial-gradient(circle at 90% 80%,#1e0a3c 0,transparent 32%); }
.one-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem,7vw,7rem); align-items: end; }
.one-grid h2 { margin-top: 1.35rem; }
.chip-list { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 2rem; }
.chip-list li { padding: .72rem 1rem; border: 1px solid rgba(255,255,255,.24); border-radius: var(--radius-pill); color: white; background: rgba(255,255,255,.08); font-size: .82rem; font-weight: 600; }

.result-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 3.5rem; }
.result-card { position: relative; min-height: 22rem; padding: clamp(1.5rem,2.7vw,2.4rem); overflow: hidden; border: 1px solid var(--rule); border-radius: var(--radius-lg); background: white; box-shadow: var(--shadow-sm); }
.result-card h3 { margin-top: 8rem; }
.result-card p { margin-top: .85rem; color: var(--ink-soft); }
.result-mark { position: absolute; top: 2rem; left: 2rem; width: 5rem; height: 5rem; border: 1px solid var(--lavender); border-radius: 50%; }
.result-mark::before, .result-mark::after { content: ""; position: absolute; border-radius: 50%; }
.result-mark::before { width: 2.8rem; height: 2.8rem; top: 1.05rem; left: 1.05rem; background: rgba(168,122,212,.18); }
.result-mark::after { width: .7rem; height: .7rem; top: 2.15rem; left: 2.15rem; background: var(--pink); }
.result-card:nth-child(2) .result-mark { border-radius: 18px; transform: rotate(12deg); }
.result-card:nth-child(3) .result-mark { border-style: dashed; }

.faq-grid { display: grid; grid-template-columns: minmax(0,.82fr) minmax(460px,1.18fr); align-items: start; gap: clamp(3rem,7vw,7rem); }
.faq-grid .section-head { position: sticky; top: 7rem; }
.faq-list { border-top: 1px solid var(--rule); }
.faq-list details { border-bottom: 1px solid var(--rule); }
.faq-list summary { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 1.5rem; padding: 1.45rem 0; color: var(--night); font-weight: 600; line-height: 1.35; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 2rem; height: 2rem; display: grid; place-items: center; border: 1px solid var(--rule); border-radius: 50%; color: var(--primary); transition: transform .25s var(--ease), background .25s ease; }
.faq-list details[open] summary span { color: white; background: var(--primary); transform: rotate(45deg); }
.faq-list details p { max-width: 59ch; padding: 0 3rem 1.5rem 0; color: var(--ink-soft); font-size: .96rem; }

.integration-section { padding-block: clamp(3rem,6vw,5rem); }
.integration-panel { display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: 3rem; padding: clamp(1.7rem,4vw,3.5rem); border: 1px solid var(--rule); border-radius: var(--radius-xl); background: linear-gradient(140deg,#fff,#f8f5fc); box-shadow: var(--shadow-sm); }
.integration-panel h2 { margin-top: 1.1rem; font-size: clamp(1.7rem,2.6vw,2.5rem); }
.integration-panel p { max-width: 58ch; margin-top: 1rem; color: var(--ink-soft); }
.integration-panel ul { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .6rem; }
.integration-panel li { padding: .72rem 1rem; border: 1px solid rgba(107,53,160,.15); border-radius: var(--radius-pill); color: var(--deep); background: white; font-size: .8rem; font-weight: 600; box-shadow: 0 5px 16px rgba(30,10,60,.05); }

.final-cta { position: relative; color: white; background: var(--night); text-align: center; overflow: hidden; }
.final-cta::before { content: ""; position: absolute; width: 50rem; aspect-ratio: 1; top: -38rem; left: 50%; transform: translateX(-50%); border-radius: 50%; background: var(--vibrant); filter: blur(30px); opacity: .45; }
.final-cta .container { position: relative; }
.final-cta .eyebrow { color: var(--lavender); }
.final-cta h2 { max-width: 20ch; margin: 1.4rem auto 0; color: white; }
.final-cta h2 em { color: var(--pink-soft); }
.final-cta .lede { margin-inline: auto; color: rgba(255,255,255,.7); }
.final-cta .button { margin-top: 2rem; }
.final-note { margin-top: 1rem; color: rgba(255,255,255,.56); font-size: .8rem; }

.site-footer { padding-block: 3rem; border-top: 1px solid var(--rule); background: white; }
.footer-inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; }
.footer-brand img { width: 8.5rem; }
.footer-brand p { margin-top: 1rem; color: var(--ink-soft); font-size: .85rem; }
.footer-actions { display: flex; align-items: center; gap: 1.25rem; }
.footer-actions > a:first-child { color: var(--ink-soft); font-size: .8rem; text-decoration: underline; text-underline-offset: 3px; }

.wa-fab { position: fixed; z-index: 230; right: 1rem; bottom: 1rem; min-height: 48px; display: flex; align-items: center; gap: .55rem; padding: .75rem 1rem; border: 0; border-radius: var(--radius-pill); color: white; background: #148d42; box-shadow: 0 12px 30px rgba(20,141,66,.28); font-size: .78rem; font-weight: 600; }
.wa-dot { width: .55rem; height: .55rem; border: 2px solid rgba(255,255,255,.8); border-radius: 50%; background: var(--whatsapp); box-shadow: 0 0 0 3px rgba(255,255,255,.14); }

.modal-overlay { position: fixed; z-index: 400; inset: 0; display: grid; place-items: center; padding: 1rem; background: rgba(18,5,35,.72); backdrop-filter: blur(12px); opacity: 0; visibility: hidden; transition: opacity .2s ease, visibility .2s ease; }
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-card { position: relative; width: min(100%,780px); max-height: calc(100dvh - 2rem); overflow: auto; display: grid; grid-template-columns: .82fr 1.18fr; gap: 2rem; padding: clamp(1.4rem,3vw,2.4rem); border-radius: var(--radius-xl); background: white; box-shadow: 0 35px 100px rgba(0,0,0,.32); transform: translateY(18px) scale(.985); transition: transform .25s var(--ease); }
.modal-overlay.open .modal-card { transform: none; }
.modal-close { position: absolute; z-index: 2; top: .85rem; right: .85rem; width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--rule); border-radius: 50%; color: var(--night); background: white; font-size: 1.35rem; line-height: 1; }
.modal-head { padding-right: .5rem; }
.modal-head img { width: 7.5rem; margin-bottom: 3rem; }
.modal-head h2 { margin-top: 1rem; font-size: clamp(1.75rem,3vw,2.5rem); }
.modal-head > p { margin-top: 1rem; color: var(--ink-soft); font-size: .9rem; }
.lead-form { display: grid; gap: .85rem; padding-top: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.lead-form label { display: grid; gap: .4rem; color: var(--night); font-size: .75rem; font-weight: 600; }
.lead-form input, .lead-form textarea, .lead-form select { width: 100%; border: 1px solid var(--rule); border-radius: var(--radius-sm); color: var(--night); background: white; font-size: .9rem; font-weight: 400; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.lead-form input, .lead-form select { min-height: 47px; padding: .7rem .8rem; }
.lead-form textarea { min-height: 98px; padding: .75rem .8rem; resize: vertical; }
.lead-form input:focus, .lead-form textarea:focus, .lead-form select:focus { border-color: var(--vibrant); box-shadow: 0 0 0 3px rgba(139,69,212,.12); }
.lead-form .invalid { border-color: #c73555; box-shadow: 0 0 0 3px rgba(199,53,85,.1); }
.phone-row { display: grid; grid-template-columns: 7rem 1fr; gap: .5rem; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-submit { width: 100%; margin-top: .15rem; }
.form-submit[disabled] { opacity: .65; cursor: wait; transform: none; }
.form-note { color: var(--ink-soft); font-size: .72rem; text-align: center; }
.form-status { min-height: 1.1rem; color: #a5213f; font-size: .78rem; text-align: center; }
#turnstile-container { min-height: 0; }

.no-js .reveal { opacity: 1; transform: none; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .quote-track { grid-template-columns: repeat(2,1fr); }
  .quote-card:nth-child(2) { border-right: 1px solid rgba(255,255,255,.14); }
  .quote-card:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.14); }
  .process-list { grid-template-columns: repeat(2,1fr); }
  .process-item:nth-child(n+3) { border-top: 1px solid var(--rule); }
}

@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.75rem; }
  .hero-copy { max-width: 46rem; }
  h1 { max-width: 11ch; }
  .objection-grid, .result-grid { grid-template-columns: 1fr; }
  .number-card { min-height: auto; }
  .number-card .index { margin-bottom: 3rem; }
  .meeting-grid, .faq-grid { grid-template-columns: 1fr; }
  .meeting-intro, .faq-grid .section-head { position: static; }
  .team-compare { grid-template-columns: 1fr; }
  .team-plus { margin: -.25rem auto; }
  .one-grid, .integration-panel { grid-template-columns: 1fr; }
  .integration-panel ul { justify-content: flex-start; }
  .modal-card { grid-template-columns: 1fr; gap: 0; }
  .modal-head img { margin-bottom: 1.5rem; }
  .modal-head > p { max-width: 34rem; }
}

@media (max-width: 620px) {
  body { font-size: 1rem; }
  .header-inner { min-height: 68px; }
  .button-ghost { min-height: 44px; padding: .75rem 1rem; }
  .hero { padding-top: 7.25rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .video-shell { border-radius: 1.25rem; }
  .strip-head { align-items: flex-start; flex-direction: column; }
  .strip-head p { text-align: left; }
  .quote-track { display: flex; margin-inline: calc(var(--page-x) * -1); padding-inline: var(--page-x); overflow-x: auto; border: 0; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .quote-track::-webkit-scrollbar { display: none; }
  .quote-card { min-width: min(82vw,330px); min-height: 18rem; border: 1px solid rgba(255,255,255,.14) !important; scroll-snap-align: start; }
  .process-list { grid-template-columns: 1fr; }
  .process-item { min-height: auto; border: 1px solid var(--rule); border-top: 0; }
  .process-item:first-child { border-top: 1px solid var(--rule); }
  .process-item div { margin-top: 3.5rem; }
  .footer-inner, .footer-actions { align-items: flex-start; flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .modal-overlay { padding: 0; align-items: end; }
  .modal-card { max-height: 94dvh; border-radius: 1.6rem 1.6rem 0 0; padding: 1.25rem; }
  .modal-head { padding-right: 2.5rem; }
  .modal-head img { width: 6.8rem; margin-bottom: 1rem; }
  .lead-form { padding-top: 1.35rem; }
  .wa-fab span:last-child { display: none; }
  .wa-fab { width: 48px; justify-content: center; padding: 0; }
}

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