/* ==========================================================================
   Sarnia Bin Men stylesheet
   Palette pulled from the logo: navy / sky blue / lime
   ========================================================================== */

:root {
  /* Brand */
  --navy-900: #0B2447;
  --navy-800: #123A6B;
  --navy-700: #1B4C87;
  --sky-500:  #29ABE2;
  --sky-600:  #1E90C4;
  --sky-100:  #E4F4FC;
  --lime-500: #76C043;
  --lime-600: #63A836;
  --lime-100: #EEF8E4;

  /* Neutrals */
  --ink:      #0E1B2B;
  --ink-soft: #47576B;
  --line:     #DDE5EE;
  --line-soft:#EDF2F7;
  --surface:  #FFFFFF;
  --canvas:   #F6F9FC;

  /* Semantic */
  --danger:   #C62828;
  --danger-bg:#FDECEC;
  --success:  #2E7D32;

  /* Type */
  --font-head: "Outfit", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Space scale (4/8 rhythm) */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px;

  --radius:    14px;
  --radius-sm: 10px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(11,36,71,.06), 0 2px 6px rgba(11,36,71,.05);
  --shadow-md: 0 4px 10px rgba(11,36,71,.07), 0 12px 28px rgba(11,36,71,.08);
  --shadow-lg: 0 10px 22px rgba(11,36,71,.10), 0 28px 60px rgba(11,36,71,.12);

  --z-header: 100;
  --z-fab: 90;

  --header-h: 84px;
}

/* --------------------------------------------------------------- Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
/* Class rules below set display: flex/grid, which would otherwise beat the
   UA rule for [hidden]. Keep the attribute authoritative. */
[hidden] { display: none !important; }
h1, h2, h3 { font-family: var(--font-head); line-height: 1.15; margin: 0 0 var(--s-3); color: var(--navy-900); letter-spacing: -0.015em; }
p { margin: 0 0 var(--s-4); }
a { color: var(--navy-700); }
ul, ol { margin: 0; padding: 0; list-style: none; }
svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ------------------------------------------------------------ Utilities */
.wrap { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: var(--s-5); }
.wrap-narrow { max-width: 780px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: var(--s-4); top: -100px;
  background: var(--navy-800); color: #fff; padding: var(--s-3) var(--s-4);
  border-radius: var(--radius-sm); z-index: 200; font-weight: 600;
  transition: top 160ms ease-out;
}
.skip-link:focus { top: var(--s-4); }

:where(a, button, input, select, textarea, summary, details):focus-visible {
  outline: 3px solid var(--sky-500);
  outline-offset: 2px;
  border-radius: 6px;
}

.ic { width: 20px; height: 20px; flex: none; }

/* --------------------------------------------------------------- Buttons */
.btn {
  --btn-bg: var(--navy-800);
  --btn-fg: #fff;
  --btn-bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  min-height: 48px; padding: 0 var(--s-5);
  font-family: var(--font-head); font-size: 16px; font-weight: 700;
  color: var(--btn-fg); background: var(--btn-bg);
  border: 2px solid var(--btn-bd); border-radius: 999px;
  text-decoration: none; cursor: pointer;
  transition: background-color 180ms ease-out, color 180ms ease-out, box-shadow 180ms ease-out, transform 120ms ease-out;
  touch-action: manipulation;
}
.btn:hover { box-shadow: var(--shadow-md); }
.btn:active { transform: scale(.98); }
.btn-primary { --btn-bg: var(--navy-800); }
.btn-primary:hover { --btn-bg: var(--navy-700); }
.btn-lime { --btn-bg: var(--lime-500); --btn-fg: var(--navy-900); }
.btn-lime:hover { --btn-bg: var(--lime-600); }
.btn-ghost { --btn-bg: transparent; --btn-fg: var(--navy-800); --btn-bd: var(--line); }
.btn-ghost:hover { --btn-bd: var(--navy-800); --btn-bg: var(--canvas); }
.btn-sm { min-height: 44px; padding: 0 var(--s-4); font-size: 15px; }
.btn-lg { min-height: 56px; padding: 0 var(--s-6); font-size: 17px; }
.btn-block { display: flex; width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .55; cursor: not-allowed; box-shadow: none; }

/* --------------------------------------------------------------- Header */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-4); min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; min-height: 44px; }
.brand-logo { width: auto; height: 42px; }
@media (min-width: 560px) { .brand-logo { height: 50px; } }
@media (min-width: 1000px) { .brand-logo { height: 58px; } }

.nav-desktop { display: none; align-items: center; gap: var(--s-4); }
.nav-desktop a {
  font-family: var(--font-head); font-weight: 600; font-size: 15.5px;
  color: var(--navy-900); text-decoration: none; padding: var(--s-2) 0;
  border-bottom: 2px solid transparent;
  transition: color 160ms ease-out, border-color 160ms ease-out;
}
.nav-desktop a:not(.btn):hover { color: var(--sky-600); border-bottom-color: var(--sky-500); }
.nav-desktop a.btn { border-bottom: 2px solid transparent; color: #fff; }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; padding: 12px;
  background: transparent; border: 1px solid var(--line); border-radius: var(--radius-sm);
  color: var(--navy-900); cursor: pointer;
  transition: background-color 160ms ease-out;
}
.nav-toggle:hover { background: var(--canvas); }

.nav-mobile {
  display: flex; flex-direction: column; gap: var(--s-1);
  padding: var(--s-3) var(--s-5) var(--s-5);
  border-top: 1px solid var(--line-soft); background: #fff;
}
.nav-mobile a {
  font-family: var(--font-head); font-weight: 600; font-size: 17px;
  color: var(--navy-900); text-decoration: none;
  padding: var(--s-3) var(--s-2); min-height: 48px; display: flex; align-items: center;
  border-radius: var(--radius-sm);
}
.nav-mobile a:hover { background: var(--canvas); }
.nav-mobile a.btn { justify-content: center; color: #fff; margin-top: var(--s-2); }

@media (min-width: 1000px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }
}

/* ----------------------------------------------------------------- Hero */
.hero {
  position: relative;
  padding: var(--s-8) 0 var(--s-9);
  background:
    radial-gradient(1100px 480px at 8% -10%, rgba(41,171,226,.16), transparent 62%),
    radial-gradient(760px 420px at 100% 8%, rgba(118,192,67,.14), transparent 60%),
    var(--canvas);
  border-bottom: 1px solid var(--line-soft);
}
.hero-inner { display: grid; gap: var(--s-7); }

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-family: var(--font-head); font-weight: 600; font-size: 14px;
  letter-spacing: .06em; text-transform: uppercase; color: var(--navy-700);
  background: #fff; border: 1px solid var(--line);
  padding: 6px var(--s-3); border-radius: 999px; margin-bottom: var(--s-4);
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime-500); }

.hero h1 {
  font-size: clamp(2.4rem, 7vw, 4rem);
  font-weight: 800;
  margin-bottom: var(--s-4);
}
.hero h1 .hl {
  color: var(--sky-600);
  background: linear-gradient(180deg, transparent 68%, rgba(118,192,67,.35) 68%);
}
.lede { font-size: clamp(1.05rem, 2.4vw, 1.2rem); color: var(--ink-soft); max-width: 56ch; }

.hero-actions { display: flex; flex-wrap: wrap; gap: var(--s-3); margin: var(--s-5) 0 var(--s-6); }

.hero-points { display: flex; flex-wrap: wrap; gap: var(--s-3) var(--s-5); }
.hero-points li {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-weight: 500; font-size: 15.5px; color: var(--navy-900);
}
.hero-points .ic { color: var(--lime-600); }

/* Price card */
.hero-card { display: flex; justify-content: center; }
.price-card {
  width: 100%; max-width: 380px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: var(--s-6);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.price-card-label {
  font-family: var(--font-head); font-weight: 600; font-size: 13px;
  letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); margin: 0;
}
.price-card-amount {
  font-family: var(--font-head); font-weight: 800; font-size: 4.25rem;
  line-height: 1; color: var(--navy-900); margin: var(--s-2) 0 var(--s-1);
  font-variant-numeric: tabular-nums;
}
.price-card-amount .cur { font-size: 2rem; vertical-align: super; color: var(--sky-600); }
.price-card-unit { color: var(--ink-soft); font-size: 15px; margin-bottom: var(--s-4); }
.price-card hr { border: 0; border-top: 1px solid var(--line-soft); margin: var(--s-4) 0; }
.price-card-list { display: grid; gap: var(--s-2); margin-bottom: var(--s-5); text-align: left; }
.price-card-list li {
  font-size: 15px; color: var(--ink-soft);
  padding-left: var(--s-5); position: relative;
}
.price-card-list li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 8px; height: 8px; border-radius: 50%; background: var(--sky-500);
}
.price-card-list strong { color: var(--navy-900); font-variant-numeric: tabular-nums; }
.price-card-note { font-size: 13.5px; color: var(--ink-soft); margin: var(--s-3) 0 0; }

@media (min-width: 980px) {
  .hero-inner { grid-template-columns: 1.15fr .85fr; align-items: center; gap: var(--s-8); }
}

/* ------------------------------------------------------------- Sections */
.section { padding: var(--s-8) 0; }
.section-alt { background: var(--canvas); border-block: 1px solid var(--line-soft); }
.section-book { background: linear-gradient(180deg, #fff 0%, var(--sky-100) 100%); }

@media (min-width: 768px) { .section { padding: var(--s-9) 0; } }

.section-eyebrow {
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--sky-600);
  margin-bottom: var(--s-2);
}
.section-title { font-size: clamp(1.75rem, 4.2vw, 2.6rem); font-weight: 800; max-width: 22ch; }
.section-lede { font-size: 1.05rem; color: var(--ink-soft); max-width: 64ch; margin-bottom: var(--s-7); }

.grid { display: grid; gap: var(--s-4); }
@media (min-width: 640px) { .grid-4, .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* Cards */
.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: var(--s-5);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 200ms ease-out, border-color 200ms ease-out;
}
.card:hover { box-shadow: var(--shadow-md); border-color: var(--sky-500); }
.card-ic {
  width: 46px; height: 46px; padding: 11px; margin-bottom: var(--s-4);
  color: var(--sky-600); background: var(--sky-100); border-radius: 12px;
}
.card h3 { font-size: 1.12rem; font-weight: 700; }
.card p { font-size: 15px; color: var(--ink-soft); margin: 0; }

/* --------------------------------------------- Before / after compare */
.compare { --pos: 50%; max-width: 720px; margin-inline: auto; }
.compare-frame {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg); border: 1px solid var(--line);
  box-shadow: var(--shadow-lg); background: var(--canvas);
  aspect-ratio: 4 / 3;
  touch-action: pan-y;
}
.compare-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  user-select: none; -webkit-user-drag: none; pointer-events: none;
}
/* Clip rather than resize, so the "before" image never squashes as it reveals */
.compare-clip {
  position: absolute; inset: 0;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}

.compare-tag {
  position: absolute; top: var(--s-4); z-index: 3;
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 7px var(--s-4); border-radius: 999px;
  backdrop-filter: blur(4px);
  pointer-events: none;
}
.compare-tag-before { left: var(--s-4); background: rgba(43,42,34,.82); color: #fff; }
.compare-tag-after  { right: var(--s-4); background: rgba(11,36,71,.85); color: #fff; }

.compare-handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos);
  width: 0; z-index: 4; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
.compare-line {
  position: absolute; top: 0; bottom: 0; left: -2px;
  width: 4px; background: #fff; box-shadow: 0 0 12px rgba(11,36,71,.45);
}
.compare-grip {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; padding: 13px;
  border-radius: 50%; background: #fff; color: var(--navy-800);
  box-shadow: 0 4px 14px rgba(11,36,71,.35);
}
.compare-grip svg { stroke-width: 2.5; }

/* The real control: a transparent range input covering the frame. Gives us
   drag, touch, keyboard and screen-reader support for free. */
.compare-range {
  position: absolute; inset: 0; z-index: 5;
  width: 100%; height: 100%; margin: 0; padding: 0;
  appearance: none; background: transparent; border: 0;
  cursor: ew-resize;
}
.compare-range::-webkit-slider-thumb {
  appearance: none; width: 56px; height: 56px; border-radius: 50%;
  background: transparent; cursor: grab;
}
.compare-range::-moz-range-thumb {
  width: 56px; height: 56px; border: 0; border-radius: 50%;
  background: transparent; cursor: grab;
}
.compare-range:active { cursor: grabbing; }
.compare-range:focus { outline: none; }
.compare-range:focus-visible + .compare-handle .compare-grip,
.compare-frame:has(.compare-range:focus-visible) .compare-grip {
  outline: 3px solid var(--sky-500); outline-offset: 3px;
}

.compare-note { margin-inline: auto; text-align: center; margin-top: var(--s-5); max-width: 62ch; }

/* Steps */
.steps { display: grid; gap: var(--s-4); counter-reset: step; }
@media (min-width: 700px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: var(--s-6) var(--s-5) var(--s-5);
  box-shadow: var(--shadow-sm);
}
.step-num {
  position: absolute; top: calc(-1 * var(--s-3)); left: var(--s-5);
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy-800); color: #fff;
  font-family: var(--font-head); font-weight: 800; font-size: 18px;
  box-shadow: 0 0 0 5px #fff;
}
.section-alt .step-num { box-shadow: 0 0 0 5px var(--canvas); }
.step h3 { font-size: 1.08rem; margin-top: var(--s-2); }
.step p { font-size: 15px; color: var(--ink-soft); margin: 0; }
.step strong { color: var(--navy-900); }

/* Pricing */
.plans { align-items: start; gap: var(--s-5); }
.plan {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: var(--s-6);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.plan-featured { border: 2px solid var(--navy-800); box-shadow: var(--shadow-lg); }
.plan-badge {
  position: absolute; top: calc(-1 * var(--s-3)); right: var(--s-5);
  background: var(--lime-500); color: var(--navy-900);
  font-family: var(--font-head); font-weight: 700; font-size: 12.5px;
  letter-spacing: .05em; text-transform: uppercase;
  padding: 5px var(--s-3); border-radius: 999px;
}
.plan-head h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: var(--s-1); }
.plan-head p { font-size: 15px; color: var(--ink-soft); }

.rate-table { width: 100%; border-collapse: collapse; margin: var(--s-4) 0 var(--s-5); }
.rate-table th, .rate-table td {
  padding: var(--s-3) 0; border-bottom: 1px solid var(--line-soft);
  text-align: left; font-weight: 400; font-size: 15.5px; color: var(--ink-soft);
}
.rate-table th { padding-right: var(--s-3); }
.rate-table .num {
  text-align: right; white-space: nowrap;
  font-family: var(--font-head); font-weight: 800; font-size: 1.15rem;
  color: var(--navy-900); font-variant-numeric: tabular-nums;
}
.rate-table tr:last-child th, .rate-table tr:last-child td { border-bottom: 0; }
.plan .btn { margin-top: auto; }
.fineprint { font-size: 14px; color: var(--ink-soft); margin-top: var(--s-5); max-width: 70ch; }

/* ----------------------------------------------------------------- Form */
.form {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: var(--s-5);
  box-shadow: var(--shadow-md);
}
@media (min-width: 700px) { .form { padding: var(--s-7); } }

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

.fs { border: 0; padding: 0; margin: 0 0 var(--s-7); }
.fs:last-of-type { margin-bottom: var(--s-5); }
.fs-legend {
  display: flex; align-items: center; gap: var(--s-3);
  font-family: var(--font-head); font-weight: 700; font-size: 1.2rem;
  color: var(--navy-900); padding: 0; margin-bottom: var(--s-4);
  width: 100%;
}
.fs-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; flex: none; border-radius: 50%;
  background: var(--sky-100); color: var(--navy-800);
  font-size: 15px; font-weight: 800;
}
.fs-help { font-size: 14.5px; color: var(--ink-soft); margin: calc(-1 * var(--s-2)) 0 var(--s-4); }

.field { margin-bottom: var(--s-5); }
.field:last-child { margin-bottom: 0; }
.field-row { display: grid; gap: 0; }
@media (min-width: 620px) {
  .field-row { grid-template-columns: 1fr 1fr; gap: var(--s-4); }
  .field-row .field { margin-bottom: var(--s-5); }
}

label, .label-as-legend {
  display: block; font-family: var(--font-head); font-weight: 600;
  font-size: 15.5px; color: var(--navy-900); margin-bottom: var(--s-2);
}
.req { color: var(--danger); font-weight: 700; }

input[type="text"], input[type="tel"], input[type="email"], select, textarea {
  width: 100%; min-height: 50px; padding: 12px var(--s-4);
  font-family: var(--font-body); font-size: 16px; color: var(--ink);
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color 160ms ease-out, box-shadow 160ms ease-out;
}
textarea { min-height: 96px; padding-top: var(--s-3); resize: vertical; }
input:hover, select:hover, textarea:hover { border-color: #C3D0DE; }
input:focus, select:focus, textarea:focus {
  border-color: var(--sky-500); box-shadow: 0 0 0 3px rgba(41,171,226,.18); outline: none;
}
input::placeholder, textarea::placeholder { color: #9AA8B8; }

select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2347576B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right var(--s-4) center; background-size: 18px;
  padding-right: var(--s-8);
}

.help { font-size: 13.5px; color: var(--ink-soft); margin: var(--s-2) 0 0; }

.field-error {
  display: flex; align-items: flex-start; gap: 6px;
  font-size: 14px; font-weight: 500; color: var(--danger);
  margin: var(--s-2) 0 0;
}
.field-error::before { content: "!"; display: inline-flex; align-items: center; justify-content: center; width: 17px; height: 17px; flex: none; margin-top: 3px; border-radius: 50%; background: var(--danger); color: #fff; font-size: 12px; font-weight: 700; }
.has-error input, .has-error select { border-color: var(--danger); background: var(--danger-bg); }

/* Radio choice cards */
.choice-grid { display: grid; gap: var(--s-3); }
@media (min-width: 520px) {
  .choice-grid { grid-template-columns: 1fr 1fr; }
  .choice-grid-3 { grid-template-columns: repeat(3, 1fr); }
}
.choice {
  position: relative; display: flex; align-items: center; gap: var(--s-3);
  min-height: 64px; padding: var(--s-3) var(--s-4);
  margin: 0; cursor: pointer;
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-weight: 400;
  transition: border-color 160ms ease-out, background-color 160ms ease-out, box-shadow 160ms ease-out;
}
.choice-sm { min-height: 52px; }
.choice:hover { border-color: var(--sky-500); background: #FAFDFF; }
.choice input { position: absolute; opacity: 0; width: 0; height: 0; }
.choice::before {
  content: ""; flex: none; width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid #B9C6D5; background: #fff;
  transition: border-color 160ms ease-out, box-shadow 160ms ease-out;
}
.choice:has(input:checked) {
  border-color: var(--navy-800); background: var(--sky-100);
  box-shadow: inset 0 0 0 1px var(--navy-800);
}
.choice:has(input:checked)::before {
  border-color: var(--navy-800);
  box-shadow: inset 0 0 0 5px var(--navy-800);
}
.choice:has(input:focus-visible) { outline: 3px solid var(--sky-500); outline-offset: 2px; }
.choice-body { display: flex; flex-direction: column; gap: 1px; }
.choice-title { font-family: var(--font-head); font-weight: 600; font-size: 15.5px; color: var(--navy-900); }
.choice-sub { font-size: 13.5px; color: var(--ink-soft); line-height: 1.4; }

/* Live quote */
.quote {
  margin-top: var(--s-5); padding: var(--s-5);
  background: var(--navy-900); color: #fff; border-radius: var(--radius);
}
.quote-top { display: flex; align-items: baseline; justify-content: space-between; gap: var(--s-3); }
.quote-label {
  font-family: var(--font-head); font-weight: 600; font-size: 13px;
  letter-spacing: .08em; text-transform: uppercase; color: #A9C4DE;
}
.quote-amount {
  font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; line-height: 1;
  color: #fff; font-variant-numeric: tabular-nums;
}
.quote-detail { font-size: 15px; color: #DCE8F3; margin: var(--s-3) 0 0; }
.quote-note { font-size: 13px; color: #90AECB; margin: var(--s-2) 0 0; }

.visit-hint {
  display: flex; gap: var(--s-3); align-items: flex-start;
  padding: var(--s-3) var(--s-4); border-radius: var(--radius-sm);
  background: var(--lime-100); border: 1px solid #CFE8B7;
  font-size: 15px; color: #33591A; margin: 0;
}

/* Submit */
.form-actions { border-top: 1px solid var(--line-soft); padding-top: var(--s-5); }
.form-promise {
  display: flex; gap: var(--s-3); align-items: flex-start;
  font-size: 14.5px; color: var(--ink-soft); margin: var(--s-4) 0 0;
}
.form-promise .ic { color: var(--lime-600); margin-top: 2px; }
.form-promise strong { color: var(--navy-900); }

.spinner {
  width: 18px; height: 18px; flex: none; border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,.35); border-top-color: #fff;
  animation: spin 700ms linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.form-status {
  margin: var(--s-4) 0 0; padding: var(--s-3) var(--s-4);
  border-radius: var(--radius-sm); font-size: 15px; font-weight: 500;
  background: var(--danger-bg); color: var(--danger); border: 1px solid #F3C7C7;
}

.form-success {
  background: #fff; border: 2px solid var(--lime-500);
  border-radius: var(--radius-lg); padding: var(--s-7) var(--s-5);
  text-align: center; box-shadow: var(--shadow-lg);
}
.success-ic {
  width: 62px; height: 62px; padding: 15px; margin: 0 auto var(--s-4);
  border-radius: 50%; background: var(--lime-100); color: var(--lime-600);
}
.form-success h3 { font-size: 1.6rem; font-weight: 800; }
.form-success p { color: var(--ink-soft); max-width: 46ch; margin-inline: auto; }
.success-sub { font-size: 15px; }

/* ------------------------------------------------------------------ FAQ */
.faq { display: grid; gap: var(--s-3); }
.faq-item {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color 180ms ease-out, box-shadow 180ms ease-out;
}
.faq-item:hover { border-color: var(--sky-500); }
.faq-item[open] { border-color: var(--navy-800); box-shadow: var(--shadow-sm); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
  min-height: 60px; padding: var(--s-4) var(--s-5);
  font-family: var(--font-head); font-weight: 600; font-size: 1.02rem;
  color: var(--navy-900); cursor: pointer; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; flex: none; width: 14px; height: 14px;
  border-right: 2.5px solid var(--sky-600); border-bottom: 2.5px solid var(--sky-600);
  transform: rotate(45deg) translate(-3px, -3px);
  transition: transform 200ms ease-out;
}
.faq-item[open] summary::after { transform: rotate(-135deg) translate(-3px, -3px); }
.faq-body { padding: 0 var(--s-5) var(--s-5); }
.faq-body p { font-size: 15.5px; color: var(--ink-soft); margin: 0; max-width: 68ch; }

/* ------------------------------------------------------------ CTA strip */
.cta-strip {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700) 55%, var(--sky-600));
  color: #fff; padding: var(--s-7) 0;
}
.cta-inner { display: grid; gap: var(--s-5); align-items: center; }
.cta-strip h2 { color: #fff; font-size: clamp(1.4rem, 3.4vw, 2rem); max-width: 26ch; }
.cta-strip p { color: #CFE3F3; margin: 0; }
.cta-strip .btn { justify-self: start; }
@media (min-width: 860px) {
  .cta-inner { grid-template-columns: 1fr auto; gap: var(--s-7); }
  .cta-strip .btn { justify-self: end; }
}

/* --------------------------------------------------------------- Footer */
.site-footer { background: var(--navy-900); color: #C6D6E6; padding: var(--s-8) 0 var(--s-5); }
.footer-inner { display: grid; gap: var(--s-6); }
@media (min-width: 760px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr; gap: var(--s-7); } }
.footer-logo {
  height: 52px; width: auto; margin-bottom: var(--s-4);
  background: #fff; padding: var(--s-2) var(--s-3); border-radius: var(--radius-sm);
}
.footer-brand p { font-size: 15px; max-width: 40ch; margin: 0; }
.footer-col h3 {
  color: #fff; font-size: 14px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: var(--s-3);
}
.footer-col ul { display: grid; gap: var(--s-1); }
.footer-col a {
  color: #C6D6E6; text-decoration: none; font-size: 15.5px;
  display: inline-flex; align-items: center; min-height: 44px;
  transition: color 160ms ease-out;
}
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: var(--s-2) var(--s-5);
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: var(--s-6); padding-top: var(--s-4);
}
.footer-credit { font-size: 14px; color: #8FA9C2; margin: 0; }
.footer-credit a {
  color: #C6D6E6; text-decoration: none;
  border-bottom: 1px solid rgba(198,214,230,.4);
  transition: color 160ms ease-out, border-color 160ms ease-out;
}
.footer-credit a:hover { color: #fff; border-bottom-color: #fff; }
.footer-bottom p { font-size: 14px; color: #8FA9C2; margin: 0; }

/* ------------------------------------------------------- Mobile sticky CTA */
.fab {
  position: fixed; left: var(--s-4); right: var(--s-4);
  bottom: max(var(--s-4), env(safe-area-inset-bottom));
  z-index: var(--z-fab);
  display: flex; align-items: center; justify-content: center;
  min-height: 54px; padding: 0 var(--s-5);
  background: var(--lime-500); color: var(--navy-900);
  font-family: var(--font-head); font-weight: 700; font-size: 17px;
  text-decoration: none; border-radius: 999px;
  box-shadow: 0 8px 24px rgba(11,36,71,.3);
  transform: translateY(150%);
  transition: transform 260ms cubic-bezier(.2,.8,.2,1);
  touch-action: manipulation;
}
.fab.is-visible { transform: translateY(0); }
/* Keep the sticky CTA from sitting on top of the last of the footer */
@media (max-width: 999px) {
  .site-footer { padding-bottom: calc(var(--s-9) + env(safe-area-inset-bottom)); }
}
.fab:active { filter: brightness(.95); }
@media (min-width: 1000px) { .fab { display: none; } }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); }
.reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity 480ms ease-out, transform 480ms cubic-bezier(.2,.8,.2,1);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .fab { transform: translateY(0); }
}

/* Footer service-area column */
.footer-area p { font-size: 15px; line-height: 1.6; margin-bottom: var(--s-3); }
.footer-hours { color: #8FA9C2; }
.footer-hours strong { color: #C6D6E6; }
@media (min-width: 760px) {
  .footer-inner { grid-template-columns: 1.6fr 1.3fr 1fr 1fr; }
}

/* Footer note steering people to the form rather than the phone */
.footer-note { font-size: 14px; color: #8FA9C2; margin: var(--s-3) 0 0; line-height: 1.55; }

/* Keep the credit link a comfortable tap target on phones */
.footer-credit a { display: inline-block; padding: 13px 2px; }
@media (min-width: 760px) { .footer-credit a { padding: 4px 2px; } }
