:root {
  /* Brand — sampled from the Total Clean logo */
  --blue: #0a5296;
  --blue-deep: #073b6e;
  --blue-light: #2a7cc7;
  --green: #55a930;
  --green-deep: #3e8221;
  --green-light: #6fc442;
  --signal: #f5a623;

  --ink: #08111c;
  --ink-2: #0e1e2e;
  --ink-3: #17324b;
  --mist: #eef3f8;
  --mist-2: #dde7f0;
  --paper: #ffffff;

  --fg: #0d1b26;
  --fg-muted: #52646f;
  --on-dark: #e8eff6;
  --on-dark-muted: #9db1c2;

  --line: #d8e2ea;
  --line-dark: rgba(232, 239, 246, 0.16);

  --acc-carpet: #0a5296;
  --acc-uph: #55a930;
  --acc-rug: #0f8f9c;
  --acc-duct: #f5a623;

  --shadow-sm: 0 1px 2px rgba(8, 17, 28, 0.06), 0 4px 12px rgba(8, 17, 28, 0.07);
  --shadow-md: 0 14px 36px rgba(8, 17, 28, 0.14);

  --wrap: 1160px;
  --pad: clamp(20px, 5vw, 40px);
  --radius: 14px;

  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--fg);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--green-deep); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0.005em;
  margin: 0 0 0.4em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 6.4vw, 4.6rem); text-transform: uppercase; }
h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); text-transform: uppercase; }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.wrap { width: min(100% - (var(--pad) * 2), var(--wrap)); margin-inline: auto; }

.eyebrow {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--green-deep);
  margin: 0 0 0.7em;
}
.eyebrow--on-dark { color: var(--signal); }

.lede { font-size: 1.13rem; color: var(--fg-muted); max-width: 62ch; }
.muted { color: var(--fg-muted); }
.center { text-align: center; margin-inline: auto; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 18px;
}
.skip:focus { left: 8px; top: 8px; }

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

/* --------------------------------------------------------- header */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(8, 17, 28, 0.04);
}

.header__bar { display: flex; align-items: center; gap: 20px; min-height: 78px; }

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; }
.brand img { height: 48px; width: auto; }
.brand__type { display: block; line-height: 1; }
.brand__name {
  display: block; font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: 1.5rem; letter-spacing: 0.01em; color: var(--blue); line-height: 1;
}
.brand__name em { font-style: normal; color: var(--green); }
.brand__tag {
  display: block; font-size: 0.6rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--fg-muted); margin-top: 5px;
}

.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  color: var(--fg); text-decoration: none; font-size: 0.95rem; font-weight: 600;
  padding: 6px 0; border-bottom: 2px solid transparent;
}
.nav a:hover, .nav a[aria-current="page"] { border-bottom-color: var(--green); color: var(--blue); }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: 8px; padding: 9px 11px; cursor: pointer;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--blue); margin: 4px 0; }

/* --------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--display); font-size: 1.18rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  padding: 14px 26px; border-radius: 10px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--call { background: var(--green); color: #fff; box-shadow: 0 6px 18px rgba(85, 169, 48, 0.32); }
.btn--call:hover { background: var(--green-light); }
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 6px 18px rgba(10, 82, 150, 0.28); }
.btn--primary:hover { background: var(--blue-light); }
.btn--ghost { border-color: rgba(255, 255, 255, 0.5); color: #fff; }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.12); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--sm { padding: 10px 18px; font-size: 1rem; }
.btn--wide { width: 100%; }
.btn[disabled] { opacity: .6; pointer-events: none; }

.header .btn { flex: none; }

/* --------------------------------------------------------- hero */
.hero {
  position: relative;
  color: var(--on-dark);
  background-color: var(--ink);
  isolation: isolate;
  overflow: hidden;
}

/* Photo layer — drop a real technician photo at images/<name>.jpg and it
   replaces the built-in gradient automatically. */
.hero__photo {
  position: absolute; inset: 0; z-index: -2;
  background-image:
    linear-gradient(115deg, rgba(85, 169, 48, 0.20), transparent 52%),
    radial-gradient(120% 90% at 78% 12%, #10426f 0%, #08111c 64%);
  background-size: cover;
  background-position: center right;
}
.hero__photo[data-photo] { background-image: var(--photo), radial-gradient(120% 90% at 78% 12%, #10426f 0%, #08111c 64%); }

.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 17, 28, 0.95) 0%, rgba(8, 17, 28, 0.85) 44%, rgba(8, 17, 28, 0.5) 100%),
    linear-gradient(0deg, rgba(8, 17, 28, 0.92), transparent 46%);
}

.hero__watermark {
  position: absolute; right: -4%; top: 50%; transform: translateY(-50%);
  width: min(46vw, 500px); height: auto; opacity: 0.085; z-index: -1;
  pointer-events: none;
}

.hero__inner { padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 72px); position: relative; }

/* Company name locked over the photo */
.hero__stamp {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--line-dark); border-left: 4px solid var(--green);
  backdrop-filter: blur(3px);
  background: rgba(8, 17, 28, 0.5);
  padding: 8px 16px; border-radius: 4px; margin-bottom: 22px;
  font-family: var(--display); text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 0.9rem; font-weight: 600; color: #fff;
}
.hero__stamp b { color: var(--green); font-weight: 700; }

.hero h1 { color: #fff; max-width: 16ch; }
.hero h1 .city {
  color: var(--green-light);
  display: inline-block;
  border-bottom: 5px solid rgba(85, 169, 48, 0.4);
}
.city.is-swapping { animation: cityIn .45s ease both; }
@keyframes cityIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

.hero__sub { font-size: 1.2rem; color: var(--on-dark); max-width: 54ch; margin-bottom: 26px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__note {
  margin-top: 18px; font-size: 0.95rem; color: var(--on-dark-muted);
  display: flex; flex-wrap: wrap; gap: 8px 20px;
}
.hero__note span { display: inline-flex; align-items: center; gap: 7px; }
.hero__note span::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex: none;
}

.hero--sub .hero__watermark {
  position: absolute; right: -4%; top: 50%; transform: translateY(-50%);
  width: min(46vw, 500px); height: auto; opacity: 0.085; z-index: -1;
  pointer-events: none;
}

.hero__inner { padding-block: clamp(40px, 6vw, 74px); }
.hero--sub h1 { max-width: 20ch; }

/* price flag inside sub-page heroes */
.pricetag {
  display: inline-flex; align-items: baseline; gap: 10px;
  background: var(--signal); color: #241a00;
  font-family: var(--display); text-transform: uppercase;
  padding: 10px 18px; border-radius: 8px; margin-bottom: 18px;
  font-weight: 700; letter-spacing: 0.04em;
}
.pricetag b { font-size: 1.9rem; line-height: 1; }
.pricetag small { font-size: 0.85rem; letter-spacing: 0.1em; opacity: .8; }

/* --------------------------------------------------------- trust strip */
.trust {
  background: var(--ink-2); color: var(--on-dark);
  border-top: 1px solid var(--line-dark);
}
.trust__list {
  list-style: none; margin: 0; padding: 16px 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px 24px;
  font-family: var(--display); text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 1rem; font-weight: 600;
}
.trust__list li { display: flex; align-items: center; gap: 10px; }
.trust__list svg { flex: none; color: var(--green-light); }

/* --------------------------------------------------------- sections */
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section--mist { background: var(--mist); }
.section--ink { background: var(--ink); color: var(--on-dark); }
.section--ink h2, .section--ink h3 { color: #fff; }
.section--tight { padding-block: clamp(40px, 5vw, 64px); }

.section__head { max-width: 60ch; margin-bottom: 42px; }
.section__head.center { text-align: center; }

.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 64px); align-items: start; }

/* --------------------------------------------------------- service cards */
.svc {
  --acc: var(--green);
  display: flex; flex-direction: column;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 24px 24px;
  text-decoration: none; color: inherit;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--acc); }
.svc__badge {
  width: 52px; height: 52px; border-radius: 50% 50% 50% 8px;
  background: var(--acc); color: #fff;
  display: grid; place-items: center; margin-bottom: 16px;
  font-family: var(--display); font-weight: 700; font-size: 1.35rem; letter-spacing: -0.02em;
}
.svc h3 { margin-bottom: 8px; }
.svc p { font-size: 0.99rem; color: var(--fg-muted); }
.svc__price {
  margin-top: auto; padding-top: 14px; border-top: 1px dashed var(--line);
  font-family: var(--display); text-transform: uppercase; letter-spacing: 0.06em;
  font-weight: 700; color: var(--fg);
}
.svc__price span { color: var(--green-deep); }
.svc--carpet { --acc: var(--acc-carpet); }
.svc--uph { --acc: var(--acc-uph); }
.svc--rug { --acc: var(--acc-rug); }
.svc--duct { --acc: var(--acc-duct); }
.svc--duct .svc__badge { color: #3d2600; }

/* --------------------------------------------------------- promo band */
.promo {
  background: var(--signal); color: #241a00;
  padding: clamp(28px, 4vw, 40px) 0;
}
.promo__inner { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.promo__price { color: var(--blue-deep);
  font-family: var(--display); font-weight: 700; font-size: clamp(3rem, 8vw, 4.6rem);
  line-height: 0.9; letter-spacing: -0.02em;
}
.promo__copy { flex: 1 1 320px; }
.promo h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 4px; }
.promo p { margin: 0; font-size: 1rem; }
.promo .btn--dark:hover { background: #000; }

/* --------------------------------------------------------- feature list */
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; }
.checks li::before {
  content: ""; flex: none; margin-top: 7px;
  width: 11px; height: 11px; border-radius: 3px;
  background: var(--green); box-shadow: 0 0 0 3px rgba(0, 179, 159, 0.16);
}
.section--ink .checks li::before { background: var(--signal); box-shadow: 0 0 0 3px rgba(255, 201, 60, 0.16); }

/* --------------------------------------------------------- steps */
.steps { counter-reset: step; display: grid; gap: 18px; grid-template-columns: repeat(4, 1fr); }
.step {
  border-top: 3px solid var(--line); padding-top: 16px;
}
.section--ink .step { border-top-color: var(--line-dark); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--display); font-size: 1.05rem; font-weight: 700;
  letter-spacing: 0.1em; color: var(--green); display: block; margin-bottom: 8px;
}
.step h3 { font-size: 1.22rem; margin-bottom: 6px; }
.step p { font-size: 0.97rem; color: var(--fg-muted); margin: 0; }
.section--ink .step p { color: var(--on-dark-muted); }

/* --------------------------------------------------------- price table */
.ptable { width: 100%; border-collapse: collapse; background: var(--paper); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.ptable caption { text-align: left; font-size: 0.92rem; color: var(--fg-muted); padding-bottom: 10px; }
.ptable th, .ptable td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.ptable thead th {
  background: var(--ink); color: #fff; font-family: var(--display);
  text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.95rem; font-weight: 600;
}
.ptable tbody tr:last-child td { border-bottom: none; }
.ptable td:last-child { font-family: var(--display); font-weight: 700; font-size: 1.2rem; white-space: nowrap; }

/* --------------------------------------------------------- quotes */
.quote {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; position: relative;
}
.quote p { font-size: 1.02rem; }
.quote footer { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.95rem; color: var(--fg-muted); }
.stars { color: var(--signal); letter-spacing: 2px; margin-bottom: 8px; font-size: 1.05rem; }

/* --------------------------------------------------------- area list */
.areas { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.areas li {
  border: 1px solid var(--line-dark); border-radius: 999px; padding: 6px 14px;
  font-size: 0.9rem; color: var(--on-dark-muted);
}
.areas li.is-you { background: var(--green); color: #04211d; border-color: var(--green); font-weight: 700; }

/* --------------------------------------------------------- FAQ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 18px 40px 18px 0; position: relative;
  font-family: var(--display); font-size: 1.28rem; font-weight: 600;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; color: var(--green-deep); line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { padding-bottom: 18px; color: var(--fg-muted); max-width: 78ch; }

/* --------------------------------------------------------- form */
.formcard {
  background: var(--paper); border-radius: var(--radius); padding: clamp(22px, 3.5vw, 34px);
  box-shadow: var(--shadow-md); border-top: 5px solid var(--green);
}
.section--ink .formcard { color: var(--fg); }
.section--ink .formcard h2, .section--ink .formcard h3 { color: var(--fg); }
.field { margin-bottom: 16px; }
.field label {
  display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; font: inherit; font-size: 1rem;
  border: 1px solid var(--line); border-radius: 9px; background: #fbfdfd; color: var(--fg);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); background: #fff; }
.field textarea { min-height: 96px; resize: vertical; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field .err { color: #b3261e; font-size: 0.85rem; margin-top: 5px; display: none; }
.field.is-bad input, .field.is-bad select { border-color: #b3261e; background: #fff6f5; }
.field.is-bad .err { display: block; }
.form__legal { font-size: 0.82rem; color: var(--fg-muted); margin-top: 12px; }
.form__status { margin-top: 14px; font-weight: 600; }
.form__status.ok { color: var(--green-deep); }
.form__status.bad { color: #b3261e; }

/* --------------------------------------------------------- footer */
.footer { background: var(--ink); color: var(--on-dark-muted); padding: 56px 0 110px; font-size: 0.95rem; }
.footer a { color: var(--on-dark); text-decoration: none; }
.footer a:hover { color: var(--green); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; }
.footer h4 {
  font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: #fff; margin-bottom: 14px;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer__bottom {
  border-top: 1px solid var(--line-dark); margin-top: 38px; padding-top: 20px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.86rem;
}
.footer__mark { height: 66px; width: auto; margin-bottom: 16px; }
.footer__wordmark {
  font-family: var(--display); font-size: 1.75rem; text-transform: uppercase;
  color: #fff; letter-spacing: 0.03em; line-height: 1; margin: 0 0 6px;
}
.footer__wordmark em { font-style: normal; color: var(--green-light); }
.footer__tagline {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--on-dark-muted); margin-bottom: 18px;
}
.footer__phone {
  font-family: var(--display); font-size: 2rem; color: #fff; text-decoration: none;
  display: inline-block; line-height: 1.1;
}

/* --------------------------------------------------------- sticky mobile call bar */
.callbar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 120;
  display: none; gap: 1px; background: var(--ink);
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.25);
}
.callbar a {
  flex: 1; padding: 15px 6px; text-align: center; text-decoration: none;
  font-family: var(--display); text-transform: uppercase; letter-spacing: 0.06em;
  font-size: 1.1rem; font-weight: 700;
}
.callbar .c1 { background: var(--green); color: #fff; }
.callbar .c2 { background: var(--blue); color: #fff; }

/* --------------------------------------------------------- reveal */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: none; }

/* --------------------------------------------------------- responsive */
@media (max-width: 940px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .trust__list { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }

  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 8px var(--pad) 18px; display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: block; order: 3; }
  .header .btn--call { order: 2; }
  .callbar { display: flex; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }
  .hero__cta .btn { width: 100%; }
  .brand img { height: 36px; }
  .brand__tag { display: none; }
  .brand__name { font-size: 1.15rem; }
  .hide-sm { display: none; }
  .hero__watermark { width: 74vw; right: -18%; opacity: 0.07; }
  .header .btn--call { padding: 10px 14px; font-size: 1rem; }
  .ptable th, .ptable td { padding: 12px 12px; }
}

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

@media print {
  .header, .callbar, .hero__photo { display: none; }
}

.promo__actions { flex: none; }

/* =========================================================================
   Visual pass — depth, curvature and detail.
   The rounded shoulders and circular badges echo the sweep in the logo mark.
   ========================================================================= */

.section:not(.section--ink):not(.section--mist) { background: var(--paper); }

.round-top {
  border-radius: 42px 42px 0 0;
  margin-top: -42px;
  position: relative;
  z-index: 2;
}

/* --------------------------------------------------------- hero depth */
.hero__glow {
  position: absolute; z-index: -1; pointer-events: none;
  right: -12%; top: -26%;
  width: min(78vw, 900px); aspect-ratio: 1;
  background: radial-gradient(circle, rgba(85, 169, 48, 0.22), rgba(10, 82, 150, 0.20) 44%, transparent 68%);
}
.hero__inner { padding-bottom: clamp(56px, 7vw, 92px); }
.hero__stamp { border-radius: 6px; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25); }
.hero h1 { letter-spacing: -0.005em; }
.hero h1 .city { border-bottom-width: 6px; }
.pricetag { box-shadow: 0 10px 26px rgba(245, 166, 35, 0.28); }

/* --------------------------------------------------------- eyebrows */
.eyebrow { display: inline-flex; align-items: center; gap: 11px; }
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--green); flex: none;
}
.eyebrow--on-dark::before { background: var(--signal); }
.section__head.center .eyebrow { justify-content: center; }

/* --------------------------------------------------------- trust strip */
.trust__list { padding: 20px 0; }
.trust__list li { font-size: 0.96rem; gap: 12px; }
.trust__list svg {
  width: 15px; height: 15px; padding: 6px; box-sizing: content-box;
  border-radius: 50%; background: rgba(85, 169, 48, 0.18); color: var(--green-light);
}

/* --------------------------------------------------------- buttons */
.btn { border-radius: 12px; }
.btn--call { box-shadow: 0 10px 24px rgba(85, 169, 48, 0.32); }
.btn--primary { box-shadow: 0 10px 24px rgba(10, 82, 150, 0.26); }

/* --------------------------------------------------------- service cards */
.svc {
  background: linear-gradient(180deg, #ffffff 0%, #f5f9fc 100%);
  border-radius: 20px; box-shadow: var(--shadow-sm);
  padding-top: 32px; position: relative; overflow: hidden;
}
.svc::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--acc);
}
.svc:hover { box-shadow: 0 20px 44px rgba(8, 17, 28, 0.16); }
.svc__badge {
  width: 58px; height: 58px; margin-bottom: 18px;
  box-shadow: 0 10px 22px rgba(8, 17, 28, 0.18);
}
.svc__price { padding-top: 16px; }
.svc__more {
  margin: 12px 0 0; font-family: var(--display); text-transform: uppercase;
  letter-spacing: 0.07em; font-weight: 700; font-size: 1.02rem; color: var(--acc);
}
.svc__more span { display: inline-block; transition: transform .18s ease; }
.svc:hover .svc__more span { transform: translateX(5px); }

/* --------------------------------------------------------- coupon */
.promo-wrap { padding-block: clamp(48px, 6vw, 78px); }
.coupon {
  display: grid; grid-template-columns: 268px 1fr;
  background: var(--paper); color: var(--fg);
  border-radius: 22px; box-shadow: 0 26px 60px rgba(0, 0, 0, 0.36);
  position: relative;
}
.coupon::before, .coupon::after {
  content: ""; position: absolute; left: 268px; width: 28px; height: 28px;
  border-radius: 50%; background: var(--ink); transform: translateX(-14px);
}
.coupon::before { top: -14px; }
.coupon::after { bottom: -14px; }
.coupon__left {
  background: linear-gradient(158deg, #ffd166 0%, var(--signal) 48%, #e08f0c 100%);
  color: #3a2705; padding: 38px 26px; text-align: center;
  border-radius: 22px 0 0 22px;
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
  border-right: 2px dashed rgba(58, 39, 5, 0.32);
}
.coupon__flag {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; opacity: 0.75;
}
.coupon__left b { font-family: var(--display); font-size: 5rem; line-height: 0.82; letter-spacing: -0.02em; }
.coupon__lbl {
  font-family: var(--display); text-transform: uppercase; letter-spacing: 0.13em;
  font-weight: 700; font-size: 1.08rem;
}
.coupon__body { padding: clamp(26px, 3.4vw, 38px); }
.coupon__body h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); color: var(--fg); }
.coupon__body p { color: var(--fg-muted); }
.checks--row { display: flex; flex-wrap: wrap; gap: 10px 26px; margin: 18px 0 22px; }
.checks--row li { font-weight: 600; font-size: 0.97rem; }
.coupon__cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* --------------------------------------------------------- steps */
.steps { position: relative; }
.steps::before {
  content: ""; position: absolute; top: 24px; left: 6%; right: 6%; height: 1px;
  background: var(--line-dark);
}
.step { border-top: none; padding-top: 0; position: relative; }
.step::before {
  display: grid; place-items: center; width: 50px; height: 50px; border-radius: 50%;
  background: var(--ink-3); border: 1px solid var(--line-dark);
  color: var(--green-light); font-size: 1.12rem; margin-bottom: 18px;
}

/* --------------------------------------------------------- price table */
.ptable { border-radius: 18px; box-shadow: var(--shadow-md); }
.ptable tbody tr:nth-child(odd) td { background: #f8fbfd; }
.ptable tbody tr:hover td { background: #eff6fd; }
.ptable td:first-child { font-weight: 700; }
.ptable td:last-child { color: var(--blue); }

/* --------------------------------------------------------- quotes */
.quote { border-radius: 20px; box-shadow: var(--shadow-sm); overflow: hidden; }
.quote::before {
  content: "\201C"; position: absolute; top: -14px; right: 16px;
  font-family: var(--display); font-size: 6rem; line-height: 1; color: var(--mist-2);
}
.quote h3 { position: relative; }

/* --------------------------------------------------------- areas */
.areas li { transition: background .16s ease, color .16s ease, border-color .16s ease; }
.areas li:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }

/* --------------------------------------------------------- faq */
.faq {
  background: var(--paper); border-top: none; border-radius: 20px;
  padding: 4px 28px; box-shadow: var(--shadow-sm);
}
.faq details:last-child { border-bottom: none; }
.faq summary::after {
  width: 30px; height: 30px; border-radius: 50%; background: var(--mist);
  display: grid; place-items: center; font-size: 1.3rem; right: 0;
}

/* --------------------------------------------------------- forms */
.formcard { border-radius: 22px; }
.field input, .field select, .field textarea { border-radius: 11px; }

/* --------------------------------------------------------- CTA band */
.cta-band {
  background: linear-gradient(118deg, var(--blue-deep) 0%, var(--blue) 52%, #0f74bd 100%);
  color: #fff; padding: clamp(42px, 6vw, 68px) 0; position: relative; overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; right: -6%; top: -60%; width: 46%; aspect-ratio: 1;
  border-radius: 50%; background: rgba(255, 255, 255, 0.06);
}
.cta-band__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 26px; flex-wrap: wrap; position: relative; z-index: 1;
}
.cta-band h2 { color: #fff; margin-bottom: 6px; }
.cta-band p { margin: 0; color: rgba(255, 255, 255, 0.88); max-width: 46ch; }
.cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* --------------------------------------------------------- footer */
.footer { padding-top: 62px; }
.footer__mark { height: 72px; }

@media (max-width: 940px) {
  .coupon { grid-template-columns: 1fr; }
  .coupon__left {
    border-right: none; border-bottom: 2px dashed rgba(58, 39, 5, 0.32);
    border-radius: 22px 22px 0 0; flex-direction: row; align-items: baseline;
    justify-content: center; gap: 14px; padding: 24px;
  }
  .coupon__left b { font-size: 3.4rem; }
  .coupon::before, .coupon::after { display: none; }
  .steps::before { display: none; }
}

@media (max-width: 620px) {
  .round-top { border-radius: 28px 28px 0 0; margin-top: -28px; }
  .faq { padding: 4px 18px; }
  .coupon__left { flex-direction: column; align-items: center; }
  .cta-band__actions .btn { width: 100%; }
}

/* wide pricing tables scroll rather than push the page sideways */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}
.table-scroll .ptable { box-shadow: none; min-width: 520px; }

@media (max-width: 620px) {
  .ptable { font-size: 0.94rem; }
  .ptable td:last-child { font-size: 1.05rem; }
}

/* =========================================================================
   Accessible contrast: solid green surfaces carrying white text use a
   deeper shade of the same brand green (4.75:1). The bright logo green
   stays on accents, rules and borders where contrast rules don't bite.
   ========================================================================= */
:root { --green-btn: #3e8221; }

.btn--call { background: var(--green-btn); }
.btn--call:hover { background: #4a9628; }
.callbar .c1 { background: var(--green-btn); }
.areas li.is-you { background: var(--green-btn); border-color: var(--green-btn); }
.brand__name em { color: var(--green-btn); }
.svc--uph { --acc: var(--green-btn); }
.stars { color: #c07f00; }
.eyebrow { color: var(--green-btn); }
a { color: var(--blue); }
.svc__price span { color: var(--green-btn); }

/* =========================================================================
   Hero: two columns — copy on the left, a quote box on the right, with the
   branded van scene behind. Plus the new conversion and local blocks.
   ========================================================================= */

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 400px;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.hero__copy { min-width: 0; }
.hero h1 { max-width: 18ch; }

/* van + technician illustration */
.hero__scene {
  position: absolute; z-index: -1; pointer-events: none;
  right: -2%; bottom: -2%;
  width: min(72vw, 940px); height: auto; opacity: .30;
}
.hero__photo[data-photo] ~ .hero__scene { opacity: .30; }
.hero__watermark { display: none; }

/* hero quote box */
.herobox {
  background: rgba(255, 255, 255, 0.97);
  border-radius: 22px; padding: 24px 24px 20px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
  border-top: 5px solid var(--green);
  color: var(--fg);
}
.herobox__flag {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--green-btn); margin: 0 0 6px;
}
.herobox__title { font-size: 1.7rem; margin-bottom: 16px; color: var(--fg); }
.herobox .field { margin-bottom: 12px; }
.herobox .field label { font-size: 0.84rem; }
.herobox .field input, .herobox .field select { padding: 11px 13px; }
.herobox__alt {
  margin: 12px 0 0; text-align: center; font-size: 0.92rem; color: var(--fg-muted);
}
.herobox__alt a { font-weight: 700; }

/* ---------------------------------------------------- quick quote strip */
.quickstrip { background: var(--mist); }
.quickstrip__inner {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.quickstrip h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.quickstrip__alt { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 4px; }
.linkish {
  font-weight: 700; text-decoration: none; border-bottom: 2px solid var(--green);
  padding-bottom: 2px;
}
.linkish:hover { border-bottom-color: var(--blue); }
.quickstrip__form {
  background: var(--paper); border-radius: 20px; padding: 24px;
  box-shadow: var(--shadow-md); border-top: 5px solid var(--blue);
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px;
}
.quickstrip__form .field { margin-bottom: 12px; }
.quickstrip__form .field--submit { grid-column: 1 / -1; align-self: end; margin-bottom: 0; }
.quickstrip__form .form__status { grid-column: 1 / -1; margin: 8px 0 0; }

/* ---------------------------------------------------- problem cards */
.prob {
  background: var(--paper); border: 1px solid var(--line); border-radius: 18px;
  padding: 24px; box-shadow: var(--shadow-sm);
}
.prob h3 { font-size: 1.22rem; margin-bottom: 8px; color: var(--blue); }
.prob p { color: var(--fg-muted); font-size: 0.99rem; margin: 0; }

/* ---------------------------------------------------- guarantee card */
.guarantee {
  background: linear-gradient(150deg, var(--blue-deep), var(--blue));
  color: #fff; border-radius: 22px; padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--shadow-md);
}
.guarantee h3 { color: #fff; font-size: 1.6rem; }
.guarantee .checks li::before { background: var(--signal); box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.22); }

/* ---------------------------------------------------- contact cards */
.contactcards { display: grid; gap: 12px; margin-top: 26px; }
.contactcard {
  display: grid; grid-template-columns: 78px 1fr; align-items: baseline;
  gap: 4px 14px; padding: 16px 18px; text-decoration: none; color: inherit;
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-sm); transition: transform .16s ease, border-color .16s ease;
}
.contactcard:hover { transform: translateX(4px); border-color: var(--green); }
.contactcard__k {
  grid-row: span 2; font-family: var(--display); text-transform: uppercase;
  letter-spacing: 0.1em; font-weight: 700; color: var(--green-btn); font-size: 1.05rem;
}
.contactcard__v { font-weight: 700; font-size: 1.06rem; color: var(--blue); }
.contactcard__n { font-size: 0.88rem; color: var(--fg-muted); }

/* ---------------------------------------------------- area cards */
.areacard {
  display: flex; flex-direction: column; gap: 8px;
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line-dark);
  border-radius: 18px; padding: 22px; text-decoration: none; color: var(--on-dark);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.areacard:hover { transform: translateY(-4px); background: rgba(255, 255, 255, 0.1); border-color: var(--green); }
.areacard h3 { color: #fff; font-size: 1.42rem; margin: 0; }
.areacard p { color: var(--on-dark-muted); font-size: 0.93rem; margin: 0; }
.areacard__go {
  margin-top: auto; padding-top: 10px; font-family: var(--display);
  text-transform: uppercase; letter-spacing: 0.07em; font-weight: 700; color: var(--green-light);
}

/* light chips for the neighborhood list */
.areas--light li { border-color: var(--line); color: var(--fg-muted); background: var(--paper); }
.areas--light li:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.areas--light li.is-you { background: var(--green-btn); color: #fff; border-color: var(--green-btn); }

/* ---------------------------------------------------- comparison table */
.ptable--compare td:first-child { font-weight: 700; }
.ptable--compare td:last-child { font-family: var(--body); font-size: 1rem; }
.ptable--compare .win { background: rgba(85, 169, 48, 0.12) !important; font-weight: 700; color: var(--fg); }
.ptable--compare thead th:last-child { background: var(--green-btn); }

@media (max-width: 1080px) {
  .hero__grid { grid-template-columns: 1fr 350px; }
}
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .herobox { max-width: 520px; }
  .hero h1 { max-width: 22ch; }
  .hero__scene { opacity: .18; width: 130vw; right: -30%; }
  .quickstrip__inner { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .quickstrip__form { grid-template-columns: 1fr; padding: 20px; }
  .contactcard { grid-template-columns: 1fr; gap: 2px; }
  .contactcard__k { grid-row: auto; }
  .herobox { padding: 20px; }
}

/* ---------------------------------------------------- van + crew band */
.vanband { background: var(--mist); overflow: hidden; }
.vanband__inner {
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: clamp(24px, 4vw, 52px); align-items: center;
}
.vanband__art {
  background: linear-gradient(150deg, #123a63 0%, var(--ink) 78%);
  border-radius: 22px; padding: 10px 6px 0;
  box-shadow: var(--shadow-md); position: relative; overflow: hidden;
}
.vanband__art::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 42%;
  background: linear-gradient(0deg, rgba(8, 17, 28, .55), transparent);
  pointer-events: none;
}
.vanband__art .hero__scene {
  position: static; width: 100%; height: auto; opacity: 1;
}
.vanband h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
.vanband p { color: var(--fg-muted); }
.vanband__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }

/* hero keeps only a faint version so the headline stays crisp */
.hero .hero__scene { opacity: .16; right: 4%; width: min(64vw, 850px); }

@media (max-width: 900px) {
  .vanband__inner { grid-template-columns: 1fr; }
  .hero .hero__scene { opacity: .12; }
}

/* =========================================================================
   MOBILE & TABLET
   The hero was running to roughly two screens on a phone before any content
   appeared. Everything below tightens that, grows touch targets to 44px, and
   makes wide tables usable with one thumb.
   ========================================================================= */

/* anchors must clear the sticky header when jumped to */
[id] { scroll-margin-top: 96px; }

a, button, summary, .svc, .areacard, .contactcard {
  -webkit-tap-highlight-color: rgba(10, 82, 150, 0.14);
}

/* text that was under 12px */
.herobox__flag { font-size: 0.78rem; }
.coupon__flag { font-size: 0.76rem; }
.footer__tagline { font-size: 0.78rem; }
.brand__tag { font-size: 0.66rem; }

/* comfortable targets */
.linkish { display: inline-block; padding: 9px 0; }
.footer ul a { display: inline-block; padding: 4px 0; }
.footer__phone { display: inline-block; padding: 6px 0; }

/* wide tables: keep the row label in view while the rest scrolls */
.scrollhint {
  display: none; margin: 0 0 8px; font-size: 0.86rem; font-weight: 600;
  color: var(--fg-muted); letter-spacing: 0.02em;
}

/* ------------------------------------------------- tablet (up to 1024px) */
@media (max-width: 1024px) {
  .nav a { padding: 11px 0; }
  .header__bar { min-height: 72px; }
  .btn { padding: 13px 22px; }
  [id] { scroll-margin-top: 84px; }
}

/* ------------------------------------------------- hero, phones & tablets */
@media (max-width: 900px) {
  .hero__inner { padding-block: 34px 42px; }
  .hero__grid { gap: 26px; }
  .hero h1 { font-size: clamp(2.1rem, 8.4vw, 3.1rem); max-width: 100%; }
  .hero__sub { font-size: 1.05rem; margin-bottom: 20px; }
  .hero__stamp { font-size: 0.76rem; padding: 7px 13px; margin-bottom: 14px; letter-spacing: 0.12em; }
  .hero__note { gap: 7px 16px; font-size: 0.9rem; margin-top: 14px; }
  .pricetag { padding: 8px 15px; margin-bottom: 14px; }
  .pricetag b { font-size: 1.6rem; }

  /* the quote box is right there — a second "get a quote" button is noise */
  .hero__cta .btn--ghost { display: none; }
  .hero__cta .btn--call { width: 100%; }

  .herobox { padding: 20px; border-radius: 18px; max-width: none; }
  .herobox__title { font-size: 1.4rem; margin-bottom: 14px; }
  .herobox .field { margin-bottom: 11px; }
  .herobox .field label { font-size: 0.82rem; margin-bottom: 5px; }
  .herobox .field input, .herobox .field select { padding: 11px 12px; }
  .herobox__alt { font-size: 0.95rem; padding: 4px 0; }
}

/* ------------------------------------------------- phones */
@media (max-width: 620px) {
  .header__bar { min-height: 62px; gap: 10px; }
  .brand img { height: 34px; }
  [id] { scroll-margin-top: 72px; }

  .section { padding-block: 46px; }
  .section--tight { padding-block: 36px; }
  .section__head { margin-bottom: 30px; }

  h2 { font-size: clamp(1.75rem, 7.4vw, 2.3rem); }
  .lede { font-size: 1.04rem; }

  .scrollhint { display: block; }
  .ptable th:first-child, .ptable td:first-child {
    position: sticky; left: 0; z-index: 1; background: var(--paper);
    box-shadow: 1px 0 0 var(--line);
  }
  .ptable thead th:first-child { background: var(--ink); }
  .ptable tbody tr:nth-child(odd) td:first-child { background: #f8fbfd; }
  .ptable--compare .win { box-shadow: none; }

  .coupon__left b { font-size: 3rem; }
  .coupon__body { padding: 22px 20px; }
  .coupon__cta .btn { width: 100%; }

  .svc { padding: 26px 20px 22px; }
  .prob, .quote { padding: 20px; }
  .faq summary { font-size: 1.16rem; padding-right: 42px; }

  .contactcards { gap: 10px; }
  .footer { padding-top: 46px; }
  .footer__grid { gap: 26px; }
  .footer__phone { font-size: 1.75rem; }
}

/* ------------------------------------------------- sticky call bar */
.callbar { padding-bottom: env(safe-area-inset-bottom, 0px); }
.callbar a { padding: 17px 6px; min-height: 52px; }
.footer { padding-bottom: calc(112px + env(safe-area-inset-bottom, 0px)); }

/* landscape phones: don't let the hero eat the whole screen */
@media (max-height: 460px) and (orientation: landscape) {
  .hero__inner { padding-block: 26px 30px; }
  .hero h1 { font-size: 2rem; }
  .callbar a { padding: 12px 6px; min-height: 44px; }
}

/* final touch-up pass */
.brand__tag { font-size: 0.75rem; letter-spacing: 0.13em; }
.nav a { padding: 12px 6px; }

@media (max-width: 1024px) {
  .nav a { padding: 12px 8px; }
}

@media (max-width: 900px) {
  .brand { min-height: 44px; align-items: center; }
}

@media (max-width: 620px) {
  /* the trust strip immediately below says the same three things */
  .hero__note { display: none; }
  .brand__tag { display: none; }
}

/* position:sticky needs a non-clipping ancestor and separated borders.
   The .table-scroll wrapper handles the rounded corners instead. */
.table-scroll .ptable { overflow: visible; border-collapse: separate; border-spacing: 0; }

/* =========================================================================
   Reviews
   ========================================================================= */
.ratingbar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 18px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 18px;
  padding: 20px 24px; box-shadow: var(--shadow-sm); margin-bottom: 26px;
}
.ratingbar__score { display: flex; align-items: center; gap: 16px; }
.ratingbar__score b {
  font-family: var(--display); font-size: 3rem; line-height: 1; color: var(--blue);
}
.ratingbar__score--plain b { font-size: 1.7rem; text-transform: uppercase; letter-spacing: .02em; }
.ratingbar__score .stars { display: block; margin: 0 0 2px; }
.ratingbar__count { font-size: .95rem; color: var(--fg-muted); }
.ratingbar__actions { display: flex; gap: 10px; flex-wrap: wrap; }

.rev {
  background: var(--paper); border: 1px solid var(--line); border-radius: 18px;
  padding: 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.rev .stars { margin-bottom: 10px; }
.rev__text { color: var(--fg); font-size: 1rem; }
.rev__by { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 16px; }
.rev__avatar {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  background: var(--blue); color: #fff; display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; font-size: 1.2rem;
}
.rev__who b { display: block; font-size: .98rem; }
.rev__meta { font-size: .84rem; color: var(--fg-muted); }

.rev--empty { text-align: center; align-items: center; padding: 34px 26px; }
.rev--empty h3 { font-size: 1.6rem; }
.rev--empty p { max-width: 56ch; color: var(--fg-muted); }
.rev__cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }
.reviews__note { font-size: .86rem; color: var(--fg-muted); margin-top: 18px; text-align: center; }

@media (max-width: 620px) {
  .ratingbar { padding: 18px; }
  .ratingbar__actions { width: 100%; }
  .ratingbar__actions .btn { flex: 1; }
  .rev__cta .btn { width: 100%; }
}

.reviews__disclosure {
  margin-top: 14px; font-size: 1rem; color: var(--fg-muted);
  background: var(--paper); border: 1px solid var(--line); border-left: 4px solid var(--green);
  border-radius: 12px; padding: 14px 18px; text-align: left; max-width: 70ch;
}
.reviews__disclosure strong { color: var(--fg); }

/* ---------------------------------------------------- trust section */
.trustdeep { background: var(--paper); }
.tcard {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
  border: 1px solid var(--line); border-left: 4px solid var(--green);
  border-radius: 16px; padding: 24px;
}
.tcard h3 { font-size: 1.24rem; margin-bottom: 8px; color: var(--blue); }
.tcard p { margin: 0; color: var(--fg-muted); font-size: 1rem; }

.credbar {
  list-style: none; margin: 28px 0 0; padding: 22px 24px;
  background: var(--ink); color: var(--on-dark); border-radius: 18px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 28px;
}
.credbar li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.99rem; }
.credbar svg { flex: none; margin-top: 2px; color: var(--green-light); }
.trustdeep__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }

@media (max-width: 760px) {
  .credbar { grid-template-columns: 1fr; padding: 20px; }
  .trustdeep__cta .btn { width: 100%; }
}

/* =========================================================================
   FIX: the rounded "shoulder" pulls each section up over the one above it.
   Tall sections have padding to spare; the trust strip did not, so its last
   line was being covered. The overlap is now a variable and the strip
   reserves exactly that much space beneath its text.
   ========================================================================= */
:root { --shoulder: 42px; }

.round-top {
  border-radius: var(--shoulder) var(--shoulder) 0 0;
  margin-top: calc(var(--shoulder) * -1);
}

.trust__list { padding: 20px 0 calc(20px + var(--shoulder)); }

/* any short section that ends up before a shoulder keeps its text clear */
.section:has(+ .round-top) {
  padding-bottom: max(clamp(56px, 8vw, 96px), calc(var(--shoulder) + 24px));
}

@media (max-width: 620px) {
  :root { --shoulder: 28px; }

  /* two columns forced every label onto two lines — one column reads cleaner */
  .trust__list { grid-template-columns: 1fr; gap: 12px; }
  .trust__list li { font-size: 1rem; }
  .section:has(+ .round-top) { padding-bottom: max(46px, calc(var(--shoulder) + 20px)); }
}

/* =========================================================================
   PREMIUM PASS
   The illustration is gone. Depth now comes from layered light, a fine grain
   that kills gradient banding, and hairline geometry taken from the logo.
   ========================================================================= */

.hero { background-color: #060d16; }

/* 1. base light — a lit corner rather than a flat fill */
.hero__photo {
  z-index: -4;
  background-image:
    radial-gradient(120% 105% at 12% -10%, #16406b 0%, transparent 52%),
    radial-gradient(95% 85% at 88% 12%, #0e2f4d 0%, transparent 58%),
    linear-gradient(158deg, #0b1e31 0%, #070f1a 58%, #050b13 100%);
  background-size: cover;
  background-position: center right;
}
.hero__photo[data-photo] {
  background-image: var(--photo), linear-gradient(158deg, #0b1e31 0%, #070f1a 58%, #050b13 100%);
}

/* 2. aurora */
.hero__glow {
  z-index: -3;
  right: -16%; top: -38%;
  width: min(88vw, 1040px);
  background: radial-gradient(circle,
    rgba(85, 169, 48, 0.20) 0%,
    rgba(10, 82, 150, 0.24) 40%,
    transparent 66%);
  filter: blur(6px);
}

/* 3. hairline geometry from the logo */
.hero__arcs {
  position: absolute; z-index: -2; pointer-events: none;
  right: -8%; top: 50%; transform: translateY(-50%);
  width: min(58vw, 720px); height: auto; opacity: 0.55;
}

/* 4. scrim + vignette */
.hero__scrim {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 13, 22, 0.93) 0%, rgba(6, 13, 22, 0.74) 46%, rgba(6, 13, 22, 0.28) 100%),
    linear-gradient(0deg, rgba(6, 13, 22, 0.92) 0%, transparent 44%),
    radial-gradient(130% 120% at 50% 45%, transparent 42%, rgba(0, 0, 0, 0.5) 100%);
}

/* 5. film grain — the detail that stops big gradients looking cheap */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05; mix-blend-mode: overlay;
}

/* refined type in the hero */
.hero h1 { letter-spacing: -0.012em; }
.hero__stamp {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 3px solid var(--green);
  box-shadow: none; border-radius: 4px;
}

/* glass on the quote box */
.herobox {
  background: rgba(255, 255, 255, 0.985);
  border-radius: 16px;
  border-top: 3px solid var(--green);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 2px 0 rgba(255, 255, 255, 0.5) inset;
}

/* ---------------------------------------------------- crew panel */
.crewframe {
  position: relative; aspect-ratio: 4 / 3; border-radius: 18px; overflow: hidden;
  background: linear-gradient(158deg, #123a5f 0%, #08182a 72%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 60px rgba(6, 13, 22, 0.26);
  display: grid; place-items: center;
}
.crewframe::before, .crewframe::after {
  content: ""; position: absolute; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.09);
}
.crewframe::before { width: 58%; aspect-ratio: 1; }
.crewframe::after { width: 86%; aspect-ratio: 1; border-color: rgba(255, 255, 255, 0.05); }

.crewframe__brand { position: relative; z-index: 1; text-align: center; padding: 20px; }
.crewframe__brand img { height: 74px; width: auto; margin: 0 auto 14px; }
.crewframe__word {
  font-family: var(--display); text-transform: uppercase; font-size: 1.9rem;
  color: #fff; margin: 0; letter-spacing: 0.02em; line-height: 1;
}
.crewframe__word em { font-style: normal; color: var(--green-light); }
.crewframe__rule {
  width: 54px; height: 1px; margin: 12px auto; background: rgba(255, 255, 255, 0.28);
}
.crewframe__tag {
  font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62); margin: 0;
}
.crewframe__photo {
  position: absolute; inset: 0; z-index: 2;
  background-image: var(--photo); background-size: cover; background-position: center;
}

/* ---------------------------------------------------- restraint elsewhere */
.btn--call { box-shadow: 0 6px 16px rgba(62, 130, 33, 0.26); }
.btn--primary { box-shadow: 0 6px 16px rgba(10, 82, 150, 0.22); }
.btn { border-radius: 10px; }

.svc, .prob, .quote, .rev, .formcard, .tcard, .areacard, .table-scroll, .faq {
  border-radius: 16px;
}
.svc { box-shadow: 0 1px 2px rgba(8, 17, 28, .04), 0 10px 26px rgba(8, 17, 28, .06); }
.svc:hover { box-shadow: 0 18px 40px rgba(8, 17, 28, 0.13); }
.svc__badge { box-shadow: 0 6px 14px rgba(8, 17, 28, 0.16); }

.coupon { border-radius: 18px; box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3); }
.coupon__left {
  background: linear-gradient(158deg, #f0b545 0%, #dc9a1e 55%, #c07f00 100%);
  border-radius: 18px 0 0 18px;
}
.pricetag { box-shadow: 0 6px 18px rgba(245, 166, 35, 0.22); }

@media (max-width: 900px) {
  .hero__arcs { width: 96vw; right: -30%; opacity: 0.4; }
  .crewframe { aspect-ratio: 16 / 10; }
  .coupon__left { border-radius: 18px 18px 0 0; }
}
