/* ==========================================================================
   We Buy Junk Cars Kansas City — Design System
   Built for Google Ads conversion. No web fonts, no external requests.
   ========================================================================== */

/* --- Tokens --------------------------------------------------------------- */
:root {
  /* Brand: deep "money" green + high-contrast gold CTA */
  --ink-900:  #061813;
  --ink-800:  #0A241C;
  --ink-700:  #113528;
  --ink-600:  #1A4A38;

  --brand-700: #0B6B4C;
  --brand-600: #0E8560;
  --brand-500: #12A576;
  --brand-400: #2BC28F;
  --brand-100: #D6F0E5;
  --brand-050: #EDF9F4;

  --gold-600: #E8A800;
  --gold-500: #FFC53D;
  --gold-400: #FFD976;
  --gold-100: #FFF3D4;

  --slate-900: #0F1E1A;
  --slate-700: #33443E;
  --slate-600: #4E635C;
  --slate-500: #6B807A;
  --slate-300: #C6D3CE;
  --slate-200: #E1E9E6;
  --slate-100: #F0F5F3;
  --slate-050: #F7FAF9;
  --white: #FFFFFF;

  --danger: #D92D20;
  --success: #0E8560;

  /* Radii — rounded everywhere, never sharp */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-2xl: 36px;
  --r-pill: 999px;

  /* Elevation */
  --sh-xs: 0 1px 2px rgba(6, 24, 19, .06);
  --sh-sm: 0 2px 8px rgba(6, 24, 19, .06), 0 1px 2px rgba(6, 24, 19, .04);
  --sh-md: 0 8px 24px rgba(6, 24, 19, .08), 0 2px 6px rgba(6, 24, 19, .04);
  --sh-lg: 0 18px 48px rgba(6, 24, 19, .12), 0 4px 12px rgba(6, 24, 19, .06);
  --sh-xl: 0 32px 72px rgba(6, 24, 19, .18), 0 8px 20px rgba(6, 24, 19, .08);
  --sh-gold: 0 8px 22px rgba(232, 168, 0, .34);

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
          Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji";

  --nav-h: 94px;
  --container: 1180px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--slate-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; }
img, video { display: block; }
img { height: auto; }

/* SVG stays inline so icons sit on the same line as adjacent text. Inside a
   flex or grid parent (which is most icons here) display is blockified anyway,
   so this only affects icons used inline in a sentence. */
svg { display: inline-block; vertical-align: middle; }

h1, h2, h3, h4, h5 {
  margin: 0;
  color: var(--slate-900);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.022em;
}

p { margin: 0; }
ul, ol { margin: 0; padding: 0; }

a { color: var(--brand-700); text-decoration: none; }
a:hover { color: var(--brand-600); }

button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

:focus-visible {
  outline: 3px solid var(--brand-500);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 14px 22px;
  background: var(--ink-900);
  color: #fff;
  border-radius: 0 0 var(--r-md) 0;
  font-weight: 700;
}
.skip-link:focus { left: 0; color: #fff; }

/* --- Layout --------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}

.section { padding: clamp(58px, 7.5vw, 104px) 0; }
.section-tint { background: var(--slate-050); }
.section-brand-tint { background: var(--brand-050); }

.section-dark {
  background:
    radial-gradient(900px 420px at 15% 0%, rgba(18, 165, 118, .18), transparent 62%),
    radial-gradient(700px 380px at 88% 100%, rgba(255, 197, 61, .10), transparent 60%),
    var(--ink-900);
  color: #C8DCD4;
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }

.section-header {
  max-width: 720px;
  margin: 0 auto clamp(38px, 5vw, 58px);
  text-align: center;
}
.section-header h2 {
  font-size: clamp(29px, 4.1vw, 45px);
  margin: 16px 0 0;
}
.section-header > p {
  margin-top: 16px;
  font-size: clamp(16px, 1.6vw, 18.5px);
  color: var(--slate-600);
}
.section-dark .section-header > p { color: #9FB9B0; }

/* --- Eyebrow badge -------------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border-radius: var(--r-pill);
  background: var(--brand-050);
  color: var(--brand-700);
  border: 1px solid var(--brand-100);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.section-dark .badge {
  background: rgba(43, 194, 143, .14);
  border-color: rgba(43, 194, 143, .28);
  color: var(--brand-400);
}

/* --- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: var(--r-md);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.008em;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease),
              background-color .18s var(--ease), color .18s var(--ease);
  white-space: nowrap;
}
.btn svg { flex: 0 0 auto; }
.btn:active { transform: translateY(1px); }

/* Primary conversion action — gold on dark text, highest contrast on the page */
.btn-cta {
  background: linear-gradient(180deg, var(--gold-500), var(--gold-600));
  color: var(--ink-900);
  box-shadow: var(--sh-gold);
}
.btn-cta:hover {
  background: linear-gradient(180deg, var(--gold-400), var(--gold-500));
  color: var(--ink-900);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(232, 168, 0, .42);
}

.btn-green {
  background: var(--brand-700);
  color: #fff;
  box-shadow: 0 8px 20px rgba(11, 107, 76, .26);
}
.btn-green:hover {
  background: var(--brand-600);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .34);
  color: #fff;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, .14);
  border-color: #fff;
  color: #fff;
}

.btn-ghost {
  background: var(--white);
  border-color: var(--slate-200);
  color: var(--slate-900);
  box-shadow: var(--sh-sm);
}
.btn-ghost:hover { border-color: var(--brand-500); color: var(--brand-700); }

.btn-lg { padding: 18px 32px; font-size: 17.5px; border-radius: var(--r-lg); }
.btn-block { width: 100%; }

/* --- Top utility bar ------------------------------------------------------ */
.topbar {
  background: var(--ink-900);
  color: #9FB9B0;
  font-size: 13.5px;
  font-weight: 600;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 40px;
  padding-top: 6px;
  padding-bottom: 6px;
}
.topbar-items { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar-item svg { color: var(--brand-400); }
.topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 800;
}
.topbar-phone:hover { color: var(--gold-500); }
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand-400);
  box-shadow: 0 0 0 0 rgba(43, 194, 143, .7);
  animation: pulse 2.4s infinite;
  flex: 0 0 auto;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(43, 194, 143, .6); }
  70%  { box-shadow: 0 0 0 9px rgba(43, 194, 143, 0); }
  100% { box-shadow: 0 0 0 0 rgba(43, 194, 143, 0); }
}

/* --- Navigation ----------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--slate-200);
  transition: box-shadow .22s var(--ease);
}
.nav.scrolled { box-shadow: var(--sh-md); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--nav-h);
}

/* Logo — stacked square mark (car + wordmark + city line) */
.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo:hover { color: inherit; }
.logo img {
  height: 67px;
  width: auto;
  display: block;
}
.footer .logo img { height: 78px; }
.logo-mark {
  width: 42px; height: 42px;
  flex: 0 0 auto;
  border-radius: 13px;
  background: linear-gradient(145deg, var(--brand-500), var(--brand-700));
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 5px 14px rgba(11, 107, 76, .32);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.08; }
.logo-text .lt-1 {
  font-size: 16.5px;
  font-weight: 900;
  color: var(--slate-900);
  letter-spacing: -.028em;
}
.logo-text .lt-2 {
  font-size: 11px;
  font-weight: 800;
  color: var(--brand-600);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 9px 14px;
  border-radius: var(--r-sm);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--slate-700);
  transition: background-color .16s var(--ease), color .16s var(--ease);
}
.nav-links a:hover { background: var(--slate-100); color: var(--slate-900); }
.nav-links a.active { color: var(--brand-700); background: var(--brand-050); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 20px;
  border-radius: var(--r-md);
  background: var(--brand-700);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.01em;
  box-shadow: 0 6px 16px rgba(11, 107, 76, .26);
  transition: transform .18s var(--ease), background-color .18s var(--ease);
}
.nav-phone:hover { background: var(--brand-600); color: #fff; transform: translateY(-1px); }

.mobile-toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: var(--r-sm);
  border: 1px solid var(--slate-200);
  background: var(--white);
  padding: 0;
  place-items: center;
  align-content: center;
  justify-items: center;
  gap: 5px;
}
.mobile-toggle span {
  display: block;
  width: 20px; height: 2px;
  border-radius: 2px;
  background: var(--slate-900);
  transition: transform .24s var(--ease), opacity .18s var(--ease);
}
.mobile-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px 22px 22px;
  border-top: 1px solid var(--slate-200);
  background: var(--white);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 15px 14px;
  border-radius: var(--r-sm);
  font-size: 17px;
  font-weight: 700;
  color: var(--slate-900);
}
.mobile-menu a:hover { background: var(--slate-100); }
.mobile-menu .btn { margin-top: 10px; }

/* --- Hero ----------------------------------------------------------------- */
.hero {
  position: relative;
  padding: clamp(38px, 5.5vw, 72px) 0 clamp(58px, 7vw, 92px);
  background:
    radial-gradient(1100px 520px at 8% -6%, rgba(18, 165, 118, .26), transparent 60%),
    radial-gradient(820px 460px at 96% 8%, rgba(255, 197, 61, .13), transparent 58%),
    linear-gradient(168deg, var(--ink-900) 0%, var(--ink-800) 55%, var(--ink-700) 100%);
  color: #C8DCD4;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 90px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .05));
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 470px;
  gap: clamp(32px, 4.5vw, 62px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 17px;
  border-radius: var(--r-pill);
  background: rgba(43, 194, 143, .13);
  border: 1px solid rgba(43, 194, 143, .3);
  color: var(--brand-400);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
}

.hero h1 {
  margin: 20px 0 0;
  font-size: clamp(34px, 5.1vw, 58px);
  line-height: 1.06;
  letter-spacing: -.032em;
  color: #fff;
}
.hero h1 .hl {
  color: var(--gold-500);
  display: inline-block;
}

.hero-sub {
  margin-top: 20px;
  font-size: clamp(16.5px, 1.8vw, 19.5px);
  line-height: 1.62;
  color: #A9C5BB;
  max-width: 570px;
}
.hero-sub strong { color: #fff; font-weight: 700; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.hero-callout {
  margin-top: 15px;
  font-size: 14.5px;
  color: #8FAAA1;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-callout svg { color: var(--brand-400); flex: 0 0 auto; }

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.hero-proof-item { display: flex; align-items: center; gap: 12px; }
.hero-proof-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .11);
  display: grid;
  place-items: center;
  color: var(--brand-400);
  flex: 0 0 auto;
}
.hero-proof-text { display: flex; flex-direction: column; line-height: 1.3; }
.hero-proof-text strong { color: #fff; font-size: 15px; font-weight: 800; }
.hero-proof-text span { color: #8FAAA1; font-size: 13px; }

/* Landing-page hero with a photo behind it. url() resolves relative to THIS
   stylesheet (/css/), so ../images/ is correct both live and opened from disk.
   The overlay is deliberately heavy on the left where the text sits. */
.hero-photo {
  background:
    linear-gradient(100deg,
      rgba(6, 24, 19, .96) 0%,
      rgba(6, 24, 19, .92) 38%,
      rgba(6, 24, 19, .70) 68%,
      rgba(6, 24, 19, .52) 100%),
    url("../images/we-buy-junk-cars-kansas-city-tow-truck.jpg") center right / cover no-repeat;
}
@media (max-width: 940px) {
  /* Stacked layout puts text over the middle of the photo — flatten the overlay */
  .hero-photo {
    background:
      linear-gradient(180deg, rgba(6, 24, 19, .93) 0%, rgba(6, 24, 19, .90) 55%, rgba(6, 24, 19, .95) 100%),
      url("../images/we-buy-junk-cars-kansas-city-tow-truck.jpg") center / cover no-repeat;
  }
}

/* --- Quote card (multi-step form) ---------------------------------------- */
.quote-card {
  background: var(--white);
  border-radius: var(--r-2xl);
  box-shadow: var(--sh-xl);
  overflow: hidden;
  position: relative;
}

/* White strip carrying the logo above each form. The logo's "Kansas City, MO"
   line is black, so it needs a light backdrop — it would vanish on the green
   header below. */
.quote-logo {
  display: flex;
  justify-content: center;
  padding: 20px 24px 10px;
  background: var(--white);
}
.quote-logo img { height: 99px; width: auto; }

.quote-head {
  padding: 24px 28px 20px;
  background: linear-gradient(140deg, var(--brand-700), var(--brand-600));
  color: #fff;
  text-align: center;
}
.quote-head h2, .quote-head h3 {
  color: #fff;
  font-size: 21.5px;
  letter-spacing: -.022em;
  margin: 0;
}
.quote-head p {
  margin-top: 7px;
  font-size: 14px;
  color: rgba(255, 255, 255, .8);
}

.quote-progress {
  display: flex;
  gap: 6px;
  padding: 16px 28px 0;
}
.qp-seg {
  flex: 1;
  height: 5px;
  border-radius: var(--r-pill);
  background: var(--slate-200);
  overflow: hidden;
}
.qp-seg span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--brand-500), var(--brand-400));
  transition: width .42s var(--ease);
}
.qp-seg.done span, .qp-seg.active span { width: 100%; }

.quote-body { padding: 18px 28px 26px; }

.quote-steplabel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 15px;
}
.quote-steplabel .qs-count {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand-600);
}
.quote-back {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--slate-500);
  padding: 4px 8px;
  border-radius: var(--r-xs);
}
.quote-back:hover { color: var(--slate-900); background: var(--slate-100); }
.quote-back[hidden] { display: none; }

.quote-step { display: none; }
.quote-step.active { display: block; animation: stepIn .34s var(--ease); }
@keyframes stepIn {
  from { opacity: 0; transform: translateX(14px); }
  to   { opacity: 1; transform: translateX(0); }
}

.quote-q {
  font-size: 19px;
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -.02em;
  margin-bottom: 14px;
}

.field { margin-bottom: 14px; }
.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--slate-700);
}
.field .req { color: var(--brand-600); }

.field input, .field select {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--r-md);
  border: 2px solid var(--slate-200);
  background: var(--slate-050);
  font-size: 16.5px; /* >=16px prevents iOS zoom-on-focus */
  font-weight: 600;
  color: var(--slate-900);
  transition: border-color .16s var(--ease), background-color .16s var(--ease),
              box-shadow .16s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.field input::placeholder { color: var(--slate-500); font-weight: 500; }
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--brand-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(18, 165, 118, .13);
}
.field input.invalid, .field select.invalid {
  border-color: var(--danger);
  background: #FEF3F2;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%234E635C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 46px;
  cursor: pointer;
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.field-error {
  display: none;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--danger);
}
.field-error.show { display: block; }

/* Big tappable choice cards — lower friction than a select on mobile */
.choice-grid { display: grid; gap: 10px; margin-bottom: 16px; }
.choice-grid.cols-2 { grid-template-columns: 1fr 1fr; }

.choice {
  display: flex;
  align-items: center;
  gap: 13px;
  width: 100%;
  padding: 15px 16px;
  border-radius: var(--r-md);
  border: 2px solid var(--slate-200);
  background: var(--slate-050);
  text-align: left;
  transition: border-color .16s var(--ease), background-color .16s var(--ease),
              transform .16s var(--ease);
}
.choice:hover {
  border-color: var(--brand-400);
  background: var(--white);
  transform: translateY(-1px);
}
.choice.selected {
  border-color: var(--brand-600);
  background: var(--brand-050);
}
.choice-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  display: grid;
  place-items: center;
  color: var(--brand-600);
  flex: 0 0 auto;
}
.choice.selected .choice-icon {
  background: var(--brand-600);
  border-color: var(--brand-600);
  color: #fff;
}
.choice-text { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.choice-text strong { font-size: 15.5px; font-weight: 800; color: var(--slate-900); }
.choice-text span { font-size: 13px; color: var(--slate-500); }
.choice-grid.cols-2 .choice { flex-direction: column; align-items: flex-start; gap: 9px; }
.choice-grid.cols-2 .choice-text strong { font-size: 15px; }

.form-submit { margin-top: 4px; }

.form-note {
  margin-top: 13px;
  text-align: center;
  font-size: 12.8px;
  line-height: 1.5;
  color: var(--slate-500);
}
.form-note svg {
  display: inline-block;
  vertical-align: -2px;   /* sits on the text baseline, not floating above it */
  margin-right: 5px;
  color: var(--brand-600);
}

.quote-orcall {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--slate-200);
  text-align: center;
  font-size: 14.5px;
  color: var(--slate-600);
}
.quote-orcall a { font-weight: 800; color: var(--brand-700); }

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* --- Trust strip ---------------------------------------------------------- */
.trust-strip { background: var(--white); border-bottom: 1px solid var(--slate-200); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  padding: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 26px 20px;
  position: relative;
}
.trust-item + .trust-item::before {
  content: "";
  position: absolute;
  left: 0; top: 26px; bottom: 26px;
  width: 1px;
  background: var(--slate-200);
}
.trust-icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--brand-050);
  color: var(--brand-700);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.trust-text { line-height: 1.35; min-width: 0; }
.trust-text strong {
  display: block;
  font-size: 15.5px;
  font-weight: 800;
  color: var(--slate-900);
}
.trust-text span { font-size: 13.5px; color: var(--slate-500); }

/* --- Steps (How it works) ------------------------------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
}
.step-card {
  position: relative;
  padding: 34px 28px 30px;
  border-radius: var(--r-xl);
  background: var(--white);
  border: 1px solid var(--slate-200);
  box-shadow: var(--sh-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.step-num {
  width: 52px; height: 52px;
  border-radius: 17px;
  background: linear-gradient(145deg, var(--brand-500), var(--brand-700));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(11, 107, 76, .28);
  margin-bottom: 18px;
}
.step-card h3 { font-size: 20px; margin-bottom: 10px; }
.step-card p { color: var(--slate-600); font-size: 16px; }

/* --- Feature cards -------------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  padding: 30px 26px;
  border-radius: var(--r-xl);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  transition: transform .22s var(--ease), background-color .22s var(--ease),
              border-color .22s var(--ease);
}
.feature-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(43, 194, 143, .4);
}
.feature-icon {
  width: 50px; height: 50px;
  border-radius: 16px;
  background: rgba(43, 194, 143, .14);
  border: 1px solid rgba(43, 194, 143, .26);
  color: var(--brand-400);
  display: grid;
  place-items: center;
  margin-bottom: 17px;
}
.feature-card h3 { font-size: 19px; margin-bottom: 9px; }
.feature-card p { color: #9FB9B0; font-size: 15.5px; }

/* --- What we buy ---------------------------------------------------------- */
.buy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.buy-card {
  padding: 24px 20px;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--slate-200);
  box-shadow: var(--sh-xs);
  text-align: center;
  transition: transform .2s var(--ease), border-color .2s var(--ease),
              box-shadow .2s var(--ease);
}
.buy-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-400);
  box-shadow: var(--sh-md);
}
.buy-icon {
  width: 52px; height: 52px;
  margin: 0 auto 14px;
  border-radius: 16px;
  background: var(--brand-050);
  color: var(--brand-700);
  display: grid;
  place-items: center;
}
.buy-card h3 { font-size: 16.5px; margin-bottom: 6px; }
.buy-card p { font-size: 14px; color: var(--slate-500); }

/* --- Feature image (one per section, rather than a single gallery) --------- */
.feature-image {
  position: relative;
  margin-top: clamp(32px, 4.5vw, 52px);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  background: var(--slate-100);
}
.feature-image img {
  width: 100%;
  aspect-ratio: 16 / 9;     /* wide crop reads as a band, not a card */
  object-fit: cover;
  display: block;
}
.feature-cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 48px 26px 20px;
  background: linear-gradient(180deg, transparent, rgba(6, 24, 19, .55) 45%, rgba(6, 24, 19, .9));
  color: #fff;
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: -.012em;
  line-height: 1.4;
}

/* Inside the long-form no-title copy the image sits between paragraphs */
.prose .feature-image {
  margin: 32px 0;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
}
.prose .feature-image img { aspect-ratio: 3 / 2; }

/* On the dark section, lift it off the background */
/* Gold call button in the CTA band — it now carries the number itself */
.cta-call {
  margin-top: 28px;
  font-size: 22px;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
  padding: 20px 34px;
}

.section-dark .feature-image {
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
  border: 1px solid rgba(255, 255, 255, .1);
}

/* --- Comparison table ----------------------------------------------------- */
.compare-wrap {
  border-radius: var(--r-xl);
  border: 1px solid var(--slate-200);
  background: var(--white);
  box-shadow: var(--sh-md);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.compare {
  width: 100%;
  min-width: 660px;
  border-collapse: collapse;
  font-size: 15.5px;
}
.compare th, .compare td {
  padding: 17px 20px;
  text-align: left;
  border-bottom: 1px solid var(--slate-200);
  vertical-align: middle;
}
.compare thead th {
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--slate-500);
  background: var(--slate-050);
  white-space: nowrap;
}
.compare thead th.col-us {
  color: var(--brand-700);
  background: var(--brand-050);
}
.compare tbody td.col-us {
  background: var(--brand-050);
  font-weight: 700;
  color: var(--slate-900);
}
.compare tbody tr:last-child td,
.compare tbody tr:last-child th { border-bottom: 0; }
.compare tbody th { font-weight: 700; color: var(--slate-900); }
.compare .yes { color: var(--brand-700); font-weight: 800; }
.compare .no { color: var(--slate-500); }
.cmp-mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cmp-mark svg { flex: 0 0 auto; }

/* Below ~760px the 3-column table can't fit, and a sideways-scrolling table
   reads as broken. Each row becomes its own card instead, with the column
   heading injected via data-label so nothing has to scroll. */
@media (max-width: 760px) {
  .compare-wrap {
    border: 0;
    background: none;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
  }
  .compare { min-width: 0; display: block; }
  .compare thead { display: none; }
  .compare tbody { display: grid; gap: 14px; }

  .compare tbody tr {
    display: block;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-sm);
    overflow: hidden;
  }

  .compare tbody th {
    display: block;
    padding: 14px 18px;
    background: var(--slate-050);
    border-bottom: 1px solid var(--slate-200);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -.015em;
  }

  .compare tbody td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 18px;
    border-bottom: 1px solid var(--slate-100);
    font-size: 14.5px;
    text-align: right;
  }
  .compare tbody tr td:last-child { border-bottom: 0; }

  .compare tbody td::before {
    content: attr(data-label);
    flex: 0 0 auto;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    color: var(--slate-500);
  }

  .compare tbody td.col-us { background: var(--brand-050); }
  .compare tbody td.col-us::before { color: var(--brand-700); }

  .cmp-mark { justify-content: flex-end; text-align: right; }
}

/* --- Service areas -------------------------------------------------------- */
.areas-block + .areas-block { margin-top: 36px; }
.areas-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--brand-700);
}
.areas-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--slate-200);
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(184px, 1fr));
  gap: 12px;
}
.area-card {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 15px 17px;
  border-radius: var(--r-md);
  background: var(--white);
  border: 1px solid var(--slate-200);
  font-size: 15px;
  font-weight: 700;
  color: var(--slate-900);
  transition: border-color .18s var(--ease), transform .18s var(--ease),
              box-shadow .18s var(--ease);
}
.area-card:hover {
  border-color: var(--brand-400);
  transform: translateY(-2px);
  box-shadow: var(--sh-sm);
  color: var(--slate-900);
}
.area-pin { color: var(--brand-600); flex: 0 0 auto; display: grid; place-items: center; }


.areas-note {
  max-width: 860px;
  margin: 30px auto 0;
  text-align: center;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--slate-500);
}

/* --- Testimonials --------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial {
  display: flex;
  flex-direction: column;
  padding: 28px 26px;
  border-radius: var(--r-xl);
  background: var(--white);
  border: 1px solid var(--slate-200);
  box-shadow: var(--sh-sm);
}
.stars { display: flex; gap: 3px; color: var(--gold-600); margin-bottom: 14px; }
.testimonial blockquote {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.68;
  color: var(--slate-700);
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--slate-200);
}
.avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--brand-500), var(--brand-700));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 16.5px;
  font-weight: 800;
  letter-spacing: .02em;
  flex: 0 0 auto;
  box-shadow: inset 0 -2px 6px rgba(0, 0, 0, .12);
}
/* One colour per reviewer — identical avatars read as placeholder furniture. */
.avatar-2 { background: linear-gradient(145deg, #C87137, #8A4715); }
.avatar-3 { background: linear-gradient(145deg, #3E7EA8, #1D4260); }
.testimonial-author-info { display: flex; flex-direction: column; line-height: 1.35; }
.testimonial-author-info strong { font-size: 15px; font-weight: 800; color: var(--slate-900); }
.testimonial-author-info span { font-size: 13.5px; color: var(--slate-500); }

/* --- FAQ ------------------------------------------------------------------ */
.faq-list { max-width: 830px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  border-radius: var(--r-lg);
  border: 1px solid var(--slate-200);
  background: var(--white);
  overflow: hidden;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.faq-item.active { border-color: var(--brand-400); box-shadow: var(--sh-sm); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.015em;
  color: var(--slate-900);
}
.faq-q:hover { color: var(--brand-700); }
.faq-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--brand-050);
  color: var(--brand-700);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  transition: transform .3s var(--ease), background-color .2s var(--ease);
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--brand-600);
  color: #fff;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .34s var(--ease);
}
.faq-a-inner {
  padding: 0 24px 22px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--slate-600);
}

/* --- Long-form / no-title content ---------------------------------------- */
.prose { max-width: 830px; margin: 0 auto; }
.prose p { margin-bottom: 18px; font-size: 16.8px; line-height: 1.75; color: var(--slate-600); }
.prose p strong { color: var(--slate-900); font-weight: 700; }
.prose h3 {
  font-size: 23px;
  margin: 34px 0 15px;
}
.prose ul { list-style: none; display: grid; gap: 12px; margin-bottom: 22px; }
.prose ul li {
  position: relative;
  padding-left: 34px;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--slate-600);
}
.prose ul li strong { color: var(--slate-900); }
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--brand-050) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230B6B4C' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 14px no-repeat;
}
.prose-cta { text-align: center; margin-top: 32px; }

/* Callout panel */
.callout {
  display: flex;
  gap: 18px;
  padding: 24px 26px;
  border-radius: var(--r-lg);
  background: var(--gold-100);
  border: 1px solid var(--gold-400);
  margin: 26px 0;
}
.callout-icon { color: var(--gold-600); flex: 0 0 auto; }
.callout p { margin: 0; font-size: 16px; color: #6B4E00; }
.callout p strong { color: #4A3600; }

/* --- Final CTA band ------------------------------------------------------- */
.cta-band {
  background:
    radial-gradient(800px 400px at 12% 0%, rgba(18, 165, 118, .22), transparent 62%),
    radial-gradient(700px 380px at 92% 100%, rgba(255, 197, 61, .12), transparent 60%),
    var(--ink-900);
  color: #C8DCD4;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 470px;
  gap: clamp(32px, 4.5vw, 62px);
  align-items: center;
}
.cta-content h2 {
  font-size: clamp(28px, 3.8vw, 42px);
  color: #fff;
  letter-spacing: -.028em;
}
.cta-content > p {
  margin-top: 17px;
  font-size: 17.5px;
  color: #A9C5BB;
  max-width: 520px;
}
.cta-phone { margin: 26px 0 22px; }
.cta-phone-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-400);
  margin-bottom: 6px;
}
.cta-phone a {
  font-size: clamp(32px, 4.6vw, 46px);
  font-weight: 900;
  letter-spacing: -.03em;
  color: #fff;
  line-height: 1.05;
}
.cta-phone a:hover { color: var(--gold-500); }

/* --- Footer --------------------------------------------------------------- */
.footer {
  background: var(--ink-900);
  color: #8FAAA1;
  padding: clamp(48px, 6vw, 72px) 0 0;
  border-top: 1px solid rgba(255, 255, 255, .07);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
}
.footer .logo-text .lt-1 { color: #fff; }
.footer .logo-text .lt-2 { color: var(--brand-400); }
.footer-brand p { margin-top: 16px; font-size: 15px; line-height: 1.7; max-width: 320px; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: grid; gap: 11px; }
.footer-col a { color: #8FAAA1; font-size: 15px; }
.footer-col a:hover { color: var(--brand-400); }
.footer-contact { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; }
.footer-contact svg { flex: 0 0 auto; margin-top: 4px; color: var(--brand-400); }
.footer-contact a { color: #fff; font-weight: 700; }
.footer-contact a:hover { color: var(--gold-500); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 22px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: 14px;
}
.footer-bottom a { color: #8FAAA1; }
.footer-bottom a:hover { color: var(--brand-400); }

/* --- Sticky mobile call bar ----------------------------------------------- */
.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 300;
  display: none;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-top: 1px solid var(--slate-200);
  box-shadow: 0 -6px 22px rgba(6, 24, 19, .1);
  transform: translateY(110%);
  transition: transform .3s var(--ease);
}
.mobile-bar.show { transform: translateY(0); }
.mobile-bar .btn { flex: 1; padding: 15px 10px; font-size: 16px; }
/* Holds the full phone number, which needs more room than a "Call Now" label.
   .btn is nowrap, so this must never be allowed to get too narrow to fit. */
.mobile-bar .btn-call {
  flex: 1.7;
  gap: 8px;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}

/* --- Exit intent modal ---------------------------------------------------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(6, 24, 19, .62);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.modal.open { display: flex; animation: fadeIn .24s var(--ease); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: var(--white);
  border-radius: var(--r-2xl);
  box-shadow: var(--sh-xl);
  overflow: hidden;
  animation: modalIn .32s var(--ease);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .22);
  color: #fff;
  display: grid;
  place-items: center;
  transition: background-color .18s var(--ease);
}
.modal-close:hover { background: rgba(255, 255, 255, .38); }
.modal-head {
  padding: 30px 30px 26px;
  background: linear-gradient(140deg, var(--brand-700), var(--brand-600));
  color: #fff;
  text-align: center;
}
.modal-head h3 { color: #fff; font-size: 25px; letter-spacing: -.026em; }
.modal-head p { margin-top: 10px; font-size: 15.5px; color: rgba(255, 255, 255, .85); }
.modal-body { padding: 26px 30px 30px; text-align: center; }
.modal-phone {
  display: block;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--slate-900);
  margin-bottom: 6px;
}
.modal-phone:hover { color: var(--brand-700); }
.modal-body .form-note { margin-top: 14px; }
.modal-dismiss {
  display: block;
  width: 100%;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-500);
  padding: 6px;
  border-radius: var(--r-xs);
}
.modal-dismiss:hover { color: var(--slate-900); }

/* --- Scroll reveal -------------------------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* --- Page header (inner pages) ------------------------------------------- */
.page-head {
  padding: clamp(46px, 6vw, 76px) 0;
  background:
    radial-gradient(800px 380px at 10% 0%, rgba(18, 165, 118, .2), transparent 62%),
    linear-gradient(168deg, var(--ink-900), var(--ink-700));
  color: #A9C5BB;
  text-align: center;
}
.page-head h1 {
  color: #fff;
  font-size: clamp(30px, 4.4vw, 47px);
  margin: 16px 0 0;
  letter-spacing: -.03em;
}
.page-head p {
  margin: 16px auto 0;
  max-width: 640px;
  font-size: 17.5px;
  color: #A9C5BB;
}
.crumbs { font-size: 13.5px; color: #7E9A91; }
.crumbs a { color: var(--brand-400); }

/* --- Thank you page ------------------------------------------------------- */
.ty-wrap {
  min-height: 68vh;
  display: flex;
  align-items: center;
  padding: clamp(48px, 7vw, 92px) 0;
  background: var(--slate-050);
}
.ty-wrap > .container { width: 100%; }
.ty-card {
  max-width: 620px;
  width: 100%;
  margin: 0 auto;   /* the container is 1180px wide — the card must centre itself */
  text-align: center;
  padding: clamp(34px, 5vw, 56px) clamp(26px, 4vw, 48px);
  border-radius: var(--r-2xl);
  background: var(--white);
  border: 1px solid var(--slate-200);
  box-shadow: var(--sh-lg);
}
.ty-check {
  width: 82px; height: 82px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--brand-500), var(--brand-700));
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(11, 107, 76, .3);
  animation: popIn .5s var(--ease);
}
@keyframes popIn {
  from { opacity: 0; transform: scale(.7); }
  to   { opacity: 1; transform: scale(1); }
}
.ty-card h1 { font-size: clamp(27px, 3.6vw, 38px); }
.ty-card > p { margin-top: 15px; font-size: 17.5px; color: var(--slate-600); }
.ty-next {
  margin: 28px 0;
  padding: 22px 24px;
  border-radius: var(--r-lg);
  background: var(--brand-050);
  border: 1px solid var(--brand-100);
  text-align: left;
}
.ty-next h2 { font-size: 16px; margin-bottom: 14px; }
.ty-next ul { list-style: none; display: grid; gap: 12px; }
.ty-next li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15.5px;
  color: var(--slate-700);
}
.ty-next li svg { flex: 0 0 auto; margin-top: 3px; color: var(--brand-700); }

/* --- Contact page --------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 470px;
  gap: clamp(30px, 4vw, 56px);
  align-items: start;
}
.contact-methods { display: grid; gap: 14px; margin-top: 26px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--slate-200);
  box-shadow: var(--sh-xs);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.contact-method:hover { border-color: var(--brand-400); box-shadow: var(--sh-sm); }
.contact-method-icon {
  width: 50px; height: 50px;
  border-radius: 16px;
  background: var(--brand-050);
  color: var(--brand-700);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.contact-method-text { line-height: 1.4; min-width: 0; }
.contact-method-text span {
  display: block;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: 3px;
}
.contact-method-text strong,
.contact-method-text a {
  font-size: 19px;
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -.02em;
  word-break: break-word;
}
.contact-method-text a:hover { color: var(--brand-700); }

/* --- Stat row ------------------------------------------------------------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat {
  padding: 26px 22px;
  border-radius: var(--r-xl);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  text-align: center;
}
.stat b {
  display: block;
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--gold-500);
  line-height: 1.1;
}
.stat span { display: block; margin-top: 7px; font-size: 14.5px; color: #9FB9B0; }

/* --- Responsive ----------------------------------------------------------- */
@media (max-width: 1080px) {
  .hero-grid, .cta-grid, .contact-grid { grid-template-columns: 1fr 420px; }
  .buy-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 940px) {
  .nav-links { display: none; }
  .mobile-toggle { display: grid; }
  /* No header call button on mobile — the sticky bottom bar and the menu
     already carry the number, and it crowded the logo. */
  .nav-cta .nav-phone { display: none; }

  .hero-grid, .cta-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .hero-grid { text-align: left; }
  .quote-card { max-width: 520px; margin: 0 auto; width: 100%; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item + .trust-item::before { display: none; }
  .trust-item:nth-child(odd)::after {
    content: "";
    position: absolute;
    right: 0; top: 22px; bottom: 22px;
    width: 1px;
    background: var(--slate-200);
  }

  .steps-grid, .features-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  body { font-size: 16.5px; }
  .container { padding: 0 18px; }

  .topbar { display: none; }

  .hero { padding-top: 30px; }
  .hero h1 { font-size: clamp(30px, 8.4vw, 40px); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-proof { gap: 14px; flex-direction: column; align-items: flex-start; }

  .quote-head { padding: 20px 20px 17px; }
  .quote-progress { padding: 14px 20px 0; }
  .quote-body { padding: 16px 20px 22px; }
  .field-row { grid-template-columns: 1fr; }
  .choice-grid.cols-2 { grid-template-columns: 1fr; }
  .choice-grid.cols-2 .choice { flex-direction: row; align-items: center; gap: 13px; }

  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { padding: 18px 6px; }
  .trust-item:nth-child(odd)::after { display: none; }
  .trust-item + .trust-item { border-top: 1px solid var(--slate-200); }

  .feature-image {
    margin: 30px -18px 0;        /* cancel .container padding — full-bleed */
    border-radius: 0;
  }
  .feature-image img { aspect-ratio: auto; }   /* natural height, no crop */
  .prose .feature-image { margin: 28px -18px; border-radius: 0; }
  .feature-cap { font-size: 15px; padding: 40px 18px 16px; }

  .cta-call { font-size: 20px; padding: 18px 22px; width: 100%; }

  .buy-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .buy-card { padding: 20px 14px; }

  .areas-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .area-card { padding: 13px 14px; font-size: 14px; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat { padding: 20px 14px; }

  .faq-q { padding: 17px 18px; font-size: 16px; }
  .faq-a-inner { padding: 0 18px 18px; font-size: 15.5px; }

  :root { --nav-h: 80px; }
  .logo img { height: 53px; }
  .footer .logo img { height: 67px; }
  .quote-logo { padding: 16px 20px 6px; }
  .quote-logo img { height: 78px; }

  /* Eyebrow pill: let it wrap tidily instead of straining the line */
  .hero-badge { font-size: 12px; padding: 7px 14px; line-height: 1.4; }

  /* Two-up cards get narrow fast — ease the type down so nothing looks cramped */
  .buy-card h3 { font-size: 15.5px; }
  .buy-card p { font-size: 13px; }
  .buy-icon { width: 46px; height: 46px; margin-bottom: 11px; }

  .area-card { gap: 8px; padding: 12px 12px; }
  .area-pin svg { width: 15px; height: 15px; }

  .callout { padding: 20px 18px; gap: 14px; }
  .callout p { font-size: 15.5px; }

  .prose p { font-size: 16px; }
  .prose ul li { font-size: 15.5px; padding-left: 30px; }
  .prose h3 { font-size: 20.5px; }

  .step-card { padding: 26px 22px 24px; }
  .feature-card { padding: 24px 20px; }
  .testimonial { padding: 24px 20px; }

  .contact-method { padding: 16px 16px; gap: 13px; }
  .contact-method-text strong,
  .contact-method-text a { font-size: 16.5px; }

  .ty-card { padding: 30px 22px; }
  .ty-check { width: 68px; height: 68px; margin-bottom: 18px; }

  /* Sticky call bar takes over on mobile — keep footer clear of it */
  .mobile-bar { display: flex; }
  body { padding-bottom: 78px; }
}

/* Very small phones (iPhone SE and similar) — stop two-up grids squeezing */
@media (max-width: 400px) {
  .buy-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .mobile-bar .btn { font-size: 14.5px; padding: 14px 6px; }
  .mobile-bar .btn-call { font-size: 15.5px; }
  .cta-phone a { font-size: 30px; }
}

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