/* ==========================================================================
   ProClean Workforce Solutions — "Trust-Forward Local Service" design system
   Archetype: bold, high-contrast, conversion-focused local-services site.
   Palette base carried from brand: emerald green + marigold amber on white.
   Type: Plus Jakarta Sans (friendly geometric sans, chunky weights).
   Vocabulary is bespoke to this build (shell / masthead / quotebar / program-
   block / assurance / process / promise / faq / final-cta) — intentionally
   unlike any prior template.
   ========================================================================== */

:root {
  /* Brand greens (carried + extended) */
  --green: #0F5C43;
  --green-dark: #0A4030;
  --green-deep: #072C22;
  --green-mid: #177C5B;
  --green-bright: #23A276;
  --green-wash: #E7F2EC;
  --green-wash-2: #D6E9DE;

  /* Marigold amber (carried + extended) */
  --amber: #E0A02C;
  --amber-strong: #C9861A;
  --amber-deep: #8F5E10;
  --amber-bright: #F6BE47;
  --amber-wash: #FBEFD6;

  /* Neutrals — lots of white */
  --paper: #FFFFFF;
  --mist: #F3F7F4;
  --mist-2: #EAF1EC;
  --sand: #FCF5E8;
  --ink: #14231C;
  --ink-2: #35473E;
  --ink-3: #5E6F66;
  --line: #DEE9E1;
  --line-2: #CBDBD0;

  /* Effects */
  --sh-1: 0 2px 6px rgba(11, 45, 33, 0.06);
  --sh-2: 0 14px 34px -20px rgba(11, 45, 33, 0.34);
  --sh-3: 0 34px 70px -34px rgba(7, 44, 34, 0.45);
  --sh-amber: 0 14px 30px -14px rgba(201, 134, 26, 0.55);
  --sh-green: 0 16px 34px -16px rgba(15, 92, 67, 0.55);

  /* Type */
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Geometry — chunky + rounded */
  --r-sm: 12px;
  --r: 18px;
  --r-lg: 28px;
  --r-xl: 36px;
  --pill: 999px;

  --shell: 1180px;
  --gap-y: clamp(64px, 9vw, 112px);
}

/* ------------------------------ reset/base ------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.08; letter-spacing: -0.02em; font-weight: 800; color: var(--ink); }
h1 { font-size: clamp(2.35rem, 6vw, 4rem); }
h2 { font-size: clamp(1.85rem, 4.4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1.02rem; font-weight: 700; }
p { margin: 0 0 1.1rem; color: var(--ink-2); }
a { color: var(--green); text-underline-offset: 3px; }
a:hover { color: var(--amber-deep); }
ul, ol { margin: 0 0 1.1rem; padding-left: 1.15rem; }
strong { color: var(--ink); }
:focus-visible { outline: 3px solid var(--amber-strong); outline-offset: 3px; border-radius: 6px; }

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

.shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 22px; }
.band { padding: var(--gap-y) 0; }
.band--mist { background: var(--mist); }
.band--sand { background: var(--sand); }
.band--green {
  background:
    radial-gradient(120% 120% at 85% -10%, rgba(35,162,118,.35), transparent 55%),
    linear-gradient(160deg, var(--green) 0%, var(--green-dark) 62%, var(--green-deep) 100%);
  color: #EAF4EE;
}
.band--green h1, .band--green h2, .band--green h3, .band--green h4 { color: #fff; }
.band--green p { color: #CFE6DA; }

.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--amber-deep);
  background: var(--amber-wash);
  padding: 7px 15px; border-radius: var(--pill);
  margin-bottom: 20px;
}
.band--green .kicker { color: #FAD98E; background: rgba(246,190,71,.12); }
.kicker::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--amber); }

.section-intro { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-intro p { font-size: 1.12rem; color: var(--ink-3); }
.lede { font-size: clamp(1.08rem, 1.7vw, 1.28rem); color: var(--ink-2); }

/* -------------------------------- buttons -------------------------------- */
.action {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: inherit; font-size: 1.02rem; font-weight: 800; letter-spacing: -0.01em;
  padding: 16px 30px; border-radius: var(--pill); border: 2.5px solid transparent;
  cursor: pointer; text-decoration: none; line-height: 1.1;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease;
}
.action svg { width: 20px; height: 20px; }
.action--amber { background: var(--amber); color: #23180a; box-shadow: var(--sh-amber); }
.action--amber:hover { background: var(--amber-bright); color: #23180a; transform: translateY(-2px); }
.action--green { background: var(--green); color: #fff; box-shadow: var(--sh-green); }
.action--green:hover { background: var(--green-mid); color: #fff; transform: translateY(-2px); }
.action--outline { background: transparent; color: var(--green); border-color: var(--line-2); }
.action--outline:hover { border-color: var(--green); color: var(--green); background: var(--green-wash); }
.band--green .action--outline { color: #fff; border-color: rgba(255,255,255,.5); }
.band--green .action--outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.action--lg { padding: 19px 38px; font-size: 1.1rem; }
.action--block { width: 100%; }

/* ============================= sticky quote bar ==========================
   Signature element: sticky TOP utility strip on desktop, sticky BOTTOM bar
   on mobile. Always visible; the CTA scrolls to and focuses the quote form. */
.quotebar {
  position: sticky; top: 0; z-index: 90;
  background: linear-gradient(90deg, var(--green-deep), var(--green-dark));
  color: #fff;
  border-bottom: 2px solid rgba(246,190,71,.35);
}
.quotebar__inner {
  max-width: var(--shell); margin: 0 auto; padding: 9px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.quotebar__msg { font-size: .95rem; font-weight: 600; color: #CFE6DA; display: flex; align-items: center; gap: 10px; }
.quotebar__msg svg { width: 18px; height: 18px; color: var(--amber-bright); flex: none; }
.quotebar__actions { display: flex; align-items: center; gap: 14px; }
.quotebar__phone {
  color: #fff; font-weight: 800; font-size: 1.15rem; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px; letter-spacing: -0.01em;
}
.quotebar__phone svg { width: 18px; height: 18px; color: var(--amber-bright); }
.quotebar__phone:hover { color: var(--amber-bright); }
.quotebar__cta {
  background: var(--amber); color: #23180a; font-weight: 800; font-size: .96rem;
  padding: 10px 20px; border-radius: var(--pill); border: none; cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  font-family: inherit; box-shadow: 0 6px 16px -8px rgba(0,0,0,.5);
  transition: background .15s ease, transform .15s ease;
}
.quotebar__cta:hover { background: var(--amber-bright); transform: translateY(-1px); }
.quotebar__label-sm { display: none; }

/* ------------------------------- masthead -------------------------------- */
.masthead { background: var(--paper); border-bottom: 1px solid var(--line); position: relative; z-index: 80; }
.masthead__inner {
  max-width: var(--shell); margin: 0 auto; padding: 16px 22px;
  display: flex; align-items: center; gap: 22px;
}
.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { height: 50px; width: auto; }
.menu {
  list-style: none; display: flex; gap: 4px; margin: 0 auto 0 20px; padding: 0;
}
.menu a {
  display: inline-block; padding: 10px 15px; border-radius: var(--pill);
  color: var(--ink-2); font-weight: 700; font-size: .98rem; text-decoration: none;
  transition: background .15s ease, color .15s ease;
}
.menu a:hover { background: var(--green-wash); color: var(--green); }
.menu a[aria-current="page"] { background: var(--green); color: #fff; }
.masthead__actions { display: flex; align-items: center; gap: 16px; flex: none; }
.phone-tap {
  display: inline-flex; flex-direction: column; align-items: flex-end;
  text-decoration: none; line-height: 1.05;
}
.phone-tap small { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }
.phone-tap b { font-size: 1.42rem; font-weight: 800; color: var(--green); letter-spacing: -0.02em; }
.phone-tap:hover b { color: var(--amber-deep); }
.menu-toggle {
  display: none; width: 48px; height: 48px; border-radius: 14px;
  border: 2px solid var(--line-2); background: var(--paper); color: var(--green);
  align-items: center; justify-content: center; cursor: pointer;
}
.menu-toggle svg { width: 26px; height: 26px; }

/* ---------------------------------- hero --------------------------------- */
.lead-hero { position: relative; overflow: hidden; padding: clamp(48px, 7vw, 92px) 0 clamp(60px,8vw,104px); }
.lead-hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.lead-hero .headline { font-size: clamp(2.5rem, 5.6vw, 4.15rem); margin-bottom: 22px; }
.lead-hero .headline em { font-style: normal; color: var(--amber-bright); }
.lead-hero__sub { font-size: clamp(1.1rem, 1.9vw, 1.35rem); color: #D3E7DB; margin-bottom: 30px; max-width: 34ch; }
.hero-proofs { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 30px; }
.hero-proofs li {
  list-style: none; display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: .96rem; color: #E7F4EE;
}
.hero-proofs svg { width: 20px; height: 20px; color: var(--amber-bright); flex: none; }
.lead-hero__grid { list-style: none; }

/* Quote panel (mini quote-request form embedded in hero) */
.quote-panel {
  background: var(--paper); color: var(--ink);
  border-radius: var(--r-xl); padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--sh-3);
  border: 1px solid var(--line);
}
.quote-panel__eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.quote-panel__eyebrow span { font-weight: 800; font-size: 1.15rem; color: var(--green); }
.quote-panel__eyebrow .quote-panel__badge {
  background: var(--green); color: #fff; font-size: .72rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; padding: 5px 11px; border-radius: var(--pill);
}
.quote-panel > p { font-size: .95rem; color: var(--ink-3); margin-bottom: 18px; }
.qfield { margin-bottom: 14px; }
.qfield label { display: block; font-weight: 700; font-size: .86rem; margin-bottom: 6px; color: var(--ink-2); }
.qfield input, .qfield select, .qfield textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border-radius: var(--r-sm); border: 2px solid var(--line-2);
  background: var(--mist); transition: border-color .15s ease, background .15s ease;
}
.qfield input:focus, .qfield select:focus, .qfield textarea:focus {
  outline: none; border-color: var(--green); background: #fff;
}
.qfield textarea { min-height: 92px; resize: vertical; }
.qnote { font-size: .82rem; color: var(--ink-3); margin: 12px 0 0; text-align: center; }

/* --------------------------- assurance / trust wall ---------------------- */
.assurance__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.assurance__item {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 24px; box-shadow: var(--sh-1); text-align: left;
}
.assurance__item .ico {
  width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center;
  background: var(--green-wash); color: var(--green); margin-bottom: 16px;
}
.assurance__item .ico svg { width: 27px; height: 27px; }
.assurance__item h3 { font-size: 1.08rem; margin-bottom: 5px; }
.assurance__item p { font-size: .92rem; color: var(--ink-3); margin: 0; }

/* ---------------------------- programs (services) ------------------------ */
.program-list { display: grid; gap: 22px; }
.program-block {
  display: grid; grid-template-columns: auto 1fr auto; gap: 26px; align-items: start;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 36px); box-shadow: var(--sh-1);
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}
.program-block:hover { box-shadow: var(--sh-2); transform: translateY(-2px); border-color: var(--line-2); }
.program-block__num {
  font-size: 2.1rem; font-weight: 800; color: var(--green-wash-2);
  line-height: 1; min-width: 54px;
}
.program-block__ico {
  width: 60px; height: 60px; border-radius: 17px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--green), var(--green-mid)); color: #fff; flex: none;
  box-shadow: var(--sh-green);
}
.program-block__ico svg { width: 31px; height: 31px; }
.program-block__body h3 { margin-bottom: 8px; }
.program-block__body > p { color: var(--ink-2); margin-bottom: 14px; }
.checklist { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 22px; }
.checklist li { display: flex; align-items: flex-start; gap: 9px; font-size: .93rem; font-weight: 600; color: var(--ink-2); }
.checklist svg { width: 19px; height: 19px; color: var(--green-bright); flex: none; margin-top: 2px; }
.program-block__aside { display: none; }

/* Simplified 2-col grid variant for home preview */
.program-list--head { display: grid; grid-template-columns: 1fr 1fr; }
@media (max-width: 720px){ .program-list--head { grid-template-columns: 1fr; } }

/* ------------------------------ coverage / areas ------------------------- */
.coverage { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 4vw, 60px); align-items: center; }
.coverage__media {
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-3);
  position: relative;
}
.coverage__media img { width: 100%; height: 100%; object-fit: cover; }
.coverage__media .pin {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  background: rgba(7,44,34,.88); backdrop-filter: blur(4px); color: #fff;
  border-radius: var(--r); padding: 16px 20px; display: flex; align-items: center; gap: 14px;
}
.coverage__media .pin svg { width: 30px; height: 30px; color: var(--amber-bright); flex: none; }
.coverage__media .pin strong { display: block; color: #fff; font-size: 1.05rem; }
.coverage__media .pin span { font-size: .88rem; color: #CFE6DA; }
.sector-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 6px; padding: 0; list-style: none; }
.sector-chips li {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .92rem;
  background: var(--green-wash); color: var(--green); border-radius: var(--pill); padding: 9px 16px;
  border: 1px solid var(--green-wash-2);
}
.sector-chips svg { width: 16px; height: 16px; }

/* --------------------------------- process ------------------------------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.process__step {
  position: relative; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px 24px; box-shadow: var(--sh-1);
}
.band--green .process__step { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); }
.process__num {
  font-size: 3.2rem; font-weight: 800; line-height: .9; color: var(--amber);
  letter-spacing: -0.04em; margin-bottom: 10px; display: block;
}
.band--green .process__num { color: var(--amber-bright); }
.process__step h3 { margin-bottom: 8px; }
.process__step p { font-size: .95rem; color: var(--ink-3); margin: 0; }
.band--green .process__step p { color: #CFE6DA; }

/* -------------------------- promise / rated cards ------------------------ */
.promise__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.promise__card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 28px; box-shadow: var(--sh-1); display: flex; flex-direction: column;
}
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.stars svg { width: 22px; height: 22px; color: var(--amber); }
.promise__card blockquote { margin: 0 0 18px; font-size: 1.08rem; font-weight: 600; color: var(--ink); line-height: 1.5; }
.promise__card .by { margin-top: auto; display: flex; align-items: center; gap: 12px; }
.promise__card .by .av {
  width: 44px; height: 44px; border-radius: 50%; background: var(--green); color: #fff;
  display: grid; place-items: center; font-weight: 800; flex: none;
}
.promise__card .by b { display: block; color: var(--ink); font-size: .96rem; }
.promise__card .by span { font-size: .84rem; color: var(--ink-3); }

/* ---------------------------------- FAQ ---------------------------------- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq__item {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--sh-1); overflow: hidden;
}
.faq__item[open] { border-color: var(--green-wash-2); box-shadow: var(--sh-2); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 22px 26px; font-weight: 700; font-size: 1.08rem;
  color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary .chev {
  width: 30px; height: 30px; border-radius: 50%; background: var(--green-wash); color: var(--green);
  display: grid; place-items: center; flex: none; transition: transform .2s ease, background .2s ease;
}
.faq__item summary .chev svg { width: 18px; height: 18px; }
.faq__item[open] summary .chev { transform: rotate(180deg); background: var(--green); color: #fff; }
.faq__item .faq__a { padding: 0 26px 24px; }
.faq__item .faq__a p { margin: 0; color: var(--ink-2); }

/* ------------------------------- final CTA ------------------------------- */
.final-cta { text-align: center; }
.final-cta__card {
  position: relative; overflow: hidden;
  background:
    radial-gradient(130% 120% at 15% 0%, rgba(35,162,118,.4), transparent 55%),
    linear-gradient(155deg, var(--green) 0%, var(--green-dark) 60%, var(--green-deep) 100%);
  color: #fff; border-radius: var(--r-xl); padding: clamp(44px, 6vw, 76px) clamp(24px, 5vw, 70px);
  box-shadow: var(--sh-3);
}
.final-cta__card h2 { color: #fff; max-width: 18ch; margin-inline: auto; }
.final-cta__card p { color: #CFE6DA; max-width: 54ch; margin: 0 auto 30px; font-size: 1.1rem; }
.final-cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.final-cta__phone { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; font-size: 1.25rem; text-decoration: none; }
.final-cta__phone svg { width: 22px; height: 22px; color: var(--amber-bright); }

/* -------------------------- generic content blocks ----------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 4.5vw, 64px); align-items: center; }
.split__media { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-2); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split--flip .split__media { order: -1; }
.ticks { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 12px; }
.ticks li { display: flex; align-items: flex-start; gap: 12px; font-weight: 600; color: var(--ink-2); }
.ticks svg { width: 22px; height: 22px; color: var(--green-bright); flex: none; margin-top: 2px; }

.page-hero { padding: clamp(40px, 6vw, 74px) 0 clamp(30px, 4vw, 52px); }
.page-hero .headline { max-width: 20ch; }
.page-hero__lede { max-width: 60ch; }

/* value grid (about) */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px 26px; box-shadow: var(--sh-1);
}
.value .ico { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--sand); color: var(--amber-deep); margin-bottom: 15px; }
.value .ico svg { width: 26px; height: 26px; }
.value h3 { margin-bottom: 6px; }
.value p { font-size: .95rem; color: var(--ink-3); margin: 0; }

/* stats band */
.figures { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; text-align: center; }
.figure b { display: block; font-size: clamp(2rem, 3.6vw, 2.9rem); font-weight: 800; color: var(--amber-bright); letter-spacing: -0.02em; line-height: 1; }
.figure span { display: block; margin-top: 10px; font-size: .92rem; color: #CFE6DA; }

/* founder feature */
.founder-feature { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(30px,4vw,56px); align-items: center; }
.founder-card {
  background: linear-gradient(160deg, var(--green), var(--green-deep)); color: #fff;
  border-radius: var(--r-xl); padding: 36px 32px; box-shadow: var(--sh-3);
}
.founder-card .role { font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--amber-bright); }
.founder-card .who { font-size: 1.7rem; font-weight: 800; color: #fff; margin: 4px 0 18px; }
.founder-card blockquote { margin: 0 0 22px; font-size: 1.12rem; line-height: 1.55; color: #EAF4EE; }
.founder-card .tags { display: flex; flex-wrap: wrap; gap: 8px; }
.founder-card .tags span { font-size: .82rem; font-weight: 700; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); color: #fff; padding: 7px 13px; border-radius: var(--pill); }

/* spec table */
.table-wrap { overflow-x: auto; border-radius: var(--r); border: 1px solid var(--line); box-shadow: var(--sh-1); }
.spec { width: 100%; border-collapse: collapse; background: var(--paper); min-width: 520px; }
.spec caption { text-align: left; padding: 16px 20px; font-weight: 700; color: var(--ink-3); font-size: .9rem; background: var(--mist); }
.spec th, .spec td { text-align: left; padding: 15px 20px; border-top: 1px solid var(--line); font-size: .96rem; }
.spec th { width: 40%; color: var(--ink); font-weight: 700; background: var(--mist); }
.spec td { color: var(--ink-2); }

/* contact layout */
.contact-cols { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 4vw, 52px); align-items: start; }
.contact-form-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: clamp(26px, 3.4vw, 40px); box-shadow: var(--sh-2);
}
.contact-details { display: grid; gap: 16px; }
.contact-line {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 20px 22px; box-shadow: var(--sh-1);
}
.contact-line .ico { width: 46px; height: 46px; border-radius: 13px; background: var(--green-wash); color: var(--green); display: grid; place-items: center; flex: none; }
.contact-line .ico svg { width: 24px; height: 24px; }
.contact-line dt { font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 3px; }
.contact-line dd { margin: 0; font-weight: 700; color: var(--ink); font-size: 1.05rem; }
.contact-line dd a { text-decoration: none; }
.contact-line dd.small { font-weight: 600; font-size: .95rem; color: var(--ink-2); }

/* forms (shared) */
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 700; font-size: .9rem; margin-bottom: 6px; color: var(--ink-2); }
.field .req { color: var(--amber-strong); }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 14px 16px; border-radius: var(--r-sm); border: 2px solid var(--line-2); background: var(--mist);
  transition: border-color .15s ease, background .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); background: #fff; }
.field textarea { min-height: 130px; resize: vertical; }
.form-foot { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 6px; }
.form-foot .note { font-size: .86rem; color: var(--ink-3); margin: 0; }

/* legal / prose pages */
.prose-wrap { max-width: 780px; margin: 0 auto; }
.prose .updated { font-size: .9rem; color: var(--ink-3); font-weight: 700; }
.prose h2 { font-size: clamp(1.4rem, 2.6vw, 1.85rem); margin-top: 2em; }
.prose ul { padding-left: 1.25rem; }
.prose li { margin-bottom: .5rem; color: var(--ink-2); }

/* pill list / sector detail cards (industries) */
.sector-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.sector-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 28px; box-shadow: var(--sh-1);
  transition: transform .18s ease, box-shadow .18s ease;
}
.sector-card:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.sector-card .ico { width: 54px; height: 54px; border-radius: 15px; background: var(--green-wash); color: var(--green); display: grid; place-items: center; margin-bottom: 16px; }
.sector-card .ico svg { width: 28px; height: 28px; }
.sector-card h3 { margin-bottom: 8px; }
.sector-card p { font-size: .95rem; color: var(--ink-3); }
.sector-card ul { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 8px; }
.sector-card li { display: flex; gap: 8px; align-items: flex-start; font-size: .9rem; font-weight: 600; color: var(--ink-2); }
.sector-card li svg { width: 18px; height: 18px; color: var(--green-bright); flex: none; margin-top: 2px; }

/* --------------------------------- footer -------------------------------- */
.sitefoot { background: var(--green-deep); color: #CFE6DA; padding: clamp(52px, 7vw, 84px) 0 30px; }
.sitefoot__cols { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.sitefoot__brand img { height: 52px; width: auto; margin-bottom: 16px; }
.sitefoot__brand p { color: #A9CBB9; font-size: .95rem; max-width: 34ch; }
.sitefoot h4 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.sitefoot ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.sitefoot a { color: #CFE6DA; text-decoration: none; font-weight: 600; }
.sitefoot a:hover { color: var(--amber-bright); }
.sitefoot address { font-style: normal; color: #A9CBB9; font-size: .95rem; line-height: 1.7; margin-top: 12px; }
.sitefoot__bottom {
  border-top: 1px solid rgba(255,255,255,.12); margin-top: 42px; padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between;
  font-size: .86rem; color: #8FB3A1;
}
.sitefoot__bottom a { color: #8FB3A1; }
.sitefoot__legal { margin-top: 18px; font-size: .8rem; color: #6F927F; max-width: 90ch; line-height: 1.6; }

/* --------------------------------- utils --------------------------------- */
.center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.stack-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hide-desktop { display: none; }

/* ============================== responsive =============================== */
@media (max-width: 960px) {
  .lead-hero__grid { grid-template-columns: 1fr; }
  .lead-hero__sub { max-width: none; }
  .quote-panel { max-width: 520px; }
  .assurance__grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .promise__grid { grid-template-columns: 1fr; }
  .coverage, .split, .founder-feature, .contact-cols { grid-template-columns: 1fr; }
  .split--flip .split__media { order: 0; }
  .values, .sector-grid { grid-template-columns: 1fr 1fr; }
  .figures { grid-template-columns: 1fr 1fr; }
  .sitefoot__cols { grid-template-columns: 1fr 1fr; }
  .program-block { grid-template-columns: auto 1fr; }
  .program-block__num { grid-row: 1; }
  .checklist { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  /* mobile nav */
  .menu-toggle { display: inline-flex; }
  .menu {
    position: absolute; top: 100%; left: 0; right: 0; margin: 0;
    flex-direction: column; gap: 4px; background: var(--paper);
    border-bottom: 1px solid var(--line); box-shadow: var(--sh-2);
    padding: 12px 22px 20px; display: none;
  }
  .menu.open { display: flex; }
  .menu a { padding: 13px 16px; border-radius: var(--r-sm); font-size: 1.05rem; }
  .phone-tap { display: none; }
  .masthead__inner { justify-content: space-between; }

  /* sticky quote bar -> bottom on mobile */
  .quotebar {
    position: fixed; top: auto; bottom: 0; left: 0; right: 0; z-index: 95;
    border-bottom: none; border-top: 2px solid rgba(246,190,71,.4);
    box-shadow: 0 -8px 24px -12px rgba(0,0,0,.5);
  }
  .quotebar__inner { padding: 10px 16px; gap: 10px; }
  .quotebar__msg { display: none; }
  .quotebar__actions { width: 100%; gap: 10px; }
  .quotebar__phone { flex: 1; justify-content: center; background: rgba(255,255,255,.1); padding: 12px; border-radius: var(--pill); font-size: 1.05rem; }
  .quotebar__cta { flex: 1; justify-content: center; padding: 13px; font-size: 1rem; }
  .quotebar__label-sm { display: inline; }
  .quotebar__label-lg { display: none; }
  body { padding-bottom: 74px; } /* room for fixed bottom bar */
}

@media (max-width: 560px) {
  .assurance__grid, .values, .sector-grid, .figures, .process, .sitefoot__cols { grid-template-columns: 1fr; }
  .program-block { grid-template-columns: 1fr; gap: 16px; }
  .program-block__num { display: inline; font-size: 1.6rem; }
  h1 { font-size: clamp(2.1rem, 8vw, 2.8rem); }
  .action { width: 100%; }
  .final-cta__actions .action { width: auto; }
  .form-foot .action { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
