/* ==========================================================================
   Feneco Consulting - Legacy Modernization landing page
   Brand tokens mirror feneco-consulting.com (dark theme, Sora + Manrope,
   ember -> flare gradient, 2px radius). Page theme is locked to dark.
   ========================================================================== */

:root {
  /* Surfaces */
  --bg: #1c1c1c;            /* oklch(14.5% 0 0) */
  --surface: #2a2a2a;       /* oklch(20.5% 0 0) */
  --surface-2: #333333;     /* oklch(24% 0 0) */
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  /* Text */
  --fg: #f3f3f5;            /* oklch(96% .002 250) */
  --fg-muted: #8f9096;      /* oklch(62% .008 250) */
  --fg-dim: #6b6c72;

  /* Accent (single accent, two stops of the same gradient) */
  --ember: #ff7a3d;         /* oklch(72% .19 45) */
  --flare: #ff3d7f;         /* oklch(63% .25 5) */
  --gradient-molten: linear-gradient(90deg, var(--ember), var(--flare));
  --ember-soft: rgba(255, 122, 61, 0.12);

  /* Feedback */
  --success: #4ade80;
  --error: #ff6b6b;

  /* Shape and type */
  --radius: 2px;
  --font-display: "Sora", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Manrope", ui-sans-serif, system-ui, sans-serif;

  /* Layout */
  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --nav-h: 72px;
  --section-y: clamp(4.5rem, 9vw, 7.5rem);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  color-scheme: dark;
}

/* --------------------------------------------------------------------------
   Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); line-height: 1.1; letter-spacing: -0.02em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
fieldset { border: 0; padding: 0; margin: 0; min-width: 0; }
legend { padding: 0; }

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

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

.skip-link {
  position: absolute; left: 1rem; top: -100px;
  background: var(--fg); color: var(--bg); padding: 0.5rem 1rem; z-index: 100;
  border-radius: var(--radius);
}
.skip-link:focus { top: 1rem; }

/* --------------------------------------------------------------------------
   Type helpers
   -------------------------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 1.25rem;
}
.section-title {
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.02;
}
.section-lead {
  margin-top: 1.25rem;
  max-width: 58ch;
  font-size: 1.125rem;
  color: var(--fg-muted);
}
.text-gradient {
  background: var(--gradient-molten);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.muted { color: var(--fg-muted); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.75rem;
  min-height: 52px; padding: 0 1.75rem;
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; white-space: nowrap;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease-out), background-color 0.25s, border-color 0.25s, color 0.25s;
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn--primary { background: var(--fg); color: var(--bg); }
.btn--primary::after {
  content: "\2192";
  font-family: var(--font-body);
  font-weight: 500;
  transition: transform 0.25s var(--ease-out);
}
.btn--primary:hover { background: #ffffff; }
.btn--primary:hover::after { transform: translateX(4px); }

.btn--ghost { color: var(--fg); border-color: var(--border-strong); background: transparent; }
.btn--ghost:hover { border-color: var(--fg); }

.btn--block { width: 100%; }

.btn__loading { display: none; }
.btn[data-loading="true"] .btn__label { display: none; }
.btn[data-loading="true"] .btn__loading { display: inline; }
.btn[data-loading="true"]::after { content: ""; width: 14px; height: 14px; border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%; animation: spin 0.7s linear infinite; }
.btn[disabled] { opacity: 0.7; cursor: wait; }

@keyframes spin { to { transform: rotate(360deg); } }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-bottom: 1px solid var(--border-strong); padding-bottom: 0.25rem;
  transition: border-color 0.25s;
}
.link-arrow::after { content: "\2192"; font-family: var(--font-body); }
.link-arrow:hover { border-color: var(--ember); }

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(28, 28, 28, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav__inner { display: flex; align-items: center; gap: 2rem; height: var(--nav-h); }

.brand { display: flex; align-items: center; gap: 0.75rem; margin-right: auto; }
.brand__mark { width: 40px; height: 40px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; letter-spacing: 0.02em; }
.brand__name small { font-family: var(--font-body); font-weight: 500; font-size: 0.6rem; letter-spacing: 0.18em; color: var(--fg-muted); margin-left: 0.35rem; }
.brand__tag {
  font-family: var(--font-display); font-size: 0.55rem; font-weight: 700; letter-spacing: 0.3em;
  background: var(--gradient-molten); -webkit-background-clip: text; background-clip: text; color: transparent;
}

.nav__links { display: flex; gap: 2rem; }
.nav__links a {
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-muted);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--fg); }

.nav__cta { min-height: 44px; padding-inline: 1.25rem; font-size: 0.7rem; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 0.5rem; }
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--fg); transition: transform 0.25s, opacity 0.25s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: flex; flex-direction: column; gap: 1.25rem;
  padding: 1.5rem var(--gutter) 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.mobile-menu a:not(.btn) {
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.mobile-menu .btn { margin-top: 0.5rem; }
.mobile-menu[hidden] { display: none; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: calc(100dvh - var(--nav-h));
  display: flex; align-items: center;
  padding-block: 4rem 3rem;
  overflow: hidden;
  isolation: isolate;
}
.hero__glow {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(60% 70% at 78% 40%, rgba(255, 61, 127, 0.28), transparent 65%),
    radial-gradient(45% 55% at 95% 20%, rgba(255, 122, 61, 0.22), transparent 70%);
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 3rem;
  align-items: center;
}
.hero__title {
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.04;
  max-width: 17ch;
}
.hero__sub {
  margin-top: 1.75rem;
  max-width: 50ch;
  font-size: 1.15rem;
  color: var(--fg-muted);
}
.hero__actions { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__visual { position: relative; justify-self: end; }
.hero__visual img {
  width: min(100%, 460px);
  max-height: 70vh;
  object-fit: contain;
  -webkit-mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
}

/* --------------------------------------------------------------------------
   Statement
   -------------------------------------------------------------------------- */
.statement {
  padding-block: var(--section-y);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.statement__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
  max-width: 32ch;
  margin-left: auto;
}

/* --------------------------------------------------------------------------
   Scope bento
   -------------------------------------------------------------------------- */
.scope { padding-block: var(--section-y); }

.bento {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(220px, auto);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.bento__cell {
  background: var(--bg);
  padding: 2rem;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: background-color 0.3s;
}
.bento__cell:hover { background: var(--surface); }
.bento__cell h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; }
.bento__cell p { color: var(--fg-muted); font-size: 0.98rem; }

.bento__cell--image {
  grid-column: span 2; grid-row: span 2;
  margin: 0; padding: 0; position: relative; min-height: 360px;
}
.bento__cell--image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bento__cell--image figcaption {
  position: relative; margin-top: auto; padding: 2rem;
  background: linear-gradient(to top, rgba(28, 28, 28, 0.95), transparent);
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
}
.bento__cell--tint { background: var(--ember-soft); }
.bento__cell--tint:hover { background: rgba(255, 122, 61, 0.18); }
.bento__cell--tint p { color: var(--fg); opacity: 0.8; }

/* --------------------------------------------------------------------------
   Approach steps
   -------------------------------------------------------------------------- */
.approach {
  padding-block: var(--section-y);
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.approach__head { max-width: 62ch; }

.steps {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem;
  counter-reset: step;
}
.step { position: relative; padding-top: 1.5rem; border-top: 1px solid var(--border-strong); }
.step::before {
  content: "";
  position: absolute; top: -1px; left: 0;
  width: 56px; height: 1px;
  background: var(--gradient-molten);
}
.step__index {
  display: block;
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 800;
  line-height: 1; color: var(--fg-dim);
}
.step__title { margin-top: 1.25rem; font-size: 1.3rem; font-weight: 700; }
.step__body { margin-top: 0.85rem; color: var(--fg-muted); }
.step__meta { margin-top: 1rem; font-size: 0.85rem; color: var(--fg); font-weight: 600; }

/* --------------------------------------------------------------------------
   Verticals tabs
   -------------------------------------------------------------------------- */
.verticals { padding-block: var(--section-y); }

.tabs {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: 3rem;
  border: 1px solid var(--border);
}
.tabs__list { display: flex; flex-direction: column; border-right: 1px solid var(--border); }
.tabs__tab {
  text-align: left;
  padding: 1.5rem 2rem;
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
  color: var(--fg-muted);
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: color 0.2s, background-color 0.2s;
}
.tabs__tab:last-child { border-bottom: 0; }
.tabs__tab::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--gradient-molten); opacity: 0; transition: opacity 0.2s;
}
.tabs__tab:hover { color: var(--fg); }
.tabs__tab[aria-selected="true"] { color: var(--fg); background: var(--surface); }
.tabs__tab[aria-selected="true"]::before { opacity: 1; }

.tabs__panel { padding: 2.5rem 2.5rem 2.5rem 0; }
.tabs__panel h3 { font-size: 1.5rem; font-weight: 700; }
.tabs__panel > p { margin-top: 1rem; color: var(--fg-muted); max-width: 62ch; }
.tabs__panel[hidden] { display: none; }

.checklist { margin-top: 1.75rem; display: grid; gap: 0.75rem; }
.checklist li { position: relative; padding-left: 1.75rem; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 12px; height: 6px;
  border-left: 2px solid var(--ember); border-bottom: 2px solid var(--ember);
  transform: rotate(-45deg);
}

/* --------------------------------------------------------------------------
   Proof
   -------------------------------------------------------------------------- */
.proof {
  padding-block: var(--section-y);
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof__grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: 4rem;
  align-items: start;
}
.proof__case p { margin-top: 1.5rem; color: var(--fg-muted); font-size: 1.1rem; max-width: 58ch; }
.proof__case .link-arrow { margin-top: 2rem; }

.proof__facts { margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.fact { background: var(--surface); padding: 1.5rem; }
.fact dt { font-size: 0.8rem; color: var(--fg-muted); letter-spacing: 0.02em; }
.fact dd { margin: 0.5rem 0 0; font-family: var(--font-display); font-weight: 800; font-size: 1.75rem; line-height: 1.15; }
.fact:nth-child(3) dd, .fact:nth-child(4) dd { font-size: 1.05rem; font-weight: 600; }
.fact:nth-child(4) { grid-column: span 2; }

/* --------------------------------------------------------------------------
   FAQ accordion
   -------------------------------------------------------------------------- */
.faq { padding-block: var(--section-y); }
.faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 4rem;
  align-items: start;
}
.faq__grid .section-title { position: sticky; top: calc(var(--nav-h) + 2rem); }

.accordion { border-top: 1px solid var(--border-strong); }
.accordion__item { border-bottom: 1px solid var(--border); }
.accordion__item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.35rem 0;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  transition: color 0.2s;
}
.accordion__item summary::-webkit-details-marker { display: none; }
.accordion__item summary::after {
  content: "+"; flex: none;
  font-family: var(--font-body); font-weight: 400; font-size: 1.5rem; line-height: 1;
  color: var(--fg-muted);
  transition: transform 0.3s var(--ease-out);
}
.accordion__item[open] summary::after { transform: rotate(45deg); color: var(--ember); }
.accordion__item summary:hover { color: var(--ember); }
.accordion__body { padding: 0 0 1.5rem; color: var(--fg-muted); max-width: 60ch; }

/* --------------------------------------------------------------------------
   Contact and form
   -------------------------------------------------------------------------- */
.contact {
  position: relative;
  padding-block: var(--section-y);
  border-top: 1px solid var(--border);
  overflow: hidden;
  isolation: isolate;
}
.contact::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(50% 60% at 10% 100%, rgba(255, 122, 61, 0.14), transparent 70%);
}
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 4rem;
  align-items: start;
}
.contact__copy { position: sticky; top: calc(var(--nav-h) + 2rem); }
.contact__title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800; text-transform: uppercase; line-height: 1;
}
.contact__copy > p { margin-top: 1.5rem; color: var(--fg-muted); font-size: 1.1rem; max-width: 40ch; }
.contact__alt a { color: var(--fg); border-bottom: 1px solid var(--border-strong); }
.contact__alt a:hover { border-color: var(--ember); }

.form { background: var(--surface); border: 1px solid var(--border); padding: 2.5rem; }
.form__group + .form__group { margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid var(--border); }
.form__group legend {
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg-muted);
  margin-bottom: 1.5rem;
}
.form__row { display: grid; gap: 1.25rem; }
.form__row--2 { grid-template-columns: 1fr 1fr; }
.form__row + .form__row, .form__row + .field, .field + .field, .field + .form__row { margin-top: 1.25rem; }

.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label, .field__label { font-size: 0.9rem; font-weight: 600; color: var(--fg); }
.field__optional { font-weight: 400; color: var(--fg-muted); }
.field__help { font-size: 0.82rem; color: var(--fg-muted); }
.field__error { font-size: 0.82rem; color: var(--error); }

.field input[type="text"], .field input[type="email"], .field input[type="tel"],
.field select, .field textarea {
  width: 100%;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font: inherit;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field ::placeholder { color: var(--fg-dim); opacity: 1; }
.field select {
  appearance: none; -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--fg-muted) 50%), linear-gradient(135deg, var(--fg-muted) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.75rem;
}
.field select:invalid { color: var(--fg-dim); }
.field select option { color: var(--fg); background: var(--surface); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--ember);
  box-shadow: 0 0 0 3px var(--ember-soft);
}
.field[data-invalid="true"] input, .field[data-invalid="true"] select, .field[data-invalid="true"] textarea {
  border-color: var(--error);
}
.field[data-invalid="true"] .choice { border-color: var(--error); }

.choice-group { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.choice {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 0.85rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  font-weight: 600; font-size: 0.95rem;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s, color 0.2s;
}
.choice input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.choice:hover { border-color: var(--fg-muted); }
.choice:has(input:checked) { border-color: var(--ember); background: var(--ember-soft); }
.choice:has(input:focus-visible) { outline: 2px solid var(--ember); outline-offset: 3px; }

.form__footer { margin-top: 2.5rem; }
.form__note { margin-top: 1rem; font-size: 0.85rem; color: var(--fg-muted); text-align: center; }

.form__status { margin-top: 1.5rem; padding: 1rem 1.25rem; border-radius: var(--radius); border: 1px solid; font-weight: 500; }
.form__status[data-state="success"] { border-color: rgba(74, 222, 128, 0.4); color: var(--success); background: rgba(74, 222, 128, 0.08); }
.form__status[data-state="error"] { border-color: rgba(255, 107, 107, 0.4); color: var(--error); background: rgba(255, 107, 107, 0.08); }
.form__status a { text-decoration: underline; }

.form[data-sent="true"] .form__group,
.form[data-sent="true"] .form__footer { display: none; }
.form[data-sent="true"] .form__status { margin-top: 0; padding: 2rem; font-size: 1.05rem; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer { border-top: 1px solid var(--border); padding-block: 2.5rem; }
.footer__inner { display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem; align-items: center; justify-content: space-between; }
.footer__copy { font-size: 0.85rem; color: var(--fg-muted); }
.footer__links { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer__links a {
  font-family: var(--font-display); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-muted);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--fg); }

/* --------------------------------------------------------------------------
   Scroll reveal (driven by IntersectionObserver in main.js)
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    transition-delay: var(--reveal-delay, 0ms);
  }
  [data-reveal].is-visible { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .tabs { grid-template-columns: 1fr; gap: 0; }
  .tabs__list { flex-direction: row; overflow-x: auto; border-right: 0; border-bottom: 1px solid var(--border); }
  .tabs__tab { flex: 1 0 auto; padding: 1.1rem 1.25rem; border-bottom: 0; border-right: 1px solid var(--border); font-size: 0.95rem; }
  .tabs__tab::before { width: 100%; height: 3px; top: auto; bottom: 0; }
  .tabs__panel { padding: 2rem; }
  .proof__grid, .faq__grid, .contact__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .faq__grid .section-title, .contact__copy { position: static; }
}

@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
}

@media (max-width: 768px) {
  .hero { min-height: auto; padding-block: 3rem 2.5rem; }
  .hero__grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero__visual { justify-self: center; }
  .hero__visual img { max-height: 36vh; width: auto; margin-inline: auto; }
  .hero__title { font-size: clamp(2rem, 9vw, 2.6rem); max-width: none; }
  .hero__actions .btn { width: 100%; }

  .statement__title { margin-left: 0; max-width: none; }

  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento__cell { padding: 1.5rem; }
  .bento__cell--image { grid-column: auto; grid-row: auto; min-height: 240px; }

  .steps { grid-template-columns: 1fr; gap: 2.5rem; }

  .proof__facts { grid-template-columns: 1fr; }
  .fact:nth-child(4) { grid-column: auto; }

  .form { padding: 1.5rem; }
  .form__row--2 { grid-template-columns: 1fr; }
  .choice-group { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}
