:root {
  --green-950: #17372f;
  --green-900: #21483f;
  --green-800: #2f5f53;
  --green-700: #3f7667;
  --green-600: #548b79;
  --green-200: #cfe0d8;
  --green-100: #e7f0eb;
  --cream-50: #fffdf8;
  --cream-100: #fbf7ee;
  --cream-200: #f3ecdf;
  --sand-300: #decfba;
  --terracotta: #c7775d;
  --ink: #21312c;
  --muted: #66736e;
  --white: #fff;
  --danger: #9d3f32;
  --shadow-sm: 0 10px 28px rgba(34, 58, 50, .08);
  --shadow-md: 0 22px 60px rgba(34, 58, 50, .14);
  --shadow-lg: 0 34px 100px rgba(25, 52, 44, .2);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 999px;
  --container: 1180px;
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-50);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
::selection { color: var(--white); background: var(--green-700); }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--green-900);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.section { padding: 112px 0; }
.section-heading { max-width: 640px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading h2,
.hero h1,
.final-cta h2,
.form-heading h3,
.success-dialog h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.035em;
}
.section-heading h2 { font-size: clamp(2.25rem, 5vw, 4.1rem); }
.section-heading p { margin: 22px 0 0; color: var(--muted); font-size: 1.08rem; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--green-800);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--terracotta); box-shadow: 0 0 0 6px rgba(199,119,93,.12); }
.eyebrow-soft { color: var(--green-700); }
.eyebrow-light { color: #dfece7; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-weight: 750;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .nav-toggle:focus-visible, .feature-tab:focus-visible, .faq-item button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid rgba(84,139,121,.28); outline-offset: 3px; }
.button-primary { color: var(--white); background: var(--green-800); box-shadow: 0 14px 34px rgba(47,95,83,.24); }
.button-primary:hover { background: var(--green-900); box-shadow: 0 18px 38px rgba(47,95,83,.3); }
.button-ghost { border-color: rgba(33,72,63,.18); background: rgba(255,255,255,.72); }
.button-ghost:hover { border-color: rgba(33,72,63,.32); background: var(--white); }
.button-light { color: var(--green-950); background: var(--white); box-shadow: 0 14px 34px rgba(0,0,0,.14); }
.button-small { min-height: 42px; padding: 12px 17px; font-size: .9rem; }
.button-full { width: 100%; min-height: 58px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 28px; color: var(--green-800); font-weight: 800; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto 0;
  padding: 18px 0;
  transition: padding .25s ease, background-color .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(255,253,248,.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(40,75,65,.08), 0 10px 32px rgba(40,75,65,.06);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--green-900); }
.brand-mark { width: 46px; height: 46px; flex: 0 0 auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; letter-spacing: -.025em; }
.brand-text small { margin-top: 4px; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav > a:not(.button) { color: #50615b; font-size: .94rem; font-weight: 650; }
.main-nav > a:not(.button):hover { color: var(--green-900); }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 11px; border: 0; background: transparent; }
.nav-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--green-900); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }

.hero {
  position: relative;
  min-height: 860px;
  padding: 150px 0 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(199,119,93,.12), transparent 32%),
    linear-gradient(135deg, #fffdf8 0%, #f6f1e6 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto -8% -32% auto;
  width: 720px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(83,137,118,.06);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(8px); pointer-events: none; }
.hero-glow-one { width: 310px; height: 310px; top: 140px; right: 6%; background: rgba(84,139,121,.08); }
.hero-glow-two { width: 220px; height: 220px; bottom: 180px; left: -80px; background: rgba(199,119,93,.09); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 48px; }
.hero-copy { padding: 48px 0 40px; }
.hero h1 { max-width: 720px; font-size: clamp(3.35rem, 6.6vw, 6.05rem); }
.hero-lead { max-width: 680px; margin: 26px 0 0; color: #586760; font-size: clamp(1.08rem, 2vw, 1.28rem); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-points { display: grid; gap: 10px; margin: 30px 0 0; padding: 0; list-style: none; color: #576760; font-size: .94rem; }
.hero-points li { display: flex; align-items: flex-start; gap: 10px; }
.check { width: 22px; height: 22px; display: inline-grid; place-items: center; flex: 0 0 22px; color: var(--green-800); background: var(--green-100); border-radius: 50%; font-size: .75rem; font-weight: 900; }

.hero-visual { position: relative; min-height: 620px; perspective: 1200px; }
.visual-orbit { position: absolute; border: 1px solid rgba(68,112,97,.13); border-radius: 50%; }
.orbit-one { width: 510px; height: 510px; top: 54px; left: 18px; }
.orbit-two { width: 390px; height: 390px; top: 110px; left: 84px; border-style: dashed; }
.phone { position: absolute; overflow: hidden; border-radius: 44px; box-shadow: var(--shadow-lg); background: #e9e0d2; }
.phone { aspect-ratio: 519 / 922; }
.phone img,
.how-phone img,
.stage-phone img,
.emergency-phone img { width: 100%; height: auto; }
.phone-main { width: 310px; right: 58px; top: 10px; z-index: 3; transform: rotate(2deg); }
.phone-secondary { width: 238px; left: 8px; bottom: 0; z-index: 2; transform: rotate(-7deg); opacity: .98; }
.message-card { position: absolute; z-index: 5; display: flex; align-items: center; gap: 12px; width: 270px; padding: 13px 15px; border: 1px solid rgba(35,75,65,.09); border-radius: 16px; background: rgba(255,255,255,.9); box-shadow: var(--shadow-md); backdrop-filter: blur(14px); }
.message-card strong, .message-card small { display: block; }
.message-card strong { color: var(--green-950); font-size: .85rem; }
.message-card small { margin-top: 3px; color: var(--muted); font-size: .72rem; line-height: 1.35; }
.message-avatar, .message-icon { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 38px; color: var(--white); border-radius: 50%; font-weight: 800; }
.message-avatar { background: var(--terracotta); }
.message-icon { background: var(--green-700); }
.message-card-top { top: 96px; left: -22px; }
.message-card-bottom { right: -8px; bottom: 74px; }

.trust-strip { position: relative; z-index: 3; display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 32px; padding: 19px 24px; border: 1px solid rgba(45,88,76,.09); border-radius: 18px; background: rgba(255,255,255,.66); box-shadow: var(--shadow-sm); backdrop-filter: blur(10px); }
.trust-strip > span { color: var(--green-950); font-weight: 800; }
.trust-items { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 22px; color: #61706b; font-size: .9rem; }
.trust-items span { display: inline-flex; align-items: center; gap: 7px; }
.trust-items i { font-style: normal; color: var(--green-700); }

.section-problem { background: var(--white); }
.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 54px; }
.problem-card { min-height: 250px; padding: 28px; border: 1px solid #eee8de; border-radius: var(--radius-md); background: var(--cream-50); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.problem-card:hover { transform: translateY(-6px); border-color: rgba(62,116,99,.28); box-shadow: var(--shadow-md); }
.icon-badge { width: 48px; height: 48px; display: grid; place-items: center; color: var(--green-800); background: var(--green-100); border-radius: 15px; font-family: var(--font-display); font-size: 1.45rem; }
.problem-card h3 { margin: 24px 0 10px; font-size: 1.08rem; }
.problem-card p { margin: 0; color: var(--muted); font-size: .96rem; }

.section-how { position: relative; background: var(--cream-100); overflow: hidden; }
.section-how::before { content: ""; position: absolute; width: 560px; height: 560px; left: -170px; top: 120px; border-radius: 50%; background: rgba(84,139,121,.055); }
.how-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 92px; }
.how-media { position: relative; min-height: 680px; }
.how-phone { position: absolute; width: 340px; aspect-ratio: 519 / 922; left: 50%; top: 0; transform: translateX(-50%) rotate(-2deg); border-radius: 48px; overflow: hidden; box-shadow: var(--shadow-lg); }
.how-note { position: absolute; z-index: 2; width: 235px; padding: 16px 18px; border: 1px solid rgba(33,72,63,.1); border-radius: 17px; background: rgba(255,255,255,.94); box-shadow: var(--shadow-md); }
.how-note strong, .how-note span { display: block; }
.how-note strong { color: var(--green-950); font-size: .88rem; }
.how-note span { margin-top: 4px; color: var(--muted); font-size: .78rem; }
.note-one { top: 92px; left: -16px; }
.note-two { right: -18px; bottom: 90px; }
.steps { display: grid; gap: 8px; margin: 44px 0 0; padding: 0; list-style: none; }
.step { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 20px 0; border-bottom: 1px solid rgba(39,79,69,.11); }
.step:last-child { border-bottom: 0; }
.step-number { width: 48px; height: 48px; display: grid; place-items: center; color: var(--green-800); background: var(--white); border: 1px solid var(--green-200); border-radius: 50%; font-family: var(--font-display); font-size: 1.2rem; }
.step h3 { margin: 0 0 5px; font-size: 1.04rem; }
.step p { margin: 0; color: var(--muted); }

.section-example { padding-top: 0; background: var(--cream-100); }
.example-wrap { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border-radius: var(--radius-lg); background: var(--green-900); box-shadow: var(--shadow-lg); }
.example-copy { position: relative; padding: 64px; color: var(--white); background: linear-gradient(140deg, rgba(255,255,255,.04), transparent); }
.example-copy h2 { margin: 0; font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 4rem); font-weight: 500; line-height: 1.08; letter-spacing: -.035em; }
.chat-bubble { display: flex; align-items: flex-start; gap: 13px; margin-top: 38px; padding: 18px; color: var(--ink); background: var(--white); border-radius: 18px 18px 18px 6px; box-shadow: 0 18px 42px rgba(0,0,0,.16); }
.chat-bubble p { margin: 0; }
.chat-avatar { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 38px; color: var(--white); background: var(--terracotta); border-radius: 50%; font-weight: 800; }
.example-result { margin: 28px; padding: 42px; border-radius: 24px; background: var(--cream-50); }
.result-label { color: var(--green-700); font-size: .75rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.example-result h3 { margin: 12px 0 26px; font-family: var(--font-display); font-size: 2rem; font-weight: 500; }
.example-result dl { margin: 0; }
.example-result dl div { display: flex; justify-content: space-between; gap: 18px; padding: 12px 0; border-bottom: 1px solid #e8e0d5; }
.example-result dt { color: var(--muted); }
.example-result dd { margin: 0; font-weight: 800; }
.result-actions { display: grid; grid-template-columns: 1fr auto; gap: 10px; margin-top: 24px; }
.result-actions button { min-height: 46px; padding: 10px 16px; border: 1px solid var(--green-200); border-radius: var(--radius-pill); background: transparent; font-weight: 750; cursor: pointer; }
.result-actions button:first-child { color: var(--white); border-color: var(--green-800); background: var(--green-800); }
.result-foot { margin: 18px 0 0; color: var(--muted); font-size: .85rem; }

.section-features { background: var(--white); }
.feature-showcase { display: grid; grid-template-columns: .78fr 1.22fr; gap: 42px; margin-top: 58px; }
.feature-tabs { align-self: center; display: grid; }
.feature-tab { display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 12px; padding: 18px 16px; border: 0; border-bottom: 1px solid #ece7df; color: #65736e; background: transparent; text-align: left; cursor: pointer; font-weight: 750; transition: color .2s ease, padding-left .2s ease, background-color .2s ease; }
.feature-tab span { color: #a1aaa6; font-family: var(--font-display); font-weight: 500; }
.feature-tab:hover { color: var(--green-900); padding-left: 22px; }
.feature-tab.is-active { color: var(--green-900); background: var(--green-100); border-bottom-color: transparent; border-radius: 12px; }
.feature-tab.is-active span { color: var(--terracotta); }
.feature-stage { min-height: 690px; display: grid; grid-template-columns: .84fr 1.16fr; align-items: center; gap: 16px; padding: 50px; overflow: hidden; border-radius: var(--radius-lg); background: linear-gradient(140deg, var(--cream-100), #edf3ef); box-shadow: inset 0 0 0 1px rgba(45,88,76,.08); }
.feature-stage-copy h3 { margin: 10px 0 18px; font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.6rem); font-weight: 500; line-height: 1.05; letter-spacing: -.03em; }
.feature-stage-copy p { margin: 0; color: var(--muted); }
.stage-kicker { color: var(--green-700); font-size: .78rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.stage-phone { justify-self: center; width: min(100%, 350px); aspect-ratio: 519 / 922; overflow: hidden; border-radius: 43px; box-shadow: var(--shadow-lg); transform: rotate(2deg); }
.stage-phone img { transition: opacity .18s ease, transform .35s ease; }
.stage-phone img.is-changing { opacity: .18; transform: scale(.985); }

.section-benefits { background: var(--cream-100); }
.benefits-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 96px; align-items: start; }
.benefit-list { display: grid; }
.benefit-item { display: grid; grid-template-columns: 60px 1fr; gap: 18px; padding: 28px 0; border-bottom: 1px solid rgba(39,79,69,.11); }
.benefit-item:first-child { padding-top: 0; }
.benefit-item > span { color: var(--terracotta); font-family: var(--font-display); font-size: 1.2rem; }
.benefit-item h3 { margin: 0 0 7px; font-size: 1.05rem; }
.benefit-item p { margin: 0; color: var(--muted); }

.section-emergency { background: var(--white); }
.emergency-grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 90px; }
.emergency-phone { position: relative; width: 348px; aspect-ratio: 520 / 924; margin: 0 auto; border-radius: 47px; overflow: hidden; box-shadow: var(--shadow-lg); }
.emergency-phone::before { content: ""; position: absolute; z-index: -1; width: 520px; height: 520px; inset: 50% auto auto 50%; transform: translate(-50%,-50%); border-radius: 50%; background: var(--cream-200); }
.clean-list { display: grid; gap: 13px; margin: 30px 0 0; padding: 0; list-style: none; }
.clean-list li { display: flex; align-items: center; gap: 11px; }
.clean-list span { width: 24px; height: 24px; display: grid; place-items: center; color: var(--green-800); background: var(--green-100); border-radius: 50%; font-size: .75rem; font-weight: 900; }

.section-security { color: var(--white); background: var(--green-950); }
.security-wrap { display: grid; grid-template-columns: .85fr 1.15fr; gap: 74px; align-items: center; }
.security-copy h2 { margin: 0; font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 500; line-height: 1.06; letter-spacing: -.035em; }
.security-copy p { max-width: 520px; margin: 22px 0 0; color: #c8d9d3; }
.security-badges { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; }
.security-badges span { padding: 8px 12px; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-pill); color: #dce7e3; font-size: .78rem; font-weight: 750; }
.security-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.security-card { min-height: 215px; padding: 26px; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-md); background: rgba(255,255,255,.055); }
.security-card > span { color: #92baab; font-family: var(--font-display); }
.security-card h3 { margin: 30px 0 9px; font-size: 1.05rem; }
.security-card p { margin: 0; color: #bfcfca; font-size: .92rem; }

.section-boundaries { background: var(--cream-100); }
.boundaries-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 90px; }
.boundaries-visual { min-height: 380px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 50px; border: 1px solid rgba(39,79,69,.1); border-radius: var(--radius-lg); text-align: center; background: var(--white); box-shadow: var(--shadow-sm); }
.shield-mark { width: 96px; height: 112px; display: grid; place-items: center; margin-bottom: 24px; color: var(--green-800); background: var(--green-100); clip-path: polygon(50% 0, 94% 18%, 86% 75%, 50% 100%, 14% 75%, 6% 18%); font-family: var(--font-display); font-size: 3rem; }
.boundaries-visual span { color: var(--green-700); font-size: .78rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.boundaries-visual strong { max-width: 260px; margin-top: 10px; font-family: var(--font-display); font-size: 1.65rem; font-weight: 500; line-height: 1.2; }
.fine-note { padding: 14px 16px; border-left: 3px solid var(--terracotta); background: rgba(199,119,93,.08); font-size: .93rem !important; }

.section-pilot { color: var(--white); background: linear-gradient(145deg, var(--green-900), #193b33); }
.pilot-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: start; gap: 72px; }
.pilot-copy { position: sticky; top: 130px; }
.pilot-copy h2 { margin: 0; font-family: var(--font-display); font-size: clamp(2.7rem, 5vw, 4.8rem); font-weight: 500; line-height: 1.04; letter-spacing: -.035em; }
.pilot-copy > p { margin: 24px 0 0; color: #cfe0da; font-size: 1.06rem; }
.pilot-list { display: grid; gap: 12px; margin: 32px 0 0; padding: 0; list-style: none; }
.pilot-list li { display: flex; align-items: flex-start; gap: 11px; color: #e5efeb; }
.pilot-list span { width: 23px; height: 23px; display: grid; place-items: center; flex: 0 0 23px; color: var(--green-950); background: #cce1d8; border-radius: 50%; font-size: .72rem; font-weight: 900; }
.pilot-note { margin-top: 30px; padding: 16px 18px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; color: #bdcec8; background: rgba(255,255,255,.045); font-size: .86rem; }
.pilot-note strong { color: var(--white); }
.pilot-form { padding: 38px; color: var(--ink); border-radius: var(--radius-lg); background: var(--cream-50); box-shadow: 0 36px 90px rgba(0,0,0,.25); }
.form-heading span { color: var(--green-700); font-size: .76rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.form-heading h3 { margin-top: 10px; font-size: 2.35rem; }
.form-heading p { margin: 8px 0 0; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px 14px; margin-top: 28px; }
.field { display: grid; gap: 7px; align-content: start; }
.field-full { grid-column: 1 / -1; }
.field > span { color: #41514b; font-size: .86rem; font-weight: 750; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #dcd5c9; border-radius: 12px; color: var(--ink); background: var(--white); transition: border-color .2s ease, box-shadow .2s ease; }
.field input, .field select { height: 50px; padding: 0 14px; }
.field textarea { min-height: 112px; padding: 13px 14px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #9ba4a0; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green-600); box-shadow: 0 0 0 4px rgba(84,139,121,.1); outline: 0; }
.field-error { display: none; color: var(--danger); font-size: .75rem; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: #c76050; }
.field.is-invalid .field-error { display: block; }
.consent { display: flex; align-items: flex-start; gap: 10px; margin: 3px 0 4px; color: #596760; font-size: .83rem; }
.consent input { width: 17px; height: 17px; margin-top: 3px; accent-color: var(--green-800); }
.consent.is-invalid { color: var(--danger); }
.form-privacy { margin: 14px 0 0; color: #7b8681; text-align: center; font-size: .76rem; }
.form-status { min-height: 1px; margin-top: 10px; color: var(--danger); text-align: center; font-size: .85rem; }
.button[disabled] { cursor: wait; opacity: .72; transform: none; }

.section-faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; align-items: start; gap: 92px; }
.faq-list { border-top: 1px solid #e9e3d9; }
.faq-item { border-bottom: 1px solid #e9e3d9; }
.faq-item h3 { margin: 0; }
.faq-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 0; border: 0; background: transparent; text-align: left; cursor: pointer; font-weight: 750; }
.faq-item button i { width: 30px; height: 30px; display: grid; place-items: center; flex: 0 0 30px; color: var(--green-800); border: 1px solid var(--green-200); border-radius: 50%; font-style: normal; font-size: 1.2rem; transition: transform .25s ease, background-color .25s ease; }
.faq-item.is-open button i { color: var(--white); background: var(--green-800); transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.faq-answer > p { overflow: hidden; margin: 0; color: var(--muted); }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-answer > p { padding-bottom: 24px; }

.final-cta { padding: 90px 0; color: var(--white); background: var(--terracotta); }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 42px; }
.final-cta h2 { font-size: clamp(3rem, 7vw, 6rem); }
.final-cta p { max-width: 650px; margin: 14px 0 0; color: #fff2ec; font-size: 1.08rem; }
.final-cta .button { flex: 0 0 auto; }

.site-footer { padding: 70px 0 24px; color: #c6d6d0; background: #122d27; }
.brand-footer { color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .75fr .75fr; gap: 60px; }
.footer-grid > div > p { max-width: 360px; margin: 20px 0 0; color: #9fb4ad; }
.footer-grid nav { display: grid; align-content: start; gap: 12px; }
.footer-grid nav a { color: #b8cbc4; font-size: .9rem; }
.footer-grid nav a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 54px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.09); color: #879f97; font-size: .78rem; }
.footer-bottom p { margin: 0; }

.mobile-sticky-cta { display: none; }
.success-dialog { width: min(92vw, 520px); padding: 42px; border: 0; border-radius: 26px; color: var(--ink); text-align: center; box-shadow: 0 35px 100px rgba(18,45,39,.35); }
.success-dialog::backdrop { background: rgba(15,38,33,.72); backdrop-filter: blur(5px); }
.dialog-close { position: absolute; top: 12px; right: 16px; width: 38px; height: 38px; border: 0; background: transparent; cursor: pointer; font-size: 1.6rem; }
.success-icon { width: 68px; height: 68px; display: grid; place-items: center; margin: 0 auto 22px; color: var(--white); background: var(--green-700); border-radius: 50%; font-size: 1.8rem; }
.success-dialog h2 { font-size: 2.45rem; }
.success-dialog p { color: var(--muted); }
.success-dialog .button { margin-top: 10px; }

.reveal { opacity: 1; transform: none; }
html.has-js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .72s cubic-bezier(.2,.65,.3,1), transform .72s cubic-bezier(.2,.65,.3,1); }
html.has-js .reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .09s; }
.reveal-delay-2 { transition-delay: .18s; }
.reveal-delay-3 { transition-delay: .27s; }

@media (max-width: 1100px) {
  .main-nav { gap: 20px; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 20px; }
  .phone-main { right: 0; }
  .phone-secondary { left: -35px; }
  .message-card-top { left: -60px; }
  .feature-stage { padding: 34px; }
  .stage-phone { width: 285px; }
}

@media (max-width: 900px) {
  .section { padding: 88px 0; }
  .container { width: min(calc(100% - 30px), var(--container)); }
  .nav-toggle { display: block; z-index: 1002; }
  .main-nav {
    position: fixed;
    z-index: 1001;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 10px;
    padding: 90px 26px 50px;
    background: rgba(255,253,248,.98);
    transform: translateX(100%);
    transition: transform .28s ease;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav > a:not(.button) { padding: 11px 0; font-family: var(--font-display); font-size: 1.8rem; font-weight: 500; }
  .main-nav .button { margin-top: 16px; }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: auto; padding-top: 126px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 0; }
  .hero-visual { width: min(100%, 610px); margin: 20px auto 0; }
  .trust-strip { align-items: flex-start; flex-direction: column; }
  .trust-items { justify-content: flex-start; }
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .how-grid, .benefits-grid, .emergency-grid, .security-wrap, .boundaries-grid, .pilot-grid, .faq-grid { grid-template-columns: 1fr; gap: 58px; }
  .how-media { width: min(100%, 540px); margin-inline: auto; }
  .benefits-grid .section-heading { max-width: 720px; }
  .emergency-phone { order: 2; }
  .security-wrap { gap: 44px; }
  .pilot-copy { position: static; }
  .feature-showcase { grid-template-columns: 1fr; }
  .feature-tabs { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .feature-tab { grid-template-columns: 28px 1fr; border: 1px solid #ece7df; border-radius: 12px; }
  .feature-tab:hover { padding-left: 16px; }
  .feature-stage { min-height: 620px; }
  .example-copy { padding: 46px; }
  .example-result { margin: 20px; }
  .final-cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  body { padding-bottom: 72px; }
  .section { padding: 72px 0; }
  .container { width: min(calc(100% - 24px), var(--container)); }
  .site-header { padding: 12px 0; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-text strong { font-size: 1.2rem; }
  .brand-text small { font-size: .62rem; }
  .hero { padding: 108px 0 28px; }
  .hero-copy { padding-top: 26px; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.6rem); }
  .hero-lead { font-size: 1.03rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 510px; margin-top: 30px; }
  .orbit-one { width: 390px; height: 390px; left: -5px; }
  .orbit-two { width: 300px; height: 300px; left: 38px; }
  .phone-main { width: 250px; right: 7px; }
  .phone-secondary { width: 180px; left: -22px; bottom: 4px; }
  .message-card { width: 220px; padding: 11px 12px; }
  .message-card-top { top: 92px; left: -4px; }
  .message-card-bottom { right: -2px; bottom: 18px; }
  .message-card strong { font-size: .77rem; }
  .message-card small { font-size: .66rem; }
  .trust-strip { margin-top: 14px; }
  .trust-items { gap: 12px 18px; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-card { min-height: auto; }
  .how-media { min-height: 590px; }
  .how-phone { width: 285px; }
  .how-note { width: 195px; padding: 13px; }
  .note-one { left: -8px; }
  .note-two { right: -8px; bottom: 70px; }
  .example-wrap { grid-template-columns: 1fr; }
  .example-copy { padding: 36px 24px; }
  .example-result { margin: 0 12px 12px; padding: 28px 22px; }
  .feature-tabs { grid-template-columns: 1fr 1fr; }
  .feature-tab { padding: 14px 12px; font-size: .86rem; }
  .feature-stage { min-height: 610px; grid-template-columns: 1fr; padding: 28px 22px 0; }
  .feature-stage-copy { text-align: center; }
  .stage-phone { align-self: end; width: 260px; }
  .emergency-grid { gap: 40px; }
  .emergency-phone { width: 280px; }
  .security-cards { grid-template-columns: 1fr; }
  .security-card { min-height: auto; }
  .boundaries-grid { gap: 42px; }
  .boundaries-visual { min-height: 320px; }
  .pilot-form { padding: 27px 19px; }
  .form-heading h3 { font-size: 2rem; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid > div { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .mobile-sticky-cta {
    position: fixed;
    z-index: 950;
    inset: auto 12px 12px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--green-800);
    border-radius: var(--radius-pill);
    box-shadow: 0 14px 38px rgba(23,55,47,.32);
    font-weight: 800;
  }
  .success-dialog { padding: 38px 24px 28px; }
}

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

/* Conversion section shown on the public landing page. */
.section-ready {
  padding: 44px 0 92px;
  background: var(--cream-100);
}
.ready-card {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
  padding: clamp(38px, 6vw, 76px);
  overflow: hidden;
  color: var(--white);
  border-radius: 38px;
  background:
    radial-gradient(circle at 15% 15%, rgba(255,255,255,.12), transparent 33%),
    linear-gradient(145deg, var(--green-900), #17372f);
  box-shadow: var(--shadow-lg);
}
.ready-copy h2 {
  margin: 0;
  max-width: 690px;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.038em;
}
.ready-copy > p {
  max-width: 650px;
  margin: 24px 0 28px;
  color: #d5e4df;
  font-size: 1.06rem;
}
.ready-copy small {
  display: block;
  margin-top: 14px;
  color: #b9cec7;
  font-size: .78rem;
}
.ready-steps {
  display: grid;
  gap: 14px;
}
.ready-steps article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 18px;
  background: rgba(255,255,255,.065);
  backdrop-filter: blur(8px);
}
.ready-steps article > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green-950);
  background: #dbe9e4;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}
.ready-steps strong { display: block; margin-top: 2px; font-size: 1rem; }
.ready-steps p { margin: 5px 0 0; color: #c8d9d3; font-size: .88rem; }

/* Research disclosure and questionnaire page. */
.research-body { background: var(--cream-100); }
.research-header {
  position: relative;
  padding: 18px 0;
  border-bottom: 1px solid rgba(33,72,63,.1);
  background: rgba(255,253,248,.92);
}
.research-header .header-inner { min-height: 48px; }
.research-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-900);
  font-size: .9rem;
  font-weight: 800;
}
.research-main { padding: 62px 0 96px; }
.research-message {
  max-width: 760px;
  padding: 64px;
  border: 1px solid rgba(39,79,69,.1);
  border-radius: var(--radius-lg);
  background: var(--cream-50);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.research-message h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.035em;
}
.research-message > p { max-width: 590px; margin: 24px auto 0; color: var(--muted); font-size: 1.08rem; }
.research-message .disclosure-card { max-width: 590px; margin: 32px auto 0; text-align: left; }
.research-message .button { margin-top: 30px; }
.research-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 52px;
  align-items: start;
}
.research-intro { position: sticky; top: 34px; }
.research-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  color: var(--green-800);
  border: 1px solid var(--green-200);
  border-radius: var(--radius-pill);
  background: var(--green-100);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.research-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
}
.research-intro h1 {
  margin: 22px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.045em;
}
.research-intro > p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.disclosure-card {
  margin-top: 30px;
  padding: 22px;
  border: 1px solid #e2d7c5;
  border-radius: 18px;
  background: #fff8ea;
}
.disclosure-card strong { display: block; color: #6f4f2e; }
.disclosure-card p { margin: 8px 0 0; color: #795f43; font-size: .88rem; }
.research-trust {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.research-trust li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #4f5f59;
  font-size: .9rem;
}
.research-trust span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  flex: 0 0 22px;
  color: var(--white);
  border-radius: 50%;
  background: var(--green-700);
  font-size: .72rem;
}
.research-form-card {
  padding: clamp(28px, 4.8vw, 48px);
  border: 1px solid rgba(33,72,63,.08);
  border-radius: 30px;
  background: var(--cream-50);
  box-shadow: var(--shadow-md);
}
.research-form-card .form-heading h2 {
  margin: 9px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 500;
  line-height: 1.04;
}
.research-form-card .form-heading p { max-width: 620px; }
.question-group {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid #e8e1d7;
}
.question-group:first-of-type { margin-top: 24px; }
.question-group legend,
.question-title {
  display: block;
  width: 100%;
  margin: 0 0 12px;
  padding: 0;
  color: var(--ink);
  font-size: .95rem;
  font-weight: 800;
}
.question-hint { display: block; margin: -6px 0 13px; color: var(--muted); font-size: .8rem; }
.option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.option-grid.option-grid-single { grid-template-columns: 1fr; }
.option-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 52px;
  padding: 13px 14px;
  cursor: pointer;
  border: 1px solid #ddd6cb;
  border-radius: 13px;
  background: var(--white);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.option-card:hover { transform: translateY(-1px); border-color: var(--green-600); }
.option-card:has(input:checked) { border-color: var(--green-700); background: var(--green-100); }
.option-card input { margin-top: 2px; accent-color: var(--green-800); }
.option-card span { color: #45544e; font-size: .86rem; line-height: 1.35; }
.research-form-card .form-grid { margin-top: 14px; }
.research-form-card .button { margin-top: 24px; }
.research-origin {
  margin: 16px 0 0;
  color: #7b8681;
  text-align: center;
  font-size: .74rem;
}
.research-success {
  display: none;
  padding: 56px 28px;
  text-align: center;
}
.research-success.is-visible { display: block; }
.research-success .success-icon { margin-bottom: 20px; }
.research-success h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 500;
}
.research-success p { max-width: 560px; margin: 15px auto 0; color: var(--muted); }
.research-success .button { margin-top: 24px; }
.research-form-card.is-complete > form,
.research-form-card.is-complete > .form-heading { display: none; }
.research-form-card.is-complete .research-success { display: block; }

@media (max-width: 900px) {
  .ready-card { grid-template-columns: 1fr; gap: 40px; }
  .research-layout { grid-template-columns: 1fr; }
  .research-intro { position: static; }
}

@media (max-width: 640px) {
  .section-ready { padding: 20px 0 72px; }
  .ready-card { padding: 36px 22px; border-radius: 26px; }
  .ready-steps article { grid-template-columns: 40px 1fr; padding: 16px; }
  .ready-steps article > span { width: 40px; height: 40px; }
  .research-header .brand-text { display: inline-flex; }
  .research-main { padding: 38px 0 72px; }
  .research-message { padding: 42px 26px; }
  .research-layout { gap: 32px; }
  .research-form-card { padding: 25px 18px; border-radius: 22px; }
  .option-grid { grid-template-columns: 1fr; }
  .research-back { font-size: .8rem; }
}
.question-group.is-invalid {
  border-top-color: rgba(157,63,50,.45);
}
.question-group.is-invalid legend,
.question-group.is-invalid .question-title {
  color: var(--danger);
}
.question-group.is-invalid legend::after {
  content: ' Selecione uma opção.';
  display: block;
  margin-top: 6px;
  font-size: .75rem;
  font-weight: 600;
}
.field > span em { color: var(--muted); font-size: .75rem; font-style: normal; font-weight: 500; }
