/* ============================================================
   LONG BEACH FAST AUTO GLASS — Design System
   Palette: Deep Navy + Electric Amber + Ice White
   ============================================================ */

:root {
  /* Brand — Slate + Emerald */
  --navy:         #1a2332;
  --navy-dk:      #111820;
  --navy-mid:     #243040;
  --navy-lt:      #3a5068;
  --amber:        #059669;
  --amber-dk:     #047857;
  --amber-lt:     #34d399;
  --amber-pale:   #ecfdf5;
  --ice:          #e6f4f0;

  /* Dark surfaces — deep charcoal slate */
  --dark-1:       #0d1117;
  --dark-2:       #131920;
  --dark-3:       #1a2130;

  /* Neutrals */
  --white:        #ffffff;
  --gray-50:      #f8fafc;
  --gray-100:     #f1f5f9;
  --gray-200:     #e2e8f0;
  --gray-400:     #94a3b8;
  --gray-600:     #475569;
  --gray-800:     #1e293b;
  --gray-900:     #0f172a;

  /* Typography */
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;

  /* Weight */
  --w-regular:   400;
  --w-medium:    500;
  --w-semibold:  600;
  --w-bold:      700;
  --w-extrabold: 800;
  --w-black:     900;

  /* Space */
  --s1:  0.25rem;
  --s2:  0.5rem;
  --s3:  0.75rem;
  --s4:  1rem;
  --s5:  1.25rem;
  --s6:  1.5rem;
  --s7:  1.75rem;
  --s8:  2rem;
  --s10: 2.5rem;
  --s12: 3rem;
  --s16: 4rem;
  --s20: 5rem;
  --s24: 6rem;

  /* Radius */
  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  16px;
  --r-xl:  22px;
  --r-2xl: 32px;
  --r-pill: 999px;

  /* Shadow */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.14);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.18);
  --shadow-xl:  0 20px 60px rgba(0,0,0,0.22);
  --shadow-amber: 0 8px 32px rgba(5,150,105,0.25);

  /* Transitions */
  --ease:        cubic-bezier(0.4,0,0.2,1);
  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--s6);
}

/* ── Section ── */
.section { padding-block: var(--s20); }
.section--dark {
  background: var(--dark-1);
  position: relative;
  overflow: hidden;
}
.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(5,150,105,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.section--navy {
  background: var(--navy);
}
.section--gray {
  background: var(--gray-50);
}
#standards.section--gray {
  border-top: 1px solid var(--gray-200);
}
.section--ice {
  background: var(--ice);
}

/* ── Section Headers ── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--w-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--s4);
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--amber);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--w-black);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--gray-900);
  text-transform: uppercase;
  margin-bottom: var(--s5);
}
.section-title--light { color: var(--white); }
.section-title .accent { color: var(--amber); }
.section-subtitle {
  font-size: var(--text-lg);
  color: var(--gray-600);
  max-width: 640px;
  line-height: 1.7;
}
.section-subtitle--light { color: rgba(255,255,255,0.65); }
.section-header { margin-bottom: var(--s12); }
.section-header--center { text-align: center; }
.section-header--center .section-subtitle { margin-inline: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--w-bold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.85rem 1.8rem;
  border-radius: var(--r-md);
  transition: transform 0.18s var(--ease), opacity 0.18s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--amber);
  color: var(--navy-dk);
  box-shadow: var(--shadow-amber);
}
.btn-primary:hover {
  background: var(--amber-lt);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(5,150,105,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-navy:hover {
  background: var(--navy-lt);
  transform: translateY(-2px);
}

/* ── Accent word ── */
.accent-word { color: var(--amber); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(240,237,232,0.98);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: background 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(7,22,40,0.97);
  border-bottom-color: rgba(5,150,105,0.15);
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: var(--s6);
  max-width: 1280px;
  margin-inline: auto;
  padding: 0.85rem var(--s6);
}
.logo img { height: 64px; width: auto; }
.main-nav { margin-left: auto; }
.nav-list {
  display: flex;
  align-items: center;
  gap: var(--s2);
}
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: flex;
  align-items: center;
  gap: var(--s1);
  padding: var(--s2) var(--s3);
  font-size: var(--text-sm);
  font-weight: var(--w-semibold);
  color: var(--navy);
  border-radius: var(--r-sm);
  transition: color 0.15s, background 0.15s;
  letter-spacing: 0.02em;
}
.nav-list > li > a:hover { color: var(--amber-dk); background: rgba(5,150,105,0.08); }
.site-header.scrolled .nav-list > li > a { color: rgba(255,255,255,0.8); }
.site-header.scrolled .nav-list > li > a:hover { color: var(--amber); background: rgba(5,150,105,0.08); }
.nav-list > li > a i { font-size: 0.65rem; opacity: 0.7; transition: transform 0.2s; }
.nav-list > li:hover > a i { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 230px;
  background: var(--dark-2);
  border: 1px solid rgba(5,150,105,0.15);
  border-radius: var(--r-lg);
  padding: var(--s3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 12px;
  display: none;
}
.has-dropdown:hover::after { display: block; }
.dropdown li a {
  display: block;
  padding: 0.5rem var(--s4);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.75);
  border-radius: var(--r-sm);
  transition: color 0.15s, background 0.15s;
}
.dropdown li a:hover { color: var(--amber); background: rgba(5,150,105,0.08); }

.dropdown--areas {
  min-width: 340px;
  column-count: 2;
  column-gap: 0;
}
.dropdown--areas li { break-inside: avoid; }

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--s2);
  background: var(--amber);
  color: var(--navy-dk);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--w-bold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  border-radius: var(--r-md);
  transition: background 0.18s, transform 0.18s;
  white-space: nowrap;
}
.header-cta:hover { background: var(--amber-lt); transform: translateY(-1px); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: var(--s2);
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.site-header.scrolled .nav-toggle span { background: var(--white); }

/* ============================================================
   HERO — Full-bleed photo background, copy over gradient overlay
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--navy-dk);
  padding-top: 72px;
  display: flex;
  flex-direction: column;
}

/* Full-bleed photo behind everything */
.hero__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
/* Left gradient: opaque near copy, fades right so photo shows through */
.hero__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(17,24,32,0.97) 0%,
    rgba(17,24,32,0.90) 30%,
    rgba(17,24,32,0.55) 58%,
    rgba(17,24,32,0.10) 78%,
    transparent 100%
  );
}
/* Bottom fade into stats bar */
.hero__photo::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 28%;
  background: linear-gradient(to top, rgba(17,24,32,0.75) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* Copy panel — floats over gradient on left */
.hero__layout {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  max-width: 680px;
}

.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s16) var(--s8) var(--s10) clamp(var(--s8), 6vw, 6rem);
  width: 100%;
}

/* Eyebrow pill */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: var(--w-bold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-lt);
  background: rgba(5,150,105,0.15);
  border: 1px solid rgba(52,211,153,0.35);
  border-radius: var(--r-pill);
  padding: var(--s2) var(--s4);
  width: fit-content;
  margin-bottom: var(--s6);
}
.hero__eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--amber-lt);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--amber);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.35; transform: scale(0.6); }
}

/* H1 */
.hero__h1 {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--s6);
  line-height: 0.9;
}
.hero__h1-top {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 5.8vw, 7rem);
  font-weight: var(--w-black);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
}
.hero__h1-accent {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 5.8vw, 7rem);
  font-weight: var(--w-black);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--amber-lt);
}
.hero__h1-sub {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  font-family: var(--font-display);
  font-size: clamp(0.78rem, 1.1vw, 0.9rem);
  font-weight: var(--w-bold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: var(--s5);
  width: fit-content;
}
.hero__h1-sub::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--amber);
  border-radius: 1px;
}

.hero__desc {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: var(--s6);
}

/* Checks */
.hero__checks {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  margin-bottom: var(--s8);
}
.hero__check {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: var(--text-sm);
  font-weight: var(--w-medium);
  color: rgba(255,255,255,0.7);
}
.hero__check i { color: var(--amber-lt); font-size: 0.68rem; flex-shrink: 0; }

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--s4);
  flex-wrap: wrap;
}

/* Stats bar — full-width frosted strip at bottom */
.hero__stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero__stat {
  flex: 1;
  text-align: center;
  padding: var(--s5) var(--s4);
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hero__stat:last-child { border-right: none; }
.hero__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--w-black);
  color: var(--amber-lt);
  line-height: 1;
}
.hero__stat-label {
  display: block;
  font-size: 0.6rem;
  font-weight: var(--w-semibold);
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: var(--s1);
  white-space: nowrap;
}
.hero__stat-sep { display: none; }

/* RIGHT: Quote form — overlaid on photo */
.hero__right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s8);
}

/* Hero form card */
.hero__form-card {
  background: rgba(10,20,35,0.82);
  border: 1px solid rgba(5,150,105,0.2);
  border-radius: var(--r-2xl);
  padding: var(--s8);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
}
.form-card__head {
  display: flex;
  align-items: center;
  gap: var(--s3);
  margin-bottom: var(--s6);
  padding-bottom: var(--s6);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.form-card__icon {
  width: 44px; height: 44px;
  background: var(--amber);
  color: var(--navy-dk);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.form-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--w-black);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.form-card__sub {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}
.form-field { margin-bottom: var(--s5); }
.form-field label {
  display: block;
  font-size: var(--text-xs);
  font-weight: var(--w-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--s2);
}
/* quote-form CSS lives in quote-form.php — self-contained <style> block */

/* ============================================================
   QUOTE BAND — horizontal form bar below hero
   ============================================================ */
/* ============================================================
   INTRO + QUOTE SECTION
   ============================================================ */
.intro-quote {
  background: var(--white);
  padding-block: var(--s20);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.iq-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: clamp(var(--s10), 5vw, var(--s20));
  align-items: start;
}
.iq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: var(--w-bold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--s5);
}
.iq-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: var(--w-black);
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.08;
  margin-bottom: var(--s6);
}
.iq-heading .accent-word { color: var(--amber); }
.iq-body {
  font-size: var(--text-base);
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: var(--s8);
  max-width: 60ch;
}
.iq-trust-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s2) var(--s6);
}
.iq-trust-item {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: var(--text-sm);
  font-weight: var(--w-medium);
  color: var(--navy);
}
.iq-trust-item i { color: var(--amber); font-size: 0.85rem; }

/* Form card */
.iq-form-wrap { position: sticky; top: calc(72px + var(--s6)); }
.iq-form-card {
  background: var(--navy);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}
.iq-form-header {
  background: linear-gradient(135deg, var(--navy-dk) 0%, var(--navy-mid) 100%);
  padding: var(--s7) var(--s8);
  border-bottom: 1px solid rgba(5,150,105,0.2);
}
.iq-form-header h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: var(--w-black);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--s1);
}
.iq-form-header h3 .accent-word { color: var(--amber-lt); }
.iq-form-header p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
}

/* quote-form .qf-* and .input-wrap CSS lives in quote-form.php */

/* ============================================================
   QUOTE BAND (horizontal bar at top of page — kept for re-use)
   ============================================================ */
.quote-band {
  background: linear-gradient(135deg, var(--navy-dk) 0%, var(--dark-3) 100%);
  border-top: 2px solid rgba(5,150,105,0.4);
  padding-block: var(--s10);
  position: relative;
  overflow: hidden;
}
.quote-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 100% 50%, rgba(5,150,105,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.quote-band__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: var(--s10);
}
.quote-band__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: var(--w-black);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
  white-space: nowrap;
}
.quote-band__title .accent-word { color: var(--amber); }
.quote-band__sub {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  margin-top: var(--s2);
  white-space: nowrap;
}
.quote-band__form {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr auto auto;
  gap: var(--s3);
  align-items: end;
  position: relative;
}
.qb-field { display: flex; flex-direction: column; }
.qb-field--wide { /* already in grid as 2fr */ }
.qb-captcha {
  display: flex;
  flex-direction: column;
  gap: var(--s1);
}
.qb-captcha label {
  font-size: var(--text-xs);
  font-weight: var(--w-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}
.qb-captcha input {
  width: 70px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-md);
  padding: 0.72rem var(--s3);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--white);
  text-align: center;
  outline: none;
}
.qb-captcha input:focus { border-color: var(--amber); }
.qb-submit {
  align-self: end;
  white-space: nowrap;
  height: 46px;
  padding-inline: var(--s6);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--navy-dk);
  border-top: 1px solid rgba(5,150,105,0.15);
  border-bottom: 1px solid rgba(5,150,105,0.15);
  padding-block: var(--s5);
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s8);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: var(--text-sm);
  font-weight: var(--w-semibold);
  color: rgba(255,255,255,0.8);
}
.trust-item i {
  color: var(--amber);
  font-size: 1.1rem;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
}
.why-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: var(--s8) var(--s6);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s var(--ease), opacity 0.2s;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.why-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(5,150,105,0.3); }
.why-card:hover::before { transform: scaleX(1); }
.why-card__num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: var(--w-black);
  color: rgba(15,39,68,0.06);
  line-height: 1;
  position: absolute;
  top: var(--s4); right: var(--s5);
  letter-spacing: -0.02em;
  pointer-events: none;
}
.why-card__icon {
  width: 52px; height: 52px;
  background: var(--amber-pale);
  border: 1.5px solid rgba(5,150,105,0.2);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--amber-dk);
  font-size: 1.3rem;
  margin-bottom: var(--s5);
  transition: background 0.2s, transform 0.2s var(--ease-spring);
}
.why-card:hover .why-card__icon {
  background: var(--amber);
  border-color: transparent;
  color: var(--white);
  transform: rotate(-8deg) scale(1.1);
}
.why-card__title {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--w-bold);
  color: var(--gray-900);
  margin-bottom: var(--s3);
  line-height: 1.3;
}
.why-card__desc {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.65;
}

/* ============================================================
   SERVICES — Tab explorer layout
   ============================================================ */

.svc-intro {
  margin-bottom: var(--s10);
  max-width: 760px;
}
.svc-intro__sub {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-top: var(--s4);
}

/* Tab explorer: left list + right panel */
.svc-explorer {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 560px;
}

/* Services section gets its own dark bg to keep explorer contrast */
.svc-section {
  background: var(--dark-1);
  position: relative;
  overflow: hidden;
}
.svc-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(5,150,105,0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* Left tab list */
.svc-tabs {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.02);
  border-right: 1px solid rgba(255,255,255,0.07);
}
.svc-tab {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: var(--s4) var(--s5);
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  border-left: 3px solid transparent;
  transition: background 0.18s, border-color 0.18s;
  position: relative;
}
.svc-tab:last-child { border-bottom: none; }
.svc-tab:hover { background: rgba(5,150,105,0.04); }
.svc-tab.active {
  background: rgba(5,150,105,0.06);
  border-left-color: var(--amber);
}
.svc-tab__num {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: var(--w-black);
  letter-spacing: 0.15em;
  color: rgba(5,150,105,0.35);
  flex-shrink: 0;
  transition: color 0.18s;
  width: 20px;
}
.svc-tab.active .svc-tab__num,
.svc-tab:hover .svc-tab__num { color: var(--amber); }
.svc-tab__name {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--w-semibold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5);
  line-height: 1.2;
  flex: 1;
  transition: color 0.18s;
}
.svc-tab.active .svc-tab__name,
.svc-tab:hover .svc-tab__name { color: var(--white); }
.svc-tab__arrow {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.15);
  flex-shrink: 0;
  transition: color 0.18s, transform 0.18s;
}
.svc-tab.active .svc-tab__arrow { color: var(--amber); transform: translateX(2px); }

/* Right panels */
.svc-panels { position: relative; }
.svc-panel {
  display: none;
  grid-template-columns: 1fr 42%;
  height: 100%;
}
.svc-panel.active { display: grid; }

.svc-panel__img {
  position: relative;
  overflow: hidden;
  order: 2;
}
.svc-panel__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
}
.svc-panel__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--dark-1) 0%, transparent 30%);
}

.svc-panel__body {
  padding: var(--s8) var(--s8) var(--s8);
  overflow-y: auto;
  background: var(--dark-1);
  order: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.svc-panel__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: var(--w-black);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--s5);
  padding-bottom: var(--s5);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.svc-panel__desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.62);
  line-height: 1.72;
  margin-bottom: var(--s5);
}
.svc-panel__fix-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: var(--w-black);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: var(--s3);
}
.svc-panel__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s2) var(--s6);
  margin-bottom: var(--s6);
}
.svc-panel__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--s2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  line-height: 1.45;
  padding-left: var(--s5);
  position: relative;
}
.svc-panel__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: var(--w-bold);
  font-size: 0.75rem;
  line-height: 1.45;
}
.svc-panel__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--w-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--amber);
  border: 1px solid rgba(5,150,105,0.3);
  border-radius: var(--r-pill);
  padding: var(--s3) var(--s6);
  transition: background 0.18s, border-color 0.18s, gap 0.18s;
}
.svc-panel__cta:hover {
  background: rgba(5,150,105,0.08);
  border-color: var(--amber);
  gap: var(--s3);
}
.svc-panel__cta i { font-size: 0.75rem; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
  position: relative;
}
/* Horizontal connector line behind all steps */
.process-grid::before {
  content: '';
  position: absolute;
  top: 34px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--amber) 0%, var(--amber-lt) 100%);
  z-index: 0;
}
/* 4-step variant used on location pages */
.process-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.process-grid--4::before {
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
}
.process-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--s5) var(--s8);
  position: relative;
  z-index: 1;
}
.process-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px; height: 68px;
  background: var(--white);
  border: 3px solid var(--amber);
  color: var(--amber);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: var(--w-black);
  margin-bottom: var(--s6);
  box-shadow: 0 0 0 6px var(--gray-50), 0 4px 20px rgba(5,150,105,0.2);
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.process-card:hover .process-card__num {
  background: var(--amber);
  color: var(--white);
  box-shadow: 0 0 0 6px var(--gray-50), 0 8px 28px rgba(5,150,105,0.35);
}
.process-card__icon {
  display: none; /* number badge replaces icon */
}
.process-card__body {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-top: 3px solid var(--amber);
  border-radius: var(--r-xl);
  padding: var(--s6) var(--s5);
  width: 100%;
  transition: opacity 0.2s;
}
.process-card:hover .process-card__body {
  box-shadow: 0 8px 28px rgba(5,150,105,0.1);
  border-color: rgba(5,150,105,0.3);
}
.process-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: var(--w-black);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: var(--s3);
  line-height: 1.2;
}
.process-card__desc {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.65;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
}
.review-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: var(--s7);
  transition: transform 0.2s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--s4);
}
.review-stars i { color: var(--amber); font-size: 0.9rem; }
.review-text {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--s5);
}
.review-author {
  display: flex;
  align-items: center;
  gap: var(--s3);
}
.review-avatar {
  width: 40px; height: 40px;
  background: var(--navy);
  color: var(--amber);
  border-radius: var(--r-pill);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: var(--w-black);
  font-size: 1rem;
  flex-shrink: 0;
}
.review-name {
  font-weight: var(--w-semibold);
  font-size: var(--text-sm);
  color: var(--gray-900);
}
.review-source {
  font-size: var(--text-xs);
  color: var(--gray-400);
}
.review-name a { color: inherit; }
.review-name a:hover { color: var(--navy-lt); }

/* ============================================================
   AREAS / LOCATION PILLS
   ============================================================ */
/* keep .area-pill for location pages that still use it */
.area-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: var(--text-sm);
  font-weight: var(--w-semibold);
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.5rem 1rem;
  border-radius: var(--r-pill);
  transition: color 0.15s, opacity 0.15s;
  text-decoration: none;
}
.area-pill i { color: var(--amber); font-size: 0.75rem; }
.area-pill:hover { color: var(--amber); opacity: 0.85; }

/* ============================================================
   RADAR — Areas We Serve
   ============================================================ */
.areas-radar-section { padding-block: var(--s20); }

.radar-wrap {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: var(--s10) auto 0;
  user-select: none;
}
#radar-canvas {
  display: block;
  width: 100%;
  height: auto;
}
#radar-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.radar-label {
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: all;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 99px;
  font-size: 0.67rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: rgba(255,255,255,0.85);
  background: rgba(10,20,14,0.75);
  border: 1px solid rgba(5,150,105,0.35);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s, opacity 0.15s;
}
.radar-label::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #059669;
  flex-shrink: 0;
}
.radar-label:hover { color: #34d399; }
@media (max-width: 600px) {
  .radar-wrap { max-width: 100%; }
}

/* ============================================================
   FAQ
   ============================================================ */
/* ── FAQ redesign ── */
.faq-section { overflow: hidden; }
.faq-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(var(--s10), 6vw, var(--s20));
  align-items: start;
}
.faq-sidebar {
  position: sticky;
  top: calc(72px + var(--s8));
}
.faq-sidebar .section-eyebrow { margin-bottom: var(--s4); }
.faq-sidebar .section-title { margin-bottom: var(--s5); }
.faq-sidebar__sub {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: var(--s8);
}
.faq-sidebar__cta { width: 100%; justify-content: center; }

.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-item:first-child { border-top: 1px solid var(--gray-200); }
.faq-question {
  display: flex;
  align-items: center;
  gap: var(--s4);
  padding: var(--s5) 0;
  cursor: pointer;
  user-select: none;
}
.faq-q-num {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: var(--w-black);
  letter-spacing: 0.15em;
  color: var(--amber);
  flex-shrink: 0;
  width: 24px;
  transition: color 0.2s;
}
.faq-q-text {
  flex: 1;
  font-size: var(--text-base);
  font-weight: var(--w-semibold);
  color: var(--gray-800);
  line-height: 1.45;
  transition: color 0.2s;
}
.faq-toggle {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gray-300);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-500);
  font-size: 0.75rem;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.3s;
}
.faq-item:hover .faq-q-text { color: var(--navy); }
.faq-item:hover .faq-toggle { border-color: var(--amber); color: var(--amber); }
.faq-item.open .faq-q-num { color: var(--amber-dk); }
.faq-item.open .faq-q-text { color: var(--navy); }
.faq-item.open .faq-toggle {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  padding-left: calc(24px + var(--s4));
  transition: max-height 0.38s var(--ease), padding 0.38s;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: var(--s6);
}

/* ============================================================
   STANDARDS / COMPLIANCE
   ============================================================ */
.standards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s5);
}
.standard-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--r-lg);
  padding: var(--s6) var(--s5);
  text-align: center;
  transition: background 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.standard-card:hover { background: var(--amber-pale); border-color: rgba(5,150,105,0.25); box-shadow: 0 4px 20px rgba(5,150,105,0.08); }
.standard-card__icon {
  font-size: 1.6rem;
  color: var(--amber);
  margin-bottom: var(--s4);
}
.standard-card__title {
  font-size: var(--text-sm);
  font-weight: var(--w-bold);
  color: var(--navy);
  margin-bottom: var(--s2);
  line-height: 1.3;
}
.standard-card__desc {
  font-size: var(--text-xs);
  color: var(--gray-600);
  line-height: 1.55;
}

/* ============================================================
   BRANDS
   ============================================================ */
.brands-section {
  background: var(--dark-1);
  padding-block: var(--s10);
  overflow: hidden;
}
.brands-section .section-title { color: var(--white); font-size: clamp(1.4rem, 2.5vw, 2rem); margin-bottom: 0; }
.brands-section .section-header { margin-bottom: 0; }

/* Marquee wrapper — full viewport width, fade edges */
.brands-marquee-wrap {
  position: relative;
  overflow: hidden;
  margin-top: var(--s6);
}
.brands-marquee-wrap::before,
.brands-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.brands-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--dark-1), transparent);
}
.brands-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--dark-1), transparent);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.brands-marquee {
  display: flex;
  align-items: center;
  gap: var(--s5);
  width: max-content;
  animation: marquee 28s linear infinite;
  animation-play-state: paused;
}
.brands-marquee-wrap.visible .brands-marquee { animation-play-state: running; }
.brands-marquee-wrap.visible .brands-marquee:hover { animation-play-state: paused; }

.brand-tile {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--r-md);
  padding: var(--s3) var(--s6);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  min-width: 120px;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.brand-tile:hover {
  border-color: rgba(5,150,105,0.3);
  box-shadow: 0 4px 16px rgba(5,150,105,0.1);
}
.brand-tile img {
  max-height: 36px;
  max-width: 100px;
  width: auto;
  object-fit: contain;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding-block: var(--s20);
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(5,150,105,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 0% 50%, rgba(42,82,152,0.3) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: var(--w-black);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: var(--s6);
}
.cta-title .accent-word { color: var(--amber); }
.cta-desc {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: var(--s10);
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s4);
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark-1);
  border-top: 1px solid rgba(5,150,105,0.12);
  padding-top: var(--s14);
}
.footer-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--s6);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.8fr 0.8fr;
  gap: var(--s10);
  padding-bottom: var(--s12);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo img { height: 56px; width: auto; margin-bottom: var(--s5); }
.footer-tagline {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: var(--s5);
  max-width: 280px;
}
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--w-bold);
  color: var(--amber);
  letter-spacing: 0.02em;
  transition: color 0.15s;
}
.footer-phone:hover { color: var(--amber-lt); }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--w-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--s5);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--s3); }
.footer-col ul li a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}
.footer-col ul li a:hover { color: var(--amber); }
.footer-col--areas ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s2) var(--s4);
}
.footer-bottom {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--s6);
  padding-top: var(--s5);
  padding-bottom: var(--s6);
  text-align: center;
}
.footer-bottom p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
}
.footer-legal { margin-top: var(--s2); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  translate: 0 20px;
  transition: opacity 0.55s ease, translate 0.55s ease;
}
.reveal.visible { opacity: 1; translate: 0 0; }
.reveal--d1 { transition-delay: 0.08s; }
.reveal--d2 { transition-delay: 0.16s; }
.reveal--d3 { transition-delay: 0.24s; }
.reveal--d4 { transition-delay: 0.32s; }
.reveal--d5 { transition-delay: 0.40s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .svc-explorer { grid-template-columns: 240px 1fr; }
  .standards-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; gap: var(--s8); }
  .footer-brand { grid-column: span 3; display: flex; flex-direction: row; align-items: flex-start; gap: var(--s8); flex-wrap: wrap; }
  .iq-inner { grid-template-columns: 1fr 420px; }
}

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; grid-template-rows: auto auto auto; }
  .hero__layout { grid-column: 1; grid-row: 1; }
  .hero__layout::after { display: none; }
  .hero__photo { grid-column: 1; grid-row: 2; height: 300px; }
  .hero__photo::before { display: none; }
  .hero__stats { grid-column: 1; grid-row: 3; flex-wrap: wrap; }
  .hero__stat { flex: 1 1 33%; }
  .hero__left { padding: var(--s10) var(--s6) var(--s6); }
  .iq-inner { grid-template-columns: 1fr; }
  .iq-form-wrap { position: static; }
  .iq-body { max-width: 100%; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sidebar { position: static; }
  .faq-sidebar__cta { width: auto; }
  .quote-band__inner { grid-template-columns: 1fr; gap: var(--s6); }
  .quote-band__form { grid-template-columns: 1fr 1fr; }
  .qb-field--wide { grid-column: span 2; }
  .qb-captcha input { width: 100%; }
  .qb-submit { grid-column: span 2; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid,
  .process-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before,
  .process-grid--4::before { display: none; }

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--dark-1);
    border-bottom: 1px solid rgba(5,150,105,0.15);
    max-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    transition: max-height 0.35s var(--ease);
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .main-nav.open { max-height: calc(100dvh - 72px); }
  .nav-list { flex-direction: column; align-items: stretch; padding: var(--s4); gap: 0; }
  .nav-list > li > a { padding: var(--s4); border-radius: var(--r-md); font-size: var(--text-base); }
  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: all;
    box-shadow: none;
    background: rgba(255,255,255,0.03);
    border: none;
    border-radius: 0;
    border-left: 2px solid rgba(5,150,105,0.3);
    margin-left: var(--s4);
    display: none;
  }
  .has-dropdown.open .dropdown { display: block; }
}

@media (max-width: 768px) {
  .svc-explorer { grid-template-columns: 1fr; grid-template-rows: auto 1fr; }
  .svc-tabs { flex-direction: row; flex-wrap: wrap; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .svc-tab { flex: 1 1 auto; border-bottom: none; border-left: none; border-top: 3px solid transparent; padding: var(--s3) var(--s4); }
  .svc-tab.active { border-top-color: var(--amber); border-left-color: transparent; }
  .svc-tab__num { display: none; }
  .svc-tab__arrow { display: none; }
  .svc-panel { grid-template-columns: 1fr; grid-template-rows: 240px 1fr; }
  .svc-panel__img { order: 1; }
  .svc-panel__img::after { background: linear-gradient(to bottom, transparent 40%, var(--dark-1) 100%); }
  .svc-panel__body { order: 2; justify-content: flex-start; }
  .svc-panel__list { grid-template-columns: 1fr; }
  .svc-panel__body { padding: var(--s5) var(--s5) var(--s6); }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .standards-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__left { padding: var(--s8) var(--s5) var(--s5); }
  .hero__photo { height: 260px; }
  .hero__h1-top, .hero__h1-accent { font-size: clamp(2.6rem, 10vw, 3.8rem); }
  .quote-band__form { grid-template-columns: 1fr; }
  .qb-field--wide, .qb-submit { grid-column: span 1; }
  .trust-bar__inner { gap: var(--s5); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: var(--s6); }
  .footer-brand { grid-column: span 2; flex-direction: column; }
  .footer-col--areas ul { grid-template-columns: 1fr 1fr; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { text-align: center; justify-content: center; }
}

@media (max-width: 480px) {
  .process-grid,
  .process-grid--4 { grid-template-columns: 1fr; }
  .process-card { padding-bottom: var(--s6); }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .hero__stat { flex: 1 1 50%; }
  .hero__photo { height: 220px; }
  .standards-grid { grid-template-columns: 1fr 1fr; }
  .container { padding-inline: var(--s4); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-col--areas ul { grid-template-columns: 1fr 1fr; }
  .logo img { height: 52px; }
}


/* ============================================================
   SERVICE PAGE — HERO
   ============================================================ */
.svc-hero {
  min-height: 80vh;
  position: relative;
  overflow: hidden;
  background: var(--navy-dk);
  padding-top: 72px;
  display: flex;
  flex-direction: column;
}
.svc-hero__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.svc-hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
}
.svc-hero__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(17,24,32,0.97) 0%,
    rgba(17,24,32,0.90) 30%,
    rgba(17,24,32,0.55) 60%,
    rgba(17,24,32,0.10) 80%,
    transparent 100%
  );
}
.svc-hero__photo::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 28%;
  background: linear-gradient(to top, rgba(17,24,32,0.75) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
.svc-hero__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
}
.svc-hero__content {
  max-width: 640px;
  padding: var(--s16) 0 var(--s10);
}
.svc-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: var(--w-bold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-lt);
  background: rgba(5,150,105,0.15);
  border: 1px solid rgba(52,211,153,0.35);
  border-radius: var(--r-pill);
  padding: var(--s2) var(--s4);
  width: fit-content;
  margin-bottom: var(--s6);
}
.svc-hero__dot {
  width: 6px; height: 6px;
  background: var(--amber-lt);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--amber);
  animation: pulse-dot 2s ease-in-out infinite;
}
.svc-hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: var(--w-black);
  text-transform: uppercase;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: var(--s5);
}
.svc-hero__accent { color: var(--amber-lt); }
.svc-hero__sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: var(--s6);
  max-width: 52ch;
}
.svc-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2) var(--s3);
  margin-bottom: var(--s8);
}
.svc-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: var(--text-xs);
  font-weight: var(--w-semibold);
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-pill);
  padding: var(--s1) var(--s3);
}
.svc-hero__badge i { color: var(--amber-lt); }
.svc-hero__actions {
  display: flex;
  gap: var(--s4);
  flex-wrap: wrap;
}
.svc-hero__stats {
  position: relative;
  z-index: 2;
  display: flex;
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.svc-hero__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--s5) var(--s4);
  border-right: 1px solid rgba(255,255,255,0.07);
  gap: var(--s1);
}
.svc-hero__stat:last-child { border-right: none; }
.svc-hero__stat-num {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: var(--w-black);
  color: var(--amber-lt);
  line-height: 1;
}
.svc-hero__stat-label {
  font-size: 0.7rem;
  font-weight: var(--w-medium);
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}

/* ============================================================
   SERVICE PAGE — SIGNS GRID
   ============================================================ */
.signs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s5);
}
.sign-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: var(--s7) var(--s6);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s var(--ease);
}
.sign-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.sign-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(5,150,105,0.3); }
.sign-card:hover::before { transform: scaleX(1); }
/* Dark section override — used in location pages */
.section--dark .sign-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.07);
}
.section--dark .sign-card__icon {
  background: rgba(5,150,105,0.15);
  border-color: rgba(52,211,153,0.2);
  color: var(--amber-lt);
}
.section--dark .sign-card__title { color: var(--white); }
.section--dark .sign-card__desc  { color: rgba(255,255,255,0.55); }
.section--dark .sign-card:hover  { border-color: rgba(52,211,153,0.25); box-shadow: 0 8px 24px rgba(0,0,0,0.4); }
.sign-card__icon {
  width: 48px; height: 48px;
  background: var(--amber-pale);
  border: 1.5px solid rgba(5,150,105,0.2);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--amber-dk);
  font-size: 1.2rem;
  margin-bottom: var(--s4);
}
.sign-card__title {
  font-size: var(--text-base);
  font-weight: var(--w-bold);
  color: var(--gray-900);
  margin-bottom: var(--s3);
  line-height: 1.3;
}
.sign-card__desc {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.65;
}

/* ============================================================
   SERVICE PAGE — TWO COLUMN
   ============================================================ */
.svc-two-col {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: clamp(var(--s10), 5vw, var(--s20));
  align-items: center;
}
.svc-two-col__img {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  box-shadow: 0 0 0 1px rgba(5,150,105,0.2), 0 24px 60px rgba(0,0,0,0.5);
}
.svc-two-col__img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  border: 1px solid rgba(52,211,153,0.15);
  pointer-events: none;
}
.svc-two-col__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.svc-body-text {
  font-size: var(--text-base);
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: var(--s4);
}
.svc-body-text--light { color: rgba(255,255,255,0.62); }
.svc-body-text--cta { font-style: italic; margin-bottom: var(--s6); }
.svc-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin: var(--s3) 0 var(--s5);
}
.svc-tag {
  font-size: var(--text-xs);
  font-weight: var(--w-semibold);
  color: var(--amber-lt);
  background: rgba(5,150,105,0.12);
  border: 1px solid rgba(52,211,153,0.2);
  border-radius: var(--r-pill);
  padding: var(--s1) var(--s3);
}

/* ============================================================
   SERVICE PAGE — INCLUDED GRID
   ============================================================ */
.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
}
.included-item {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--r-xl);
  padding: var(--s6) var(--s6) var(--s6);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.2s;
  position: relative;
  overflow: hidden;
}
.included-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--amber-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.included-item:hover { box-shadow: var(--shadow-md); border-color: rgba(5,150,105,0.2); transform: translateY(-3px); }
.included-item:hover::before { transform: scaleX(1); }
.included-item__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: var(--w-black);
  color: rgba(5,150,105,0.12);
  line-height: 1;
  margin-bottom: var(--s3);
  letter-spacing: -0.02em;
}
.included-item__title {
  font-size: var(--text-sm);
  font-weight: var(--w-bold);
  color: var(--navy);
  margin-bottom: var(--s2);
}
.included-item__desc {
  font-size: var(--text-xs);
  color: var(--gray-600);
  line-height: 1.65;
}
.svc-center-note {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--amber-dk);
  font-weight: var(--w-semibold);
  margin-top: var(--s10);
  padding-top: var(--s8);
  border-top: 1px solid var(--gray-200);
}
.svc-center-note::before {
  content: '→ ';
}
.section--dark .svc-center-note {
  color: var(--amber-lt);
  border-top-color: rgba(255,255,255,0.1);
}

/* ============================================================
   SERVICE PAGE — BENEFITS TABLE
   ============================================================ */
.benefits-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
  margin-block: var(--s8);
}
.benefits-table__row--head { display: none; }
.benefits-table__row {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-xl);
  padding: var(--s7) var(--s6);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  transition: background 0.2s, border-color 0.2s;
}
.benefits-table__row:hover { background: rgba(5,150,105,0.07); border-color: rgba(52,211,153,0.2); }
.benefits-table__label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: var(--w-black);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--amber-lt);
}
.benefits-table__val {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ============================================================
   SERVICE PAGE — PRICING
   ============================================================ */
.svc-pricing-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(var(--s10), 5vw, var(--s16));
  align-items: center;
}
.svc-price-card {
  background: rgba(5,150,105,0.06);
  border: 1px solid rgba(52,211,153,0.25);
  border-radius: var(--r-xl);
  padding: var(--s8);
  text-align: center;
  box-shadow: 0 0 40px rgba(5,150,105,0.1), inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.svc-price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--amber-lt));
}
.svc-price-card__label {
  font-size: var(--text-xs);
  font-weight: var(--w-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--s2);
}
.svc-price-card__price {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: var(--w-black);
  color: var(--amber-lt);
  line-height: 1;
  margin-bottom: var(--s2);
}
.svc-price-card__sub {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--s6);
}
.svc-price-card__list {
  list-style: none;
  text-align: left;
  margin-bottom: var(--s6);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.svc-price-card__list li {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  padding-left: var(--s5);
  position: relative;
}
.svc-price-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: var(--w-bold);
}

/* ============================================================
   SERVICE PAGE — RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .signs-grid { grid-template-columns: repeat(2, 1fr); }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-two-col { grid-template-columns: 1fr; }
  .svc-two-col__img { aspect-ratio: 16/7; }
  .svc-pricing-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .svc-hero__content { padding: var(--s10) 0 var(--s8); }
  .svc-hero__h1 { font-size: clamp(2rem, 9vw, 3rem); }
  .svc-hero__stats { flex-wrap: wrap; }
  .svc-hero__stat { flex: 1 1 33%; }
  .signs-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-table__row { grid-template-columns: 1fr; gap: var(--s2); }
}
@media (max-width: 480px) {
  .included-grid { grid-template-columns: 1fr; }
  .svc-hero__actions { flex-direction: column; }
  .svc-hero__actions .btn { justify-content: center; }
}

/* ============================================================
   LOCATION PAGE — HERO (no bg image)
   ============================================================ */
.loc-hero {
  background: var(--dark-1);
  padding-top: 72px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.loc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 100% 10%, rgba(52,211,153,0.09) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 0% 90%, rgba(5,150,105,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.loc-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: clamp(var(--s10), 4vw, var(--s16));
  align-items: center;
  padding-block: clamp(var(--s10), 5vw, var(--s16)) clamp(var(--s10), 5vw, var(--s16));
}
.loc-hero__content {
  display: flex;
  flex-direction: column;
}
.loc-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: var(--w-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-lt);
  background: rgba(52,211,153,0.08);
  border: 1px solid rgba(52,211,153,0.22);
  border-radius: var(--r-pill);
  padding: var(--s2) var(--s4);
  width: fit-content;
  margin-bottom: var(--s6);
}
.loc-hero__dot {
  width: 7px; height: 7px;
  background: var(--amber-lt);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--amber-lt);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
.loc-hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: var(--w-black);
  text-transform: uppercase;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: var(--s5);
  letter-spacing: 0.01em;
}
.loc-hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: var(--s7);
  max-width: 52ch;
}
.loc-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-bottom: var(--s7);
}
.loc-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: 0.78rem;
  font-weight: var(--w-medium);
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-pill);
  padding: 5px var(--s3);
}
.loc-hero__badge i { color: var(--amber-lt); font-size: 0.7rem; }
.loc-hero__actions {
  display: flex;
  gap: var(--s3);
  flex-wrap: wrap;
  margin-bottom: var(--s8);
}
/* Stats row — compact strip */
.loc-hero__stats {
  display: flex;
  gap: var(--s2);
  flex-wrap: nowrap;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: var(--s6);
}
.loc-hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: var(--s3) var(--s2);
  border-right: 1px solid rgba(255,255,255,0.07);
}
.loc-hero__stat:last-child { border-right: none; }
.loc-hero__stat-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: var(--w-black);
  color: var(--amber-lt);
  line-height: 1;
  margin-bottom: 3px;
  white-space: nowrap;
}
.loc-hero__stat-label {
  font-size: 0.6rem;
  font-weight: var(--w-medium);
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-align: center;
  white-space: nowrap;
}
/* Quote form card inside hero */
.loc-hero__form-wrap {
  position: sticky;
  top: calc(72px + var(--s6));
}
.loc-hero__form-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.09);
  border-top: 3px solid var(--amber);
  border-radius: var(--r-2xl);
  box-shadow: 0 32px 80px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.05);
}
.loc-hero__form-header {
  padding: var(--s6) var(--s7) var(--s5);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
}
.loc-hero__form-header h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: var(--w-black);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--s2);
}
.loc-hero__form-header p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.02em;
}

/* ============================================================
   LOCATION PAGE — SERVICES GRID
   ============================================================ */
.loc-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
}
.loc-svc-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: var(--s6);
  position: relative;
  overflow: hidden;
  transition: transform 0.22s var(--ease);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.loc-svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber-dk), var(--amber-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.loc-svc-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(5,150,105,0.12), var(--shadow-lg); border-color: rgba(5,150,105,0.25); }
.loc-svc-card:hover::before { transform: scaleX(1); }
.loc-svc-card__icon {
  width: 44px; height: 44px;
  background: var(--amber-pale);
  border: 1.5px solid rgba(5,150,105,0.2);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--amber-dk);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.loc-svc-card__title {
  font-size: var(--text-base);
  font-weight: var(--w-bold);
  color: var(--navy);
  line-height: 1.25;
}
.loc-svc-card__desc {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.6;
  flex: 1;
}
.loc-svc-card__link {
  font-size: var(--text-xs);
  font-weight: var(--w-semibold);
  color: var(--amber-dk);
  display: flex;
  align-items: center;
  gap: var(--s2);
  margin-top: auto;
  padding-top: var(--s2);
  border-top: 1px solid var(--gray-100);
}
.loc-svc-card__link i {
  transition: transform 0.2s var(--ease);
}
.loc-svc-card:hover .loc-svc-card__link i {
  transform: translateX(4px);
}

/* ============================================================
   LOCATION PAGE — AREAS / NEIGHBORHOODS
   ============================================================ */
.loc-areas-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s8);
  align-items: start;
}
.loc-areas__block {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: var(--s7);
  box-shadow: var(--shadow-sm);
}
.loc-areas__block h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: var(--w-black);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: var(--s5);
  padding-bottom: var(--s3);
  border-bottom: 2px solid rgba(5,150,105,0.2);
}
.loc-areas__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
}
.loc-areas__list li {
  font-size: var(--text-sm);
  color: var(--gray-600);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-pill);
  padding: var(--s1) var(--s3);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.loc-areas__list li:hover {
  background: var(--amber-pale);
  border-color: rgba(5,150,105,0.3);
  color: var(--amber-dk);
}

/* ============================================================
   LOCATION PAGE — BRANDS / TOOLS
   ============================================================ */
.loc-brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s5);
}
.loc-brand-block {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-top: 3px solid var(--amber);
  border-radius: var(--r-xl);
  padding: var(--s6);
  transition: transform 0.2s;
}
.loc-brand-block:hover {
  box-shadow: 0 8px 24px rgba(5,150,105,0.08);
  transform: translateY(-2px);
}
.loc-brand-block h3 {
  font-size: var(--text-sm);
  font-weight: var(--w-bold);
  color: var(--navy);
  margin-bottom: var(--s4);
  padding-bottom: var(--s3);
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: var(--s2);
}
.loc-brand-block h3 i { color: var(--amber-dk); }
.loc-brand-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.loc-brand-block ul li {
  font-size: var(--text-sm);
  color: var(--gray-700);
  padding-left: var(--s5);
  position: relative;
}
.loc-brand-block ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: var(--w-bold);
  font-size: 0.75rem;
}

/* ============================================================
   LOCATION PAGE — MAP EMBED
   ============================================================ */
.loc-map-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 20px 56px rgba(0,0,0,0.4);
  aspect-ratio: 16/7;
}
.loc-map-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  opacity: 0.95;
}

/* ============================================================
   LOCATION PAGE — INTRO STRIP (below hero, 3 context cards)
   ============================================================ */
.loc-intro-strip {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: var(--s12) 0;
}
.loc-intro-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
  margin-bottom: var(--s8);
}
.loc-intro-strip__card {
  display: flex;
  gap: var(--s4);
  align-items: flex-start;
}
.loc-intro-strip__icon {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(5,150,105,0.15);
  color: var(--amber-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-top: 2px;
}
.loc-intro-strip__body p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--gray-400);
  margin: 0;
}
.loc-intro-strip__body a {
  color: var(--amber-lt);
  text-decoration: none;
}
.loc-intro-strip__body a:hover { text-decoration: underline; }
.loc-intro-strip__cta {
  text-align: center;
  font-size: 0.92rem;
  color: var(--gray-400);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: var(--s6);
  margin: 0;
}
@media (max-width: 900px) {
  .loc-intro-strip__grid { grid-template-columns: 1fr; gap: var(--s5); }
}

/* ============================================================
   LOCATION PAGE — RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .loc-hero__inner { grid-template-columns: 1fr; }
  .loc-hero__form-wrap { position: static; margin-top: var(--s8); }
  .loc-hero__sub { max-width: 100%; }
  .loc-services-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-brands-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-map-wrap { aspect-ratio: 16/9; }
}
@media (max-width: 768px) {
  .loc-hero__h1 { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .loc-hero__badges { gap: var(--s2); }
  .loc-hero__badge { font-size: 0.72rem; padding: 4px var(--s3); }
  .loc-areas-wrap { grid-template-columns: 1fr; }
  .loc-services-grid { grid-template-columns: 1fr; }
  .loc-brands-grid { grid-template-columns: 1fr; }
  .loc-map-wrap { aspect-ratio: 4/3; }
}
@media (max-width: 480px) {
  .loc-hero__h1 { font-size: clamp(1.6rem, 7vw, 2rem); }
  .loc-hero__actions { flex-direction: column; }
  .loc-hero__actions .btn { justify-content: center; width: 100%; }
  .loc-hero__badge { font-size: 0.7rem; }
  .loc-areas-wrap { grid-template-columns: 1fr; }
  .loc-map-wrap { aspect-ratio: 1/1; }
}

/* ================================================================
   PAGE BANNER — used by About, Contact, Wiki, Terms, Privacy
   ================================================================ */
.page-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--dark-3) 100%);
  padding: var(--s12) 0 var(--s10);
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(5,150,105,.15) 0%, transparent 70%);
  pointer-events: none;
}
.page-banner--compact { padding: var(--s10) 0 var(--s8); }
.page-banner__inner { position: relative; max-width: 780px; }
.page-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--amber-lt);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: var(--s1) var(--s3);
  border-radius: 100px;
  margin-bottom: var(--s4);
}
.page-banner__h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--s4);
}
.page-banner__accent { color: var(--amber); }
.page-banner__sub {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: var(--s3);
  max-width: 680px;
}
.page-banner__actions {
  display: flex;
  gap: var(--s3);
  flex-wrap: wrap;
  margin-top: var(--s6);
}

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.about-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
  margin-top: var(--s8);
}
.about-svc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s3);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: var(--s6) var(--s4);
  text-decoration: none;
  color: var(--white);
  transition: background .2s, border-color .2s, transform .2s;
}
.about-svc-card:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--amber);
  transform: translateY(-3px);
}
.about-svc-card__icon { font-size: 1.8rem; color: var(--amber); }
.about-svc-card__name { font-weight: 700; text-align: center; font-size: .95rem; }

.about-why-wrap {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--s10);
  align-items: start;
  margin-top: var(--s8);
}
.about-why-list {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.about-why-item {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: 1.05rem;
  color: var(--gray-600);
  padding: var(--s3) var(--s4);
  background: var(--gray-50);
  border-radius: 8px;
  border-left: 3px solid var(--amber);
}
.about-why-item i { color: var(--amber); flex-shrink: 0; }

.about-contact-card {
  background: var(--navy);
  border-radius: 16px;
  padding: var(--s6);
  color: var(--white);
  position: sticky;
  top: 100px;
}
.about-contact-card__eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--s3);
}
.about-contact-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--s5);
  color: var(--white);
}
.about-contact-card__row {
  display: flex;
  align-items: center;
  gap: var(--s3);
  margin-bottom: var(--s4);
  font-size: .95rem;
  color: rgba(255,255,255,.8);
}
.about-contact-card__row i { color: var(--amber); width: 16px; text-align: center; flex-shrink: 0; }
.about-contact-card__row a { color: var(--amber-lt); text-decoration: none; }
.about-contact-card__row a:hover { text-decoration: underline; }

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--s10);
  align-items: start;
}
.contact-card {
  background: var(--navy);
  border-radius: 16px;
  padding: var(--s6);
  color: var(--white);
  margin-bottom: var(--s8);
}
.contact-card__eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--s3);
}
.contact-card__biz {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--s5);
}
.contact-card__row {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  margin-bottom: var(--s4);
}
.contact-card__row > i { color: var(--amber); margin-top: 3px; width: 16px; text-align: center; flex-shrink: 0; }
.contact-card__label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.5); margin-bottom: 2px; }
.contact-card__value { font-size: .95rem; color: rgba(255,255,255,.9); }
.contact-card__value a { color: var(--amber-lt); text-decoration: none; }
.contact-card__value a:hover { text-decoration: underline; }
.contact-card__btn { margin-top: var(--s5); width: 100%; justify-content: center; }

.contact-info__section { margin-bottom: var(--s8); }
.contact-info__heading {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--s3);
  display: flex;
  align-items: center;
  gap: var(--s2);
}
.contact-info__heading i { color: var(--amber); }
.contact-info__intro { color: var(--gray-600); margin-bottom: var(--s3); }
.contact-info__note {
  margin-top: var(--s4);
  font-size: .9rem;
  color: var(--gray-400);
  font-style: italic;
  border-left: 3px solid var(--amber-lt);
  padding-left: var(--s3);
}
.contact-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.contact-checklist li {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: var(--s2) var(--s3);
  background: var(--gray-50);
  border-radius: 8px;
  font-size: .95rem;
  color: var(--gray-600);
}
.contact-checklist li i { color: var(--amber); flex-shrink: 0; }

.contact-form-wrap { position: sticky; top: 100px; }
.contact-map { margin-top: var(--s5); border-radius: 8px; overflow: hidden; }

/* ================================================================
   LEGAL PAGES — Terms & Privacy
   ================================================================ */
.legal-section { background: var(--white); }
.legal-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--s10);
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: 100px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: var(--s5);
}
.legal-toc__label {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: var(--s3);
}
.legal-toc ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.legal-toc li a {
  display: block;
  font-size: .8rem;
  color: var(--gray-600);
  text-decoration: none;
  padding: var(--s1) var(--s2);
  border-radius: 5px;
  transition: background .15s, color .15s;
  line-height: 1.4;
}
.legal-toc li a:hover,
.legal-toc li a.active {
  background: var(--amber-pale);
  color: var(--amber);
  font-weight: 600;
}
.legal-body { min-width: 0; }
.legal-section-block {
  margin-bottom: var(--s10);
  padding-bottom: var(--s8);
  border-bottom: 1px solid var(--gray-200);
}
.legal-section-block:last-child { border-bottom: none; margin-bottom: 0; }
.legal-section-block h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--s4);
  scroll-margin-top: 100px;
}
.legal-section-block p {
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: var(--s3);
}
.legal-section-block p:last-child { margin-bottom: 0; }
.legal-section-block a { color: var(--amber); }
.legal-section-block a:hover { text-decoration: underline; }
.legal-list {
  list-style: none;
  padding: 0;
  margin: var(--s3) 0 var(--s3) var(--s4);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.legal-list li {
  position: relative;
  padding-left: var(--s4);
  color: var(--gray-600);
  line-height: 1.6;
}
.legal-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 700;
}
.legal-contact-block {
  background: var(--amber-pale);
  border: 1px solid var(--amber-lt);
  border-radius: 10px;
  padding: var(--s5);
  margin-top: var(--s4);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  font-size: .95rem;
  color: var(--gray-600);
}
.legal-contact-block__name { font-weight: 700; color: var(--navy); font-size: 1rem; }
.legal-contact-block i { color: var(--amber); margin-right: var(--s2); }
.legal-contact-block a { color: var(--amber); text-decoration: none; }
.legal-contact-block a:hover { text-decoration: underline; }

/* ================================================================
   WIKI PAGE
   ================================================================ */
.wiki-section { background: var(--white); }
.wiki-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--s10);
  align-items: start;
}
.wiki-toc {
  position: sticky;
  top: 100px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: var(--s5);
  max-height: calc(100vh - 130px);
  overflow-y: auto;
}
.wiki-toc__label {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: var(--s3);
  display: flex;
  align-items: center;
  gap: var(--s2);
}
.wiki-toc ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.wiki-toc li a {
  display: block;
  font-size: .78rem;
  color: var(--gray-600);
  text-decoration: none;
  padding: var(--s1) var(--s2);
  border-radius: 5px;
  transition: background .15s, color .15s;
  line-height: 1.4;
}
.wiki-toc li a:hover,
.wiki-toc li a.active {
  background: var(--amber-pale);
  color: var(--amber);
  font-weight: 600;
}
.wiki-toc__cta {
  margin-top: var(--s5);
  padding-top: var(--s4);
  border-top: 1px solid var(--gray-200);
  text-align: center;
}
.wiki-toc__cta p { font-size: .8rem; color: var(--gray-400); margin-bottom: var(--s3); }
.btn--sm { padding: var(--s2) var(--s4); font-size: .82rem; }

.wiki-body { min-width: 0; }
.wiki-block {
  margin-bottom: var(--s12);
  scroll-margin-top: 100px;
}
.wiki-block h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--s4);
  padding-bottom: var(--s3);
  border-bottom: 2px solid var(--amber-pale);
}
.wiki-block p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: var(--s3);
}
.wiki-block p:last-child { margin-bottom: 0; }

/* Wiki cards (glass types) */
.wiki-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s4);
  margin-top: var(--s4);
}
.wiki-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: var(--s5);
}
.wiki-card__title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: var(--s2);
  display: flex;
  align-items: center;
  gap: var(--s2);
}
.wiki-card__title i { color: var(--amber); }
.wiki-card p { font-size: .9rem; color: var(--gray-600); line-height: 1.6; margin: 0; }

/* Wiki tag cloud */
.wiki-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin: var(--s4) 0;
}
.wiki-tag {
  background: var(--amber-pale);
  color: var(--amber);
  border: 1px solid var(--amber-lt);
  font-size: .8rem;
  font-weight: 600;
  padding: var(--s1) var(--s3);
  border-radius: 100px;
}

/* Wiki list */
.wiki-list {
  list-style: none;
  padding: 0;
  margin: var(--s3) 0;
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.wiki-list li {
  padding: var(--s2) var(--s3);
  background: var(--gray-50);
  border-left: 3px solid var(--amber);
  border-radius: 0 6px 6px 0;
  color: var(--gray-600);
  font-size: .95rem;
}

/* Wiki brand list */
.wiki-brand-list { display: flex; flex-direction: column; gap: var(--s4); margin-top: var(--s4); }
.wiki-brand-item {
  background: var(--gray-50);
  border-radius: 10px;
  padding: var(--s4) var(--s5);
  border-left: 4px solid var(--amber);
}
.wiki-brand-item__name {
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: var(--s2);
}
.wiki-brand-item p { font-size: .9rem; color: var(--gray-600); line-height: 1.6; margin: 0; }

/* Wiki process steps */
.wiki-process { display: flex; flex-direction: column; gap: var(--s3); margin-top: var(--s4); }
.wiki-process-step {
  display: flex;
  gap: var(--s4);
  align-items: flex-start;
  padding: var(--s4);
  background: var(--gray-50);
  border-radius: 10px;
}
.wiki-process-step__num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--amber);
  color: var(--white);
  font-weight: 800;
  font-size: .85rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wiki-process-step__title { font-weight: 700; color: var(--navy); margin-bottom: var(--s1); }
.wiki-process-step p { font-size: .9rem; color: var(--gray-600); line-height: 1.6; margin: 0; }

/* Wiki tools grid */
.wiki-tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s3);
  margin: var(--s4) 0;
}
.wiki-tool-item {
  display: flex;
  align-items: center;
  gap: var(--s2);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: var(--s3);
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-600);
}
.wiki-tool-item i { color: var(--amber); flex-shrink: 0; }

/* Wiki windshield layers */
.wiki-layers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
  margin: var(--s4) 0;
}
.wiki-layer {
  background: var(--amber-pale);
  border: 1px solid var(--amber-lt);
  border-radius: 10px;
  padding: var(--s4);
  text-align: center;
}
.wiki-layer__label {
  font-weight: 800;
  font-size: .9rem;
  color: var(--amber);
  margin-bottom: var(--s2);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.wiki-layer p { font-size: .85rem; color: var(--gray-600); line-height: 1.5; margin: 0; }

/* Wiki models grid */
.wiki-models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s3);
  margin: var(--s4) 0;
}
.wiki-model-group {
  background: var(--gray-50);
  border-left: 3px solid var(--amber);
  border-radius: 0 8px 8px 0;
  padding: var(--s3) var(--s4);
  font-size: .88rem;
  font-weight: 600;
  color: var(--gray-600);
}

/* Wiki service CTA (inside article) */
.wiki-service-cta {
  display: flex;
  gap: var(--s6);
  align-items: center;
  justify-content: space-between;
  background: var(--navy);
  border-radius: 16px;
  padding: var(--s7) var(--s8);
  margin-top: var(--s12);
}
.wiki-service-cta__text h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--s2);
}
.wiki-service-cta__text p { color: rgba(255,255,255,.75); font-size: .95rem; margin: 0; }
.wiki-service-cta__actions { display: flex; gap: var(--s3); flex-shrink: 0; flex-wrap: wrap; }

/* ================================================================
   RESPONSIVE — new pages
   ================================================================ */
@media (max-width: 900px) {
  .about-svc-grid { grid-template-columns: repeat(2, 1fr); }
  .about-why-wrap { grid-template-columns: 1fr; }
  .about-contact-card { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form-wrap { position: static; }
  .legal-layout,
  .wiki-layout { grid-template-columns: 1fr; }
  .legal-toc,
  .wiki-toc { position: static; max-height: none; }
  .wiki-toc ul { flex-direction: row; flex-wrap: wrap; gap: var(--s2); }
  .wiki-toc li a { font-size: .75rem; }
  .wiki-cards { grid-template-columns: 1fr; }
  .wiki-tools-grid { grid-template-columns: repeat(2, 1fr); }
  .wiki-layers { grid-template-columns: 1fr; }
  .wiki-models-grid { grid-template-columns: repeat(2, 1fr); }
  .wiki-service-cta { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .about-svc-grid { grid-template-columns: repeat(2, 1fr); }
  .page-banner__actions { flex-direction: column; }
  .page-banner__actions .btn { justify-content: center; }
  .wiki-tools-grid { grid-template-columns: repeat(2, 1fr); }
  .wiki-models-grid { grid-template-columns: 1fr; }
  .wiki-service-cta__actions { width: 100%; flex-direction: column; }
  .wiki-service-cta__actions .btn { justify-content: center; }
}
@media (max-width: 480px) {
  .about-svc-grid { grid-template-columns: 1fr 1fr; }
  .wiki-tools-grid { grid-template-columns: 1fr 1fr; }
}

/* ================================================================
   AREAS LINKS — homepage service areas grid
   ================================================================ */
.areas-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
  justify-content: center;
  margin-top: var(--s8);
}
.areas-links a {
  display: inline-block;
  padding: var(--s2) var(--s5);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 100px;
  color: rgba(255,255,255,.9);
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s;
}
.areas-links a:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--white);
}
