/* ==========================================================================
   Optivance — hardened build
   Design system unchanged (palette and dot motif from the logo).
   Security posture: no third-party requests, no JavaScript, no web fonts
   from a CDN. Everything this stylesheet references is served from this
   same origin, so the page works with script blocked and leaks nothing to
   a third party.
   ========================================================================== */

/* -------------------------------------------------------- self-hosted -- */

@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/sora-600.woff2") format("woff2");
}
@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/sora-700.woff2") format("woff2");
}
@font-face {
  font-family: "Figtree";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/figtree-400.woff2") format("woff2");
}
@font-face {
  font-family: "Figtree";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/figtree-600.woff2") format("woff2");
}

:root {
  --navy-ink:   #0F1A3C;
  --navy:       #131C46;
  --deep:       #16337A;
  --royal:      #1657CE;
  --azure:      #2E90E0;
  --cyan:       #1FB6C9;
  --cyan-text:  #0E7C89;

  --bg:         #FFFFFF;
  --bg-alt:     #F5F8FD;
  --bg-tint:    #EDF3FE;
  --bg-card:    #FBFCFE;
  --border:     #E1E7F2;
  --border-str: #C9D6EC;
  --text:       #0F1A3C;
  --text-body:  #3A4562;
  --text-muted: #566080;
  --text-soft:  #6B7593;

  --on-dark:      #FFFFFF;
  --on-dark-body: #B7C2DC;
  --on-dark-soft: #8FA0C6;

  --maxw: 1120px;
  --gutter: 24px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 22px;
  --r-xl: 26px;

  --font-display: "Sora", ui-sans-serif, system-ui, "Segoe UI", sans-serif;
  --font-body: "Figtree", ui-sans-serif, system-ui, "Segoe UI", sans-serif;
}

/* --------------------------------------------------------------- base -- */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.14;
}
h1 { font-size: clamp(2.1rem, 1.35rem + 2.6vw, 3.75rem); line-height: 1.07; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.7rem, 1.25rem + 1.6vw, 2.625rem); }
h3 { font-size: 1.3rem; letter-spacing: -0.015em; }

p { margin: 0; }
img, svg { max-width: 100%; display: block; }
a { color: var(--royal); text-decoration: none; }
a:hover { color: #113F99; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible { outline: 3px solid var(--azure); outline-offset: 2px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--royal); color: #fff;
  padding: 12px 20px; border-radius: 0 0 var(--r-sm) 0; z-index: 100;
}
.skip-link:focus { left: 0; color: #fff; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ------------------------------------------------------------- layout -- */

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

.section { padding: 88px 0; }
.section--alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section--dark { background: var(--navy-ink); color: var(--on-dark-body); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--on-dark); }
.section--tint { background: var(--bg-tint); }

.stack { display: flex; flex-direction: column; }
.gap-8 { gap: 8px; } .gap-12 { gap: 12px; } .gap-16 { gap: 16px; }
.gap-20 { gap: 20px; } .gap-24 { gap: 24px; } .gap-32 { gap: 32px; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 64px; align-items: start; }
.split--wide-left { grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); }
.split--wide-right { grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); }

.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 56px; margin-bottom: 48px; }
.section-head__lede { max-width: 380px; color: var(--text-muted); }
.section-head--center { flex-direction: column; align-items: center; text-align: center; gap: 14px; }
.section-head--center .section-head__lede { max-width: 560px; }

/* --------------------------------------------------------------- bits -- */

.eyebrow { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--royal); }
.eyebrow--muted { color: var(--text-soft); }
.eyebrow--cyan { color: #6FD2DE; }

.tagline {
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 34px; padding: 4px 16px; border-radius: 999px;
  background: var(--bg-tint);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--deep); align-self: flex-start;
}

.dot { display: block; border-radius: 999px; flex-shrink: 0; }
.dot--sm { width: 6px; height: 6px; }
.dot--md { width: 9px; height: 9px; }
.dot--lg { width: 13px; height: 13px; }
.dot--navy { background: var(--navy); }
.dot--royal { background: var(--royal); }
.dot--azure { background: var(--azure); }
.dot--cyan { background: var(--cyan); }
.dot-scale { display: flex; align-items: center; gap: 6px; }

.lede { font-size: 1.0625rem; color: var(--text-muted); }
.muted { color: var(--text-muted); }
.soft { color: var(--text-soft); font-size: 0.875rem; }

/* ------------------------------------------------------------ buttons -- */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 30px; border-radius: 999px;
  border: 1.5px solid transparent;
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  cursor: pointer; text-align: center;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.btn--primary { background: var(--royal); color: #fff; }
.btn--primary:hover { background: #1149AD; color: #fff; }
.btn--ghost { background: #fff; border-color: var(--border-str); color: var(--deep); }
.btn--ghost:hover { border-color: var(--royal); color: var(--royal); }
.btn--sm { min-height: 46px; padding: 0 26px; font-size: 0.9375rem; }
.btn--block { width: 100%; }
.link-arrow { font-weight: 600; font-size: 0.9375rem; }

/* ------------------------------------- header + CSS-only mobile menu -- */
/* No JavaScript: a hidden checkbox drives the menu. The label is keyboard
   reachable, and the checkbox carries the accessible name.               */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff; border-bottom: 1px solid var(--border);
}
.site-header__inner {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  min-height: 80px; gap: 24px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--text); }
.brand:hover { color: var(--text); }
.brand__mark { width: 36px; height: 36px; }
.brand__name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }

.site-nav { display: flex; align-items: center; gap: 34px; }
.site-nav a { font-size: 0.9375rem; font-weight: 600; color: var(--text-body); }
.site-nav a:hover { color: var(--royal); }
.site-nav a[aria-current="page"]:not(.btn) { color: var(--royal); }
.site-nav .btn { color: #fff; }

.nav-check { position: absolute; opacity: 0; width: 46px; height: 46px; right: var(--gutter); top: 17px; margin: 0; z-index: 3; cursor: pointer; }
.nav-check:focus-visible + .nav-label { outline: 3px solid var(--azure); outline-offset: 2px; }
.nav-label {
  display: none; width: 46px; height: 46px;
  align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: var(--r-sm);
  background: #fff; z-index: 2;
}
.nav-label .bar { display: block; width: 18px; height: 2px; background: var(--navy-ink); border-radius: 2px; position: relative; }
.nav-label .bar::before, .nav-label .bar::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--navy-ink); border-radius: 2px; }
.nav-label .bar::before { top: -6px; }
.nav-label .bar::after { top: 6px; }

/* --------------------------------------------------------------- hero -- */

.hero { padding: 88px 0 92px; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: 72px; align-items: start; }
.hero__copy { display: flex; flex-direction: column; gap: 24px; }
.hero__copy p.lede { max-width: 34em; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.page-hero { padding: 76px 0 68px; }
.page-hero h1 { max-width: 20ch; }
.page-hero .lede { max-width: 62ch; margin-top: 8px; }

/* -------------------------------------------------------------- cards -- */

.card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 36px; display: flex; flex-direction: column; gap: 16px; }
.card--soft { background: var(--bg-card); }
.card--feature { border: 1.5px solid var(--royal); background: #F7FAFF; }
.card--dashed { border: 1px dashed var(--border-str); justify-content: center; }
.card--dark { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--r-md); padding: 30px; color: var(--on-dark-body); }
.card__num { font-family: var(--font-display); font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.14em; }
.card__top { display: flex; align-items: center; justify-content: space-between; }

.dot-list { display: flex; flex-direction: column; gap: 9px; }
.dot-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.9375rem; line-height: 1.5; color: var(--text-body); }
.dot-list .dot { margin-top: 8px; }
.dot-list--2col { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 28px; }

.pillar { display: flex; gap: 14px; align-items: flex-start; }
.pillar .dot { margin-top: 6px; }
.pillar__title { font-family: var(--font-display); font-weight: 600; font-size: 0.9375rem; color: var(--text); }
.pillar__desc { font-size: 0.875rem; line-height: 1.5; color: var(--text-muted); }

.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pills li { display: inline-flex; align-items: center; min-height: 40px; padding: 0 18px; border-radius: 999px; border: 1px solid #DCE4F1; background: #fff; font-size: 0.875rem; font-weight: 600; color: var(--text-body); }

.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.step { display: flex; flex-direction: column; gap: 12px; }
.step__rail { display: flex; align-items: center; gap: 12px; }
.step__rail .line { flex: 1 1 auto; height: 1px; background: rgba(255,255,255,0.14); }
.step__num { font-family: var(--font-display); font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.14em; color: var(--on-dark-soft); }
.step p { color: var(--on-dark-body); font-size: 0.9375rem; }

.quote { font-family: var(--font-display); font-size: 1.6rem; line-height: 1.45; letter-spacing: -0.015em; color: var(--text); }
.rule { height: 1px; background: var(--border); }
.result-tiles { display: flex; flex-direction: column; gap: 16px; }
.result { flex: 1 1 0; border: 1px solid var(--border); border-radius: var(--r-md); background: #fff; padding: 26px 30px; display: flex; flex-direction: column; justify-content: center; gap: 4px; }
.result__figure { font-family: var(--font-display); font-size: 2rem; font-weight: 600; }
.result__label { font-size: 0.9rem; color: var(--text-muted); }

.badge { display: inline-flex; align-items: center; min-height: 26px; padding: 2px 12px; border-radius: 999px; background: var(--royal); color: #fff; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.price { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--text); }

/* --------------------------------------------------- contact channels -- */

.channel {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px; border: 1px solid var(--border); border-radius: var(--r-md);
  background: #fff; color: var(--text);
}
.channel:hover { border-color: var(--royal); color: var(--text); }
.channel__icon { width: 42px; height: 42px; border-radius: 999px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.channel__label { font-family: var(--font-display); font-weight: 600; font-size: 1rem; }
.channel__value { font-size: 0.9375rem; color: var(--royal); word-break: break-word; }
.channel__note { font-size: 0.875rem; color: var(--text-muted); }

.notice {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 20px 22px; border: 1px solid var(--border-str);
  border-left: 4px solid var(--azure);
  border-radius: var(--r-sm); background: var(--bg-alt);
  font-size: 0.9375rem; line-height: 1.6; color: var(--text-muted);
}

/* ----------------------------------------------------------- CTA, FAQ -- */

.cta-band { display: flex; align-items: center; justify-content: space-between; gap: 56px; }
.cta-band__copy { max-width: 42em; display: flex; flex-direction: column; gap: 12px; }
.cta-band p { color: #43507A; font-size: 1.05rem; }

.faq { border-top: 1px solid var(--border); }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; color: var(--text);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; width: 11px; height: 11px;
  border-right: 2px solid var(--royal); border-bottom: 2px solid var(--royal);
  transform: rotate(45deg); transition: transform .2s ease; flex-shrink: 0; margin-right: 4px;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq details p { padding-bottom: 22px; color: var(--text-muted); max-width: 70ch; }

/* -------------------------------------------------------------- footer -- */

.site-footer { background: var(--navy-ink); color: var(--on-dark-body); padding: 64px 0 32px; }
.site-footer__grid { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr)); gap: 48px; margin-bottom: 44px; }
.site-footer h2 { font-family: var(--font-body); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-dark-soft); margin-bottom: 14px; }
.site-footer ul { display: flex; flex-direction: column; gap: 13px; }
.site-footer a, .site-footer li { color: #DDE4F2; font-size: 0.9375rem; }
.site-footer a:hover { color: #fff; }
.site-footer .brand__name { color: #fff; }
.site-footer p { color: var(--on-dark-body); font-size: 0.9375rem; }
.site-footer__bar { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12); color: var(--on-dark-soft); font-size: 0.875rem; }

/* ----------------------------------------------------------- 404 page -- */

.error-page { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px; padding: 120px 0; }

/* --------------------------------------------------------- responsive -- */

@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .split, .split--wide-left, .split--wide-right { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .step__rail .line { display: none; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; }
}

@media (max-width: 860px) {
  .nav-label { display: inline-flex; }
  .nav-check { display: block; }
  .site-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    padding: 16px var(--gutter) 24px;
    background: #fff; border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 32px rgba(15, 26, 60, 0.08);
  }
  .nav-check:checked ~ .site-nav { display: flex; }
  .site-nav a { padding: 12px 0; font-size: 1rem; }
  .site-nav .btn { margin-top: 8px; }
}

@media (min-width: 861px) {
  .nav-check { display: none; }
}

@media (max-width: 700px) {
  .section { padding: 60px 0; }
  .hero { padding: 48px 0 56px; }
  .page-hero { padding: 48px 0 44px; }
  .grid-2, .grid-3, .grid-4, .steps, .dot-list--2col, .split { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 32px; }
  .cta-band { flex-direction: column; align-items: flex-start; gap: 24px; }
  .card { padding: 28px; }
  .quote { font-size: 1.3rem; }
  .btn { width: 100%; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .site-footer__bar { flex-direction: column; align-items: flex-start; gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

@media print {
  .site-header, .cta-band, .nav-label { display: none; }
  body { font-size: 12pt; color: #000; }
}

/* ==========================================================================
   Utilities
   These exist so no element needs a style="" attribute. That lets the
   Content-Security-Policy in .htaccess forbid inline styles outright,
   which is one of the strongest defences against injected markup.
   ========================================================================== */

.t-navy  { color: var(--navy); }
.t-royal { color: var(--royal); }
.t-azure { color: var(--azure); }
.t-cyan  { color: var(--cyan-text); }
.t-ink   { color: var(--text); }
.t-body  { color: var(--text-body); }

/* Three-dot scales, tinted per service — the logo progression in miniature */
.dot-scale--navy  .dot:nth-child(1) { background: #C7CFE6; }
.dot-scale--navy  .dot:nth-child(2) { background: #8494C4; }
.dot-scale--navy  .dot:nth-child(3) { background: var(--navy); }
.dot-scale--royal .dot:nth-child(1) { background: #C5D6F6; }
.dot-scale--royal .dot:nth-child(2) { background: #6D96E4; }
.dot-scale--royal .dot:nth-child(3) { background: var(--royal); }
.dot-scale--azure .dot:nth-child(1) { background: #CBE4F8; }
.dot-scale--azure .dot:nth-child(2) { background: #7CBAEC; }
.dot-scale--azure .dot:nth-child(3) { background: var(--azure); }
.dot-scale--cyan  .dot:nth-child(1) { background: #C3EBF0; }
.dot-scale--cyan  .dot:nth-child(2) { background: #6FD2DE; }
.dot-scale--cyan  .dot:nth-child(3) { background: var(--cyan); }

.dot--outline { background: var(--navy); box-shadow: 0 0 0 2px #4C5E8F; }
.dot--pale-1 { background: #A2ACD4; }
.dot--pale-2 { background: #4380E4; }
.dot--pale-3 { background: #4FA6EC; }
.dot--pale-4 { background: #3FC7D6; }

.hero-card { border-radius: var(--r-xl); gap: 22px; }
.card-title-sm { font-size: 1.2rem; }
.card-title-md { font-size: 1.25rem; }
.gap-tight { gap: 28px; }
.items-stretch { align-items: stretch; }
.align-end { align-items: flex-end; }
.quote-fig { margin: 0; padding: 44px; gap: 22px; }
.quote-fig blockquote { margin: 0; }

.avatar {
  width: 72px; height: 72px; border-radius: 999px;
  background: var(--bg-tint);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 600;
  color: var(--deep);
}
.role { font-size: 0.9rem; font-weight: 600; color: var(--royal); }

.logo-panel { align-items: center; gap: 18px; }
.logo-panel img { border-radius: var(--r-md); background: #fff; }
.logo-panel p { text-align: center; font-size: 0.9rem; }

.icon--navy  { background: #E3E7F3; }
.icon--royal { background: var(--bg-tint); }
.icon--azure { background: #E4F1FB; }
.icon--cyan  { background: #E1F6F8; }

.jump-list a { display: flex; gap: 12px; align-items: center; font-size: 0.9375rem; font-weight: 600; color: var(--text-body); min-height: 44px; }
.jump-list a:hover { color: var(--royal); }

.brand--sm .brand__name { font-size: 1.05rem; }
.mb-16 { margin-bottom: 16px; }
.pad-64 { padding: 72px 0; }
.pad-68 { padding: 68px 0; }
.band-thin { padding: 40px 0 44px; }

/* ==========================================================================
   Contact form (Cloudflare Pages Function + Turnstile)
   Still no inline styles: the CSP forbids them.
   ========================================================================== */

.form {
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  background: var(--bg-card);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label, .form legend { font-size: 0.875rem; font-weight: 600; color: var(--text-body); padding: 0; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 0.9375rem; color: var(--text);
  background: #fff; border: 1px solid #D7DFEE; border-radius: var(--r-sm);
  padding: 13px 14px; min-height: 48px; width: 100%;
}
.field textarea { resize: vertical; line-height: 1.55; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: #98A2BE; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--royal); outline: none; box-shadow: 0 0 0 3px rgba(22, 87, 206, 0.14);
}
.field input:invalid:not(:placeholder-shown) { border-color: #B4341F; }
.hint { font-size: 0.8125rem; color: var(--text-soft); }

.checks { border: 0; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.checks__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.check {
  display: flex; align-items: center; gap: 11px;
  min-height: 48px; padding: 0 14px;
  border: 1px solid #D7DFEE; border-radius: var(--r-sm); background: #fff;
  font-size: 0.9375rem; font-weight: 400; color: var(--text-body); cursor: pointer;
}
.check input { width: 17px; height: 17px; accent-color: var(--royal); }

/* Honeypot — hidden from people, visible to naive bots. Not display:none,
   which some bots detect; off-screen and out of the tab order instead. */
.hp { position: absolute; left: -9999px; top: 0; width: 1px; height: 1px; overflow: hidden; }

.turnstile-slot { min-height: 65px; }

.form__status {
  display: none;
  padding: 16px 18px; border-radius: var(--r-sm);
  font-size: 0.9375rem; line-height: 1.55;
  border: 1px solid var(--border-str); background: var(--bg-alt);
}
.form__status[data-state="working"], .form__status[data-state="ok"], .form__status[data-state="error"] { display: block; }
.form__status[data-state="ok"] { border-color: #9AD3C4; background: #ECF8F4; color: #12574A; }
.form__status[data-state="error"] { border-color: #E6B4AA; background: #FCF1EE; color: #8A2B18; }

.noscript-note {
  padding: 16px 18px; border-radius: var(--r-sm);
  border: 1px solid var(--border-str); background: var(--bg-alt);
  font-size: 0.9375rem; color: var(--text-muted);
}

.thanks { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px; padding: 110px 0; }
.thanks .dot-scale { margin-bottom: 4px; }

@media (max-width: 700px) {
  .form { padding: 26px; }
  .checks__grid { grid-template-columns: 1fr; }
}
