/* ============================================================
   WEBISOFT — CUSTOM SOFTWARE DEVELOPMENT LANDING PAGE
   Brand system extends webisoft.com (shared with Vibe Check®):
     field      #F0F1F4   (off-white)
     ink        #000000
     ink-2      #6A6A6A   (secondary text)
     hairline   rgba(0,0,0,.16)
     teal       #2F8E98   (interactive hover — existing brand token)
   Fonts: Helvetica Now Display (headings, 500),
          Helvetica Now Text (body, 400),
          Suisse Intl Mono (utility labels)
   ============================================================ */

@font-face {
  font-display: swap;
  font-family: "HelveticaNowDisplay";
  src: url(../fonts/HelveticaNowDisplay-Md.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-display: swap;
  font-family: "HelveticaNowText";
  src: url(../fonts/HelveticaNowText-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-display: swap;
  font-family: "SuisseIntlMono";
  src: url(../fonts/SuisseIntlMono.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
}

:root {
  --field: #F0F1F4;
  --ink: #000000;
  --ink-2: #6A6A6A;
  --hairline: rgba(0, 0, 0, 0.16);
  --teal: #2F8E98;
  --red: #E0301E;
  --paper: #FFFFFF;

  --font-display: "HelveticaNowDisplay", -apple-system, BlinkMacSystemFont, "Helvetica Neue", helvetica, arial, sans-serif;
  --font-text: "HelveticaNowText", -apple-system, BlinkMacSystemFont, "Helvetica Neue", helvetica, arial, sans-serif;
  --font-mono: "SuisseIntlMono", ui-monospace, "Cascadia Mono", Consolas, "Liberation Mono", monospace;

  --margin: clamp(1.25rem, 4vw, 4rem);
  --section-gap: clamp(5rem, 12vw, 10rem);
  --nav-h: 3.5rem;
  --shadow-hard: 0.7rem 0.7rem 0 rgba(0, 0, 0, 0.08);
  --shadow-hard-lift: 0.9rem 0.9rem 0 rgba(0, 0, 0, 0.12);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
/* anchor CTAs jump instantly — no smooth-scroll animation */
html { scroll-behavior: auto; scroll-padding-top: calc(var(--nav-h) + 1rem); }
body {
  margin: 0;
  background: var(--field);
  color: var(--ink);
  font-family: var(--font-text);
  font-size: 1.0625rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, p, blockquote, figure, ol, ul { margin: 0; }
a { color: inherit; }
sup { font-size: 0.55em; }

.container {
  width: min(87.5rem, 100% - 2 * var(--margin));
  margin-inline: auto;
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.6;
}

::selection { background: var(--ink); color: var(--field); }

:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: 1.1em 2.2em;
  text-decoration: none;
  border: 1px solid var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}
.btn--primary { background: var(--red); border-color: var(--red); color: #fff; }
.btn--primary:hover { background: transparent; color: var(--red); }
.btn--primary::after { content: "→"; display: inline-block; margin-left: 0.9em; transition: transform 0.2s ease; }
.btn--primary:hover::after { transform: translateX(0.35em); }
.btn:active { transform: translate(1px, 1px); }
.btn--xl { padding: 1.35em 3em; font-size: 0.875rem; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(240, 241, 244, 0.88);
  background: color-mix(in srgb, var(--field) 88%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
}
.nav_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 1rem;
}
.nav_brand { text-decoration: none; font-weight: 400; display: flex; align-items: center; }
.nav_brand:hover { color: var(--teal); }
.nav_logo { height: 0.95rem; width: auto; display: block; fill: currentColor; }
.nav_right { display: flex; align-items: center; gap: 1.25rem; }
.nav_lang { text-decoration: none; color: var(--ink-2); white-space: nowrap; }
.nav_lang:hover { color: var(--teal); }
.nav_cta {
  text-decoration: none;
  border: 1px solid var(--red);
  padding: 0.55em 1.1em;
  background: var(--red);
  color: #fff;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.nav_cta:hover { background: transparent; color: var(--red); }

/* ============================================================
   §1 HERO — copy left, lead form right
   ============================================================ */
.hero { padding-top: calc(var(--nav-h) + clamp(1.25rem, 2.5vw, 2rem)); }

.eyebrow {
  color: var(--ink-2);
  border-top: 1px solid var(--ink);
  padding-top: 0.9rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.hero_grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
@media (max-width: 56rem) {
  .hero_grid { grid-template-columns: 1fr; }
}

.hero_h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.25rem, 4.2vw, 4.0625rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.hero_h1 .hline { display: block; overflow: hidden; padding-bottom: 0.18em; margin-bottom: -0.18em; }
.hero_h1 .hline > span {
  display: inline-block;
  transform: translateY(115%);
  animation: hline-up 0.85s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s forwards;
}
.hero_h1 .hline:nth-child(2) > span { animation-delay: 0.26s; }
@keyframes hline-up { to { transform: none; } }

/* keyword underline — brand red */
.mark {
  font-style: normal;
  background: linear-gradient(var(--red), var(--red)) 0 100% / 100% 0.085em no-repeat;
}
.hero_sub {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  max-width: 30em;
  color: var(--ink);
}
.hero_points {
  list-style: none;
  padding: 0;
  margin-top: clamp(1.75rem, 3.5vw, 2.5rem);
  display: grid;
  gap: 0.7rem;
  max-width: 34em;
}
.hero_points li { display: flex; gap: 0.9rem; align-items: baseline; }
.hero_points li::before { content: "→"; flex-shrink: 0; color: var(--teal); }

.trustline { margin-top: 2.25rem; padding-top: 1rem; border-top: 1px solid var(--hairline); color: var(--ink-2); font-size: 0.6875rem; }

.certs { margin-top: 1.4rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
/* white tiles lift the certification badges off the field */
.certs img {
  height: 4.75rem;
  width: auto;
  display: block;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-bottom: 3px solid var(--red);
  padding: 0.6rem 0.9rem;
  box-shadow: 0.35rem 0.35rem 0 rgba(0, 0, 0, 0.06);
}
.cert_hipaa {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  height: 4.25rem;
  padding: 0 1.1rem;
  border: 1px solid var(--ink);
}
.cert_hipaa b {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.04em;
}
.cert_hipaa i {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.18em;
  line-height: 1;
}

.certs.certs--lg { gap: 1.25rem; }
.certs.certs--lg img { height: 5.75rem; padding: 0.75rem 1.1rem; }
.certs.certs--lg .cert_hipaa { height: 5.25rem; padding: 0 1.4rem; }
.certs.certs--lg .cert_hipaa b { font-size: 1.375rem; }
.certs.certs--lg .cert_hipaa i { font-size: 0.6875rem; }

/* ---------- the lead form card (hero right) ---------- */
.hero_form { position: sticky; top: calc(var(--nav-h) + 1.5rem); }
@media (max-width: 56rem) { .hero_form { position: static; max-width: 32rem; } }

.form_card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-hard);
  display: grid;
  gap: 1.25rem;
}
.form_card_head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--ink);
}
.form_card_head .form_tag { color: var(--red); white-space: nowrap; }
.form_card_title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.form_card_sub { color: var(--ink-2); font-size: 0.9375rem; margin-top: -0.5rem; }

.field { display: grid; gap: 0.55rem; }
.field > label { font-family: var(--font-mono); font-size: 0.6875rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-2); }
.field .req { color: var(--red); }
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field select,
.field textarea {
  font-family: var(--font-text);
  font-size: 1rem;
  color: var(--ink);
  background: var(--field);
  border: 1px solid var(--hairline);
  border-radius: 0;
  padding: 0.85em 1em;
  width: 100%;
  transition: border-color 0.15s ease;
  appearance: none;
  -webkit-appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23000'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1em center;
  padding-right: 2.6em;
}
.field textarea { min-height: 5.5em; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: var(--red); }
.field_err { display: none; font-family: var(--font-mono); font-size: 0.6875rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); }
.field.is-invalid .field_err { display: block; }

.form_submit {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
}
.form_error { display: none; font-family: var(--font-mono); font-size: 0.6875rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); }
.form_error.is-on { display: block; }
.form_note { color: var(--ink-2); font-size: 0.8125rem; text-align: center; }

/* success state replaces the fields inside the card */
.form_done { display: none; background: var(--ink); color: var(--field); padding: clamp(1.5rem, 3vw, 2.25rem); margin: 0 calc(-1 * clamp(1.5rem, 3vw, 2.25rem)) calc(-1 * clamp(1.5rem, 3vw, 2.25rem)); }
.form_done.is-on { display: block; }
.form_done h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.375rem; letter-spacing: -0.01em; line-height: 1.15; }
.form_done .mono { display: block; margin-top: 1rem; color: rgba(240, 241, 244, 0.7); }

/* ---------- mid-page + sticky mobile CTA ---------- */
.midcta { margin-top: clamp(2.5rem, 5vw, 4rem); display: grid; gap: 1rem; justify-items: start; }
.utility { margin-top: 1.1rem; color: var(--ink-2); font-size: 0.8125rem; }

.mcta {
  display: none;
  position: fixed;
  inset: auto 0 0 0;
  z-index: 99;
  padding: 0.75rem var(--margin) calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(240, 241, 244, 0.92);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--hairline);
  transform: translateY(110%);
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.mcta .btn { display: block; text-align: center; }
.mcta.is-on { transform: none; }
@media (max-width: 48rem) { .mcta { display: block; } }

/* ============================================================
   CLIENT LOGOS STRIP
   ============================================================ */
.logos { margin-top: clamp(3.5rem, 8vw, 6rem); border-top: 1px solid var(--ink); padding-top: 1rem; }
.logos_label { color: var(--ink-2); }
.logos_row {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: clamp(1.5rem, 3.5vw, 3.25rem);
  row-gap: 1.5rem;
}
/* Typographic wordmarks — swap each for the client's SVG logo when
   supplied. Keep height ~1.6rem and grayscale for visual quiet. */
.logos_row .wordmark {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.0625rem, 1.6vw, 1.375rem);
  letter-spacing: 0.02em;
  color: var(--ink-2);
  white-space: nowrap;
}
/* colored sources keep their brand colors; .inv marks white-fill sources
   (drawn for dark backgrounds) which invert to quiet ink */
.logos_row img { height: 1.75rem; width: auto; display: block; opacity: 0.9; }
.logos_row img.inv { filter: invert(1) grayscale(1); opacity: 0.7; }
/* mark + name lockup for clients whose asset is an icon only */
.logo_pair { display: inline-flex; align-items: center; gap: 0.6rem; }

/* ============================================================
   SECTIONS — shared
   ============================================================ */
.section { margin-top: var(--section-gap); }

.section_label {
  color: var(--ink-2);
  border-top: 1px solid var(--ink);
  padding-top: 0.9rem;
  margin-bottom: clamp(1.75rem, 4vw, 3rem);
}
.section_h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.75rem, 3.8vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  max-width: 24em;
  text-wrap: balance;
}
.section_intro {
  margin-top: 1.5rem;
  max-width: 42em;
  font-size: clamp(1.0625rem, 1.4vw, 1.1875rem);
}
.section_closer {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 1.25rem;
  border-top: 1px solid var(--hairline);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.125rem, 1.8vw, 1.5rem);
  line-height: 1.25;
  max-width: 34em;
}

/* ============================================================
   §2 SOCIAL PROOF — the numbers
   ============================================================ */
.stats {
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}
@media (max-width: 56rem) { .stats { grid-template-columns: 1fr 1fr; } }
@media (max-width: 30rem) { .stats { grid-template-columns: 1fr; } }

.stat {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  transition: background 0.2s ease;
}
.stat:hover { background: var(--paper); }
.stat_num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
  color: var(--red);
}
.stat_label { margin-top: 0.9rem; color: var(--ink-2); }

/* ============================================================
   §3 SERVICES / FEATURES — one by one
   ============================================================ */
.features { margin-top: clamp(2.5rem, 6vw, 4.5rem); border-top: 1px solid var(--hairline); }

.feature {
  display: grid;
  grid-template-columns: 6rem minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(1.25rem, 3vw, 3rem);
  padding: clamp(1.75rem, 3.5vw, 2.75rem) 0;
  border-bottom: 1px solid var(--hairline);
  transition: background 0.2s ease;
}
.feature:hover { background: var(--paper); box-shadow: -0.75rem 0 0 var(--paper), 0.75rem 0 0 var(--paper); }
@media (max-width: 48rem) { .feature { grid-template-columns: 1fr; gap: 0.9rem; } }

.feature_idx { color: var(--ink-2); }
.feature h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.375rem, 2.4vw, 1.875rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.feature_body p { color: var(--ink-2); max-width: 36em; }
.feature_tags { margin-top: 1.1rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.feature_tags span {
  display: inline-block;
  padding: 0.25em 0.7em;
  border: 1px solid var(--hairline);
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  white-space: nowrap;
}

/* ============================================================
   §4 PROCESS — steps
   ============================================================ */
.steps {
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  border-top: 1px solid var(--hairline);
}
@media (max-width: 60rem) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 40rem) { .steps { grid-template-columns: 1fr; gap: 0; } }

.step { padding-top: clamp(1.5rem, 3vw, 2.5rem); }
@media (max-width: 40rem) {
  .step { border-bottom: 1px solid var(--hairline); padding-bottom: 1.75rem; }
  .step:last-child { border-bottom: 0; }
}
.step_num {
  display: block;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 1.25rem;
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  letter-spacing: -0.01em;
}
.step p { margin-top: 0.9rem; color: var(--ink-2); }
.step_meta { margin-top: 1rem; color: var(--ink-2); font-size: 0.6875rem; }

.band {
  margin-top: clamp(3.5rem, 8vw, 6rem);
  background: var(--ink);
  color: var(--field);
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}
.band_text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 3.4vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  max-width: 26em;
  text-wrap: balance;
}

/* ============================================================
   §5 TEAM
   ============================================================ */
.team_grid {
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 56rem) { .team_grid { grid-template-columns: 1fr; } }

.team_photo { display: grid; gap: 0.8rem; }
.team_photo img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-hard);
}
/* placeholder frame shown until a real team photo replaces it */
.team_placeholder {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--ink);
  box-shadow: var(--shadow-hard);
  background:
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(0, 0, 0, 0.05) 14px 15px),
    var(--paper);
  display: grid;
  place-items: center;
  padding: 1.5rem;
  text-align: center;
  color: var(--ink-2);
}
.team_photo figcaption { color: var(--ink-2); }
.team_body {
  font-size: clamp(1.25rem, 2.4vw, 1.875rem);
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  max-width: 30em;
}
.team_note { margin-top: 1.5rem; color: var(--ink-2); font-family: var(--font-text); font-size: 1.0625rem; line-height: 1.5; letter-spacing: 0; }

/* ============================================================
   §6 TRUST — certifications + testimonials
   ============================================================ */
.trust_body {
  font-size: clamp(1.25rem, 2.4vw, 1.875rem);
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  max-width: 30em;
}

.badges {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.testimonials {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
}
@media (max-width: 48rem) { .testimonials { grid-template-columns: 1fr; } }
/* featured client quote — paper card with the brand-red accent */
.testimonial {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-top: 3px solid var(--red);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  box-shadow: var(--shadow-hard);
}
.testimonial::before {
  content: "\201C";
  display: block;
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 0.6;
  color: var(--red);
  margin-bottom: 1.1rem;
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.testimonial figcaption { margin-top: 1.5rem; padding-top: 1.1rem; border-top: 1px solid var(--hairline); color: var(--ink-2); }

/* ============================================================
   §7 FAQ
   ============================================================ */
.faq { margin-top: clamp(2rem, 4vw, 3rem); border-top: 1px solid var(--hairline); max-width: 56rem; }

.faq_item { border-bottom: 1px solid var(--hairline); transition: background 0.2s ease; }
.faq_item[open] { background: var(--paper); box-shadow: -0.75rem 0 0 var(--paper), 0.75rem 0 0 var(--paper); }
.faq_item summary {
  list-style: none;
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.35rem 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.0625rem, 1.7vw, 1.375rem);
  line-height: 1.25;
  transition: color 0.15s ease;
}
.faq_item summary::-webkit-details-marker { display: none; }
.faq_item summary:hover { color: var(--teal); }
.faq_idx { color: var(--ink-2); flex-shrink: 0; }

.faq_plus { position: relative; width: 0.85rem; height: 0.85rem; margin-left: auto; flex-shrink: 0; align-self: center; }
.faq_plus::before, .faq_plus::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 0.2s ease;
}
.faq_plus::before { inset: 50% 0 auto 0; height: 1px; transform: translateY(-50%); }
.faq_plus::after { inset: 0 auto 0 50%; width: 1px; transform: translateX(-50%); }
.faq_item[open] .faq_plus::after { transform: translateX(-50%) scaleY(0); }

.faq_body { padding: 0 0 1.6rem; }
.faq_body p { max-width: 44em; color: var(--ink-2); }
@media (min-width: 48rem) { .faq_body { padding-left: 4.9rem; } }

/* ============================================================
   §8 FINAL CTA
   ============================================================ */
.final {
  text-align: center;
  padding: clamp(2rem, 5vw, 4rem) 0;
}
.final_h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.25rem, 5.4vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  max-width: 18em;
  margin-inline: auto;
  text-wrap: balance;
}
.final_sub { margin-top: 1.75rem; color: var(--ink-2); }
.final .btn { margin-top: 2.25rem; }
.final .utility { margin-top: 1.25rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  margin-top: var(--section-gap);
  background: var(--ink);
  color: var(--field);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(1.75rem, 3vw, 2.5rem);
}
.footer_inner { display: grid; gap: 2.25rem; }

.footer_brand { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.footer_logo { display: block; }
.footer_logo svg {
  display: block;
  width: min(24rem, 78vw);
  height: auto;
  fill: var(--field);
  transition: fill 0.2s ease;
}
.footer_logo:hover svg { fill: var(--teal); }

.footer_addresses { display: grid; gap: 0.3rem; color: rgba(240, 241, 244, 0.6); }

.footer_links { display: flex; flex-wrap: wrap; gap: 1.75rem; }
.footer_links a { text-decoration: none; }
.footer_links a:hover { color: var(--teal); }

.footer_copy {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(240, 241, 244, 0.25);
  color: rgba(240, 241, 244, 0.6);
}

/* ============================================================
   REVEAL + MOTION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1); }
.reveal.is-in { opacity: 1; transform: none; }

.stats .reveal:nth-child(2), .steps .reveal:nth-child(2), .testimonials .reveal:nth-child(2) { transition-delay: 0.1s; }
.stats .reveal:nth-child(3), .steps .reveal:nth-child(3) { transition-delay: 0.2s; }
.stats .reveal:nth-child(4), .steps .reveal:nth-child(4) { transition-delay: 0.3s; }

/* scroll progress bar (injected by js/main.js) */
.scrollprog {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--ink);
  z-index: 110;
}

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