/* Supra Heating & Air — consolidated site styles.
   Inline <style> and style="" attributes were extracted here so CSP can drop 'unsafe-inline'. */

/* ── TOKENS ── */
:root {
  color-scheme: light;

  --navy: #1a4a62;
  --navy-mid: #1f5570;
  --navy-light: #235f7d;
  --navy-deep: #0d1b2a;
  --teal: #1a4a62;
  --teal-mid: #1f5570;
  --teal-light: #235f7d;
  --orange: #d4673c;
  --orange-light: #e07a50;
  --orange-hover: #b85530;
  --orange-text: #a8542f;
  /* Lighter orange for accents on permanently-dark navy surfaces (WCAG AA). */
  --orange-on-dark: #eea877;
  --grey: #a8cad8;
  --light-bg: #eef4f8;
  --surface: #ffffff;
  --surface-2: #f7fafe;
  --grid-line: #dde4ed;
  --border: rgba(255,255,255,0.12);
  --text: #1a3040;
  --text-muted: #4a6070;
  /* Heading text — theme-aware (re-themed in dark mode); kept distinct from
     the --navy/--teal section-background colours, which stay fixed. */
  --heading: #1a4a62;
  --ink: #0d1b2a;
  --ink-soft: #4a5d6b;
  /* --ink-light: fixed near-white for text/icons on permanently-dark
     surfaces (nav, hero, footers, on-orange) — never re-themed. */
  --ink-light: #f7f9fc;
  --bg: #f7f9fc;
  --card-border: #d5e3ec;

  /* Spacing — 4-point scale */
  --space-1: 4px;  --space-2: 8px;  --space-3: 12px; --space-4: 16px; --space-5: 20px;
  --space-6: 24px; --space-7: 32px; --space-8: 48px; --space-9: 64px; --space-10: 96px;

  /* Radius */
  --r-sm: 4px; --r-md: 8px; --r-lg: 12px; --r-pill: 999px;

  /* Elevation */
  --shadow-sm: 0 1px 3px rgba(13, 27, 42, 0.08);
  --shadow-md: 0 4px 16px rgba(13, 27, 42, 0.10);
  --shadow-lg: 0 12px 32px rgba(13, 27, 42, 0.14);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Semantic state colours */
  --success: #1b7a43;
  --danger:  #c0392b;
  --warning: #9a6212;
  --info:    #1f5570;
}

/* ── DARK THEME ──
   Light is the default. Dark re-themes only the theme-aware tokens
   (surfaces, content text, headings, accent-as-text). The permanently
   dark sections — navy hero, why-section, page-hero, nav, footers —
   keep their own fixed colours, so they need no overrides here.
   data-theme is set pre-paint by theme-init.js / the nav toggle; the
   media query honours the OS preference until the user chooses. */
:root[data-theme="dark"] {
  color-scheme: dark;
  --light-bg:    #111f2c;
  --surface:     #152532;
  --surface-2:   #1d2f3d;
  --grid-line:   #243441;
  --text:        #e4e9ee;
  --text-muted:  #9fb1be;
  --heading:     #eaf0f4;
  --ink:         #e4e9ee;
  --ink-soft:    #9fb1be;
  --bg:          #0e1a26;
  --card-border: #273a48;
  --orange-text: #e8946f;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --light-bg:    #111f2c;
    --surface:     #152532;
    --surface-2:   #1d2f3d;
    --grid-line:   #243441;
    --text:        #e4e9ee;
    --text-muted:  #9fb1be;
    --heading:     #eaf0f4;
    --ink:         #e4e9ee;
    --ink-soft:    #9fb1be;
    --bg:          #0e1a26;
    --card-border: #273a48;
    --orange-text: #e8946f;
  }
}

/* ── THEME TOGGLE (in primary nav) ── */
.nav-theme-li { display: flex; align-items: center; }
.theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; padding: 0;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--grey);
  cursor: pointer;
  transition: color .2s, border-color .2s, background .2s;
}
.theme-toggle:hover {
  color: var(--ink-light);
  border-color: rgba(255,255,255,0.32);
  background: rgba(255,255,255,0.06);
}
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-sun  { display: none; }
.theme-toggle .icon-moon { display: block; }
:root[data-theme="dark"] .theme-toggle .icon-sun  { display: block; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle .icon-sun  { display: block; }
  :root:not([data-theme="light"]) .theme-toggle .icon-moon { display: none; }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; }

/* Keyboard focus — a visible ring on every interactive element. The site
   previously had no :focus-visible, so keyboard users got no indicator. */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

/* Honour reduced-motion — disable smooth scroll, transitions and animations. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.skip-link { position: absolute; left: -10000px; top: 0; }
.skip-link:focus {
  left: 1rem; top: 1rem;
  background: #0d1b2a; color: #f7f9fc;
  padding: .75rem 1rem; border-radius: 4px;
  z-index: 100; text-decoration: none;
}

.is-hidden { display: none !important; }

/* ── NAV (primary) ── */
nav[aria-label="Main navigation"] {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem; font-weight: 800;
  color: var(--ink-light);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-logo img { height: 44px; width: auto; display: block; }
.nav-logo .fallback { display: none; }
.nav-logo .fallback em { color: var(--orange); font-style: normal; }
.nav-logo span em { color: var(--orange); font-style: normal; }

.nav-links { display: flex; list-style: none; gap: 2rem; align-items: center; }
.nav-links a {
  color: var(--grey); text-decoration: none;
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink-light); }
.nav-cta {
  background: var(--orange); color: var(--ink-light) !important;
  padding: 0.5rem 1.2rem; border-radius: 4px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--orange-light) !important; color: var(--ink-light) !important; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: transparent; border: 0; cursor: pointer;
  padding: 8px; width: 44px; height: 44px;
  align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: #f7f9fc; position: relative;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: ''; position: absolute; left: 0;
  width: 22px; height: 2px; background: #f7f9fc;
  transition: transform 0.25s ease;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top:  7px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.is-open span::after  { top: 0; transform: rotate(-45deg); }

/* ── HERO (home) ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 5% 60px;
  gap: 3rem;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 50%, rgba(212,103,60,0.15) 0%, transparent 65%),
    radial-gradient(ellipse 40% 80% at 20% 80%, rgba(20,60,85,0.7) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }
.hero-right {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; gap: 1rem;
}

/* Logo + Serving badge — centred above the left-aligned hero text. */
.hero-logo-wrap {
  position: relative;
  display: block;
  width: fit-content;
  margin: 0 0 1.4rem;
  /* Make the stacking context isolate so the blur sits behind the logo only. */
  isolation: isolate;
}
.hero-logo-wrap::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 60px; height: 60px;       /* ~67% of the 90px logo height */
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(212,103,60,0.55), rgba(212,103,60,0));
  filter: blur(14px);
  opacity: 0.7;                    /* faint */
  pointer-events: none;
  z-index: -1;                     /* behind the <img> */
}
.hero-content > .hero-badge {
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin-left: 0;
  margin-right: auto;
  flex-wrap: wrap;
}

/* Hero logo image — sized + dropshadow */
.hero-logo-img {
  height: 90px; width: auto;
  display: block;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.35));
  position: relative; /* establish own paint to sit above the ::before blur */
  z-index: 0;
}

.hero-quick-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 1.4rem 1.6rem;
  display: flex; align-items: center; gap: 1.2rem;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}
.hero-quick-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(212,103,60,0.5);
}
.hero-quick-card.is-emergency {
  background: rgba(212,103,60,0.15);
  border-color: rgba(212,103,60,0.4);
}
.hero-quick-icon {
  width: 46px; height: 46px;
  background: rgba(212,103,60,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-quick-icon.is-emergency { background: rgba(212,103,60,0.3); }
.hero-quick-icon svg { width: 22px; height: 22px; color: var(--orange); }
.hero-quick-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.03em;
  color: var(--ink-light); margin-bottom: 0.2rem;
}
.hero-quick-desc { font-size: 0.82rem; color: var(--grey); }
.hero-quick-arrow {
  margin-left: auto; color: var(--orange);
  font-size: 1.2rem; flex-shrink: 0;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(232, 98, 26, 0.15);
  border: 1px solid rgba(232, 98, 26, 0.4);
  color: var(--orange-light);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800; color: var(--ink-light);
  line-height: 1.0; text-transform: uppercase;
  letter-spacing: 0.01em; margin-bottom: 1.2rem;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero h1 em { font-style: normal; color: var(--orange); }
.hero-sub {
  font-size: 1.1rem; color: var(--grey);
  max-width: 500px; margin-bottom: 2.2rem;
  font-weight: 400;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--orange); color: var(--ink-light);
  font-size: 0.95rem; font-weight: 700; text-decoration: none;
  padding: 0.9rem 1.8rem; border-radius: 4px;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
  border: none; cursor: pointer; font-family: inherit;
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); }
.btn-primary.is-self-start { align-self: flex-start; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 2px solid rgba(255,255,255,0.25);
  color: var(--ink-light);
  font-size: 0.95rem; font-weight: 600; text-decoration: none;
  padding: 0.9rem 1.8rem; border-radius: 4px;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--ink-light); background: rgba(255,255,255,0.07); }

/* On the interior pages the outline button is teal-on-light, inverts on hover. */
body.is-page .btn-outline {
  border-color: var(--heading); color: var(--heading);
}
body.is-page .btn-outline:hover { background: var(--teal); color: var(--ink-light); }

.hero-stats {
  display: flex; gap: 2.5rem;
  margin-top: 3.5rem; padding-top: 2rem;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.6s 0.4s ease both;
}
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem; font-weight: 800;
  color: var(--orange); line-height: 1;
}
.stat-label {
  font-size: 0.78rem; color: var(--grey);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-top: 0.2rem;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  padding: 130px 5% 70px;
  background: var(--teal);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.page-hero-label {
  font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange-light); margin-bottom: .6rem;
}
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800; text-transform: uppercase;
  color: var(--ink-light); line-height: 1.05;
  position: relative; z-index: 2;
}
.page-hero h1 em { font-style: normal; color: var(--orange); }
.page-hero p {
  color: var(--grey); font-size: 1.05rem;
  max-width: 580px; margin-top: 1rem;
  position: relative; z-index: 2;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--orange-hover);
  padding: 1rem 5%;
  display: flex; justify-content: center; align-items: center;
  gap: 3rem; flex-wrap: wrap;
}
body.is-page .trust-bar {
  background: var(--teal-light);
  padding: .9rem 5%;
  gap: 3rem;
  border-bottom: 1px solid var(--border);
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--ink-light);
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.03em; text-transform: uppercase;
}
.trust-item svg { width: 18px; height: 18px; flex-shrink: 0; }
body.is-page .trust-item svg { color: var(--orange-light); }
body.is-page .trust-item { font-size: .82rem; letter-spacing: .04em; }

/* ── SECTIONS ── */
.section { padding: 90px 5%; }
body.is-page .section { padding: 80px 5%; }

.section-label {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange-text); margin-bottom: 0.6rem;
}
.why-section .section-label { color: var(--orange-on-dark); }
.bg-teal .section-label { color: var(--orange-on-dark); }

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.02em; color: var(--heading);
  line-height: 1.1; margin-bottom: 1rem;
}
body.is-page .section-title { color: var(--heading); }
.section-title.mb-15 { margin-bottom: 1.5rem; }

.section-desc {
  color: var(--text-muted); font-size: 1rem;
  max-width: 550px; margin-bottom: 3rem;
}
body.is-page .section-desc { color: var(--text-muted); max-width: 600px; margin-bottom: 2.5rem; }

.bg-light { background: var(--light-bg); }
.bg-teal { background: var(--teal); }
.bg-teal .section-title { color: var(--ink-light); }
.bg-teal .section-desc { color: var(--grey); }

/* ── SERVICES GRID (home) ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5px;
  background: var(--grid-line);
  border: 1.5px solid var(--grid-line);
  border-radius: 12px;
  overflow: hidden;
}
.service-card {
  background: var(--surface);
  padding: 2.5rem;
  position: relative;
  transition: background 0.25s;
}
.service-card:hover { background: var(--surface-2); }
.service-icon {
  width: 52px; height: 52px;
  background: rgba(232, 98, 26, 0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.3rem;
}
.service-icon svg { width: 26px; height: 26px; color: var(--orange); }
.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.45rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.03em;
  color: var(--heading); margin-bottom: 0.7rem;
}
.service-card p {
  font-size: 0.92rem; color: var(--text-muted);
  line-height: 1.65; margin-bottom: 1.2rem;
}
.service-link {
  font-size: 0.83rem; font-weight: 700;
  color: var(--orange-text); text-decoration: none;
  letter-spacing: 0.05em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.service-link:hover, .service-link:focus { color: var(--orange); }
.service-link::after { content: '→'; transition: transform 0.2s; }
.service-link:hover::after { transform: translateX(4px); }

/* ── WHY SECTION ── */
.why-section { background: var(--navy); color: var(--ink-light); }
.why-section .section-title { color: var(--ink-light); }
.why-section .section-desc { color: var(--grey); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.why-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  background: var(--navy-deep);
  transition: border-color 0.2s, transform 0.2s;
}
.why-card:hover {
  border-color: rgba(232, 98, 26, 0.5);
  transform: translateY(-4px);
}
.why-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem; font-weight: 800;
  color: #e8923c; line-height: 1;
  margin-bottom: 0.8rem;
}
.why-card h3, .why-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--ink-light); margin-bottom: 0.6rem;
}
.why-card p { font-size: 0.9rem; color: var(--grey); line-height: 1.65; }

/* ── SERVICE AREAS ── */
.areas-section { background: var(--light-bg); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.area-card {
  background: var(--surface);
  border: 1.5px solid var(--grid-line);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.area-card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(232,98,26,0.1);
}
.area-card svg {
  width: 28px; height: 28px;
  color: var(--orange); margin-bottom: 0.6rem;
}
.area-card h3, .area-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem; font-weight: 700;
  text-transform: uppercase; color: var(--heading);
  margin-bottom: 0.3rem;
}
.area-card p { font-size: 0.83rem; color: var(--text-muted); }

/* ── CARDS (interior pages) ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--surface);
  border: 1.5px solid var(--card-border);
  border-radius: 10px;
  padding: 2rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.card:hover {
  border-color: var(--orange);
  box-shadow: 0 6px 24px rgba(212,103,60,.12);
}
.card-icon {
  width: 50px; height: 50px;
  background: rgba(212,103,60,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.card-icon svg { width: 24px; height: 24px; color: var(--orange); }
.card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.03em;
  color: var(--heading); margin-bottom: 0.6rem;
}
.card p {
  font-size: 0.92rem; color: var(--text-muted);
  line-height: 1.65;
}
.card .card-link {
  color: var(--orange-text); text-decoration: none;
  font-size: .83rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
}

/* ── CTA BAND ── */
.cta-section {
  background: var(--orange);
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
body.is-page .cta-section { padding: 70px 5%; }
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 70% at 80% 50%, rgba(0,0,0,0.1) 0%, transparent 60%);
}
.cta-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800; text-transform: uppercase;
  color: var(--ink-light); margin-bottom: 0.8rem;
  position: relative;
}
body.is-page .cta-section h2 { font-size: clamp(2rem, 5vw, 3.2rem); }
.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem; margin-bottom: 2rem;
  position: relative;
}
.btn-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--ink-light); color: var(--orange);
  font-size: 1rem; font-weight: 800; text-decoration: none;
  padding: 1rem 2rem; border-radius: 4px;
  letter-spacing: 0.02em; position: relative;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ── TWO-COL ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.two-col.is-start { align-items: start; }

/* ── PROCESS STEPS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem; counter-reset: step;
}
.step { text-align: center; }
.step-num {
  width: 56px; height: 56px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem; font-weight: 800;
  color: var(--ink-light);
}
.step h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem; font-weight: 700;
  text-transform: uppercase; color: var(--heading);
  margin-bottom: 0.4rem;
}
.step p { font-size: 0.88rem; color: var(--text-muted); }

/* ── FAQ ── */
.faq-list { max-width: 780px; }
.faq-item {
  border-bottom: 1px solid var(--card-border);
  padding: 1.4rem 0;
}
.faq-item h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--heading); margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.faq-item p { font-size: 0.93rem; color: var(--text-muted); }

/* ── ABOUT — VALUES PANEL ── */
.values-panel {
  background: var(--light-bg);
  border-radius: 12px;
  padding: 2.5rem;
  border: 1.5px solid var(--card-border);
}
.values-panel-label { margin-bottom: 1.5rem; }
.values-list {
  display: flex; flex-direction: column; gap: 1.5rem;
}
.value-row {
  display: flex; gap: 1rem; align-items: flex-start;
}
.value-icon {
  width: 36px; height: 36px;
  background: var(--orange);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.value-icon svg { color: white; }
.value-title {
  color: var(--heading);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  font-weight: 700;
}
.value-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}
.value-text.is-loose {
  color: var(--text-muted);
  font-size: .95rem; line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ── STAT CARDS (about) ── */
.stat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem; margin-top: 2rem;
}
.stat-card {
  text-align: center; padding: 2rem;
  background: var(--surface);
  border-radius: 10px;
  border: 1.5px solid var(--card-border);
}
.stat-card-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem; font-weight: 800;
  color: var(--orange); line-height: 1;
}
.stat-card-label {
  font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--heading); margin-top: 0.4rem;
}

/* ── WARNING/ALERT GRID (furnace, air-conditioning) ── */
.warning-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.warning-card {
  display: flex; gap: 0.8rem; align-items: flex-start;
  padding: 1.2rem;
  background: var(--surface);
  border-radius: 8px;
  border: 1.5px solid var(--card-border);
}
.warning-card .symbol {
  color: var(--orange);
  font-size: 1.2rem;
  line-height: 1.3;
}
.warning-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ── EMERGENCY SITUATIONS LIST (services) ── */
.emergency-panel {
  background: var(--light-bg);
  border-radius: 10px;
  padding: 2rem;
  border: 1.5px solid var(--card-border);
}
.emergency-panel h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--heading);
  margin-bottom: 1.2rem;
}
.emergency-list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 0.8rem;
}
.emergency-list li {
  display: flex; gap: 0.6rem; align-items: flex-start;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.emergency-list .check {
  color: var(--orange);
  font-weight: 900;
  flex-shrink: 0;
}

/* ── SERVICES AREA-CARDS (compact variant) ── */
.area-cards-compact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.area-cards-compact .area-card-compact {
  background: var(--surface);
  border: 1.5px solid var(--card-border);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}
.area-cards-compact h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem; font-weight: 700;
  text-transform: uppercase; color: var(--heading);
}
.area-cards-compact p {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* ── CONTACT FORM ── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-group {
  display: flex; flex-direction: column;
  gap: 0.4rem;
}
.form-group.full { grid-column: 1 / -1; }

/* Turnstile captcha — sits between the field grid and the submit button. */
.form-captcha { margin: 1.4rem 0; }
label {
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--heading);
}
input, select, textarea {
  width: 100%; padding: 0.85rem 1rem;
  border: 1.5px solid var(--card-border);
  border-radius: 6px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.95rem; color: var(--text);
  background: var(--surface);
  transition: border-color 0.2s;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--orange);
}
textarea { resize: vertical; min-height: 140px; }

/* honeypot — visually hidden but tabbable for screen readers (still ignored by bots) */
.honeypot {
  position: absolute;
  left: -9999px;
}

.form-banner {
  padding: 1rem 1.2rem;
  border-radius: 8px;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}
.form-banner.is-success {
  background: #e6f4e6;
  border: 1.5px solid #5fb85f;
  color: #1b5e1b;
}
.form-banner.is-success a { color: #1b5e1b; font-weight: 700; }
.form-banner.is-error {
  background: #fdecec;
  border: 1.5px solid #d4673c;
  color: #8b3a1a;
}
.form-banner.is-error a { color: #8b3a1a; font-weight: 700; }

.contact-grid { gap: 4rem; align-items: start; }
.contact-info {
  display: flex; flex-direction: column; gap: 1.5rem;
}
.contact-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem; font-weight: 700;
  text-transform: uppercase;
  color: var(--heading);
  margin-bottom: 0.5rem;
}
.contact-info-stack {
  display: flex; flex-direction: column; gap: 1.2rem;
}
.contact-card {
  display: flex; gap: 1rem; align-items: center;
  padding: 1.4rem;
  background: var(--light-bg);
  border-radius: 10px;
  border: 1.5px solid var(--card-border);
  text-decoration: none;
  transition: border-color 0.2s ease;
}
.contact-card:hover, .contact-card:focus-visible { border-color: var(--orange); }
.contact-card.is-static {
  cursor: default;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}
.contact-card.is-static:hover { border-color: var(--card-border); }
.contact-card .icon-square {
  width: 44px; height: 44px;
  background: var(--orange);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card .icon-square.is-facebook  { background: #1877f2; }
.contact-card .icon-square.is-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.contact-card .icon-square.is-tiktok  { background: #000000; }
.contact-card .icon-square.is-youtube { background: #ff0000; }
.contact-card .icon-square svg { color: white; }
.contact-card .info-label {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.contact-card .info-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--heading);
}
.contact-card .info-value.is-small { font-size: 1.1rem; }
.contact-card .hours-line {
  font-size: 0.92rem; color: var(--text);
  line-height: 1.7;
}
.contact-card .hours-line .emphasis {
  color: var(--orange); font-weight: 700;
}
.contact-card .hours-line .footnote {
  font-size: 0.8rem; color: var(--text-muted);
}
.contact-card .info-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* ── FOOTER ── */
footer {
  background: #080f17;
  color: var(--grey);
  padding: 60px 5% 30px;
}
body.is-page footer { background: #0e2d3f; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem; font-weight: 800;
  text-transform: uppercase; color: var(--ink-light);
  margin-bottom: 0.8rem;
}
.footer-brand h3 span { color: var(--orange); }
.footer-brand p {
  font-size: 0.88rem; line-height: 1.65;
  max-width: 320px;
}
body.is-page .footer-brand p { margin-top: 0.8rem; }
.footer-tagline {
  margin-top: 0.6rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--orange);
}

.footer-col h4 {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-light); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  color: var(--grey); text-decoration: none;
  font-size: 0.88rem; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--orange); }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 0.5rem;
  margin-bottom: 0.7rem;
  font-size: 0.88rem;
}
.footer-contact-item svg {
  width: 15px; height: 15px; flex-shrink: 0;
  margin-top: 3px; color: var(--orange);
}
.footer-contact-item a { color: var(--grey); text-decoration: none; }
.footer-contact-item a:hover { color: var(--orange); }

.footer-social {
  margin-top: 0.8rem;
  display: flex; flex-direction: column;
  gap: 0.35rem;
}
.footer-social.is-inline {
  margin-top: 0.5rem;
  align-items: flex-start;
  gap: 0.3rem;
}
.footer-social-label {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  opacity: 0.7;
  margin-bottom: 0.15rem;
}
.footer-social a {
  color: var(--orange);
  text-decoration: none;
  font-size: 0.85rem; font-weight: 700;
}

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.8rem;
}
.footer-bottom a { color: var(--grey); text-decoration: none; }
.footer-bottom a:hover { color: var(--orange); }
.footer-bottom .attribution {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  opacity: 0.85;
}

/* ── 404 PAGE ── */
body.is-error { display: flex; flex-direction: column; min-height: 100vh; }
body.is-error main {
  flex: 1;
  display: grid; place-items: center;
  padding: 4rem 5%;
  background:
    radial-gradient(circle at 20% 20%, rgba(212, 103, 60, 0.08), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(26, 74, 98, 0.10), transparent 50%),
    var(--bg);
}
body.is-error .skip-link:focus { background: var(--navy-deep); color: var(--ink-light); }
.error-card { max-width: 640px; text-align: center; }
.error-card .eyebrow {
  font-size: .82rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1rem;
}
.error-card h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 8vw, 4.6rem);
  font-weight: 800; line-height: 1.05;
  color: var(--heading); margin-bottom: 1.2rem;
}
.error-card h1 em { font-style: italic; color: var(--orange); }
.error-card .lede {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}
.error-card .ctas {
  display: flex; gap: 1rem; justify-content: center;
  flex-wrap: wrap; margin-bottom: 2.5rem;
}
.btn {
  display: inline-block;
  padding: .9rem 1.6rem;
  border-radius: 6px;
  font-weight: 700;
  font-family: inherit;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color .2s ease, transform .15s ease, color .2s ease;
  border: 2px solid transparent;
}
.btn.btn-primary-error { background: var(--orange); color: white; }
.btn.btn-primary-error:hover { background: var(--orange-hover); }
.btn.btn-secondary {
  background: transparent;
  color: var(--heading);
  border-color: var(--heading);
}
.btn.btn-secondary:hover { background: var(--navy-deep); color: var(--ink-light); }

/* Button states — applied across every button variant. */
.btn:active, .btn-primary:active, .btn-outline:active, .btn-white:active { transform: none; }
.btn:disabled, .btn[disabled], .btn[aria-disabled="true"],
.btn-primary:disabled, .btn-primary[disabled],
.btn-outline:disabled, .btn-outline[disabled],
.btn-white:disabled, .btn-white[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
}
.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: .5rem 2rem;
  max-width: 520px; margin: 0 auto;
  padding-top: 2rem;
  border-top: 1.5px solid var(--card-border);
}
.quick-links li { list-style: none; padding: .35rem 0; }
.quick-links a {
  color: var(--heading);
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
}
.quick-links a:hover { color: var(--orange); text-decoration: underline; }
.ql-label {
  font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: .5rem;
  grid-column: 1 / -1;
}

/* ── GLOSSARY PAGE ── */
body.is-glossary { background: var(--bg); color: var(--ink); }
body.is-glossary a { color: var(--orange); }

/* Glossary content links are orange (body.is-glossary a) — keep the shared
   nav links on the standard palette so the bar matches every other page. */
body.is-glossary .nav-links a { color: var(--grey); }
body.is-glossary .nav-links a:hover { color: var(--ink-light); }

body.is-glossary .hero {
  min-height: 0;
  display: block;
  padding: 130px 5% 80px;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  color: var(--ink-light);
  text-align: center;
}
body.is-glossary .hero::before,
body.is-glossary .hero::after { display: none; }
body.is-glossary .hero .eyebrow {
  font-size: .82rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1rem;
}
body.is-glossary .hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -.01em;
}
body.is-glossary .hero h1 em { font-style: italic; color: var(--orange); }
body.is-glossary .hero p {
  max-width: 720px; margin: 0 auto;
  font-size: 1.1rem; opacity: .9;
}
body.is-glossary .trust-bar {
  background: var(--navy-mid);
  padding: 1rem 5%;
  gap: 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
body.is-glossary .trust-item { font-size: .8rem; letter-spacing: .06em; }
body.is-glossary .trust-item svg { color: var(--orange); }

body.is-glossary .section {
  padding: 5rem 5%;
  max-width: 1100px;
  margin: 0 auto;
}
body.is-glossary .section-label {
  color: var(--orange);
  margin-bottom: 0.75rem;
}
body.is-glossary .section-title {
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--heading);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.section-lede {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 720px;
  margin-bottom: 3rem;
}
.toc {
  background: var(--surface);
  border: 1.5px solid var(--card-border);
  border-radius: 10px;
  padding: 1.6rem 1.8rem;
  margin-bottom: 3rem;
}
.toc h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
  font-weight: 700;
}
.toc ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: .35rem .9rem;
}
.toc a {
  text-decoration: none;
  color: var(--heading);
  font-weight: 600;
  font-size: .95rem;
}
.toc a:hover { color: var(--orange); text-decoration: underline; }
.term {
  background: var(--surface);
  border: 1.5px solid var(--card-border);
  border-radius: 10px;
  padding: 1.5rem 1.8rem;
  margin-bottom: 1rem;
  scroll-margin-top: 100px;
}
.term h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--heading);
  margin-bottom: .6rem;
}
.term p { color: var(--ink-soft); font-size: .98rem; }
.term p strong { color: var(--ink); font-weight: 700; }

.cta-block {
  background: var(--orange);
  color: white;
  padding: 4rem 5%;
  text-align: center;
}
.cta-block h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.cta-block p {
  font-size: 1.05rem;
  opacity: .95;
  margin-bottom: 2rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.cta-block .btn-call {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: white;
  color: var(--navy-deep);
  padding: 1rem 1.8rem;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
}
.cta-block .btn-call:hover { background: var(--bg); }

body.is-glossary footer {
  background: var(--navy);
  color: var(--ink-light);
  padding: 3rem 5% 1.5rem;
}
body.is-glossary .footer-grid {
  max-width: 1100px; margin: 0 auto;
  grid-template-columns: 2fr 1fr 1fr;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
body.is-glossary .footer-grid h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1rem;
  color: var(--orange);
}
body.is-glossary .footer-grid a {
  color: var(--ink-light);
  text-decoration: none;
  display: block;
  padding: .25rem 0;
  opacity: .85;
  font-size: .92rem;
}
body.is-glossary .footer-grid a:hover { opacity: 1; color: var(--orange); }
body.is-glossary .footer-grid p {
  font-size: .92rem;
  opacity: .8;
}
.copyright {
  max-width: 1100px; margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .82rem;
  opacity: .7;
}
.copyright .attribution {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  opacity: 0.85;
}
body.is-glossary .footer-social-inline {
  display: flex; flex-direction: column;
  gap: 0.3rem; margin-top: 0.5rem;
}
body.is-glossary .footer-location { margin-top: 0.5rem; }

/* ── FOOTER LOGO (extracted) ── */
.footer-logo {
  height: 64px; width: auto;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 110px 5% 60px; }
  .hero-right { display: none; }
}

/* Primary nav collapses to the hamburger below 1200px — the six uppercase
   links plus the call CTA need roughly that much room to sit on one line. */
@media (max-width: 1200px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(13, 27, 42, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 1rem 5% 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    transform: translateY(calc(-100% - 80px));
    transition: transform 0.3s ease;
    display: flex !important;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .nav-links.is-open { transform: translateY(0); }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 1rem !important;
  }
  .nav-links li:last-child a { border-bottom: 0; }
  .nav-links .nav-cta {
    margin-top: 1rem;
    text-align: center;
    border-bottom: 0 !important;
    border-radius: 6px;
  }
  body.menu-open { overflow: hidden; }
}

@media (max-width: 768px) {
  .hero { padding: 100px 5% 50px; }
  .hero h1 { font-size: 2.8rem; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { text-align: center; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .trust-bar { gap: 1rem; padding: 0.8rem 4%; }
  .trust-item span { font-size: .75rem; }
  .section { padding: 60px 5%; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col.reverse { direction: ltr; }
}

@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.3rem; }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { display: none; }
  .areas-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.2rem; }
}
