/* =================================================================
   ELITE ARMOR FIRE SOLUTIONS — Design System
   Palette: cool corporate white/navy base + real-logo flame gradient
   accent, steel-blue reserved for compliance/certification signals.
   Type: Plus Jakarta Sans (display) / Inter (body) / IBM Plex Mono
   (technical readouts — spec codes, stats, gauge labels).
   ================================================================= */

:root {
  /* Ink & surfaces */
  --ink: #16202B;
  --ink-soft: #4B5A68;
  --ink-faint: #7C8B99;
  --bg: #F5F7F9;
  --surface: #FFFFFF;
  --line: #E1E7EC;
  --line-soft: #EDF1F4;

  /* Corporate navy (trust bands, footer, header) */
  --navy: #0F2540;
  --navy-2: #16334F;
  --navy-ink: #C9D6E2;

  /* Flame accent — sampled from the real Elite Armor logo */
  --flame-1: #FFB020;
  --flame-2: #E63C13;
  --flame-gradient: linear-gradient(135deg, var(--flame-1) 0%, var(--flame-2) 100%);

  /* Compliance / certification signal (kept distinct from flame CTAs) */
  --compliance: #2E6F8E;
  --compliance-bg: #EAF2F6;

  /* Positive / status */
  --check: #1F8A57;
  --check-bg: #E9F6EF;

  /* Type */
  --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  /* Shape & motion */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(15, 37, 64, 0.06), 0 1px 1px rgba(15, 37, 64, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 37, 64, 0.08), 0 2px 8px rgba(15, 37, 64, 0.05);
  --shadow-lg: 0 24px 60px rgba(15, 37, 64, 0.16), 0 8px 20px rgba(15, 37, 64, 0.08);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container-w: 1180px;
}

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

/* ---------------------------------------------------------------
   Reset & base
   --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { font-family: var(--font-display); color: var(--ink); margin: 0; line-height: 1.15; letter-spacing: -0.01em; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
address { font-style: normal; }

.container { max-width: var(--container-w); margin: 0 auto; padding: 0 20px; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--navy); color: #fff;
  padding: 12px 20px; z-index: 9999; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--flame-2); outline-offset: 2px; }

section { padding: 88px 0; }
@media (max-width: 767px) { section { padding: 56px 0; } }

.section-tight { padding: 56px 0; }

/* Eyebrow + heading pattern used across sections */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.09em; text-transform: uppercase; color: var(--flame-2);
  margin-bottom: 14px;
}
.section-accent-rule {
  display: block; width: 60px; height: 6px; margin-top: 10px; border-radius: 3px;
  background: repeating-linear-gradient(135deg, var(--flame-1) 0 8px, var(--flame-2) 8px 16px);
}
.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.centered .section-accent-rule { margin-left: auto; margin-right: auto; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 40px); font-weight: 800; }
.section-head p { margin-top: 16px; font-size: 17px; color: var(--ink-soft); }

.text-flame { color: var(--flame-2); }
.text-navy { color: var(--navy); }
.mono { font-family: var(--font-mono); }

/* ---------------------------------------------------------------
   Buttons
   --------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  padding: 14px 26px; border-radius: var(--radius-pill); border: 1px solid transparent;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.btn i { font-size: 14px; }
.btn-flame { background: var(--flame-gradient); color: #fff; box-shadow: 0 10px 24px rgba(230, 60, 19, 0.28); }
.btn-flame:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(230, 60, 19, 0.36); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-2); transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: var(--line); color: var(--navy); }
.btn-outline:hover { border-color: var(--navy); background: var(--navy); color: #fff; }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 32px; font-size: 16px; }

.btn-ghost-nav { border: 1px solid rgba(255,255,255,0.28); color: var(--navy); background: transparent; padding: 10px 18px; font-size: 14px; }
.btn-ghost-nav:hover { background: var(--line-soft); }
.btn-flame-nav { background: var(--flame-gradient); color: #fff; padding: 10px 20px; font-size: 14px; box-shadow: 0 6px 16px rgba(230,60,19,0.28); }
.btn-flame-nav:hover { transform: translateY(-1px); }

/* ---------------------------------------------------------------
   Top bar + Header / Navigation
   --------------------------------------------------------------- */
.topbar { background: var(--navy); color: var(--navy-ink); font-size: 13px; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 9px 20px; }
.topbar-item { display: flex; align-items: center; gap: 7px; white-space: nowrap; }
.topbar-item i { color: var(--flame-1); font-size: 12px; }
.topbar-call a { color: #fff; font-weight: 600; font-family: var(--font-mono); font-size: 12.5px; }
.topbar-sep { opacity: 0.4; margin: 0 4px; }
.topbar-locations { flex: 1; justify-content: center; }
@media (max-width: 900px) { .topbar-locations { display: none; } }
@media (max-width: 560px) { .topbar-inner { justify-content: space-between; } .topbar-item span { display: none; } .topbar-item i { font-size: 14px; } .topbar-call a span { display: inline; } }

.site-header { background: rgba(255,255,255,0.92); backdrop-filter: saturate(180%) blur(14px); -webkit-backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 500; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; gap: 24px; }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand-logo { height: 42px; width: auto; }

.primary-nav { display: flex; align-items: center; gap: 28px; flex: 1; justify-content: flex-end; }
.primary-nav > ul { display: flex; align-items: center; gap: 26px; }
.primary-nav > ul > li > a { font-weight: 600; font-size: 14.5px; color: var(--ink); padding: 8px 0; display: inline-flex; align-items: center; gap: 6px; }
.primary-nav > ul > li > a:hover { color: var(--flame-2); }
.nav-caret { font-size: 10px; transition: transform 0.2s var(--ease); }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 14px); left: -16px; min-width: 240px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); padding: 10px; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.has-dropdown:hover .nav-caret { transform: rotate(180deg); }
.dropdown li a { display: block; padding: 10px 14px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; color: var(--ink-soft); }
.dropdown li a:hover { background: var(--line-soft); color: var(--flame-2); }

.nav-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 42px; background: transparent; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 0 auto; transition: transform .25s var(--ease), opacity .25s var(--ease); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 991px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: fixed; inset: 0 0 0 auto; width: min(340px, 86vw); background: var(--surface);
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0;
    padding: 90px 26px 26px; transform: translateX(100%); transition: transform .32s var(--ease);
    box-shadow: -20px 0 50px rgba(15,37,64,0.18); overflow-y: auto;
  }
  .primary-nav.is-open { transform: translateX(0); }
  .primary-nav > ul { flex-direction: column; align-items: stretch; gap: 4px; width: 100%; }
  .primary-nav > ul > li > a { padding: 13px 4px; border-bottom: 1px solid var(--line-soft); width: 100%; justify-content: space-between; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; display: none; padding: 0 0 6px 14px; }
  .has-dropdown.is-expanded .dropdown { display: block; }
  .has-dropdown.is-expanded .nav-caret { transform: rotate(180deg); }
  .nav-cta { flex-direction: column; align-items: stretch; margin-top: 20px; }
  .nav-cta .btn { width: 100%; }
  .btn-ghost-nav { border-color: var(--line); }
}

.nav-scrim { position: fixed; inset: 0; background: rgba(15,37,64,0.42); opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s; z-index: 490; }
.nav-scrim.is-visible { opacity: 1; visibility: visible; }

/* ---------------------------------------------------------------
   Hero
   --------------------------------------------------------------- */
.hero { position: relative; padding: 72px 0 96px; overflow: hidden; background: linear-gradient(180deg, #FCFDFE 0%, var(--bg) 100%); }
.hero::before {
  content: ''; position: absolute; top: -180px; right: -180px; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,176,32,0.14), rgba(230,60,19,0.05) 60%, transparent 72%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; position: relative; }
@media (max-width: 991px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } }

.hero-copy h1 { font-size: clamp(32px, 4.4vw, 52px); font-weight: 800; letter-spacing: -0.02em; }
.hero-copy h1 .accent { background: var(--flame-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-copy p.lead { margin-top: 22px; font-size: 18px; color: var(--ink-soft); max-width: 540px; }
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 14px; margin-top: 48px; flex-wrap: wrap; }

/* Gauge-dial stat badge — conic-gradient ring standing in for a pressure-gauge face */
.gauge-badge { display: flex; align-items: center; gap: 12px; }
.gauge-ring {
  width: 58px; height: 58px; border-radius: 50%; flex-shrink: 0;
  background: conic-gradient(var(--flame-1) 0deg, var(--flame-2) 240deg, var(--line) 240deg 360deg);
  display: flex; align-items: center; justify-content: center; padding: 4px;
}
.gauge-ring-inner { width: 100%; height: 100%; border-radius: 50%; background: var(--surface); display: flex; align-items: center; justify-content: center; box-shadow: inset 0 1px 3px rgba(15,37,64,0.12); }
.gauge-value { font-family: var(--font-mono); font-weight: 600; font-size: 13px; color: var(--navy); text-align: center; line-height: 1.1; }
.gauge-label { font-size: 12.5px; color: var(--ink-soft); font-weight: 600; max-width: 100px; }

/* Hero signature: glass "system status" panel */
.status-panel {
  background: rgba(255,255,255,0.62); border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--radius-lg); padding: 28px; backdrop-filter: blur(20px) saturate(160%); -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: var(--shadow-lg); position: relative;
}
.status-panel::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg); padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,176,32,0.25));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.status-panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.status-panel-head h3 { font-size: 15px; font-weight: 700; }
.status-live { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 11px; font-weight: 600; color: var(--check); text-transform: uppercase; letter-spacing: .06em; }
.status-live .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--check); box-shadow: 0 0 0 rgba(31,138,87,0.5); animation: pulseDot 2s infinite; }
@keyframes pulseDot { 0% { box-shadow: 0 0 0 0 rgba(31,138,87,0.5); } 70% { box-shadow: 0 0 0 8px rgba(31,138,87,0); } 100% { box-shadow: 0 0 0 0 rgba(31,138,87,0); } }

.status-row { display: flex; align-items: center; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid rgba(15,37,64,0.08); }
.status-row:last-of-type { border-bottom: none; }
.status-row-label { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 14.5px; color: var(--navy); }
.status-row-label i { width: 32px; height: 32px; border-radius: 9px; background: var(--surface); display: inline-flex; align-items: center; justify-content: center; color: var(--flame-2); box-shadow: var(--shadow-sm); font-size: 14px; }
.status-pill { font-family: var(--font-mono); font-size: 11.5px; font-weight: 600; padding: 5px 12px; border-radius: var(--radius-pill); background: var(--check-bg); color: var(--check); text-transform: uppercase; letter-spacing: .04em; }
.status-footer { margin-top: 18px; padding-top: 18px; border-top: 1px dashed rgba(15,37,64,0.15); display: flex; align-items: center; justify-content: space-between; }
.status-noc { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--navy); font-size: 14px; }
.status-noc i { color: var(--check); }

/* ---------------------------------------------------------------
   Trust / logos strip
   --------------------------------------------------------------- */
.trust-strip { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 26px 0; }
.trust-strip-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14px; color: var(--ink-soft); }
.trust-item i { color: var(--compliance); font-size: 17px; }

/* ---------------------------------------------------------------
   Cards: services / locations / blog
   --------------------------------------------------------------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
@media (max-width: 991px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.svc-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 26px; transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
  display: flex; flex-direction: column; height: 100%;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-icon { width: 54px; height: 54px; border-radius: var(--radius-md); background: linear-gradient(135deg, rgba(255,176,32,0.14), rgba(230,60,19,0.10)); display: flex; align-items: center; justify-content: center; color: var(--flame-2); font-size: 22px; margin-bottom: 20px; }
.svc-card h3 { font-size: 18.5px; font-weight: 700; margin-bottom: 10px; }
.svc-card p { color: var(--ink-soft); font-size: 14.5px; flex: 1; }
.svc-card .svc-link { margin-top: 18px; display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 14px; color: var(--navy); }
.svc-card .svc-link i { font-size: 12px; transition: transform .2s var(--ease); }
.svc-card:hover .svc-link i { transform: translateX(4px); }

.loc-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.loc-card-head { background: var(--navy); color: #fff; padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; }
.loc-card-head h3 { color: #fff; font-size: 18px; }
.loc-badge { font-family: var(--font-mono); font-size: 11px; background: rgba(255,255,255,0.14); padding: 5px 11px; border-radius: var(--radius-pill); text-transform: uppercase; letter-spacing: .05em; }
.loc-card-body { padding: 26px; }
.loc-row { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.loc-row:last-child { margin-bottom: 0; }
.loc-row i { color: var(--flame-2); width: 18px; margin-top: 3px; }
.loc-row span, .loc-row a { font-size: 14.5px; color: var(--ink-soft); }
.loc-row a:hover { color: var(--flame-2); }
.loc-card-body .btn { margin-top: 18px; }

.blog-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; height: 100%; display: flex; flex-direction: column; transition: box-shadow .25s var(--ease), transform .25s var(--ease); }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-meta { display: flex; gap: 14px; align-items: center; font-family: var(--font-mono); font-size: 12px; color: var(--ink-faint); margin-bottom: 14px; }
.blog-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 12px; }
.blog-card p { color: var(--ink-soft); font-size: 14.5px; flex: 1; }
.blog-card .svc-link { margin-top: 16px; display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 14px; color: var(--navy); }

/* ---------------------------------------------------------------
   Why-choose-us (navy band)
   --------------------------------------------------------------- */
.band-navy { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%); color: var(--navy-ink); position: relative; overflow: hidden; }
.band-navy::after { content: ''; position: absolute; bottom: -140px; left: -120px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(255,176,32,0.10), transparent 68%); }
.band-navy .section-head h2, .band-navy .section-head p { color: #fff; }
.band-navy .section-head p { color: var(--navy-ink); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; }
@media (max-width: 991px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }
.why-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); padding: 26px; }
.why-icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(255,176,32,0.16); display: flex; align-items: center; justify-content: center; color: var(--flame-1); font-size: 19px; margin-bottom: 16px; }
.why-card h3 { color: #fff; font-size: 16.5px; margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--navy-ink); }

/* ---------------------------------------------------------------
   Process steps
   --------------------------------------------------------------- */
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; counter-reset: step; }
@media (max-width: 991px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }
.process-step { position: relative; padding: 26px 22px 22px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.process-num { font-family: var(--font-mono); font-weight: 600; font-size: 13px; color: var(--flame-2); background: linear-gradient(135deg, rgba(255,176,32,0.14), rgba(230,60,19,0.08)); width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.process-step h3 { font-size: 15.5px; font-weight: 700; margin-bottom: 8px; }
.process-step p { font-size: 13.5px; color: var(--ink-soft); }

/* ---------------------------------------------------------------
   FAQ (native details/summary — zero-JS accordion)
   --------------------------------------------------------------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); margin-bottom: 14px; overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 700; font-size: 15.5px; display: flex; align-items: center; justify-content: space-between; gap: 16px; color: var(--navy); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--line-soft); display: flex; align-items: center; justify-content: center; color: var(--flame-2); transition: transform .25s var(--ease), background .25s var(--ease); font-size: 12px; }
.faq-item[open] .faq-icon { transform: rotate(180deg); background: var(--flame-gradient); color: #fff; }
.faq-answer { padding: 0 24px 22px; color: var(--ink-soft); font-size: 14.5px; line-height: 1.7; }

/* ---------------------------------------------------------------
   CTA band
   --------------------------------------------------------------- */
.cta-band { background: var(--flame-gradient); border-radius: var(--radius-lg); padding: 52px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; position: relative; overflow: hidden; }
.cta-band::after { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(135deg, rgba(255,255,255,0.06) 0 10px, transparent 10px 24px); pointer-events: none; }
.cta-band h2 { color: #fff; font-size: clamp(24px, 3vw, 32px); font-weight: 800; position: relative; }
.cta-band p { color: rgba(255,255,255,0.9); margin-top: 10px; font-size: 15.5px; position: relative; max-width: 480px; }
.cta-band .cta-actions { display: flex; gap: 12px; position: relative; flex-wrap: wrap; }
.cta-band .btn-navy { background: var(--navy); }
.cta-band .btn-outline { border-color: rgba(255,255,255,0.5); color: #fff; }
.cta-band .btn-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; color: #fff; }

/* ---------------------------------------------------------------
   Breadcrumb (visual)
   --------------------------------------------------------------- */
.breadcrumb-bar { background: var(--surface); border-bottom: 1px solid var(--line); padding: 16px 0; }
.breadcrumb-bar ol { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-faint); }
.breadcrumb-bar a { color: var(--ink-soft); font-weight: 600; }
.breadcrumb-bar a:hover { color: var(--flame-2); }
.breadcrumb-bar li:not(:last-child)::after { content: '/'; margin-left: 8px; color: var(--line); }
.breadcrumb-bar li:last-child { color: var(--ink-faint); }

/* ---------------------------------------------------------------
   Inner-page hero (services/locations/blog/about)
   --------------------------------------------------------------- */
.page-hero { padding: 54px 0 60px; background: linear-gradient(180deg, #FCFDFE 0%, var(--bg) 100%); }
.page-hero h1 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; max-width: 780px; }
.page-hero p.lead { margin-top: 16px; font-size: 17px; color: var(--ink-soft); max-width: 640px; }
.page-hero-meta { display: flex; gap: 22px; margin-top: 26px; flex-wrap: wrap; }
.page-hero-meta .meta-chip { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--ink-soft); background: var(--surface); border: 1px solid var(--line); padding: 8px 14px; border-radius: var(--radius-pill); }
.page-hero-meta .meta-chip i { color: var(--compliance); }

/* Service detail page specifics */
.spec-table { width: 100%; border-collapse: collapse; margin: 22px 0; font-size: 14.5px; }
.spec-table th, .spec-table td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line); }
.spec-table th { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-faint); font-weight: 600; background: var(--line-soft); }
.spec-table td:first-child { font-weight: 600; color: var(--navy); white-space: nowrap; }

.check-list li { display: flex; gap: 12px; padding: 10px 0; align-items: flex-start; }
.check-list li i { color: var(--check); margin-top: 4px; flex-shrink: 0; }
.check-list.two-col { column-count: 2; column-gap: 32px; }
@media (max-width: 640px) { .check-list.two-col { column-count: 1; } }
.check-list.two-col li { break-inside: avoid; }

.compliance-note { background: var(--compliance-bg); border: 1px solid rgba(46,111,142,0.18); border-radius: var(--radius-md); padding: 20px 22px; display: flex; gap: 16px; align-items: flex-start; }
.compliance-note i { color: var(--compliance); font-size: 20px; margin-top: 2px; }
.compliance-note strong { color: var(--navy); }
.compliance-note p { font-size: 14px; color: var(--ink-soft); margin-top: 4px; }

.content-columns { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .content-columns { grid-template-columns: 1fr; } }
.sidebar-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; position: sticky; top: 110px; }
.sidebar-card h3 { font-size: 16px; margin-bottom: 14px; }
.sidebar-card .btn { margin-top: 6px; }
.sidebar-list li { padding: 11px 0; border-bottom: 1px solid var(--line-soft); font-size: 14px; }
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list a:hover { color: var(--flame-2); }

/* ---------------------------------------------------------------
   About page specifics
   --------------------------------------------------------------- */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 767px) { .value-grid { grid-template-columns: 1fr; } }
.value-card { padding: 28px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--surface); }
.value-card i { color: var(--flame-2); font-size: 24px; margin-bottom: 16px; display: block; }
.value-card h3 { font-size: 17px; margin-bottom: 10px; }
.value-card p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------------------------------------------------------------
   Contact page
   --------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-sm); }
.form-row { margin-bottom: 20px; }
.form-row label { display: block; font-weight: 600; font-size: 13.5px; margin-bottom: 8px; color: var(--navy); }
.form-row .req { color: var(--flame-2); }
.form-control {
  width: 100%; padding: 13px 16px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 15px; color: var(--ink); background: #fff; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-control:focus { border-color: var(--flame-2); box-shadow: 0 0 0 4px rgba(230,60,19,0.09); outline: none; }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-two { grid-template-columns: 1fr; } }
.form-note { font-size: 12.5px; color: var(--ink-faint); margin-top: 14px; text-align: center; }
.hp-field { position: absolute; left: -9999px; opacity: 0; }
.form-status { padding: 14px 18px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; margin-bottom: 20px; display: none; }
.form-status.is-success { display: block; background: var(--check-bg); color: var(--check); }
.form-status.is-error { display: block; background: #FDECEA; color: #B3261E; }

.contact-info-card { background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: 34px; margin-bottom: 22px; }
.contact-info-card h3 { color: #fff; font-size: 17px; margin-bottom: 18px; }
.contact-info-row { display: flex; gap: 14px; margin-bottom: 16px; align-items: flex-start; }
.contact-info-row i { width: 20px; color: var(--flame-1); margin-top: 3px; }
.contact-info-row a, .contact-info-row span { color: var(--navy-ink); font-size: 14.5px; }
.contact-info-row a:hover { color: #fff; }

/* ---------------------------------------------------------------
   Blog article typography
   --------------------------------------------------------------- */
.article-body { max-width: 740px; margin: 0 auto; font-size: 16.5px; line-height: 1.8; color: var(--ink); }
.article-body h2 { font-size: 25px; font-weight: 800; margin-top: 42px; margin-bottom: 16px; }
.article-body h3 { font-size: 19px; font-weight: 700; margin-top: 30px; margin-bottom: 12px; }
.article-body p { margin-bottom: 18px; color: var(--ink-soft); }
.article-body ul, .article-body ol { margin: 0 0 18px; padding-left: 22px; color: var(--ink-soft); }
.article-body li { margin-bottom: 8px; }
.article-body strong { color: var(--ink); }
.article-hero-image { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 40px; }
.article-cta { max-width: 740px; margin: 40px auto 0; background: var(--compliance-bg); border: 1px solid rgba(46,111,142,0.18); border-radius: var(--radius-lg); padding: 28px; text-align: center; }
.article-cta h3 { margin-bottom: 10px; }
.article-cta p { color: var(--ink-soft); margin-bottom: 18px; }

/* ---------------------------------------------------------------
   404
   --------------------------------------------------------------- */
.error-page { min-height: 60vh; display: flex; align-items: center; text-align: center; }
.error-page .gauge-ring { width: 96px; height: 96px; margin: 0 auto 28px; }
.error-page h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 800; }
.error-page p { color: var(--ink-soft); font-size: 17px; margin: 16px auto 30px; max-width: 480px; }

/* ---------------------------------------------------------------
   Footer
   --------------------------------------------------------------- */
.site-footer { background: var(--navy); color: var(--navy-ink); }
.footer-top { padding: 68px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
@media (max-width: 991px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo { height: 40px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-blurb { font-size: 14px; color: var(--navy-ink); margin-bottom: 20px; max-width: 320px; }
.footer-badges { display: flex; flex-direction: column; gap: 10px; }
.footer-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: #fff; }
.footer-badge i { color: var(--flame-1); }
.footer-heading { color: #fff; font-size: 14.5px; font-weight: 700; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .04em; }
.footer-heading-spaced { margin-top: 26px; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { font-size: 14px; color: var(--navy-ink); }
.footer-links a:hover { color: var(--flame-1); }
.footer-address { font-size: 13.5px; color: var(--navy-ink); line-height: 1.6; margin-bottom: 10px; display: block; }
.footer-phone, .footer-email { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #fff; font-weight: 600; margin-bottom: 8px; }
.footer-phone i, .footer-email i { color: var(--flame-1); width: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 12.5px; color: var(--navy-ink); }

/* ---------------------------------------------------------------
   Mobile sticky CTA bar
   --------------------------------------------------------------- */
.mobile-cta-bar { display: none; }
@media (max-width: 767px) {
  .mobile-cta-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 480;
    background: var(--surface); border-top: 1px solid var(--line); box-shadow: 0 -8px 24px rgba(15,37,64,0.1);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    gap: 10px;
  }
  .mobile-cta-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 13px; border-radius: var(--radius-pill); font-weight: 700; font-size: 14px; }
  .mobile-cta-call { background: var(--navy); color: #fff; }
  .mobile-cta-quote { background: var(--flame-gradient); color: #fff; }
  body { padding-bottom: 74px; }
}

/* ---------------------------------------------------------------
   Back to top
   --------------------------------------------------------------- */
.back-to-top {
  position: fixed; right: 22px; bottom: 96px; width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy); color: #fff; border: none; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s; z-index: 470;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
@media (min-width: 768px) { .back-to-top { bottom: 28px; } }

/* ---------------------------------------------------------------
   Scroll reveal (progressive enhancement — content visible without JS)
   --------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.no-js .reveal { opacity: 1; transform: none; }

/* ---------------------------------------------------------------
   Misc utilities
   --------------------------------------------------------------- */
.mt-0 { margin-top: 0 !important; }
.text-center { text-align: center; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }
