/* ============================================================
   FIX IT ROOFERS — National Design System
   Navy + Safety Orange · National Service Chain Aesthetic
   ============================================================ */

:root {
  /* Brand palette */
  --navy: #0F2A47;
  --navy-dark: #0A1D33;
  --navy-light: #1B3A5C;
  --orange: #F26722;
  --orange-dark: #D9531A;
  --orange-light: #FF7E3D;
  --charcoal: #1A202C;

  /* Neutrals */
  --white: #ffffff;
  --off-white: #F5F7FA;
  --gray-100: #EDF1F5;
  --gray-200: #DCE3EB;
  --gray-300: #C2CCD6;
  --gray-500: #6B7A8D;
  --gray-700: #3D4A5A;
  --text: #2D3748;
  --text-light: #5A6675;

  /* Shadows — blue-tinted multi-layer (Stripe-style, branded not generic) */
  --shadow-sm: 0 1px 3px rgba(15,42,71,.12), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 13px 27px -5px rgba(15,42,71,.20), 0 8px 16px -8px rgba(0,0,0,.12);
  --shadow-lg: 0 30px 45px -15px rgba(15,42,71,.22), 0 18px 36px -18px rgba(0,0,0,.12);
  --shadow-xl: 0 40px 70px -20px rgba(15,42,71,.28), 0 20px 40px -20px rgba(0,0,0,.14);

  /* Geometry */
  --radius: 8px;
  --radius-lg: 14px;
  --radius-pill: 999px;
  --transition: all .25s cubic-bezier(.4,0,.2,1);
  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul, ol { list-style: none; }
h1, h2, h3, h4 { line-height: 1.2; font-weight: 800; letter-spacing: -.02em; color: var(--navy); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 12px;
}
.section { padding: 84px 0; }
.section--alt { background: var(--off-white); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--white); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 14px; }
.section-head p { color: var(--text-light); font-size: 1.08rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 9px; padding: 15px 30px;
  border-radius: var(--radius); font-weight: 700; font-size: .98rem; cursor: pointer;
  border: 2px solid transparent; transition: var(--transition); white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(242,103,34,.36); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.12); }
.btn-lg { padding: 18px 38px; font-size: 1.06rem; }

/* ── Top Bar ── */
.topbar { background: var(--navy-dark); color: rgba(255,255,255,.85); font-size: .86rem; padding: 9px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.topbar a { color: rgba(255,255,255,.9); font-weight: 600; }
.topbar a:hover { color: var(--orange-light); }
.topbar-right { display: flex; align-items: center; gap: 22px; }
.topbar-phone { display: inline-flex; align-items: center; gap: 7px; font-weight: 800; color: #fff !important; font-size: .96rem; }
.topbar-phone svg { width: 15px; height: 15px; fill: var(--orange); }

/* ── Header / Nav ── */
.header { background: #fff; position: sticky; top: 0; z-index: 1000; box-shadow: var(--shadow-sm); border-bottom: 1px solid var(--gray-100); }
.header .container { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { display: flex; align-items: center; gap: 11px; font-weight: 900; font-size: 1.32rem; color: var(--navy); letter-spacing: -.03em; }
.logo-mark { width: 42px; height: 42px; background: linear-gradient(135deg, var(--navy), var(--navy-light)); border-radius: 10px; display: grid; place-items: center; position: relative; }
.logo-mark::after { content:''; position:absolute; inset:8px; border-top:3px solid var(--orange); border-radius: 3px 3px 0 0; transform: perspective(20px) rotateX(18deg); }
.logo span { color: var(--orange); }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { color: var(--gray-700); font-weight: 600; font-size: .95rem; position: relative; }
.nav a::after { content:''; position:absolute; bottom:-6px; left:0; width:0; height:2.5px; background: var(--orange); transition: width .25s; }
.nav a:hover { color: var(--navy); }
.nav a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; color: var(--navy); font-size: 1.02rem; }
.nav-phone svg { width: 18px; height: 18px; fill: var(--orange); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
.hamburger span { display: block; width: 26px; height: 3px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1){ transform: rotate(45deg) translate(5px,6px); }
.hamburger.active span:nth-child(2){ opacity: 0; }
.hamburger.active span:nth-child(3){ transform: rotate(-45deg) translate(5px,-6px); }
.mobile-nav { display: none; position: fixed; top: 76px; left: 0; right: 0; background: #fff; padding: 20px; flex-direction: column; z-index: 999; box-shadow: var(--shadow-lg); }
.mobile-nav.active { display: flex; }
.mobile-nav a { padding: 14px 16px; font-weight: 600; border-bottom: 1px solid var(--gray-100); color: var(--gray-700); }

/* ── Hero ── */
.hero { position: relative; background: var(--navy); color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content:''; position:absolute; inset:0; background: linear-gradient(105deg, rgba(10,29,51,.94) 0%, rgba(15,42,71,.86) 48%, rgba(15,42,71,.55) 100%); }
.hero .container { position: relative; z-index: 1; padding-top: 90px; padding-bottom: 96px; }
.hero-inner { max-width: 640px; }
.hero h1 { color: #fff; font-size: clamp(2.1rem, 5vw, 3.4rem); margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--orange-light); }
.hero-sub { font-size: 1.16rem; color: rgba(255,255,255,.82); margin-bottom: 30px; max-width: 540px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-phone-label { font-size: .82rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.hero-phone-num { font-size: 1.7rem; font-weight: 900; color: #fff; }
.hero-phone-num:hover { color: var(--orange-light); }

/* ── Trust Bar ── */
.trust-bar { background: var(--white); border-bottom: 1px solid var(--gray-100); }
.trust-bar .container { display: flex; justify-content: center; flex-wrap: wrap; gap: 40px; padding: 26px 24px; }
.trust-item { display: flex; align-items: center; gap: 11px; font-weight: 700; color: var(--navy); font-size: .98rem; }
.trust-item svg { width: 26px; height: 26px; fill: var(--orange); flex-shrink: 0; }

/* ── Services Grid ── */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 30px 26px; transition: var(--transition); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--orange); }
.service-card .icon { width: 54px; height: 54px; background: var(--off-white); border-radius: 12px; display: grid; place-items: center; margin-bottom: 18px; }
.service-card .icon svg { width: 28px; height: 28px; fill: var(--orange); }
.service-card h3 { font-size: 1.16rem; margin-bottom: 10px; }
.service-card p { color: var(--text-light); font-size: .94rem; }

/* ── Benefits (3-col icons) ── */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.benefit { text-align: center; }
.benefit .icon { width: 72px; height: 72px; margin: 0 auto 20px; background: rgba(242,103,34,.12); border-radius: 50%; display: grid; place-items: center; }
.benefit .icon svg { width: 34px; height: 34px; fill: var(--orange); }
.benefit h3 { font-size: 1.3rem; margin-bottom: 12px; }
.benefit p { color: var(--text-light); }
.section--navy .benefit p { color: rgba(255,255,255,.78); }
.section--navy .benefit .icon { background: rgba(242,103,34,.2); }

/* ── State/City Directory Grid ── */
.directory-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; }
.dir-card {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 16px 18px; font-weight: 700; color: var(--navy); transition: var(--transition);
}
.dir-card:hover { border-color: var(--orange); background: var(--off-white); transform: translateX(3px); }
.dir-card .arrow { color: var(--orange); font-weight: 900; }
.dir-card .count { font-size: .8rem; font-weight: 600; color: var(--gray-500); }

/* ── Content prose (state/city body) ── */
.prose { max-width: 780px; margin: 0 auto; }
.prose h2 { font-size: 1.7rem; margin: 36px 0 16px; }
.prose h3 { font-size: 1.3rem; margin: 28px 0 12px; }
.prose p { margin-bottom: 18px; color: var(--text); font-size: 1.05rem; }
.prose ul { margin: 0 0 18px; padding-left: 4px; }
.prose ul li { position: relative; padding-left: 30px; margin-bottom: 10px; }
.prose ul li::before { content:''; position:absolute; left:0; top:9px; width:16px; height:16px; background: var(--orange); mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/contain no-repeat; }

/* ── Reviews (city only) ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: #fff; border-radius: var(--radius-lg); padding: 30px 28px; box-shadow: var(--shadow-md); }
.review-stars { color: var(--orange); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-card p { color: var(--text); font-style: italic; margin-bottom: 18px; }
.review-author { font-weight: 800; color: var(--navy); }
.review-loc { font-size: .88rem; color: var(--gray-500); }

/* ── CTA Band ── */
.cta-band { background: linear-gradient(120deg, var(--orange), var(--orange-dark)); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 14px; }
.cta-band p { font-size: 1.12rem; opacity: .95; margin-bottom: 28px; }
.cta-band .btn-white { background: #fff; color: var(--orange-dark); }
.cta-band .btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ── Footer ── */
.footer { background: var(--charcoal); color: rgba(255,255,255,.72); padding: 64px 0 30px; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 44px; }
.footer h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px; }
.footer a { color: rgba(255,255,255,.72); display: block; padding: 5px 0; }
.footer a:hover { color: var(--orange-light); }
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand p { line-height: 1.7; }
.footer-states { columns: 2; column-gap: 24px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .84rem; color: rgba(255,255,255,.5); }

/* ── Stats Counter Bar ── */
.stats-bar { background: var(--navy); color: #fff; }
.stats-bar .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 44px 24px; }
.stat { text-align: center; }
.stat .num { font-size: 2.4rem; font-weight: 900; color: var(--orange-light); line-height: 1; letter-spacing: -.02em; }
.stat .label { margin-top: 8px; font-size: .9rem; color: rgba(255,255,255,.75); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.stat .stars { color: var(--orange); font-size: 1.1rem; letter-spacing: 2px; }

/* ── Breadcrumbs ── */
.breadcrumb { background: var(--off-white); border-bottom: 1px solid var(--gray-100); }
.breadcrumb .container { padding: 14px 24px; font-size: .88rem; color: var(--gray-500); }
.breadcrumb a { color: var(--navy); font-weight: 600; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { margin: 0 8px; color: var(--gray-300); }

/* ── Climate Threat Cards ── */
.threats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.threat-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 26px 22px; text-align: center; transition: var(--transition); }
.threat-card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); }
.threat-card .icon { width: 56px; height: 56px; margin: 0 auto 14px; background: rgba(242,103,34,.1); border-radius: 50%; display: grid; place-items: center; }
.threat-card .icon svg { width: 28px; height: 28px; fill: var(--orange); }
.threat-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.threat-card p { font-size: .9rem; color: var(--text-light); }

/* ── FAQ Accordion ── */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; background: #fff; }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 20px 24px; font-size: 1.06rem; font-weight: 700; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: inherit; }
.faq-q:hover { color: var(--orange); }
.faq-q .chev { color: var(--orange); font-size: 1.3rem; transition: transform .25s; flex-shrink: 0; }
.faq-item[open] .faq-q .chev { transform: rotate(45deg); }
.faq-a { padding: 0 24px 22px; color: var(--text-light); line-height: 1.7; }

/* ── Testimonials ── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: #fff; border-radius: var(--radius-lg); padding: 28px 26px; box-shadow: var(--shadow-md); border-top: 3px solid var(--orange); }
.testi-card .stars { color: var(--orange); font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-card p { color: var(--text); font-style: italic; margin-bottom: 18px; line-height: 1.65; }
.testi-author { font-weight: 800; color: var(--navy); }
.testi-loc { font-size: .86rem; color: var(--gray-500); font-weight: 600; }

/* ── Lead Capture Form ── */
.lead-form { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 30px 28px; border-top: 4px solid var(--orange); }
.lead-form h3 { font-size: 1.3rem; margin-bottom: 6px; }
.lead-form .sub { font-size: .92rem; color: var(--text-light); margin-bottom: 20px; }
.lead-form label { display: block; font-size: .84rem; font-weight: 700; color: var(--gray-700); margin-bottom: 6px; }
.lead-form input, .lead-form select, .lead-form textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--gray-200); border-radius: var(--radius); font-size: .96rem; font-family: inherit; margin-bottom: 15px; transition: var(--transition); }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(242,103,34,.12); }
.lead-form button { width: 100%; }

/* ── Content + Sidebar layout ── */
.content-grid { display: grid; grid-template-columns: 1fr 360px; gap: 44px; align-items: start; }
.sidebar { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 22px; }
.sidebar-card { background: var(--off-white); border-radius: var(--radius-lg); padding: 22px; }
.sidebar-card h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-500); margin-bottom: 12px; }
.sidebar-card a { display: block; padding: 7px 0; color: var(--navy); font-weight: 600; font-size: .95rem; }
.sidebar-card a:hover { color: var(--orange); }

/* ── Service × City footer matrix ── */
.footer-matrix { border-top: 1px solid rgba(255,255,255,.12); margin-top: 32px; padding-top: 28px; }
.footer-matrix .row { margin-bottom: 12px; font-size: .84rem; line-height: 1.7; }
.footer-matrix .row strong { color: #fff; display: inline-block; min-width: 150px; }
.footer-matrix .row a { display: inline; color: rgba(255,255,255,.6); }
.footer-matrix .row a:hover { color: var(--orange-light); }
.footer-matrix .row .divider { color: rgba(255,255,255,.25); margin: 0 6px; }

/* ── Process Steps ── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.process-step { text-align: center; position: relative; }
.process-step .step-num { width: 56px; height: 56px; margin: 0 auto 16px; background: var(--orange); color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: 1.4rem; font-weight: 900; }
.process-step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.process-step p { font-size: .92rem; color: var(--text-light); }

/* ── Neighborhoods tag grid ── */
.hood-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.hood-tag { background: var(--off-white); border: 1px solid var(--gray-200); border-radius: var(--radius-pill); padding: 8px 18px; font-size: .9rem; font-weight: 600; color: var(--navy); }

/* ═══ DISTINCTIVE IDENTITY LAYER ═══ */

/* Left-aligned section heads w/ accent underline (kills centered-everything) */
.section-head.left { text-align: left; margin-left: 0; max-width: 640px; }
.section-head.left h2::after { content:''; display:block; width:56px; height:4px; background: var(--orange); border-radius: 3px; margin-top: 16px; }

/* Angled roofline divider between sections — signature roofing move */
.roofline { position: relative; }
.roofline::before {
  content:''; position:absolute; top:-1px; left:0; right:0; height:48px;
  background: inherit; clip-path: polygon(0 100%, 50% 0, 100% 100%);
  transform: translateY(-47px);
}
.angle-top { clip-path: polygon(0 48px, 100% 0, 100% 100%, 0 100%); }
.angle-both { clip-path: polygon(0 48px, 100% 0, 100% calc(100% - 48px), 0 100%); }

/* Frosted sticky header */
.header { background: rgba(255,255,255,.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }

/* Animated accent-sweep on service cards */
.service-card { position: relative; overflow: hidden; box-shadow: var(--shadow-sm); }
.service-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover .icon { background: var(--orange); transform: scale(1.08); }
.service-card:hover .icon svg { fill: #fff; }
.service-card .icon { transition: transform .2s, background .2s; }
.service-card .icon svg { transition: fill .2s; }

/* ═══ LISTICLE / SCANNABILITY LAYER ═══ */

/* Signs checklist — big scannable rows with icons */
.signs-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 960px; margin: 0 auto; }
.sign-item { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--gray-200); border-left: 4px solid var(--orange); border-radius: var(--radius); padding: 20px 22px; box-shadow: var(--shadow-sm); }
.sign-item .n { flex-shrink: 0; width: 34px; height: 34px; background: var(--navy); color: #fff; border-radius: 50%; display: grid; place-items: center; font-weight: 900; font-size: .95rem; }
.sign-item h4 { font-size: 1.05rem; margin-bottom: 4px; color: var(--navy); }
.sign-item p { font-size: .92rem; color: var(--text-light); margin: 0; }

/* Comparison table — materials */
.compare-wrap { max-width: 960px; margin: 0 auto; overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
table.compare { width: 100%; border-collapse: collapse; background: #fff; font-size: .95rem; }
table.compare th { background: var(--navy); color: #fff; text-align: left; padding: 16px 20px; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; }
table.compare td { padding: 15px 20px; border-bottom: 1px solid var(--gray-100); }
table.compare tr:nth-child(even) td { background: var(--off-white); }
table.compare tr:last-child td { border-bottom: none; }
table.compare td:first-child { font-weight: 800; color: var(--navy); }
table.compare .badge { display: inline-block; background: rgba(242,103,34,.12); color: var(--orange-dark); font-weight: 700; font-size: .8rem; padding: 3px 10px; border-radius: var(--radius-pill); }

/* What's-included checkmark grid */
.included-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 32px; max-width: 900px; margin: 0 auto; }
.included-grid .item { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--gray-100); font-weight: 600; color: var(--navy); }
.included-grid .item .check { flex-shrink: 0; width: 24px; height: 24px; background: var(--orange); border-radius: 50%; display: grid; place-items: center; }
.included-grid .item .check svg { width: 14px; height: 14px; fill: #fff; }

/* Callout / tip box breaking up prose */
.callout { background: linear-gradient(135deg, rgba(242,103,34,.06), rgba(242,103,34,.02)); border-left: 5px solid var(--orange); border-radius: 0 var(--radius) var(--radius) 0; padding: 22px 26px; margin: 28px 0; }
.callout .tag { display: inline-flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--orange-dark); margin-bottom: 8px; }
.callout p { margin: 0; color: var(--text); font-size: 1.02rem; }
.callout.navy { background: linear-gradient(135deg, var(--navy), var(--navy-light)); border-left-color: var(--orange); }
.callout.navy .tag { color: var(--orange-light); }
.callout.navy p { color: rgba(255,255,255,.92); }

/* Responsive for listicles */
@media (max-width: 768px) {
  .signs-list, .included-grid { grid-template-columns: 1fr; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr; gap: 30px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .threats-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .topbar-right .topbar-hours { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-states { columns: 2; }
  .hero .container { padding-top: 60px; padding-bottom: 64px; }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .threats-grid { grid-template-columns: 1fr; }
  .footer-matrix .row strong { display: block; min-width: 0; margin-bottom: 4px; }
}

/* ═══ NATIONAL SUBDOMAIN REDESIGN LAYER (2026-08-14) ═══ */

/* Hero: dual CTA + phone block */
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; transform: translateY(-2px); }
.hero-phone-block { display: flex; flex-direction: column; margin-left: 6px; padding-left: 20px; border-left: 1px solid rgba(255,255,255,.25); }
.hero-ctas .btn + .btn-ghost { order: 1; }
.hero-ctas .hero-phone-block { order: 2; }

/* Entity intro — scannable with internal-link chips */
.intro-copy { max-width: 820px; margin: 0 auto; }
.intro-copy p { margin-bottom: 18px; font-size: 1.06rem; color: var(--text); }
.intro-copy p strong { color: var(--navy); }
.intro-copy h2, .intro-copy h3 { margin-top: 30px; margin-bottom: 12px; }
.intro-copy ul { margin: 0 0 20px; padding-left: 4px; }
.intro-copy ul li { position: relative; padding-left: 30px; margin-bottom: 10px; font-size: 1.02rem; }
.intro-copy ul li::before { content:''; position:absolute; left:0; top:9px; width:16px; height:16px; background: var(--orange); mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/contain no-repeat; }
.intro-copy a { color: var(--orange-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.intro-copy blockquote { background: linear-gradient(135deg, rgba(242,103,34,.06), rgba(242,103,34,.02)); border-left: 5px solid var(--orange); border-radius: 0 var(--radius) var(--radius) 0; padding: 18px 22px; margin: 24px 0; font-size: 1.04rem; color: var(--text); }
.intro-copy blockquote strong { color: var(--orange-dark); }
.intro-copy li { position: relative; padding-left: 26px; margin-bottom: 8px; }
.intro-copy li::before { content:''; position:absolute; left:0; top:10px; width:14px; height:14px; background: var(--orange); mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/contain no-repeat; }
.intro-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.chip-link { display: inline-flex; align-items: center; gap: 8px; background: var(--off-white); border: 1px solid var(--gray-200); border-radius: var(--radius-pill); padding: 10px 22px; font-weight: 700; font-size: .92rem; color: var(--navy); transition: var(--transition); }
.chip-link:hover { border-color: var(--orange); color: var(--orange-dark); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* Service card internal links */
.card-link { display: inline-block; margin-top: 14px; font-weight: 700; font-size: .92rem; color: var(--orange-dark); }
.card-link:hover { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }

/* Service-area section (map + list) */
.areas-section { background: var(--navy); color: #fff; overflow: hidden; }
.areas-section .section-head h2 { color: #fff; }
.areas-section .section-sub { color: rgba(255,255,255,.65); }
.areas-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: var(--container); margin: 0 auto; padding: 0 24px; align-items: start; }
.area-map-wrap { position: relative; width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(255,255,255,.12); box-shadow: var(--shadow-lg); }
.area-map-bg { position: absolute; inset: 0; border: 0; width: 100%; height: 100%; filter: invert(1) hue-rotate(180deg) brightness(.6) contrast(1.25) saturate(.35); pointer-events: none; }
.area-map-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.area-map-overlay svg { width: 100%; height: 100%; }
.area-map-ring { fill: none; stroke: rgba(255,255,255,.07); stroke-width: 1; }
.area-map-line { stroke: rgba(255,255,255,.12); stroke-width: 1; stroke-dasharray: 4 4; }
.area-map-hq circle { fill: var(--orange); }
.area-map-hq text { fill: #fff; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700; text-anchor: middle; paint-order: stroke; stroke: rgba(0,0,0,.6); stroke-width: 3px; }
.area-map-node circle { fill: rgba(255,255,255,.25); stroke: rgba(255,255,255,.55); stroke-width: 1.5; }
.area-map-node text { fill: #fff; font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600; text-anchor: middle; paint-order: stroke; stroke: rgba(0,0,0,.5); stroke-width: 2.5px; }
.areas-list { display: flex; flex-direction: column; gap: .55rem; }
.area-item { display: flex; align-items: center; gap: .875rem; padding: .8rem 1rem; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 8px; color: #fff; font-weight: 600; font-size: .92rem; text-decoration: none; transition: var(--transition); }
.area-item:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25); transform: translateX(4px); }
.area-item .area-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.35); flex-shrink: 0; }
.area-item.area-hq .area-dot { background: var(--orange); width: 10px; height: 10px; }
.area-item:hover .area-dot { background: var(--orange); }
.area-item .area-arrow-r { color: rgba(255,255,255,.3); font-size: .9rem; margin-left: auto; }
.area-item:hover .area-arrow-r { color: var(--orange); transform: translateX(2px); }

/* Footer top (mega) */
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.6fr; gap: 44px; margin-bottom: 40px; }
.footer-col h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px; }
.footer-link { display: block; color: rgba(255,255,255,.72); padding: 5px 0; }
.footer-link:hover { color: var(--orange-light); }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; }
.footer-badges .badge { background: rgba(242,103,34,.15); color: var(--orange-light); border: 1px solid rgba(242,103,34,.3); border-radius: var(--radius-pill); padding: 5px 14px; font-size: .8rem; font-weight: 700; }
.footer-phone { display: inline-block; font-size: 1.4rem; font-weight: 900; color: var(--orange-light) !important; margin-top: 4px; }
.footer-phone:hover { color: #fff !important; }
.footer-states { columns: 3; column-gap: 18px; }
.footer-matrix h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }

/* CTA band split layout */
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; text-align: left; }
.cta-band-inner p { margin-bottom: 0; }
@media (max-width: 768px) { .cta-band-inner { flex-direction: column; text-align: center; } }

/* Areas + footer responsive */
@media (max-width: 1024px) {
  .areas-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-states { columns: 2; }
  .hero-phone-block { margin-left: 0; padding-left: 0; border-left: none; }
}
