/* ==========================================================================
   Website Design Auckland — homepage styles
   Methodology: BEM (block__element--modifier). One block per component.
   Sections: 1 Tokens · 2 Base · 3 Utilities · 4 Shared components ·
             5 Header/nav · 6 Page sections · 7 Footer · 8 Animations · 9 Media
   ========================================================================== */

/* Self-hosted fonts (Outfit for display, Inter for body). Files live in /fonts. */
@font-face { font-family: "Outfit"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/outfit-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Outfit"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/outfit-latin-700-normal.woff2") format("woff2"); }
@font-face { font-family: "Outfit"; font-style: normal; font-weight: 800; font-display: swap; src: url("../fonts/outfit-latin-800-normal.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/inter-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/inter-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/inter-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/inter-latin-700-normal.woff2") format("woff2"); }

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Colour — mirrors seoconsultant.co.nz tokens (gold + ink) */
  --c-primary: #d4af37;               /* brand gold (--sk-gold) */
  --c-primary-hover: #e9c85a;
  --c-primary-content: #0b0f14;
  --c-accent: #f0d572;
  --c-primary-gradient: linear-gradient(180deg, #e9c85a 0%, #f1cc42 66%, #ffc93e 100%);
  --c-gold-text: linear-gradient(135deg, #f0d572 0%, #d4af37 50%, #b8891c 100%);
  --c-error: #e5484d;
  --c-success: #30a46c;

  --c-dark: #0b0f14;                  /* ink: hero, dark bands */
  --c-neutral: #121826;               /* ink-2: header / footer */
  --c-surface-2: #1b2334;             /* slate: raised dark surface */
  --c-surface-3: #243049;

  --c-base-100: #ffffff;              /* light page bg */
  --c-base-200: #f2f4f6;              /* soft light band (--light-text) */
  --c-base-300: #cbd5e1;              /* light borders (--light-gray) */
  --c-base-content: #101318;          /* --sk-text */
  --c-base-content-70: #3d4552;
  --c-base-content-60: #667085;       /* --sk-text-muted */
  --c-base-content-50: #7d879a;

  --c-light: #eaf0ff;                 /* --sk-text-invert */
  --c-light-80: #d5dcec;
  --c-light-70: #b9c3d1;              /* --sk-text-soft */
  --c-light-60: #9aa5b8;
  --c-light-50: #7f8a9e;
  --c-line: rgba(255, 255, 255, .1);
  --c-line-20: rgba(255, 255, 255, .2);
  --c-line-40: rgba(255, 255, 255, .4);

  /* Type */
  --f-display: "Outfit", "Segoe UI", system-ui, sans-serif;
  --f-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Shape — nothing on the page is rounder than 8px */
  --r-box: 8px;                       /* cards, panels, sections */
  --r-field: 8px;                     /* inputs, small controls */
  --r-pill: 8px;                      /* buttons, chips, badges (kept flat, not pill-shaped) */

  /* Layout */
  --w-page: 1360px;
  --w-wide: 1360px;
  --w-narrow: 1000px;
  --w-text: 900px;
  --gutter: 1.25rem;
  --header-h: 70px;

  /* Motion */
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
/* Fixed header: anchored sections stop just below it */
[id] { scroll-margin-top: calc(var(--header-h) + 1rem); }

body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-base-content);
  background: var(--c-base-100);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.02em;
}
h3 { font-weight: 700; letter-spacing: -.01em; }

p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img, svg, video { display: block; max-width: 100%; }
button { font: inherit; color: inherit; cursor: pointer; }
input, select, button { font-family: inherit; }
strong { font-weight: 700; }
fieldset { margin: 0; padding: 0; border: 0; min-width: 0; }
legend { padding: 0; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* Icons: every svg that uses a sprite symbol inherits stroke styling */
svg, svg use { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* --------------------------------------------------------------------------
   3. Utilities
   -------------------------------------------------------------------------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; top: .5rem; left: .5rem; z-index: 100;
  padding: .5rem 1rem; border-radius: var(--r-field);
  background: var(--c-primary); color: var(--c-primary-content);
  font-family: var(--f-display); font-weight: 700;
  transform: translateY(-200%);
}
.skip-link:focus { transform: none; }

.eyebrow {
  display: inline-block;
  font-family: var(--f-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-primary);
}

.stars { color: var(--c-primary); letter-spacing: .05em; line-height: 1; }

.marker {
  position: relative; display: inline-block; z-index: 0; color: var(--c-primary);
  background: var(--c-gold-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.highlight { color: var(--c-primary); }

.link { color: var(--c-primary); text-decoration: underline; text-underline-offset: 3px; }

.glow-blob {
  position: absolute; inset: 10% 5%; z-index: 0; pointer-events: none;
  background: radial-gradient(closest-side, rgba(212, 175, 55, .28), transparent 70%);
  filter: blur(30px);
}
.glow-blob--soft { opacity: .6; }

.float-slow { position: relative; z-index: 1; animation: float 7s ease-in-out infinite; }

/* Placeholder content is flagged with a dotted outline so nothing ships unnoticed.
   Delete this rule (or the data-placeholder attributes) once real content is in. */
[data-placeholder] { outline: 1px dashed rgba(212, 175, 55, .55); outline-offset: 2px; }

/* --------------------------------------------------------------------------
   4. Shared components
   -------------------------------------------------------------------------- */

/* Logo: monoline "wda" mark + sprite-sheet animation + wordmark ---------- */
.logo {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--f-display); font-weight: 800; font-size: 1.15rem;
  letter-spacing: .02em; color: var(--c-light); white-space: nowrap;
}
.logo__mark { height: 2rem; width: auto; flex-shrink: 0; color: var(--c-light); overflow: visible; }
.logo__sprite { display: block; height: 2rem; aspect-ratio: 392 / 144; flex-shrink: 0; }
.logo__sprite-ratio { position: relative; display: block; width: 100%; height: 100%; overflow: hidden; }
.logo__sprite-img {
  position: absolute; left: 0; top: 0; width: 100%; height: auto; max-width: none;
  will-change: transform; stroke: none; fill: none;
}
.logo__text { font-size: .8em; }
/* Header and mobile panel show the mark + animation only (like the reference); the wordmark lives in the footer */
.header__logo .logo__text, .mobile-nav__logo .logo__text { display: none; }
.logo__accent { color: var(--c-primary); }
.logo--footer { flex-wrap: wrap; white-space: normal; }
.logo--footer .logo__text { width: 100%; font-size: .75em; }

/* Buttons ---------------------------------------------------------------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 3rem; padding: .7rem 1.4rem; border-radius: var(--r-pill);
  border: 1px solid transparent;
  font-family: var(--f-display); font-weight: 700; font-size: 1rem; letter-spacing: .02em; line-height: 1.2;
  text-align: center; white-space: nowrap;
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s, filter .2s;
  overflow: hidden;
}
.btn__icon { width: 1.1em; height: 1.1em; flex-shrink: 0; }

.btn--sm { min-height: 2.4rem; padding: .45rem 1rem; font-size: .95rem; }
.btn--lg { min-height: 3.5rem; padding: .9rem 1.8rem; font-size: 1.1rem; }
.btn--block { width: 100%; }

.btn--primary { background: var(--c-primary-gradient); color: var(--c-primary-content); border-color: var(--c-primary); }
.btn--primary:hover { filter: brightness(1.06); }
.btn--glow { box-shadow: 0 10px 30px -8px rgba(212, 175, 55, .5); }

.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .6); }
.btn--outline-light:hover { background: #fff; color: var(--c-neutral); border-color: #fff; }

.btn--outline-primary { background: transparent; color: var(--c-primary); border-color: var(--c-primary); }
.btn--outline-primary:hover { background: var(--c-primary); color: var(--c-primary-content); }

.btn--outline-dark { background: transparent; color: var(--c-base-content); border-color: rgba(16, 19, 24, .3); }
.btn--outline-dark:hover { background: var(--c-base-content); color: var(--c-base-100); border-color: var(--c-base-content); }

.btn--ghost { background: transparent; color: var(--c-primary); min-height: 2.6rem; }
.btn--ghost:hover { background: rgba(212, 175, 55, .1); }

.btn--shine::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -60%; width: 40%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .55), transparent);
  transform: skewX(-20deg); animation: shine 4s ease-in-out infinite;
}

/* Pills / chips / badges ------------------------------------------------- */
.pill {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem 1rem; border-radius: var(--r-pill);
  font-size: .875rem; font-weight: 600; line-height: 1.2;
}
.pill__icon { width: 1rem; height: 1rem; }
.pill--outline { border: 1px solid rgba(212, 175, 55, .4); background: rgba(212, 175, 55, .1); color: var(--c-primary); }
.pill--live { border: 1px solid rgba(212, 175, 55, .4); background: rgba(212, 175, 55, .15); color: var(--c-primary); padding: .4rem .9rem; }
.pill__ping { position: relative; display: inline-flex; width: .5rem; height: .5rem; }
.pill__ping::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--c-primary);
  opacity: .75; animation: ping 1.4s cubic-bezier(0, 0, .2, 1) infinite;
}
.pill__ping::after { content: ""; position: relative; width: .5rem; height: .5rem; border-radius: 50%; background: var(--c-primary); }

.chip {
  display: inline-flex; align-items: center; gap: .5rem; flex-shrink: 0;
  padding: .45rem .9rem; border-radius: var(--r-pill);
  border: 1px solid var(--c-line-20); background: rgba(255, 255, 255, .05);
  font-family: var(--f-display); font-size: .875rem; font-weight: 600; color: var(--c-light);
  transition: color .2s, border-color .2s;
}
.chip:hover { color: var(--c-primary); border-color: var(--c-primary); }
.chip--static { font-family: var(--f-body); cursor: default; }
.chip--static:hover { color: var(--c-light); border-color: var(--c-line-20); }
.chip__icon { width: 1rem; height: 1rem; color: var(--c-primary); }

.badge {
  display: inline-block; padding: .3rem .8rem; border-radius: var(--r-pill);
  background: var(--c-primary); color: var(--c-primary-content);
  font-family: var(--f-display); font-size: .8rem; font-weight: 700;
}

.icon-chip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.75rem; height: 2.75rem; border-radius: var(--r-field);
  background: rgba(212, 175, 55, .15); color: var(--c-primary);
}
.icon-chip svg { width: 1.5rem; height: 1.5rem; }
.icon-chip--error { background: rgba(229, 72, 77, .1); color: var(--c-error); }

/* Avatars ---------------------------------------------------------------- */
.avatar {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border-radius: var(--r-field);
  font-family: var(--f-display); font-size: .8rem; font-weight: 700; color: #fff;
}
.avatar--lg { width: 2.75rem; height: 2.75rem; }
.avatar--a { background: #7a5c2e; }
.avatar--b { background: #3f6b8a; }
.avatar--c { background: #5c4b8a; }
.avatar--d { background: #2f7a5a; }
.avatar--e { background: #9a4c3a; }

/* Cards ------------------------------------------------------------------ */
.card {
  position: relative; display: flex; flex-direction: column;
  padding: 1.75rem; border-radius: var(--r-box);
  border: 1px solid var(--c-base-300); background: var(--c-base-100);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
}
.card--dark { background: var(--c-dark); color: var(--c-light); border-color: var(--c-line); }
.card--featured { border: 2px solid rgba(212, 175, 55, .6); box-shadow: 0 20px 40px -20px rgba(0, 0, 0, .3); }
.card--glow { transition: box-shadow .3s; }
.card--glow:hover { box-shadow: 0 20px 40px -18px rgba(212, 175, 55, .45); }

/* Lists ------------------------------------------------------------------ */
.list { display: grid; gap: .75rem; margin-top: .5rem; }
.list__item { display: flex; gap: .6rem; align-items: flex-start; color: var(--c-base-content); }
.list__icon { width: 1rem; height: 1rem; flex-shrink: 0; margin-top: .3rem; color: var(--c-primary); }
.list__icon--error { color: var(--c-error); }
.list--muted .list__item { color: var(--c-base-content-70); }
.list--light .list__item { color: var(--c-light-80); }

/* Container: the one place page width and gutters are set ----------------- */
.container { width: 100%; max-width: var(--w-page); margin-inline: auto; padding-inline: var(--gutter); }
.container--wide { max-width: var(--w-wide); }
.container--narrow { max-width: var(--w-narrow); }
.container--text { max-width: var(--w-text); }

/* Section scaffolding ----------------------------------------------------- */
.section { padding: 4rem 0; }
.section--hero { padding: 0; }
.section--marquee { padding: 1rem 0; }
.section--cta { padding: 5rem 0; }
.section--dark { background: var(--c-dark); color: var(--c-light); }
.section--soft { background: var(--c-base-200); }
.section--grid {
  border-top: 1px solid var(--c-base-300); border-bottom: 1px solid var(--c-base-300);
  background-color: var(--c-base-100);
  background-image: linear-gradient(rgba(16, 19, 24, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(16, 19, 24, .05) 1px, transparent 1px);
  background-size: 32px 32px;
}

.section__head { max-width: 48rem; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--narrow { max-width: 42rem; }
.section__title { margin-top: .75rem; font-size: clamp(2rem, 5vw, 3rem); }
.section__title--xl { font-size: clamp(2.25rem, 6vw, 3.75rem); }
.section__title--md { font-size: clamp(1.9rem, 4vw, 2.5rem); }
.section__lead { margin-top: 1.5rem; font-size: 1.125rem; color: var(--c-base-content-70); }
.section__lead + .section__lead { margin-top: 1rem; }
.section--dark .section__lead { color: var(--c-light-80); }
.section--dark .section__title { color: var(--c-light); }

/* Fields (lead form) ----------------------------------------- */
.field { display: grid; gap: .3rem; }
.field__label {
  font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--c-light-70);
}
.field__label--sm { letter-spacing: 0; text-transform: none; font-size: .8rem; color: var(--c-base-content); }
.field__optional { font-weight: 400; color: var(--c-base-content-50); }
.field__row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.field__value { font-family: var(--f-display); font-size: 1.5rem; font-weight: 700; color: var(--c-primary); }
.field__hints { display: flex; justify-content: space-between; font-size: .75rem; color: var(--c-light-50); }
.field__hint { font-size: .75rem; color: var(--c-base-content-50); }
.field__input, .field__select {
  width: 100%; min-width: 0; min-height: 3rem; padding: .6rem .9rem;
  border-radius: var(--r-field); border: 1px solid var(--c-base-300);
  background: #fff; color: var(--c-base-content); font-size: 1rem;
  transition: border-color .2s, box-shadow .2s;
}
.field__input:focus, .field__select:focus { outline: none; border-color: var(--c-primary); box-shadow: 0 0 0 3px rgba(212, 175, 55, .25); }
.field__select { appearance: none; -webkit-appearance: none; padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .8rem center; background-size: 1rem; }

.choice {
  display: flex; align-items: center; gap: .5rem; cursor: pointer;
  padding: .625rem .75rem; border-radius: var(--r-field); border: 1px solid var(--c-base-300);
  font-size: .875rem; transition: border-color .2s, background .2s;
}
.choice:hover { border-color: var(--c-primary); }
.choice__input { accent-color: var(--c-primary); margin: 0; }
.choice:has(.choice__input:checked) { border-color: var(--c-primary); background: rgba(212, 175, 55, .08); font-weight: 600; }
.choice:has(.choice__input:focus-visible) { outline: 2px solid var(--c-primary); outline-offset: 2px; }

/* --------------------------------------------------------------------------
   5. Header + navigation
   -------------------------------------------------------------------------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: transparent; color: var(--c-light);
  border-bottom: 1px solid transparent;
  transform: translateY(0);
  transition: background .3s, border-color .3s, transform .35s var(--ease-out);
}
/* At the very top the bar merges with the hero photo; once scrolled it goes solid black */
.header--solid { background: rgba(0, 0, 0, .96); border-bottom-color: var(--c-line); }
/* Slid away (toggled by scroll direction in main.js) */
.header--hidden { transform: translateY(-100%); }
.header__inner {
  display: flex; align-items: center; justify-content: flex-end; gap: .5rem;
  height: var(--header-h);
}
.header__actions { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }
.header__logo { flex-shrink: 0; margin-right: auto; } /* logo left, nav + CTA right */
.header__cta-label { display: none; }
.header__cta-label--short { display: inline; }
.header__burger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border: 0; border-radius: var(--r-field); background: transparent; color: var(--c-light);
}
.header__burger:hover { background: rgba(255, 255, 255, .08); }
.header__burger-icon { width: 1.5rem; height: 1.5rem; }

.nav { display: none; align-items: center; gap: 1.5rem; margin-right: 1.25rem; }
.nav__item { position: relative; }
.nav__link {
  position: relative; display: inline-flex; align-items: center; gap: .25rem; white-space: nowrap;
  font-size: .875rem; font-weight: 600; color: var(--c-light-80); transition: color .2s;
}
.nav__link:hover { color: var(--c-primary); }
.nav__link--underline::after {
  content: ""; position: absolute; left: 0; bottom: -.25rem; height: 2px; width: 100%;
  background: var(--c-primary); transform: scaleX(0); transform-origin: left; transition: transform .25s;
}
.nav__link--underline:hover::after { transform: scaleX(1); }
.nav__chev { width: .875rem; height: .875rem; transition: transform .2s; }
.nav__item--dropdown:hover .nav__chev, .nav__item--dropdown:focus-within .nav__chev { transform: rotate(180deg); }

.nav__dropdown {
  position: absolute; top: 100%; left: 0; z-index: 60; width: 13rem; padding: .5rem;
  border-radius: var(--r-box); border: 1px solid var(--c-line); background: var(--c-neutral);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, .5);
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .2s, transform .2s, visibility .2s;
}
/* No gap between trigger and panel: a gap breaks the hover path. */
.nav__item--dropdown::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: .5rem; }
.nav__item--dropdown:hover .nav__dropdown, .nav__item--dropdown:focus-within .nav__dropdown { opacity: 1; visibility: visible; transform: none; }
.nav__dropdown-item { opacity: 0; transform: translateX(-6px); transition: opacity .25s, transform .25s; transition-delay: calc(var(--i, 0) * 40ms); }
.nav__item--dropdown:hover .nav__dropdown-item, .nav__item--dropdown:focus-within .nav__dropdown-item { opacity: 1; transform: none; }
.nav__dropdown-link {
  display: flex; align-items: center; gap: .5rem; padding: .6rem .75rem; border-radius: var(--r-field);
  font-size: .9rem; font-weight: 600; color: var(--c-light); transition: background .2s, color .2s;
}
.nav__dropdown-link:hover { background: rgba(255, 255, 255, .06); color: var(--c-primary); }
.nav__dropdown-icon { width: .875rem; height: .875rem; margin-left: auto; color: rgba(212, 175, 55, .6); }

/* Mobile nav ------------------------------------------------------------- */
.mobile-nav {
  position: fixed; inset: 0; z-index: 90; width: 100%; max-width: none; height: 100%; max-height: none;
  margin: 0; padding: 0; border: 0; background: var(--c-neutral); color: var(--c-light);
}
.mobile-nav::backdrop { background: rgba(0, 0, 0, .5); }
.mobile-nav[open] { animation: navIn .3s var(--ease-out); }
.mobile-nav__inner { display: flex; flex-direction: column; min-height: 100%; }
.mobile-nav__bar {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}
.mobile-nav__close { width: 2.5rem; height: 2.5rem; border: 0; border-radius: var(--r-field); background: transparent; color: var(--c-light); display: inline-flex; align-items: center; justify-content: center; }
.mobile-nav__close-icon { width: 1.5rem; height: 1.5rem; }
.mobile-nav__body { flex: 1; padding-bottom: 2.5rem; overflow-y: auto; }
.mobile-nav__group { animation: navGroup .45s var(--ease-out) both; animation-delay: calc(var(--g, 0) * 50ms + 60ms); }
.mobile-nav__status { display: flex; align-items: center; gap: .5rem; font-size: .875rem; font-weight: 600; color: var(--c-light-80); }
.mobile-nav__dot { width: .5rem; height: .5rem; border-radius: 50%; background: var(--c-success); }
.mobile-nav__dot--closed { background: var(--c-light-50); }
.mobile-nav__actions { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-top: 1rem; }
.mobile-nav__group + .mobile-nav__group { margin-top: 1.5rem; }
.mobile-nav__list { margin-top: .5rem; }
.mobile-nav__list li + li { border-top: 1px solid var(--c-line); }
.mobile-nav__link {
  display: flex; align-items: center; justify-content: space-between; height: 3.5rem;
  font-family: var(--f-display); font-size: 1.25rem; font-weight: 700; transition: color .2s;
}
.mobile-nav__link:hover { color: var(--c-primary); }
.mobile-nav__link-icon { width: 1.25rem; height: 1.25rem; color: var(--c-primary); }
.mobile-nav__chips { display: flex; gap: .5rem; margin: .75rem calc(-1 * var(--gutter)) 0; padding: 0 var(--gutter) .25rem; overflow-x: auto; scrollbar-width: none; }
.mobile-nav__chips::-webkit-scrollbar { display: none; }
.mobile-nav__grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 1.5rem; margin-top: .5rem; }
.mobile-nav__grid-link {
  display: flex; align-items: center; justify-content: space-between; height: 3rem;
  border-bottom: 1px solid var(--c-line); font-weight: 600; color: rgba(251, 247, 238, .9); transition: color .2s;
}
.mobile-nav__grid-link:hover { color: var(--c-primary); }
.mobile-nav__grid-icon { width: 1rem; height: 1rem; color: rgba(212, 175, 55, .7); }
.mobile-nav__reviews { display: flex; align-items: center; justify-content: center; gap: .5rem; margin-top: 2rem; font-size: .875rem; color: var(--c-light-80); }

/* Body lock while the mobile panel or the quote modal is open */
.page--nav-open, .page--modal-open { overflow: hidden; }

/* --------------------------------------------------------------------------
   6. Page sections
   -------------------------------------------------------------------------- */

/* Hero ------------------------------------------------------------------- */
.hero { position: relative; isolation: isolate; display: flex; flex-direction: column; justify-content: center; min-height: 100vh; min-height: 100svh; padding-top: var(--header-h); background: var(--c-dark); color: var(--c-light); overflow: hidden; }
/* Background photo is a real <img> (indexable alt + URL); the overlay keeps text legible */
.hero__bg { position: absolute; inset: 0; z-index: -2; display: block; }
.hero__bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(11, 15, 20, .9) 0%, rgba(11, 15, 20, .74) 55%, rgba(11, 15, 20, .55) 100%); }
.hero__inner {
  display: grid; gap: 3.5rem; align-items: center;
  padding-block: 3rem;
}
.hero__content { min-width: 0; text-align: center; }
.hero__brand { font-family: var(--f-body); font-size: .875rem; font-weight: 600; letter-spacing: .02em; color: var(--c-primary); }
.hero__title { margin-top: 1.5rem; font-size: clamp(2.5rem, 8vw, 4.5rem); color: var(--c-light); }
.hero__title-line { display: block; }
.hero__title-line--small { font-size: .66em; }
.hero__lead { max-width: 36rem; margin: 1.5rem auto 0; font-size: 1.125rem; color: var(--c-light-80); }
.hero__proof { display: flex; justify-content: center; margin-top: 1.75rem; }
.hero__actions { display: flex; flex-direction: column; gap: .75rem; margin-top: 1.75rem; }
.hero__actions .btn { width: 100%; }
.hero__badge { display: flex; justify-content: center; margin-top: 1.5rem; }
.hero__visual { position: relative; min-width: 0; }

.rotator { display: inline-block; transition: opacity .3s, transform .3s; }
.rotator--out { opacity: 0; transform: translateY(.3em); }

.social-proof { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .5rem .75rem; }
.social-proof__avatars { display: flex; gap: .25rem; }
.social-proof__text { text-align: left; font-size: .875rem; color: var(--c-light-80); }
.social-proof__text .stars { display: block; margin-bottom: .2rem; }
.social-proof__line { display: block; }
.social-proof__line strong { color: var(--c-light); }

.hero__stats { margin-top: auto; border-top: 1px solid var(--c-line); }
.hero__stats-inner {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: center; gap: .75rem 2.5rem;
  padding-block: 1.25rem;
}
.stat { display: flex; flex-direction: column; align-items: center; gap: .1rem; text-align: center; }
.stat__value { font-family: var(--f-display); font-size: 1.5rem; font-weight: 800; color: var(--c-light); }
.stat__label { font-size: .875rem; color: var(--c-light-60); }

/* Marquee ---------------------------------------------------------------- */
.marquee { background: var(--c-neutral); color: var(--c-light); border-bottom: 1px solid var(--c-base-300); overflow: hidden; }
.marquee__track { display: flex; width: max-content; animation: marquee 40s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex; align-items: center; gap: .6rem; margin: 0 1rem;
  font-family: var(--f-display); font-size: 1rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--c-light-60); white-space: nowrap;
}
.marquee__icon { width: 1.25rem; height: 1.25rem; color: var(--c-primary); }

/* Services (intro + missed-enquiry cards + service tiles) --------------- */
.services__inner { display: grid; gap: 3rem; align-items: center; }
.services__content { text-align: center; }
.services__content .section__lead { max-width: 36rem; margin-inline: auto; }
.services__cards { display: grid; gap: 1rem; width: 100%; max-width: 24rem; margin-inline: auto; }
.services__caption { padding-top: .25rem; text-align: center; font-size: .875rem; color: var(--c-base-content-60); }
.services__grid { display: grid; gap: 1.5rem; margin-top: 3.5rem; }
.services__grid > div { display: flex; }

.miss-card {
  display: flex; align-items: center; gap: 1rem; padding: 1rem; border-radius: var(--r-box);
  border: 1px solid rgba(229, 72, 77, .2); background: var(--c-base-100); box-shadow: 0 10px 30px -12px rgba(0, 0, 0, .25);
}
.miss-card--tilt-l { transform: rotate(-2deg); }
.miss-card--tilt-r { transform: rotate(1deg); }
.miss-card--tilt-l2 { transform: rotate(-1deg); }
.miss-card__icon { display: flex; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem; flex-shrink: 0; border-radius: var(--r-field); background: rgba(229, 72, 77, .1); color: var(--c-error); }
.miss-card__icon svg { width: 1.25rem; height: 1.25rem; }
.miss-card__title { font-family: var(--f-display); font-size: 1.125rem; font-weight: 700; }
.miss-card__meta { font-size: .875rem; color: var(--c-base-content-60); }

/* Service tile: white card with red chip; every second tile is dark with gold (service--dark) */
.service {
  position: relative; display: flex; flex: 1; flex-direction: column; overflow: hidden;
  padding: 1.75rem; border-radius: var(--r-box); border: 1px solid var(--c-base-300); background: var(--c-base-100);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .04); transition: box-shadow .3s, border-color .3s;
}
.service:hover { border-color: rgba(229, 72, 77, .35); box-shadow: 0 20px 40px -18px rgba(229, 72, 77, .35); }
/* Alternate tile: dark ink with gold border, like the featured comparison card */
.service--dark { background: var(--c-dark); color: var(--c-light); border: 2px solid rgba(212, 175, 55, .6); }
.service--dark .service__title { color: var(--c-light); }
.service--dark .service__text { color: var(--c-light-80); }
.service--dark:hover { border-color: var(--c-primary); box-shadow: 0 20px 40px -18px rgba(212, 175, 55, .45); }
.service__title { margin-top: 1.25rem; font-size: 1.375rem; }
.service__text { margin-top: .6rem; color: var(--c-base-content-70); }

/* Been burned ------------------------------------------------------------ */
.burned__grid { display: grid; gap: 1rem; margin-top: 2.5rem; }
.burned__grid > div { display: flex; }
.promise { flex: 1; padding: 1.5rem; border-radius: var(--r-box); border: 1px solid var(--c-line); background: var(--c-surface-2); }
.promise__title { display: flex; align-items: flex-start; gap: .75rem; font-family: var(--f-display); font-size: 1.25rem; font-weight: 700; color: var(--c-light); }
.promise__icon { width: 1.25rem; height: 1.25rem; flex-shrink: 0; margin-top: .2rem; color: var(--c-primary); }
.promise__text { margin-top: .5rem; padding-left: 2rem; color: var(--c-light-70); }
.burned__note { max-width: 42rem; margin: 2rem auto 0; text-align: center; color: var(--c-light-80); }

/* Proof ------------------------------------------------------------------ */
.proof__featured { margin-top: 3rem; }
.case { gap: 2rem; padding: 1.75rem; box-shadow: 0 10px 30px -15px rgba(0, 0, 0, .2); }
.case__stats { display: flex; flex-wrap: wrap; gap: 1.5rem; flex-shrink: 0; }
.case__value { font-family: var(--f-display); font-size: 2.5rem; font-weight: 800; color: var(--c-primary); line-height: 1; }
.case__value--muted { color: var(--c-base-content-70); }
.case__label { margin-top: .25rem; font-size: .875rem; color: var(--c-base-content-60); }
.case__body { min-width: 0; }
.case__title { margin-top: .75rem; font-family: var(--f-display); font-size: 1.5rem; font-weight: 700; }
.case__text { margin-top: .75rem; font-size: 1.125rem; line-height: 1.65; color: var(--c-base-content-70); }
.case__action { flex-shrink: 0; }

.proof__grid { display: grid; gap: 1.5rem; margin-top: 1.5rem; }
.proof__grid > div { display: flex; }
.testimonial { flex: 1; height: 100%; }
.testimonial__top { display: flex; align-items: flex-start; justify-content: space-between; }
.testimonial__quote { width: 1.5rem; height: 1.5rem; margin-left: auto; color: rgba(212, 175, 55, .3); }
.testimonial__headline { margin-top: .75rem; font-size: 1.25rem; font-weight: 700; }
.testimonial__text { margin-top: .5rem; font-style: italic; color: var(--c-base-content-70); }
.testimonial__author { display: flex; align-items: center; gap: .75rem; margin-top: 1.25rem; }
.testimonial__name { font-family: var(--f-display); font-size: 1.125rem; font-weight: 700; }
.testimonial__company { font-size: .875rem; color: var(--c-base-content-60); }

.logo-wall { margin-top: 3.5rem; text-align: center; }
.logo-wall__label { font-size: .875rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--c-base-content-50); }
.logo-wall__strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.75rem 3rem; margin-top: 1.75rem; }
.logo-wall__logo {
  display: inline-flex; align-items: center; justify-content: center; height: 2.5rem; padding: 0 1.25rem;
  border-radius: .5rem; background: rgba(16, 19, 24, .08);
  font-family: var(--f-display); font-weight: 700; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--c-base-content-50);
  filter: grayscale(1); opacity: .8; transition: opacity .2s, filter .2s;
}
.logo-wall__logo:hover { opacity: 1; filter: none; }
.logo-wall__actions { display: flex; flex-direction: column; align-items: center; gap: .75rem; margin-top: 2.5rem; }

/* The system ------------------------------------------------------------- */
.system__grid { display: grid; gap: 1.5rem; margin-top: 3.5rem; }
.system__grid > div { display: flex; }
.feature {
  position: relative; display: flex; flex: 1; flex-direction: column; overflow: hidden;
  padding: 1.75rem; border-radius: var(--r-box); border: 1px solid var(--c-line); background: var(--c-surface-2);
}
.feature__num { position: absolute; top: -.75rem; right: 1rem; font-family: var(--f-display); font-size: 6rem; font-weight: 800; line-height: 1; color: rgba(255, 255, 255, .05); }
.feature__title { position: relative; margin-top: 1.25rem; font-size: 1.5rem; color: var(--c-light); }
.feature__text { position: relative; margin-top: .6rem; color: var(--c-light-70); }
.feature__link { position: relative; display: inline-flex; align-items: center; gap: .25rem; margin-top: auto; padding-top: 1.25rem; font-size: .875rem; font-weight: 600; color: var(--c-primary); transition: color .2s; }
.feature__link:hover { color: var(--c-accent); }
.feature__link-icon { width: 1rem; height: 1rem; }

/* Process ---------------------------------------------------------------- */
.process__steps { position: relative; display: grid; gap: 2.5rem; margin-top: 3.5rem; }
.process__line { display: none; position: absolute; top: 1.75rem; left: 16%; right: 16%; height: 2px; background: linear-gradient(90deg, transparent, var(--c-primary), transparent); }
.step { text-align: center; }
.step__num {
  position: relative; z-index: 1; display: flex; align-items: center; justify-content: center;
  width: 3.5rem; height: 3.5rem; margin-inline: auto; border-radius: var(--r-field);
  background: var(--c-primary); color: var(--c-primary-content);
  font-family: var(--f-display); font-size: 1.5rem; font-weight: 800;
  box-shadow: 0 10px 25px -8px rgba(212, 175, 55, .5), 0 0 0 4px var(--c-base-100);
}
.step__title { margin-top: 1.25rem; font-size: 1.5rem; }
.step__text { max-width: 20rem; margin: .6rem auto 0; color: var(--c-base-content-70); }

.process__actions { display: flex; flex-direction: column; gap: .75rem; margin-top: 2.5rem; }
.process__actions .btn { width: 100%; }

/* FAQ + lead form -------------------------------------------------------- */
.faq-form__inner { display: grid; gap: 3rem; align-items: start; }
.faq__list { display: grid; gap: .75rem; margin-top: 1.75rem; }
.faq__item { border-radius: var(--r-box); border: 1px solid var(--c-base-300); background: var(--c-base-100); transition: border-color .2s; }
.faq__item:hover { border-color: rgba(212, 175, 55, .4); }
.faq__q {
  position: relative; display: block; padding: 1rem 3rem 1rem 1.25rem; cursor: pointer; list-style: none;
  font-family: var(--f-display); font-size: 1.125rem; font-weight: 700;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: ""; position: absolute; right: 1.25rem; top: 50%; width: .6rem; height: .6rem;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: translateY(-70%) rotate(45deg); transition: transform .25s;
}
.faq__item[open] .faq__q::after { transform: translateY(-30%) rotate(225deg); }
.faq__a { padding: 0 1.25rem 1.25rem; color: var(--c-base-content-70); }

.faq-form__form { scroll-margin-top: 6rem; }
.lead-form {
  padding: 1.5rem 1.5rem 6rem; border-radius: var(--r-box);
  border: 2px solid rgba(212, 175, 55, .6); background: var(--c-base-100); box-shadow: 0 25px 50px -20px rgba(0, 0, 0, .25);
}
.lead-form__title { font-size: 1.875rem; }
.lead-form__sub { margin-top: .5rem; font-size: .875rem; color: var(--c-base-content-70); }
.lead-form__pill { margin-top: .75rem; }
.lead-form__form { display: grid; gap: .75rem; margin-top: 1.25rem; }
.lead-form__hp { display: none; }
.lead-form__choices { display: grid; gap: .5rem; margin-top: .25rem; }
.lead-form__branch { display: none; }
.lead-form__form:has(.choice__input[value="website"]:checked) .lead-form__branch[data-branch="website"],
.lead-form__form:has(.choice__input[value="facebook"]:checked) .lead-form__branch[data-branch="facebook"] { display: grid; }
.lead-form__form:has(.choice__input[value="none"]:checked) .lead-form__branch[data-branch="none"] { display: block; }
.lead-form__row { display: grid; gap: .75rem; }
.lead-form__choices--2 { grid-template-columns: 1fr 1fr; }
.lead-form__submit { margin-top: .25rem; }

/* Hero variant: sits on the dark band, no sticky, keeps the fields dense */
.lead-form--hero { position: relative; z-index: 1; padding-bottom: 1.5rem; color: var(--c-base-content); }
.lead-form--hero .lead-form__title { color: var(--c-base-content); }
.lead-form--hero .lead-form__title { font-size: 1.6rem; }
.lead-form__msg { text-align: center; font-size: .75rem; color: var(--c-base-content-60); }
.lead-form__msg--ok { color: var(--c-success); font-weight: 600; }
.lead-form__msg--error { color: var(--c-error); font-weight: 600; }
.field__input--invalid { border-color: var(--c-error); }

/* Quote modal ------------------------------------------------------------ */
.modal {
  width: min(100%, 40rem); max-width: none; max-height: 100dvh;
  margin: auto; padding: 1.25rem; border: 0; background: transparent; overflow: visible;
}
.modal::backdrop { background: rgba(11, 15, 20, .75); backdrop-filter: blur(2px); }
.modal[open] { animation: modalIn .25s var(--ease-out); }
.modal__panel { position: relative; max-height: calc(100dvh - 2.5rem); overflow-y: auto; border-radius: var(--r-box); }
.modal__close {
  position: absolute; top: .75rem; right: .75rem; z-index: 1;
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.25rem; height: 2.25rem; padding: 0;
  border: 1px solid var(--c-base-300); border-radius: var(--r-field);
  background: var(--c-base-100); color: var(--c-base-content-60);
  transition: color .2s, border-color .2s;
}
.modal__close:hover { color: var(--c-base-content); border-color: var(--c-base-content-50); }
.modal__close-icon { width: 1.1rem; height: 1.1rem; }
/* The form inside the modal is the same .lead-form block, minus the hero offsets */
.lead-form--modal { padding: 1.5rem; padding-right: 3.5rem; }
.lead-form--modal .lead-form__title { font-size: 1.6rem; color: var(--c-base-content); }

/* Final CTA -------------------------------------------------------------- */
.cta__inner { text-align: center; }
.cta__title { font-size: clamp(2.25rem, 7vw, 4.5rem); color: var(--c-light); }
.cta__lead { max-width: 36rem; margin: 1.5rem auto 0; font-size: 1.125rem; color: var(--c-light-80); }
.cta__actions { display: flex; flex-direction: column; gap: .75rem; margin-top: 2.25rem; }
.cta__actions .btn { width: 100%; }
.cta__foot { margin-top: 1.75rem; font-size: .875rem; color: var(--c-light-60); }
.cta__dot { color: var(--c-primary); }

/* --------------------------------------------------------------------------
   7. Footer
   -------------------------------------------------------------------------- */
.footer { background: var(--c-neutral); color: var(--c-light-70); }
.footer__inner { padding-block: 3rem; }
.footer__top { display: flex; flex-direction: column; gap: 2rem; }
.footer__brand { max-width: 24rem; }
.footer__tagline { margin-top: .5rem; font-size: .875rem; }
.footer__address { margin-top: .75rem; font-size: .875rem; font-style: normal; }
.footer__tagline:first-of-type { margin-top: .75rem; }
.footer__nav { display: flex; flex-direction: column; gap: .5rem; font-size: .875rem; }
.footer__heading { font-family: var(--f-display); font-size: .875rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--c-light); }
.footer__link { padding: .375rem 0; margin: -.375rem 0; transition: color .2s; }
.footer__link:hover { color: var(--c-primary); }
.footer__contact { font-size: .875rem; }
.footer__phone { font-family: var(--f-display); font-size: 1.5rem; font-weight: 700; color: var(--c-light); transition: color .2s; }
.footer__phone:hover { color: var(--c-primary); }
.footer__hours { margin-top: .5rem; }
.footer__reviews { display: flex; align-items: center; gap: .4rem; margin-top: .75rem; transition: color .2s; }
.footer__reviews:hover { color: var(--c-primary); }
.footer__reviews strong { color: var(--c-light); }
.footer__bottom { display: flex; flex-direction: column; gap: 1rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--c-line); font-size: .75rem; text-align: center; }
.footer__badges { display: flex; justify-content: center; gap: 1rem; }
.footer__badge { display: inline-flex; align-items: center; justify-content: center; height: 3.5rem; padding: 0 1.25rem; border-radius: .4rem; background: rgba(255, 255, 255, .06); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.footer__legal { display: flex; justify-content: center; gap: 1rem; }

/* --------------------------------------------------------------------------
   8. Animations
   -------------------------------------------------------------------------- */
/* Scroll reveal: hidden only when JS is present; IntersectionObserver adds --in */
.js [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); transition-delay: calc(var(--reveal-delay, 0) * 1s); }
.js [data-reveal].reveal--in { opacity: 1; transform: none; }

.reveal-instant { animation: revealUp .7s var(--ease-out) both; }

@keyframes revealUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes pop { 0% { opacity: 0; transform: translateY(-10px) scale(.9); } 100% { opacity: 1; transform: none; } }
@keyframes glowPulse { 0%, 92%, 100% { box-shadow: none; } 96% { box-shadow: 0 0 0 5px rgba(212, 175, 55, .35); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes ping { 75%, 100% { transform: scale(2.2); opacity: 0; } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
@keyframes shine { 0% { left: -60%; } 30%, 100% { left: 130%; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes modalIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes navIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
@keyframes navGroup { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

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

/* --------------------------------------------------------------------------
   9. Media queries
   -------------------------------------------------------------------------- */

/* Small phones: the wordmark, CTA and burger must share a 350px row */
@media (max-width: 639px) {
  .header__logo, .mobile-nav__bar .logo { gap: .4rem; }
  .header__inner { gap: .25rem; }
  .header__cta { padding-inline: .7rem; font-size: .875rem; }
  .header__burger { width: 2.25rem; }
  .btn--lg { white-space: normal; padding-inline: 1.4rem; }
}

@media (min-width: 640px) {
  .section { padding: 6rem 0; }
  .section--hero, .section--marquee { padding: 1rem 0; }
  .section--cta { padding: 7rem 0; }
  .hero__inner { padding-block: 5rem; }
  .hero__actions, .process__actions, .cta__actions { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .hero__actions .btn, .process__actions .btn, .cta__actions .btn { width: auto; }
  .header__cta-label--short { display: none; }
  .header__cta-label--mid { display: inline; }
  .stat { flex-direction: row; align-items: baseline; gap: .5rem; }
  .stat__value { font-size: 1.875rem; }
  .marquee__item { margin: 0 1.75rem; font-size: 1.125rem; }
  .burned__grid { grid-template-columns: 1fr 1fr; }
  .case { padding: 2.25rem; }
  .case__stats { gap: 2.5rem; }
  .case__value { font-size: 3.75rem; }
  .lead-form { padding: 1.75rem 1.75rem 6rem; }
  .lead-form__choices { grid-template-columns: repeat(3, 1fr); }
  .lead-form__choices--2 { grid-template-columns: 1fr 1fr; }
  .lead-form__row { grid-template-columns: 1fr 1fr; }
  .lead-form--hero { padding-bottom: 1.75rem; }
  .footer__top { flex-direction: row; justify-content: space-between; align-items: flex-start; }
  .footer__bottom { flex-direction: row; align-items: center; justify-content: space-between; text-align: left; }
  .footer__badge { height: 4rem; }
}

@media (min-width: 768px) {
  .services__grid { grid-template-columns: 1fr 1fr; }
  .proof__grid { grid-template-columns: 1fr 1fr; }
  .system__grid { grid-template-columns: repeat(3, 1fr); }
  .process__steps { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .process__line { display: block; }
}

@media (min-width: 1024px) {
  .services__grid { grid-template-columns: repeat(3, 1fr); }
  .nav { display: flex; }
  .header__burger { display: none; }
  .hero__inner { grid-template-columns: 1.12fr .88fr; padding-block: 6rem; }
  .hero__content { text-align: left; }
  .hero__lead { margin-inline: 0; }
  .hero__proof, .hero__badge, .hero__actions { justify-content: flex-start; }
  .social-proof { justify-content: flex-start; }
  .services__inner { grid-template-columns: 1fr 1fr; }
  .services__content { text-align: left; }
  .services__content .section__lead { margin-inline: 0; }
  .case { flex-direction: row; align-items: center; }
  .case__stats { flex-direction: column; gap: 2rem; }
  .faq-form__inner { grid-template-columns: 1fr 1fr; }
  .faq-form__form { position: sticky; top: 6rem; }
  .lead-form { padding-bottom: 1.75rem; }
}

@media (min-width: 1280px) {
  .nav { gap: 1.75rem; }
  .hero__title { font-size: 4.5rem; }
}

@media (min-width: 1280px) {
  .header__cta-label--mid { display: none; }
  .header__cta-label--long { display: inline; }
}
