/* ================================================================
   MT Security & Investigations — Production Stylesheet v2
   sdsecurityguards.com | InMotion Hosting | Mobile-First
   ================================================================ */

/* ── Design Tokens ───────────────────────────────────────────── */
:root {
  --navy:        #0B1E3D;
  --navy-dark:   #071428;
  --navy-mid:    #152d52;
  --navy-light:  #1e3f6e;
  --gold:        #C8962E;
  --gold-dark:   #A87820;
  --gold-light:  #FEF5E4;
  --gold-mid:    #F5D68A;
  --white:       #FFFFFF;
  --gray-50:     #F9FAFB;
  --gray-100:    #F3F4F6;
  --gray-200:    #E5E7EB;
  --gray-300:    #D1D5DB;
  --gray-400:    #9CA3AF;
  --gray-600:    #4B5563;
  --gray-700:    #374151;
  --gray-900:    #111827;
  --green:       #15803D;
  --green-bg:    #DCFCE7;
  --red:         #DC2626;
  --red-bg:      #FEE2E2;
  --blue-bg:     #EFF6FF;
  --blue-text:   #1D4ED8;

  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui,
          'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'SFMono-Regular', Consolas, monospace;

  --radius-sm:  4px;
  --radius:     8px;
  --radius-md:  10px;
  --radius-lg:  14px;
  --radius-xl:  20px;
  --radius-full: 9999px;

  --shadow-xs:  0 1px 2px rgba(0,0,0,.06);
  --shadow-sm:  0 1px 4px rgba(0,0,0,.09);
  --shadow:     0 4px 16px rgba(0,0,0,.10);
  --shadow-md:  0 6px 24px rgba(0,0,0,.12);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.15);
  --shadow-xl:  0 24px 64px rgba(0,0,0,.18);

  --ease:       cubic-bezier(.4,0,.2,1);
  --dur:        180ms;

  --container:  1160px;
  --nav-h:      68px;
}

/* ── Reset ───────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width:100%; height:auto; display:block; }
a { color:inherit; text-decoration:none; }
ul, ol { list-style:none; }
button { font-family:inherit; cursor:pointer; border:none; background:none; }
input, select, textarea { font-family:inherit; }
h1,h2,h3,h4,h5 { line-height:1.2; font-weight:700; color:var(--gray-900); }

/* ── Layout ──────────────────────────────────────────────────── */
.container { max-width:var(--container); margin:0 auto; padding:0 20px; }
@media (min-width:640px) { .container { padding:0 28px; } }
@media (min-width:1024px) { .container { padding:0 40px; } }

.section      { padding:64px 0; }.section-sm   { padding:40px 0; }
.bg-white     { background:var(--white); }
.bg-gray      { background:var(--gray-50); }
.bg-navy      { background:var(--navy); }
.bg-navy-dark { background:var(--navy-dark); }

/* ── Typography ──────────────────────────────────────────────── */
.section-label {
  display:inline-flex; align-items:center; gap:6px;
  font-size:11px; font-weight:700; letter-spacing:1.5px;
  text-transform:uppercase; color:var(--gold-dark);
  background:var(--gold-light); border:1px solid rgba(200,150,46,.2);
  padding:4px 12px; border-radius:var(--radius-full);
  margin-bottom:12px;
}
.section-title {
  font-size:clamp(24px,3.5vw,36px);
  color:var(--navy); margin-bottom:12px;
}
.section-sub {
  font-size:17px; color:var(--gray-600); line-height:1.75;
  max-width:580px;
}
.section-header { margin-bottom:48px; }
.section-header.center { text-align:center; }
.section-header.center .section-sub { margin:0 auto; }

/* ── Topbar ──────────────────────────────────────────────────── */
.topbar {
  background:var(--navy-dark);
  padding:9px 0;
  font-size:12.5px;
  color:rgba(255,255,255,.85);
}
.topbar__inner {
  display:flex; align-items:center;
  justify-content:space-between; gap:12px;
  flex-wrap:wrap;
}
.topbar__left { display:flex; align-items:center; gap:4px; }
.topbar__right {
  display:flex; align-items:center; gap:16px; flex-wrap:wrap;
}
.topbar a { color:var(--gold-mid); font-weight:600;
  transition:opacity var(--dur) var(--ease); }
.topbar a:hover { opacity:.8; }
.topbar .dot { opacity:.3; }

/* ── Navigation ──────────────────────────────────────────────── */
.navbar {
  position:sticky; top:0; z-index:200;
  background:var(--white);
  border-bottom:1px solid var(--gray-200);
  box-shadow:var(--shadow-sm);
  height:var(--nav-h);
}
.navbar__inner {
  height:100%;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
}
.navbar__logo {
  display:flex; align-items:center; gap:11px; flex-shrink:0;
  text-decoration:none;
}
.navbar__icon {
  background:transparent; display:flex; align-items:center;
  justify-content:center; flex-shrink:0;
}
.navbar__icon img { height:44px; width:auto; max-width:280px; object-fit:contain; display:block; }
/* Hide the separate text block — logo SVG already includes name */
.navbar__text { display:none; }

.navbar__links {
  display:none; align-items:center; gap:2px;
}
@media (min-width:960px) { .navbar__links { display:flex; } }

.navbar__links a {
  font-size:13.5px; font-weight:500; color:var(--gray-600);
  padding:7px 11px; border-radius:var(--radius);
  transition:all var(--dur) var(--ease); white-space:nowrap;
}
.navbar__links a:hover, .navbar__links a.active {
  color:var(--navy); background:var(--gray-100);
}
.navbar__links .nav-cta {
  background:var(--navy); color:var(--white) !important;
  padding:8px 16px; font-weight:600; font-size:13px;
  margin-left:6px;
}
.navbar__links .nav-cta:hover { background:var(--navy-mid) !important; }

/* Mobile hamburger */
.navbar__toggle {
  display:flex; align-items:center; justify-content:center;
  width:40px; height:40px; border-radius:var(--radius);
  color:var(--navy); font-size:22px;
  transition:background var(--dur) var(--ease);
  flex-shrink:0;
}
.navbar__toggle:hover { background:var(--gray-100); }
@media (min-width:960px) { .navbar__toggle { display:none; } }

/* Mobile drawer */
.mobile-nav {
  display:none; position:fixed;
  top:var(--nav-h); left:0; right:0; bottom:0;
  background:rgba(7,20,40,.6);
  z-index:199;
}
.mobile-nav.open { display:block; }
.mobile-nav__panel {
  background:var(--white);
  padding:16px 20px 32px;
  display:flex; flex-direction:column; gap:4px;
  max-height:calc(100vh - var(--nav-h));
  overflow-y:auto;
  box-shadow:var(--shadow-lg);
}
.mobile-nav__panel a {
  display:block; padding:12px 14px;
  font-size:16px; font-weight:500; color:var(--gray-700);
  border-radius:var(--radius);
  transition:all var(--dur) var(--ease);
}
.mobile-nav__panel a:hover { background:var(--gray-50); color:var(--navy); }
.mobile-nav__panel a.cta-mobile {
  background:var(--navy); color:var(--white) !important;
  text-align:center; font-weight:700; margin-top:10px;
  padding:14px;
}
.mobile-nav__panel .divider { border-top:1px solid var(--gray-200); margin:8px 0; }

/* Sticky mobile CTA bar */
.mobile-cta-bar {
  display:flex; gap:10px;
  position:fixed; bottom:0; left:0; right:0; z-index:198;
  background:var(--navy); border-top:2px solid var(--gold);
  padding:10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  box-shadow:0 -4px 16px rgba(0,0,0,.18);
}
.mobile-cta-bar a {
  flex:1; text-align:center; padding:12px 8px;
  font-size:14px; font-weight:700; border-radius:var(--radius);
  display:flex; align-items:center; justify-content:center; gap:6px;
  text-decoration:none; transition:transform .15s ease, background .15s ease;
}
.mobile-cta-bar a:active { transform:scale(.97); }
.mobile-cta-bar .cta-call { background:var(--gold); color:var(--navy); box-shadow:0 2px 8px rgba(200,150,46,.28); }
.mobile-cta-bar .cta-est  { color:var(--white); border:1.5px solid rgba(255,255,255,.55); background:rgba(255,255,255,.04); }
@media (min-width:960px) { .mobile-cta-bar { display:none; } }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn,
a.btn-gold,
a.btn-outline,
a.btn-navy,
a.btn-outline-navy,
a.btn-outline-white {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 28px; border-radius:var(--radius-md);
  font-size:15px; font-weight:700; line-height:1.2;
  cursor:pointer; border:2px solid transparent;
  transition:transform .15s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease;
  text-decoration:none; white-space:nowrap;
  letter-spacing:.2px;
}
.btn-gold,
a.btn-gold {
  background:var(--gold);
  color:var(--navy);
  box-shadow:0 4px 14px rgba(200,150,46,.32), inset 0 -2px 0 rgba(0,0,0,.08);
}
.btn-gold:hover,
a.btn-gold:hover {
  background:var(--gold-dark);
  box-shadow:0 6px 20px rgba(200,150,46,.42), inset 0 -2px 0 rgba(0,0,0,.10);
  transform:translateY(-1px);
}
.btn-navy        { background:var(--navy);  color:var(--white); }
.btn-navy:hover  { background:var(--navy-mid); }
.btn-outline,
a.btn-outline {
  background:transparent; color:var(--white); border-color:rgba(255,255,255,.45);
}
.btn-outline:hover,
a.btn-outline:hover {
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.7);
}
.btn-outline-navy { background:transparent; color:var(--navy); border-color:var(--navy); }
.btn-outline-navy:hover { background:var(--navy); color:var(--white); }.btn-lg   { padding:17px 34px; font-size:16px; }
.btn-full { width:100%; }
.btn:active,
a.btn-gold:active,
a.btn-outline:active { transform:scale(.97); }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  background:var(--navy);
  padding:72px 0 64px;
  position:relative; overflow:hidden;
}
/* subtle grid pattern */
.hero::before {
  content:''; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size:40px 40px;
}.hero__badge {
  display:inline-flex; align-items:center; gap:7px;
  background:rgba(200,150,46,.15);
  border:1px solid rgba(200,150,46,.35);
  border-radius:var(--radius-full);
  padding:6px 14px; margin-bottom:20px;
  font-size:12px; font-weight:700;
  letter-spacing:.5px; color:var(--gold-mid);
}
.hero h1 {
  font-size:clamp(28px,4.5vw,52px);
  color:var(--white); line-height:1.12;
  margin-bottom:18px; max-width:660px;
}
.hero h1 em { color:var(--gold); font-style:normal; }
.hero__sub {
  font-size:clamp(15px,1.8vw,18px);
  color:rgba(255,255,255,.88);
  line-height:1.75; max-width:560px; margin-bottom:32px;
}
.hero__actions { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:40px; }
@media (max-width:520px) {
  .hero__actions { gap:10px; }
  .hero__actions .btn-gold,
  .hero__actions a.btn-gold { width:100%; padding:16px 22px; font-size:16px; }
  .hero__actions .btn-outline,
  .hero__actions a.btn-outline { width:100%; padding:14px 22px; }
}.trust-chip {
  display:flex; align-items:center; gap:7px;
  font-size:13px; color:rgba(255,255,255,.82);
}
/* ── Stats Bar ───────────────────────────────────────────────── */
.stats-bar { background:var(--gold); }
.stats-bar__grid,
.stats-bar__grid {
  display:grid; grid-template-columns:repeat(2,1fr);
}
@media (min-width:640px) { .stats-bar__grid { grid-template-columns:repeat(4,1fr); } }.stats-bar__item {
  padding:20px 16px; text-align:center;
  border-right:1px solid rgba(11,30,61,.12);
  border-bottom:1px solid rgba(11,30,61,.12);
}
@media (min-width:640px) { .stat-item, .stats-bar__item { border-bottom:none; } }.stats-bar__item:last-child { border-right:none; }.stats-bar__item:nth-child(2) { border-right:none; }
@media (min-width:640px) {
  .stat-item:nth-child(2), .stats-bar__item:nth-child(2) { border-right:1px solid rgba(11,30,61,.12); }
}
.stat-num,
.stats-bar__num { font-size:clamp(28px,3.5vw,40px); font-weight:900; color:var(--navy); line-height:1; letter-spacing:-0.5px; }
.stat-label,
.stats-bar__label { font-size:12px; color:var(--navy); margin-top:5px; font-weight:700; opacity:.8; text-transform:uppercase; letter-spacing:.5px; }

/* ── Cards ───────────────────────────────────────────────────── */
.card {
  background:var(--white);
  border:1px solid var(--gray-200);
  border-radius:var(--radius-lg);
  padding:28px;
  transition:all var(--dur) var(--ease);
}
.card:hover {
  border-color:var(--navy);
  box-shadow:var(--shadow-md);
  transform:translateY(-3px);
}
.card__icon {
  width:52px; height:52px;
  background:var(--blue-bg); border-radius:var(--radius-md);
  display:flex; align-items:center; justify-content:center;
  font-size:24px; margin-bottom:16px; flex-shrink:0;
}
.card h3 { font-size:17px; color:var(--navy); margin-bottom:8px; }
.card p { font-size:14px; color:var(--gray-600); line-height:1.7; }
.card__badge {
  display:inline-block; font-size:10.5px; font-weight:700;
  padding:3px 10px; border-radius:var(--radius-full); margin-top:12px;
}
.badge-gold  { background:var(--gold-light); color:var(--gold-dark); }
.badge-green { background:var(--green-bg);   color:var(--green); }
.badge-navy  { background:var(--navy); color:var(--white); font-size:10px; }
.badge-red   { background:var(--red-bg);     color:var(--red); }
.badge-blue  { background:var(--blue-bg);    color:var(--blue-text); }
.card__link {
  display:inline-flex; align-items:center; gap:5px;
  font-size:13px; font-weight:700; color:var(--navy);
  margin-top:14px; transition:gap var(--dur) var(--ease);
}
.card__link:hover { gap:9px; color:var(--gold-dark); }

/* Service cards grid */
.services-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
  gap:20px;
}
/* Why-choose grid */
.why-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
  gap:16px;
}
.why-card { background:var(--gray-50); border-radius:var(--radius-lg); padding:24px; }
.why-card__icon { font-size:28px; margin-bottom:12px; }
.why-card h3, .why-card h4, .why-card__title { font-size:16px; color:var(--navy); margin-bottom:6px; }
.why-card p, .why-card__body  { font-size:14px; color:var(--gray-600); line-height:1.65; }

/* ── Client logos bar ────────────────────────────────────────── */
.clients-bar {
  background:var(--gray-50);
  border-top:1px solid var(--gray-200);
  border-bottom:1px solid var(--gray-200);
  padding:28px 0;
}
.clients-bar__label {
  font-size:13px; font-weight:800; letter-spacing:2px;
  color:var(--navy); text-transform:uppercase;
  text-align:center; margin-bottom:16px;
}
.clients-bar__row {
  display:flex; flex-wrap:wrap; justify-content:center; gap:10px;
}
.client-pill {
  background:var(--white); border:1px solid var(--gray-200);
  border-radius:var(--radius); padding:8px 18px;
  font-size:13px; font-weight:600; color:var(--gray-600);
}

/* ── Reviews ─────────────────────────────────────────────────── */
.reviews-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
  gap:20px;
}
.review-card {
  background:var(--white);
  border:1px solid var(--gray-200);
  border-radius:var(--radius-lg);
  padding:24px;
}
.review-card__stars { color:var(--gold); font-size:15px; margin-bottom:10px; }
/* .review-card__text and .review-card__quote are the same — both supported */
.review-card__text, .review-card__quote {
  font-size:14px; color:var(--gray-600); line-height:1.75;
  font-style:italic; margin-bottom:18px;
}
/* .reviewer and .review-card__footer are the same — both supported */
.reviewer, .review-card__footer { display:flex; align-items:center; gap:10px; }
.reviewer__avatar, .review-card__avatar {
  width:40px; height:40px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:13px; font-weight:700; color:var(--white); flex-shrink:0;
  background:var(--navy-mid);
}
.reviewer__name, .review-card__name { font-size:14px; font-weight:700; color:var(--navy); }
.reviewer__role, .review-card__role { font-size:12px; color:var(--gray-400); }

/* ── Authority / Founder section ─────────────────────────────── */
.authority {
  background:var(--navy);
  padding:72px 0;
}@media (min-width:900px) {
  .authority__grid { grid-template-columns:1fr 380px; align-items:start; }
}
.authority__label { color:var(--gold-mid); }
.authority h2 { color:var(--white); margin-bottom:14px; }
.authority__lead { font-size:17px; color:rgba(255,255,255,.92); line-height:1.75; margin-bottom:24px; }
.authority p { font-size:15px; color:rgba(255,255,255,.88); line-height:1.75; margin-bottom:14px; }
.authority__awards { display:flex; flex-direction:column; gap:10px; margin-top:24px; margin-bottom:36px; }
.award-pill {
  display:flex; align-items:center; gap:12px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.18);
  border-radius:var(--radius-md); padding:14px 18px;
  color:var(--white); font-size:14px; font-weight:600; line-height:1.5;
}
.award-pill__icon { font-size:22px; flex-shrink:0; }
.award-pill__title { font-size:14px; font-weight:700; color:var(--white); line-height:1.3; }
.award-pill__year  { font-size:12px; color:rgba(255,255,255,.82); }
.authority__card {
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.2);
  border-radius:var(--radius-xl);
  padding:32px;
}
.authority__card h4,
.authority__card [class*="heading"],
.authority__card > p:first-child,
.authority__card > div > p:first-child {
  color:var(--gold-mid); font-size:11px; font-weight:700;
  letter-spacing:1.5px; text-transform:uppercase; margin-bottom:20px;
}
/* Catch any dl/dt/dd that reset colors */
.authority__card dl { color:var(--white); }
.authority__card dt { color:var(--white) !important; font-weight:800; }
.authority__card dd { color:rgba(255,255,255,.85) !important; }
.authority__stat { padding:12px 0; border-bottom:1px solid rgba(255,255,255,.1); }
.authority__stat:last-child { border-bottom:none; }.authority__stat-num, dt.authority__stat-num { font-size:22px; font-weight:800; color:var(--white) !important; line-height:1.2; }.authority__stat-label, dd.authority__stat-label { font-size:13px; color:rgba(255,255,255,.85) !important; margin-top:3px; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list { display:flex; flex-direction:column; gap:8px; }
.faq-item { border:1px solid var(--gray-200); border-radius:var(--radius-md); overflow:hidden; }
.faq-btn {
  width:100%; text-align:left; background:var(--white);
  padding:17px 20px; cursor:pointer;
  display:flex; justify-content:space-between; align-items:center; gap:12px;
  font-size:15px; font-weight:600; color:var(--navy);
  transition:background var(--dur) var(--ease);
}
.faq-btn:hover { background:var(--gray-50); }
.faq-btn__arrow {
  font-size:18px; flex-shrink:0; color:var(--gray-400);
  transition:transform var(--dur) var(--ease);
}
.faq-btn.open { background:var(--gray-50); }
.faq-btn.open .faq-btn__arrow { transform:rotate(180deg); color:var(--navy); }
.faq-answer {
  display:none; padding:0 20px 18px;
  font-size:14.5px; color:var(--gray-600); line-height:1.75;
  background:var(--gray-50);
}
.faq-answer.open { display:block; }
.faq-answer p { margin-bottom:10px; }
.faq-answer p:last-child { margin-bottom:0; }

/* ── Lead Form (dark bg) ─────────────────────────────────────── */
.lead-form-wrap { background:var(--navy); padding:80px 0; }
.lead-form-wrap .section-title { color:var(--white); }
.lead-form-wrap .section-sub   { color:rgba(255,255,255,.9); }

/* Contact sidebar — force white text on navy background */
.lead-form-contact { color:#FFFFFF; }
.lead-form-contact * { color:#FFFFFF; }
.lead-form-phone__label { font-size:12px; font-weight:700; letter-spacing:.8px; text-transform:uppercase; color:rgba(255,255,255,.75) !important; margin-bottom:4px; }
.lead-form-phone__number { font-size:28px; font-weight:800; color:#FFFFFF !important; text-decoration:none; display:block; margin-bottom:20px; }
.lead-form-phone__number:hover { color:var(--gold) !important; }
.lead-form-availability { color:rgba(255,255,255,.9) !important; font-size:15px; line-height:1.6; margin-bottom:20px; }
.lead-form-availability strong { color:#FFFFFF !important; }
.lead-form-address { color:rgba(255,255,255,.9) !important; font-size:15px; line-height:1.7; margin-bottom:20px; font-style:normal; }
.lead-form-address strong { color:#FFFFFF !important; }
.lead-form-trust { list-style:none; padding:0; margin:0; }
.lead-form-trust li { color:#FFFFFF !important; font-size:14px; font-weight:600; margin-bottom:10px; }
.lead-form {
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius-xl);
  padding:32px;
  max-width:580px;
}
@media (min-width:960px) {
  .lead-form-grid {
    display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start;
  }
}
.f-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
@media (max-width:500px) { .f-row { grid-template-columns:1fr; } }
/* Unified form field classes — .f-* and .form-* are identical; both sets kept for compatibility */
.f-field, .form-group { margin-bottom:12px; }
.f-label, .form-label {
  display:block; font-size:11px; font-weight:700; letter-spacing:.8px;
  text-transform:uppercase; color:#FFFFFF; margin-bottom:5px;
}
.f-input, .f-select, .f-textarea,
.form-input, .form-select, .form-textarea {
  width:100%; padding:11px 14px;
  background:rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.45);
  border-radius:var(--radius); color:var(--white);
  font-size:15px; font-family:inherit;
  transition:border-color var(--dur) var(--ease), background var(--dur) var(--ease);
  -webkit-appearance:none; appearance:none;
  -webkit-text-fill-color: var(--white);
}
.f-input::placeholder, .f-textarea::placeholder,
.form-input::placeholder, .form-textarea::placeholder { color:rgba(255,255,255,.6); -webkit-text-fill-color:rgba(255,255,255,.6); }
.f-input:focus, .f-select:focus, .f-textarea:focus,
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline:none; border-color:var(--gold); background:rgba(255,255,255,.22);
}
/* iOS autofill override */
.f-input:-webkit-autofill, .f-input:-webkit-autofill:focus,
.form-input:-webkit-autofill, .form-input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px rgba(21,45,82,0.9) inset;
  -webkit-text-fill-color: var(--white) !important;
}
.f-select, .form-select { color:var(--white); -webkit-text-fill-color: var(--white); }
.f-select option, .form-select option { background:#152d52; color:var(--white); }
.f-textarea, .form-textarea { min-height:80px; resize:vertical; }
.f-submit, .form-submit {
  width:100%; padding:15px;
  background:var(--gold); color:var(--navy);
  border:none; border-radius:var(--radius);
  font-size:15px; font-weight:800; font-family:inherit;
  cursor:pointer; margin-top:4px;
  transition:background var(--dur) var(--ease);
}
.f-submit:hover, .form-submit:hover { background:var(--gold-dark); }
.f-submit:active, .form-submit:active { transform:scale(.99); }
.f-note, .form-note {
  font-size:11.5px; color:rgba(255,255,255,.75);
  text-align:center; margin-top:10px;
}
/* Honeypot */
.hp-field { display:none !important; }

/* Contact form (light bg) */
.contact-form-light { background:var(--white); border:1px solid var(--gray-200); border-radius:var(--radius-xl); padding:36px; }
.contact-form-light .f-label { color:var(--gray-500); }
.contact-form-light .f-input,
.contact-form-light .f-select,
.contact-form-light .f-textarea {
  background:var(--gray-50); border-color:var(--gray-300);
  color:var(--gray-900); -webkit-text-fill-color:var(--gray-900);
}
.contact-form-light .f-input::placeholder,
.contact-form-light .f-textarea::placeholder { color:var(--gray-400); -webkit-text-fill-color:var(--gray-400); }
.contact-form-light .f-input:focus,
.contact-form-light .f-select:focus,
.contact-form-light .f-textarea:focus { border-color:var(--navy); background:var(--white); outline:none; }
.contact-form-light .f-input:-webkit-autofill,
.contact-form-light .f-input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px var(--white) inset;
  -webkit-text-fill-color: var(--gray-900) !important;
}
.contact-form-light .f-select { color:var(--gray-700); -webkit-text-fill-color:var(--gray-700); }
.contact-form-light .f-select option { color:var(--gray-900); }
.contact-form-light .f-label { color:var(--gray-600); }
.contact-form-light .f-submit { background:var(--navy); color:var(--white); }
.contact-form-light .f-submit:hover { background:var(--navy-mid); }
.contact-form-light .f-note { color:var(--gray-500); }

/* ── Page Hero (inner pages) ─────────────────────────────────── */
.page-hero {
  background:var(--navy);
  padding:52px 0 44px;
  position:relative; overflow:hidden;
}
.page-hero::before {
  content:''; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size:48px 48px;
}
.page-hero__inner { position:relative; z-index:1; }
.breadcrumb {
  font-size:12.5px; color:rgba(255,255,255,.7);
  margin-bottom:14px; display:flex; align-items:center; gap:6px;
}
.breadcrumb a { color:var(--gold-mid); }
.breadcrumb span { opacity:.5; }
.page-hero h1 { color:var(--white); font-size:clamp(26px,3.5vw,42px); margin-bottom:10px; }
.page-hero__sub { color:rgba(255,255,255,.88); font-size:17px; line-height:1.7; max-width:580px; }
.page-hero__chips { display:flex; flex-wrap:wrap; gap:8px; margin-top:20px; }
.hero-chip {
  display:flex; align-items:center; gap:6px;
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius-full); padding:5px 12px;
  font-size:12px; color:rgba(255,255,255,.75); font-weight:500;
}

/* ── Two-column layouts ──────────────────────────────────────── */
.two-col { display:grid; gap:48px; }
@media (min-width:900px) { .two-col { grid-template-columns:1fr 1fr; align-items:start; } }
.two-col-60 { display:grid; gap:48px; }
@media (min-width:900px) { .two-col-60 { grid-template-columns:3fr 2fr; align-items:start; } }

/* ── Sidebar card ────────────────────────────────────────────── */
.sidebar-card {
  background:var(--gray-50); border:1px solid var(--gray-200);
  border-radius:var(--radius-xl); padding:28px;
  position:sticky; top:calc(var(--nav-h) + 20px);
}
.sidebar-card h4 { color:var(--navy); font-size:17px; margin-bottom:14px; }
.sidebar-phone {
  display:block; font-size:26px; font-weight:800; color:var(--navy);
  margin-bottom:4px; text-decoration:none;
}
.sidebar-phone:hover { color:var(--gold-dark); }
.sidebar-avail { font-size:12px; color:var(--gray-400); margin-bottom:20px; }
.sidebar-card .btn { width:100%; margin-bottom:10px; }
.sidebar-divider { border:none; border-top:1px solid var(--gray-200); margin:18px 0; }
.sidebar-list { display:flex; flex-direction:column; gap:0; }
.sidebar-list li {
  display:flex; align-items:center; gap:9px;
  padding:9px 0; border-bottom:1px solid var(--gray-200);
  font-size:13.5px; color:var(--gray-600);
}
.sidebar-list li:last-child { border-bottom:none; }
.sidebar-list li a { color:var(--navy); font-weight:600; }
.sidebar-list li a:hover { color:var(--gold-dark); }

/* ── Highlight boxes ─────────────────────────────────────────── */
.callout-blue {
  background:var(--blue-bg); border-left:4px solid var(--blue-text);
  border-radius:0 var(--radius) var(--radius) 0;
  padding:16px 20px; margin:20px 0;
}
.callout-blue p { color:var(--gray-700); margin:0; font-size:15px; }
.callout-gold {
  background:var(--gold-light); border-left:4px solid var(--gold);
  border-radius:0 var(--radius) var(--radius) 0;
  padding:16px 20px; margin:20px 0;
}
.callout-gold strong { color:var(--navy); }

/* ── Content body (articles/service detail) ──────────────────── */
.content-body h2 { font-size:26px; color:var(--navy); margin:44px 0 12px; }
.content-body h3 { font-size:20px; color:var(--navy); margin:30px 0 10px; }
.content-body p  { color:var(--gray-600); margin-bottom:16px; font-size:15.5px; line-height:1.8; }
.content-body ul { margin:12px 0 20px 22px; list-style:disc; }
.content-body ul li { color:var(--gray-600); margin-bottom:8px; font-size:15px; line-height:1.7; }
.content-body ol { margin:12px 0 20px 22px; list-style:decimal; }
.content-body ol li { color:var(--gray-600); margin-bottom:8px; font-size:15px; }
.content-body strong { color:var(--gray-900); }
.content-body a { color:var(--navy); text-decoration:underline; text-underline-offset:3px; }

/* ── Blog ────────────────────────────────────────────────────── */
.blog-grid { display:grid; gap:24px; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); }
.blog-card { background:var(--white); border:1px solid var(--gray-200); border-radius:var(--radius-lg); overflow:hidden; transition:all var(--dur) var(--ease); }
.blog-card:hover { box-shadow:var(--shadow-md); transform:translateY(-3px); border-color:var(--gray-300); }
.blog-card__thumb { height:190px; background:var(--navy); display:flex; align-items:center; justify-content:center; font-size:52px; }
.blog-card__body { padding:24px; }
.blog-tag { display:inline-block; font-size:10.5px; font-weight:700; letter-spacing:.8px; text-transform:uppercase; background:var(--gold-light); color:var(--gold-dark); padding:3px 10px; border-radius:var(--radius-full); margin-bottom:10px; }
.blog-meta { font-size:12px; color:var(--gray-400); margin-bottom:8px; }
.blog-card h3 { font-size:17px; color:var(--navy); margin-bottom:8px; line-height:1.4; }
.blog-card p  { font-size:14px; color:var(--gray-600); line-height:1.65; margin-bottom:14px; }
.blog-card__link { font-size:13px; font-weight:700; color:var(--navy); display:inline-flex; align-items:center; gap:4px; }
.blog-card__link:hover { color:var(--gold-dark); }

/* Article layout */
.article-wrap { display:grid; gap:48px; }
@media (min-width:960px) { .article-wrap { grid-template-columns:1fr 300px; align-items:start; } }
.article-body h2 { font-size:24px; color:var(--navy); margin:44px 0 12px; padding-top:12px; border-top:1px solid var(--gray-200); }
.article-body h3 { font-size:19px; color:var(--navy); margin:28px 0 10px; }
.article-body p  { color:var(--gray-600); margin-bottom:16px; font-size:16px; line-height:1.8; }
.article-body ul { margin:12px 0 20px 24px; list-style:disc; }
.article-body ul li { color:var(--gray-600); margin-bottom:8px; line-height:1.7; }
.article-body ol { margin:12px 0 20px 24px; list-style:decimal; }
.article-toc { background:var(--gray-50); border:1px solid var(--gray-200); border-radius:var(--radius-lg); padding:24px 28px; margin-bottom:36px; }
.article-toc h4 { font-size:14px; color:var(--navy); margin-bottom:12px; }
.article-toc ol { padding-left:18px; list-style:decimal; }
.article-toc li { margin-bottom:6px; }
.article-toc a  { font-size:14px; color:var(--navy); font-weight:500; }
.article-toc a:hover { color:var(--gold-dark); }
.article-byline { font-size:13px; color:var(--gray-400); margin-bottom:28px; display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.article-byline .sep { opacity:.3; }

/* ── Info grid ───────────────────────────────────────────────── */
.info-grid { display:grid; gap:14px; grid-template-columns:repeat(auto-fill,minmax(180px,1fr)); }
.info-card { background:var(--gray-50); border:1px solid var(--gray-200); border-radius:var(--radius-lg); padding:22px 18px; text-align:center; }
.info-card__icon { font-size:28px; margin-bottom:8px; }
.info-card h4 { font-size:14px; color:var(--navy); margin-bottom:4px; }
.info-card p  { font-size:13px; color:var(--gray-500); }
.info-card a  { color:var(--navy); font-weight:700; }

/* ── CTA strip ───────────────────────────────────────────────── */
.cta-strip { background:var(--navy); padding:52px 0; text-align:center; }
.cta-strip h2 { color:var(--white); font-size:clamp(22px,3vw,32px); margin-bottom:10px; }
.cta-strip p  { color:rgba(255,255,255,.85); font-size:17px; max-width:500px; margin:0 auto 28px; }
.cta-strip__btns { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer { background:var(--navy-dark); padding:64px 0 0; }
.footer-grid {
  display:grid; gap:36px;
  grid-template-columns:1fr;
}
@media (min-width:640px)  { .footer-grid { grid-template-columns:1fr 1fr; } }
@media (min-width:1024px) { .footer-grid { grid-template-columns:2.2fr 1fr 1fr 1fr; } }
.footer-brand__logo { display:flex; align-items:center; gap:10px; margin-bottom:14px; }.footer-brand__name { font-size:14px; font-weight:700; color:var(--white); }
.footer-brand p { font-size:13px; color:rgba(255,255,255,.78); line-height:1.75; margin-bottom:16px; }
.footer-contact { font-size:13px; line-height:1.9; color:rgba(255,255,255,.82); }
.footer-contact a { color:var(--gold-mid); font-weight:600; }
.footer-heading { font-size:11px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:rgba(255,255,255,.9); margin-bottom:14px; }
.footer-links li { margin-bottom:8px; }
.footer-links a { font-size:13px; color:rgba(255,255,255,.78); transition:color var(--dur) var(--ease); }
.footer-links a:hover { color:var(--gold-mid); }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,.07);
  padding:20px 0;
  display:flex; flex-wrap:wrap;
  justify-content:space-between; align-items:center; gap:10px;
  font-size:12px; color:rgba(255,255,255,.6);
  margin-top:48px;
}
/* ── Utility ─────────────────────────────────────────────────── */
.text-center { text-align:center; }
.text-navy   { color:var(--navy); }
.text-gold   { color:var(--gold-dark); }
.text-muted  { color:var(--gray-500); }.mt-4  { margin-top:4px; }
.mt-8  { margin-top:8px; }
.mt-16 { margin-top:16px; }
.mt-24 { margin-top:24px; }
.mt-32 { margin-top:32px; }
.mt-48 { margin-top:48px; }
.mb-8  { margin-bottom:8px; }
.mb-16 { margin-bottom:16px; }
.mb-24 { margin-bottom:24px; }
.mb-32 { margin-bottom:32px; }
.flex        { display:flex; }.gap-8  { gap:8px; }
.gap-12 { gap:12px; }
.gap-16 { gap:16px; }
.hr { border:none; border-top:1px solid var(--gray-200); margin:32px 0; }
.visually-hidden { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; }

/* Add bottom padding on mobile so sticky CTA bar doesn't overlap content */
@media (max-width:959px) { body { padding-bottom:64px; } }

/* ── Security Risk Quiz ──────────────────────────────────────── */
.qz-question { display:none; }
.qz-question.active { display:block; }
.qz-q-text { font-size:19px; font-weight:700; color:#fff; margin-bottom:18px; line-height:1.45; }
.qz-options { display:flex; flex-direction:column; gap:10px; margin-bottom:22px; }
.qz-opt {
  display:flex; align-items:center; gap:12px;
  padding:14px 18px; background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.15); border-radius:10px;
  color:#fff; font-size:15px; font-weight:500; cursor:pointer;
  transition:all .18s ease; text-align:left; width:100%;
}
.qz-opt:hover { background:rgba(200,150,46,.18); border-color:var(--gold); }
.qz-opt:active { transform:scale(.99); }
.qz-opt__dot { width:18px; height:18px; border:2px solid rgba(255,255,255,.4); border-radius:50%; flex-shrink:0; }
.qz-opt:hover .qz-opt__dot { border-color:var(--gold); }
.qz-nav { display:flex; justify-content:space-between; align-items:center; margin-top:8px; }
.qz-back {
  background:transparent; border:1px solid rgba(255,255,255,.25);
  color:rgba(255,255,255,.7); padding:9px 16px; border-radius:8px;
  font-size:13px; font-weight:600; cursor:pointer;
}
.qz-back:hover { color:#fff; border-color:rgba(255,255,255,.5); }
.qz-back:disabled { opacity:.35; cursor:not-allowed; }
@media (max-width:640px) {
  .qz-q-text { font-size:17px; }
  .qz-opt { font-size:14px; padding:13px 14px; }
}

/* ── Image Captcha ───────────────────────────────────────────── */
.captcha-wrap { margin-top:16px; margin-bottom:20px; }
.captcha-label { display:block; font-size:11px; font-weight:700; letter-spacing:.8px; text-transform:uppercase; color:#FFFFFF; margin-bottom:10px; }
.captcha-options { display:flex; gap:12px; flex-wrap:wrap; }
.captcha-opt { position:relative; cursor:pointer; }
.captcha-opt input[type="radio"] { position:absolute; opacity:0; width:0; height:0; }
.captcha-img-box { display:flex; flex-direction:column; align-items:center; gap:6px; background:rgba(255,255,255,.15); border:2px solid rgba(255,255,255,.35); border-radius:10px; padding:14px 18px; cursor:pointer; transition:all .18s; min-width:80px; }
.captcha-opt input:checked + .captcha-img-box { background:rgba(255,255,255,.25); border-color:var(--gold); box-shadow:0 0 0 3px rgba(200,150,46,.35); }
.captcha-img-box svg { display:block; filter:drop-shadow(0 1px 3px rgba(0,0,0,.4)); }
.captcha-img-box span { font-size:12px; color:#FFFFFF; font-weight:700; margin-top:2px; text-shadow:0 1px 2px rgba(0,0,0,.5); }
.captcha-error { color:#ff6b6b; font-size:13px; margin-top:8px; display:none; }
/* Light form captcha override */
.contact-form-light .captcha-label { color:var(--gray-700); }
.contact-form-light .captcha-img-box { background:var(--gray-50); border-color:var(--gray-300); }
.contact-form-light .captcha-opt input:checked + .captcha-img-box { background:var(--blue-bg); border-color:var(--navy); }
.contact-form-light .captcha-img-box span { color:var(--gray-700); }
.contact-form-light .captcha-error { color:var(--red); }

/* ── Footer Designer Credit ──────────────────────────────────── */
.footer-designer { font-size:12px; color:rgba(255,255,255,.75); display:inline-flex; align-items:center; gap:5px; }
.footer-designer a { color:var(--gold); font-weight:700; text-decoration:none; letter-spacing:.02em; border-bottom:1px solid rgba(212,169,81,.5); transition:color .15s,border-color .15s,opacity .15s; }
.footer-designer a:hover { color:#fff; border-color:rgba(255,255,255,.7); }

/* ── Areas Grid (Homepage + Areas Pages) ─────────────────────── */
.areas-grid-home { display:grid; grid-template-columns:repeat(auto-fill,minmax(160px,1fr)); gap:12px; margin-top:32px; }
.area-home-card { display:flex; flex-direction:column; align-items:center; gap:6px; background:var(--white); border:2px solid var(--gray-200); border-radius:12px; padding:20px 12px; text-decoration:none; transition:all .18s; text-align:center; }
.area-home-card:hover { border-color:var(--gold); box-shadow:0 4px 16px rgba(200,150,46,.18); transform:translateY(-2px); }
.area-home-card--all { background:var(--navy); border-color:var(--navy); }
.area-home-card--all .area-home-name,.area-home-card--all .area-home-note { color:var(--white); }
.area-home-icon { font-size:20px; }
.area-home-name { font-size:14px; font-weight:700; color:var(--navy); }
.area-home-note { font-size:11px; color:var(--gray-400); }

/* ── City Page: Areas Grid Large ────────────────────────────── */
.areas-grid-large { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:20px; margin-top:32px; }
.area-card-large { display:flex; gap:16px; background:var(--white); border:2px solid var(--gray-200); border-radius:12px; padding:24px; text-decoration:none; transition:all .18s; }
.area-card-large:hover { border-color:var(--gold); box-shadow:0 4px 20px rgba(200,150,46,.15); }
.area-card-large__icon { font-size:28px; flex-shrink:0; }
.area-card-large__content h3 { font-size:16px; font-weight:700; color:var(--navy); margin:0 0 6px; }
.area-card-large__content p { font-size:13px; color:var(--gray-600); margin:0 0 10px; }
.area-card-large__cta { font-size:13px; font-weight:700; color:var(--gold); }
/* ── City/Area Page: Simple Areas Grid ──────────────────────── */
.areas-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(140px,1fr)); gap:10px; margin-top:24px; }
.area-card { display:block; background:var(--white); border:2px solid var(--gray-200); border-radius:10px; padding:14px 12px; text-decoration:none; font-size:13px; font-weight:700; color:var(--navy); text-align:center; transition:all .18s; }
.area-card:hover { border-color:var(--gold); background:var(--gold-light); }

/* ── Breadcrumb Bar ──────────────────────────────────────────── */
.breadcrumb-bar { background:var(--gray-100); border-bottom:1px solid var(--gray-200); padding:10px 0; }
.breadcrumb-bar nav { font-size:13px; color:var(--gray-600); }
.breadcrumb-bar a { color:var(--navy); text-decoration:none; font-weight:600; }
.breadcrumb-bar a:hover { color:var(--gold); }

/* ── Section Eyebrow ─────────────────────────────────────────── */
.section-eyebrow { font-size:11px; font-weight:800; letter-spacing:2px; text-transform:uppercase; color:var(--gold); margin-bottom:8px; }
.section-intro { font-size:16px; color:var(--gray-600); max-width:700px; margin:0 auto; line-height:1.7; }

/* ── Section Pad / Backgrounds ───────────────────────────────── */
.section-pad { padding:64px 0; }
.bg-white { background:var(--white); }
.bg-light { background:var(--gray-50); }

/* ── Service Cards (City Pages) ──────────────────────────────── */
/* Note: .services-grid grid definition lives above in "Cards" section */
.service-card { background:var(--white); border:2px solid var(--gray-200); border-radius:16px; padding:28px 24px; transition:all .18s; }
.service-card:hover { border-color:var(--gold); box-shadow:0 4px 20px rgba(200,150,46,.12); }
.service-icon { font-size:28px; margin-bottom:12px; }
.service-card h3 { font-size:16px; font-weight:700; color:var(--navy); margin:0 0 8px; }
.service-card p { font-size:13px; color:var(--gray-600); line-height:1.65; margin:0 0 12px; }
.service-link { font-size:13px; font-weight:700; color:var(--gold); text-decoration:none; }
.service-link:hover { color:var(--gold-dark); }

/* ── CTA Section (City Pages) ────────────────────────────────── */
.cta-section { background:var(--navy); }
.cta-inner { text-align:center; }
.cta-inner h2 { color:var(--white); font-size:clamp(22px,3vw,32px); margin:0 0 12px; }
.cta-inner p { color:rgba(255,255,255,.75); font-size:16px; max-width:600px; margin:0 auto 28px; }
.cta-actions { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }
.btn-outline-white { display:inline-flex; align-items:center; gap:8px; background:transparent; border:2px solid rgba(255,255,255,.5); color:var(--white); padding:14px 28px; border-radius:8px; font-weight:700; text-decoration:none; font-size:15px; transition:all .18s; }
.btn-outline-white:hover { border-color:var(--white); background:rgba(255,255,255,.1); }

/* ── Footer (City Pages) ─────────────────────────────────────── */
.footer { background:var(--navy-dark); color:var(--white); padding:48px 0 24px; }
.footer__grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:32px; margin-bottom:32px; }
.footer__brand p { font-size:13px; color:rgba(255,255,255,.7); line-height:1.6; margin:12px 0 8px; }
.footer__lic { font-size:11px; color:rgba(255,255,255,.5); }
.footer__col h4 { font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:1px; color:rgba(255,255,255,.5); margin:0 0 12px; }
.footer__col ul { list-style:none; padding:0; margin:0; }
.footer__col li { margin-bottom:8px; }
.footer__col a { color:rgba(255,255,255,.75); text-decoration:none; font-size:13px; }
.footer__col a:hover { color:var(--gold); }
.footer__bottom { border-top:1px solid rgba(255,255,255,.1); padding-top:20px; text-align:center; font-size:12px; color:rgba(255,255,255,.5); }
.footer__bottom a { color:rgba(255,255,255,.6); text-decoration:none; }
@media(max-width:768px) { .footer__grid { grid-template-columns:1fr 1fr; } }
@media(max-width:480px) { .footer__grid { grid-template-columns:1fr; } }

/* ── Blog Article Page ────────────────────────────────────────── */
.blog-article { padding:48px 0 80px; }
.blog-container { max-width:820px; }
.blog-header { margin-bottom:40px; }
.blog-meta { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:16px; }
.blog-category { background:var(--gold-light); color:var(--gold-dark); font-size:11px; font-weight:800; text-transform:uppercase; letter-spacing:1px; padding:4px 10px; border-radius:4px; }
.blog-date,.blog-read { font-size:12px; color:var(--gray-400); display:flex; align-items:center; }
.blog-header h1 { font-size:clamp(24px,4vw,40px); color:var(--navy); line-height:1.25; margin:0 0 16px; }
.blog-intro { font-size:17px; color:var(--gray-600); line-height:1.75; border-left:4px solid var(--gold); padding-left:20px; margin:0; }
.blog-body { line-height:1.8; color:var(--gray-700); }
.blog-body h2 { font-size:24px; color:var(--navy); margin:40px 0 12px; }
.blog-body h3 { font-size:18px; color:var(--navy); margin:28px 0 10px; }
.blog-body p { margin:0 0 18px; }
.blog-body ul,.blog-body ol { padding-left:20px; margin:0 0 18px; }
.blog-body li { margin-bottom:8px; }
.blog-table { width:100%; border-collapse:collapse; margin:24px 0; font-size:14px; }
.blog-table th { background:var(--navy); color:var(--white); padding:10px 14px; text-align:left; }
.blog-table td { padding:10px 14px; border-bottom:1px solid var(--gray-200); }
.blog-table tr:nth-child(even) td { background:var(--gray-50); }
.blog-cta-box { background:var(--navy); border-radius:16px; padding:32px; margin:40px 0; text-align:center; }
.blog-cta-box h3 { color:var(--white); margin:0 0 10px; font-size:20px; }
.blog-cta-box p { color:rgba(255,255,255,.8); margin:0 0 20px; }
.blog-author { background:var(--gray-50); border-radius:12px; padding:24px; margin-top:48px; }
.blog-author__info strong { display:block; color:var(--navy); margin-bottom:6px; }
.blog-author__info p { font-size:13px; color:var(--gray-600); margin:0; }
.blog-related { margin-top:40px; }
.blog-related h3 { font-size:18px; color:var(--navy); margin-bottom:12px; }
.blog-related ul { list-style:none; padding:0; }
.blog-related li { margin-bottom:8px; }
.blog-related a { color:var(--gold); font-weight:600; text-decoration:none; }
.blog-related a:hover { color:var(--navy); }

/* ── <details>/<summary> FAQ accordion (city pages + blog posts) ── */
.faq-item summary { padding:16px 20px; font-weight:700; cursor:pointer; color:var(--navy); list-style:none; background:var(--white); }
.faq-item summary:hover { background:var(--gray-50); }
.faq-item p { padding:0 20px 16px; margin:0; color:var(--gray-700); font-size:14px; }
.faq-item[open] summary { background:var(--gray-50); }

/* ================================================================
   v3 AUDIT — 2026-05-25
   Promoted from inline <style> blocks + added missing class rules.
   These complete the class set; per-page inline blocks (where present)
   still override these and are kept for now. Strip those inline blocks
   in a follow-up pass for the maintenance benefit.
   ================================================================ */

/* ── Navbar text block (was display:none on parent, but no rules) ─ */
.navbar__name {
  display:block; font-size:14px; font-weight:800; color:var(--navy);
  letter-spacing:.2px; line-height:1.2;
}
.navbar__sub {
  display:block; font-size:10.5px; font-weight:600;
  color:var(--gray-600); letter-spacing:.6px;
  text-transform:uppercase; margin-top:1px;
}

/* ── Hero chip rows (homepage + a few area hubs) ──────────────── */
.hero__chips { display:flex; flex-wrap:wrap; gap:8px; margin-top:18px; }

/* ── Homepage "authority" inner blocks (the founder section) ──── */
.authority__inner { display:grid; grid-template-columns:1fr; gap:32px; }
@media (min-width:1024px) { .authority__inner { grid-template-columns:1fr 380px; align-items:start; } }
.authority__content { color:rgba(255,255,255,.92); }
.authority__stats { color:var(--white); margin:0; padding:0; }

/* ── Service-card title/body fallbacks (used on homepage service cards) ── */
.card__title { font-size:17px; color:var(--navy); margin:8px 0 6px; font-weight:800; line-height:1.3; }
.card__body  { font-size:14.5px; color:var(--gray-600); line-height:1.65; margin:0 0 12px; }

/* ── Generic "badge" pill (used standalone in many places) ────── */
.badge {
  display:inline-block;
  background:rgba(200,150,46,.18);
  border:1px solid rgba(200,150,46,.5);
  color:var(--gold-dark);
  padding:5px 12px; border-radius:var(--radius-full);
  font-size:11.5px; font-weight:700;
  letter-spacing:.4px; text-transform:uppercase;
}

/* ── Homepage lead-form column ─────────────────────────────────── */
.lead-form-col { display:flex; flex-direction:column; gap:16px; }
.lead-form-phone {
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius); padding:16px 18px; margin-bottom:6px;
}

/* ── services.html: hidden dot between credential pills ───────── */
.cred-dot { display:none; }
@media (min-width:720px) { .cred-dot { display:inline; } }

/* ── /areas/index.html — jump nav + region heads ──────────────── */
.jump-nav {
  background:var(--gray-50); padding:18px 0;
  border-bottom:1px solid var(--gray-200);
  position:sticky; top:0; z-index:50;
}
.jump-nav .container { display:flex; flex-wrap:wrap; gap:10px; align-items:center; }
.jump-nav__label {
  font-size:13px; font-weight:700; color:var(--gray-600);
  text-transform:uppercase; letter-spacing:.5px; margin-right:6px;
}
.jump-chip {
  display:inline-block; background:var(--white);
  border:1px solid var(--gray-200); border-radius:var(--radius-full);
  padding:7px 14px; color:var(--navy);
  font-size:13.5px; font-weight:600; text-decoration:none;
  transition:all var(--dur) var(--ease);
}
.jump-chip:hover { border-color:var(--gold); color:var(--gold); }
.areas-region { padding:50px 0; border-bottom:1px solid var(--gray-100); }
.areas-region:nth-child(even) { background:var(--gray-50); }
.region-head {
  display:flex; justify-content:space-between; align-items:baseline;
  margin-bottom:24px; flex-wrap:wrap; gap:10px;
}
.region-head h2 { font-size:clamp(22px,3vw,28px); color:var(--navy); margin:0; }
.region-count { font-size:13px; color:var(--gray-600); font-weight:600; }

/* ── City pages (areas/*.html) — base styles, inline blocks override ── */
.city-hero {
  background:linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color:var(--white); padding:60px 0 52px; position:relative;
}
.city-hero h1 { color:var(--white); font-size:clamp(28px,4.5vw,44px); margin:14px 0 12px; line-height:1.2; }
.city-hero h1 em { color:var(--gold); font-style:normal; }
.city-hero .sub { font-size:17.5px; line-height:1.65; color:rgba(255,255,255,.92); max-width:720px; margin-bottom:22px; }
.city-hero .chips { display:flex; flex-wrap:wrap; gap:8px; margin-top:18px; }
.city-hero .chip {
  background:rgba(255,255,255,.10); border:1px solid rgba(255,255,255,.20);
  padding:6px 12px; border-radius:var(--radius-full);
  font-size:13px; font-weight:600;
}
.city-hero .badge {
  background:rgba(200,150,46,.18); border:1px solid rgba(200,150,46,.50);
  color:var(--gold); padding:6px 14px;
  font-size:12px; font-weight:700; letter-spacing:.3px;
}
.city-hero .cta-row { display:flex; gap:12px; flex-wrap:wrap; margin-top:8px; }
.cta-row { display:flex; gap:12px; flex-wrap:wrap; }
.sub { font-size:17px; line-height:1.65; color:rgba(255,255,255,.92); }
.chip {
  display:inline-block; background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.20); padding:6px 12px;
  border-radius:var(--radius-full); font-size:13px; font-weight:600;
}
.chips { display:flex; flex-wrap:wrap; gap:8px; }

.stats-strip { background:var(--navy); color:var(--white); padding:0; }
.stats-grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:0;
  border-top:1px solid rgba(255,255,255,.08);
}
@media (max-width:720px) {
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .stat-cell:nth-child(2) { border-right:none; }
  .stat-cell { border-bottom:1px solid rgba(255,255,255,.08); }
}
.stat-cell {
  padding:24px 18px; text-align:center;
  border-right:1px solid rgba(255,255,255,.08);
}
.stat-cell:last-child { border-right:none; }

.problem-section { background:var(--gray-50); padding:60px 0; }
.problem-grid {
  display:grid; grid-template-columns:repeat(auto-fill, minmax(260px,1fr));
  gap:18px; margin-top:30px;
}
.problem-card {
  background:var(--white); border-left:4px solid var(--red);
  border-radius:var(--radius); padding:22px; box-shadow:var(--shadow-xs);
}
.problem-card h3 { font-size:17px; color:var(--navy); margin-bottom:8px; font-weight:800; }
.problem-card p  { font-size:14.5px; color:var(--gray-600); line-height:1.65; margin:0; }

.solution-grid {
  display:grid; grid-template-columns:repeat(auto-fill, minmax(280px,1fr));
  gap:20px; margin-top:30px;
}
.solution-card {
  background:var(--white); border:1px solid var(--gray-200);
  border-radius:var(--radius-lg); padding:22px;
}
.solution-card__icon { font-size:30px; margin-bottom:10px; }
.solution-card h3 { font-size:18px; color:var(--navy); margin-bottom:8px; }
.solution-card p  { font-size:14.5px; color:var(--gray-600); line-height:1.65; margin:0; }

.education { padding:48px 0; background:var(--white); }
.education .container { max-width:880px; }
.education p { font-size:17px; line-height:1.75; color:var(--gray-700); }

.faq-summary {
  cursor:pointer; padding:18px 22px;
  font-size:16px; font-weight:700; color:var(--navy);
  list-style:none; display:flex; justify-content:space-between; align-items:center;
}
.faq-summary::-webkit-details-marker { display:none; }
.faq-summary::after { content:"+"; font-size:24px; color:var(--gold); font-weight:400; }
.faq-item[open] .faq-summary::after { content:"−"; }
.faq-body { padding:0 22px 18px; font-size:15px; color:var(--gray-600); line-height:1.7; }

.city-cta { background:var(--navy); color:var(--white); padding:60px 0; text-align:center; }
.city-cta h2 { color:var(--white); font-size:clamp(24px,3.5vw,34px); margin-bottom:14px; }
.city-cta p  { color:rgba(255,255,255,.9); font-size:17px; line-height:1.6; max-width:640px; margin:0 auto 26px; }
@media (max-width:520px) {
  .problem-card, .solution-card { padding:18px; }
  .city-hero { padding:48px 0 42px; }
}

/* ── Service pages (apartment, construction, event, post-fire, pricing) ── */
.svc-hero {
  background:linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color:var(--white); padding:60px 0 56px;
}
.svc-hero h1 { color:var(--white); font-size:clamp(28px,4.5vw,46px); line-height:1.18; margin:14px 0 14px; font-weight:800; }
.svc-hero h1 em { color:var(--gold); font-style:normal; }
.svc-hero .sub { font-size:17px; line-height:1.7; color:rgba(255,255,255,.92); max-width:680px; margin:0 0 26px; }
.svc-hero .badge {
  background:rgba(200,150,46,.18); border:1px solid rgba(200,150,46,.50);
  color:var(--gold); padding:6px 14px; border-radius:var(--radius-full);
  font-size:12px; font-weight:700; letter-spacing:.5px; text-transform:uppercase;
}
.svc-hero .chips { display:flex; flex-wrap:wrap; gap:8px; margin-top:22px; }
.svc-hero .chip  {
  background:rgba(255,255,255,.10); border:1px solid rgba(255,255,255,.20);
  padding:6px 12px; border-radius:var(--radius-full); font-size:13px; font-weight:600;
}
.svc-hero .cta-row { display:flex; gap:12px; flex-wrap:wrap; }
.svc-section { padding:60px 0; }
.svc-section.gray, .svc-section.svc-section--gray { background:var(--gray-50); }
.gray { background:var(--gray-50); }
.svc-grid {
  display:grid; grid-template-columns:repeat(auto-fill, minmax(260px,1fr));
  gap:18px; margin-top:32px;
}
.svc-card {
  background:var(--white); border:1px solid var(--gray-200);
  border-radius:var(--radius-lg); padding:24px;
}
.svc-card__icon { font-size:30px; margin-bottom:10px; }
.svc-card h3 { font-size:17px; color:var(--navy); margin-bottom:8px; font-weight:800; }
.svc-card p  { font-size:14.5px; color:var(--gray-600); line-height:1.7; margin:0; }
.cta-section-final { background:var(--navy); color:var(--white); padding:64px 0; text-align:center; }
.cta-section-final h2 { color:var(--white); font-size:clamp(24px,3.5vw,34px); margin-bottom:14px; }
.cta-section-final p  { color:rgba(255,255,255,.9); font-size:17px; line-height:1.6; max-width:620px; margin:0 auto 28px; }
.trust-row { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin:24px 0 0; }
.trust-row span {
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.20);
  padding:8px 14px; border-radius:var(--radius-full);
  font-size:13px; font-weight:600; color:var(--white);
}

/* ── Pricing cards (pricing.html + service pages) ─────────────── */
.price-card {
  background:var(--white); border:2px solid var(--gray-200);
  border-radius:var(--radius-lg); padding:28px 24px;
  transition:all var(--dur) var(--ease);
}
.price-card:hover {
  border-color:var(--gold);
  box-shadow:0 6px 24px rgba(200,150,46,.12);
  transform:translateY(-2px);
}
.price-card.featured, .price-card .featured {
  border-color:var(--gold);
  background:linear-gradient(180deg, var(--gold-light) 0%, var(--white) 60%);
}
.featured { border-color:var(--gold); }
.price-card h3 { font-size:20px; color:var(--navy); margin-bottom:6px; font-weight:800; }
.price-card .range { font-size:32px; font-weight:900; color:var(--navy); margin:14px 0 4px; }
.range { font-size:32px; font-weight:900; color:var(--navy); }
.price-card .unit  { font-size:13px; color:var(--gray-600); font-weight:600; text-transform:uppercase; letter-spacing:.5px; }
.unit  { font-size:13px; color:var(--gray-600); font-weight:600; text-transform:uppercase; letter-spacing:.5px; }
.price-card ul { list-style:none; padding:0; margin:18px 0; }
.price-card li { padding:6px 0; font-size:14.5px; color:var(--gray-600); }
.price-card li::before { content:"✓"; color:var(--gold); font-weight:800; margin-right:8px; }

/* ── New blog post styles (cost / wildfire / how-to-choose) ───── */
.blog-hero {
  background:linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color:var(--white); padding:60px 0 50px;
}
.blog-hero h1 { color:var(--white); font-size:clamp(26px,3.8vw,40px); line-height:1.2; margin:14px 0 14px; font-weight:800; }
.blog-hero .meta { color:rgba(255,255,255,.7); font-size:13px; font-weight:500; }
.blog-hero .badge {
  background:rgba(200,150,46,.18); border:1px solid rgba(200,150,46,.5);
  color:var(--gold); padding:5px 12px; border-radius:var(--radius-full);
  font-size:11px; font-weight:700; letter-spacing:.5px; text-transform:uppercase;
}
.lead { font-size:19px; color:var(--gray-700); line-height:1.7; margin-bottom:32px; font-weight:500; }
.meta { color:var(--gray-400); font-size:13px; font-weight:500; }
.blog-callout {
  background:var(--gold-light); border-left:4px solid var(--gold);
  padding:18px 22px; margin:24px 0; border-radius:0 var(--radius) var(--radius) 0;
}
.blog-callout p { margin:0; font-size:15.5px; color:var(--gray-700); }
.blog-cta {
  background:var(--navy); color:var(--white); padding:48px 24px;
  text-align:center; border-radius:var(--radius-lg); margin:40px 0;
}
.blog-cta h3 { color:var(--white); font-size:22px; margin-bottom:10px; }
.blog-cta p  { color:rgba(255,255,255,.9); margin-bottom:20px; }

/* ── blog/index.html featured post + newsletter ───────────────── */
.featured-wrap {
  background:var(--white); border:1px solid var(--gray-200);
  border-radius:var(--radius-lg); overflow:hidden;
  box-shadow:var(--shadow-lg);
  display:grid; grid-template-columns:1fr;
  transition:box-shadow var(--dur) var(--ease);
}
@media (min-width:720px) { .featured-wrap { grid-template-columns:1fr 1fr; } }
.featured-wrap:hover { box-shadow:var(--shadow-xl); }
.featured-img {
  background:var(--navy); min-height:240px;
  display:flex; align-items:center; justify-content:center;
  font-size:80px; position:relative;
}
.featured-badge {
  position:absolute; top:20px; left:20px;
  background:var(--gold); color:var(--navy);
  font-size:11px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase;
  padding:5px 14px; border-radius:var(--radius-full);
}
.featured-body { padding:36px 32px; display:flex; flex-direction:column; justify-content:center; }
.featured-body h2 { font-size:22px; color:var(--navy); line-height:1.35; margin:10px 0 14px; }
.featured-body p  { font-size:15px; color:var(--gray-600); line-height:1.75; margin-bottom:22px; }
.featured-meta { font-size:12px; color:var(--gray-400); margin-bottom:10px; display:flex; gap:12px; flex-wrap:wrap; }
.newsletter-box {
  background:var(--gold-light); border:1px solid rgba(200,150,46,.25);
  border-radius:var(--radius-lg); padding:40px 36px; text-align:center;
}
.newsletter-form { display:flex; gap:10px; max-width:440px; margin:0 auto; flex-wrap:wrap; }
.newsletter-form input {
  flex:1; min-width:200px; padding:12px 16px;
  border:1px solid var(--gray-300); border-radius:var(--radius);
  font-size:15px; font-family:inherit; background:var(--white);
}
.newsletter-form input:focus { outline:none; border-color:var(--navy); }
.newsletter-form button {
  padding:12px 22px; background:var(--navy); color:var(--white);
  border:none; border-radius:var(--radius);
  font-size:15px; font-weight:700; font-family:inherit;
  cursor:pointer; transition:background var(--dur) var(--ease);
}
.newsletter-form button:hover { background:var(--navy-mid); }
.newsletter-note { font-size:12px; color:var(--gray-400); margin-top:10px; }

/* ── Cornerstone blog post: price table + checklist ───────────── */
.price-table { width:100%; border-collapse:collapse; margin:20px 0; font-size:15px; }
.price-table th {
  background:var(--navy); color:var(--white);
  padding:12px 16px; text-align:left; font-size:13px; font-weight:700;
}
.price-table td { padding:12px 16px; border-bottom:1px solid var(--gray-200); color:var(--gray-700); }
.price-table tr:nth-child(even) td { background:var(--gray-50); }
.price-table .price-col { font-weight:700; color:var(--navy); }
.checklist { list-style:none; margin:16px 0; padding:0; }
.checklist li {
  padding:10px 0; border-bottom:1px solid var(--gray-200);
  font-size:15px; color:var(--gray-700);
  display:flex; align-items:flex-start; gap:12px; line-height:1.6;
}
.checklist li:last-child { border-bottom:none; }
.checklist li strong { color:var(--navy); }
.checklist-num {
  flex-shrink:0; width:28px; height:28px;
  background:var(--navy); color:var(--white);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:13px; font-weight:700;
}

/* === v4 AUDIT — 2026-05-30 — promoted from inline <style> blocks === */
/* .guide-grid — used on every area page + index */
.guide-grid { display:grid; grid-template-columns:1.4fr 1fr; gap:34px; align-items:start; max-width:1080px; margin:0 auto; }
@media (max-width: 768px) {
  .guide-grid { grid-template-columns:1fr !important; gap:22px !important; }
  .guide-grid > div:nth-child(2) { position:static !important; }
}

/* leave-a-review.html */
.review-hero { background:linear-gradient(135deg,#0a1628 0%,#152d52 100%); color:#fff; padding:64px 0 60px; text-align:center; }
.review-hero h1 { color:#fff; font-size:clamp(30px,4.8vw,48px); line-height:1.18; margin:14px 0 16px; font-weight:800; }
.review-hero h1 em { color:var(--gold); font-style:normal; }
.review-hero .sub { font-size:18px; line-height:1.7; color:rgba(255,255,255,.92); max-width:680px; margin:0 auto 6px; }
.review-hero .badge { display:inline-block; background:rgba(200,150,46,.2); border:1px solid rgba(200,150,46,.55); color:var(--gold); padding:7px 16px; border-radius:999px; font-size:13px; font-weight:700; letter-spacing:.5px; text-transform:uppercase; }
.review-section { padding:64px 0; }
.review-section.gray { background:var(--gray-50); }
.platform-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:22px; margin:36px auto 12px; max-width:980px; }
.platform-card { background:#fff; border:2px solid var(--gray-200); border-radius:14px; padding:30px 24px; text-align:center; transition:all .2s; text-decoration:none; color:inherit; display:block; }
.platform-card:hover { border-color:var(--gold); box-shadow:0 8px 24px rgba(200,150,46,.15); transform:translateY(-3px); }
.platform-card .logo { font-size:54px; line-height:1; margin-bottom:14px; }
.platform-card h3 { font-size:22px; color:var(--navy); margin:0 0 8px; font-weight:800; }
.platform-card p { font-size:14.5px; color:var(--gray-600); line-height:1.6; margin:0 0 18px; }
.platform-card .platform-btn { display:inline-block; background:var(--gold); color:var(--navy); padding:11px 22px; border-radius:8px; font-weight:800; font-size:14px; text-transform:uppercase; letter-spacing:.4px; }
.review-tips { background:#fff; border:1px solid var(--gray-200); border-radius:14px; padding:28px; max-width:780px; margin:0 auto; }
.review-tips h2 { font-size:22px; color:var(--navy); margin:0 0 12px; font-weight:800; }
.review-tips ul { list-style:none; padding:0; margin:0; }
.review-tips li { padding:8px 0 8px 26px; position:relative; font-size:15.5px; color:var(--gray-700); line-height:1.6; }
.review-tips li::before { content:"\2713"; color:var(--gold); font-weight:800; position:absolute; left:0; top:8px; }
.thanks-block { text-align:center; max-width:680px; margin:0 auto; }
.thanks-block h2 { color:#fff; font-size:30px; font-weight:800; margin:0 0 12px; }
.thanks-block p { color:rgba(255,255,255,.9); font-size:16px; line-height:1.7; margin:0 0 22px; }

/* === v5 AEO blocks — quick-answer cards designed for AI search lift === */
.quick-answer { background:#fff; border-left:4px solid var(--gold); border-radius:8px; padding:18px 22px; margin:24px 0 0; box-shadow:0 4px 14px rgba(11,30,61,.07); }
.quick-answer__label { display:inline-block; font-size:11px; font-weight:800; letter-spacing:1px; text-transform:uppercase; color:var(--gold); margin-bottom:6px; }
.quick-answer p { color:var(--gray-900); font-size:16px; line-height:1.65; margin:0; font-weight:500; }
.quick-answer p strong { color:var(--navy); }
@media (max-width:520px) { .quick-answer { padding:16px 18px; } .quick-answer p { font-size:15px; } }

/* === Mobile responsive hardening — 2026-06-09 === */
/* Grid/flex children default to min-width:auto, which refuses to shrink below
   their content's intrinsic width and forces horizontal page overflow on
   phones. Allow them to shrink to their track. */
.two-col > *,
.two-col-60 > *,
.why-grid > *,
.svc-grid > *,
.services-grid > *,
.areas-grid > *,
.areas-grid-home > *,
.areas-grid-large > * { min-width: 0; }

/* Buttons: a long label + white-space:nowrap can push a button wider than the
   viewport, which drags the whole page sideways. On phones let the label wrap
   and cap the width so a button can never exceed its container. */
@media (max-width: 600px) {
  .btn,
  a.btn-gold,
  a.btn-outline,
  a.btn-navy,
  a.btn-outline-navy,
  a.btn-outline-white { white-space: normal; max-width: 100%; }
}

/* Long unbroken strings (emails, license #s, URLs) wrap inside their card
   instead of overflowing on narrow screens. */
.content-body,
.sidebar-card,
.contact-form-light,
.why-card { overflow-wrap: break-word; }

/* Final guard for ultra-narrow screens (≤360px, e.g. older small phones):
   prevent any residual horizontal scroll. Scoped narrow so it never masks
   layout behaviour on standard phone/tablet/desktop widths. */
@media (max-width: 360px) {
  html, body { overflow-x: hidden; }
}
