@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Source+Sans+3:wght@400;500;600&display=swap');

:root {
  --red: #C0392B;
  --red-dark: #96281B;
  --black: #0a0a0a;
  --gray-light: #F4F5F7;
  --gray-mid: #D1D5DB;
  --gray-text: #5A6474;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: #1a1a1a; background: #fff; line-height: 1.6; padding-top: 108px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* STICKY BAR */
.sticky-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center; gap: 16px;
  padding: 10px 20px; font-family: var(--font-head); font-size: 15px; letter-spacing: .5px;
}
.sticky-bar a { color: #fff; font-weight: 600; font-size: 18px; }
.pulse { display: inline-block; width: 9px; height: 9px; background: #fff; border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }

/* NAV */
nav {
  position: fixed; top: 44px; left: 0; right: 0; z-index: 999;
  background: #fff; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; box-shadow: 0 2px 12px rgba(0,0,0,.1);
  border-bottom: 3px solid var(--red);
}
.nav-logo img { height: 50px; }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links > a, .nav-links .dropdown > a {
  color: #222; font-family: var(--font-head); font-size: 13px; letter-spacing: .5px;
  padding: 8px 12px; border-radius: 4px; transition: background .2s, color .2s; display: block;
}
.nav-links > a:hover, .nav-links .dropdown > a:hover { background: var(--red); color: #fff; }
.nav-links .dropdown { position: relative; }
.nav-links .dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: #fff; min-width: 240px;
  border-top: 3px solid var(--red); box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.nav-links .dropdown:hover .dropdown-menu { display: block; }
.nav-links .dropdown-menu a { display: block; padding: 10px 18px; font-size: 13px; color: #333; border-bottom: 1px solid #f0f0f0; font-family: var(--font-head); }
.nav-links .dropdown-menu a:hover { background: var(--red); color: #fff; }
.nav-cta { background: var(--red) !important; color: #fff !important; padding: 9px 18px !important; border-radius: 4px !important; font-size: 14px !important; }
.nav-cta:hover { background: var(--red-dark) !important; }

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff; padding: 72px 40px 64px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 360px; gap: 56px; align-items: center; position: relative; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.15); color: #fff; font-family: var(--font-head); font-size: 12px; letter-spacing: 2px; padding: 5px 14px; border-radius: 3px; margin-bottom: 18px; text-transform: uppercase; border: 1px solid rgba(255,255,255,.3); }
.hero h1 { font-family: var(--font-head); font-size: clamp(26px, 3.5vw, 46px); font-weight: 700; line-height: 1.15; margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: #ffe4e4; }
.hero p { font-size: 17px; color: rgba(255,255,255,.88); margin-bottom: 26px; line-height: 1.7; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.btn-white { background: #fff; color: var(--red); font-family: var(--font-head); font-size: 16px; letter-spacing: 1px; padding: 14px 28px; border-radius: 4px; display: inline-flex; align-items: center; gap: 8px; transition: all .2s; font-weight: 600; }
.btn-white:hover { background: #f5e0de; transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); font-family: var(--font-head); font-size: 16px; padding: 12px 24px; border-radius: 4px; transition: all .2s; }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.hero-phone { font-family: var(--font-head); font-size: 30px; font-weight: 700; color: #fff; }
.hero-phone a { color: #fff; }
.hero-bullets { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 18px; }
.hero-bullets span { font-size: 14px; color: rgba(255,255,255,.85); display: flex; align-items: center; gap: 6px; }
.hero-bullets span::before { content: '✓'; font-weight: 700; }

/* FORM BOX */
.form-box { background: #fff; border-radius: 8px; padding: 28px 22px; box-shadow: 0 20px 60px rgba(0,0,0,.3); }
.form-box h3 { font-family: var(--font-head); font-size: 18px; color: #1a1a1a; margin-bottom: 4px; }
.form-box .sub { font-size: 13px; color: var(--gray-text); margin-bottom: 16px; }
.form-group { margin-bottom: 10px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 13px; border: 1.5px solid var(--gray-mid); border-radius: 4px;
  font-family: var(--font-body); font-size: 15px; color: #1a1a1a; outline: none; transition: border .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; height: 76px; }
.btn-red { background: var(--red); color: #fff; font-family: var(--font-head); font-size: 15px; letter-spacing: 1px; padding: 13px 20px; border: none; border-radius: 4px; cursor: pointer; transition: background .2s; width: 100%; }
.btn-red:hover { background: var(--red-dark); }
.form-note { font-size: 11px; color: var(--gray-text); text-align: center; margin-top: 8px; }

/* TEXT/SMS BUTTONS */
.btn-sms { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); font-family: var(--font-head); font-size: 16px; letter-spacing: 1px; padding: 12px 24px; border-radius: 4px; display: inline-flex; align-items: center; gap: 8px; transition: all .2s; font-weight: 600; }
.btn-sms:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-sms-sm { background: rgba(255,255,255,.15); color: #fff; border: 1.5px solid rgba(255,255,255,.4); font-family: var(--font-head); font-size: 14px; padding: 10px 20px; border-radius: 4px; display: inline-flex; align-items: center; gap: 6px; transition: all .2s; font-weight: 600; }
.btn-sms-sm:hover { background: rgba(255,255,255,.25); border-color: rgba(255,255,255,.7); }
.call-bar-btns { display: flex; gap: 12px; justify-content: center; align-items: center; margin-top: 10px; flex-wrap: wrap; }
.page-body .call-bar .btn-sms-sm, .call-bar .btn-sms-sm { color: #fff; }
.page-body .urgency-box .btn-sms-sm, .urgency-box .btn-sms-sm { color: #fff; }

/* STICKY BOTTOM BAR (mobile only) */
.sticky-bottom {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
}
.sticky-bottom a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-size: 18px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 16px 0; color: #fff; text-decoration: none;
}
.sticky-bottom .sticky-call { background: var(--red); }
.sticky-bottom .sticky-call:hover { background: var(--red-dark); }
.sticky-bottom .sticky-text { background: linear-gradient(135deg, #1a6b3a 0%, #145730 100%); color: #fff; }
.sticky-bottom .sticky-text:hover { background: #145730; }

/* SCROLLING BARS */
.red-bar { background: var(--red); padding: 13px 0; overflow: hidden; }
.red-track { display: flex; gap: 50px; animation: marquee 30s linear infinite; white-space: nowrap; }
.red-track span { font-family: var(--font-head); font-size: 13px; color: #fff; letter-spacing: .5px; font-weight: 600; }
.black-bar { background: #111; padding: 32px 0; overflow: hidden; }
.black-track { display: flex; gap: 60px; animation: marquee 25s linear infinite; white-space: nowrap; }
.black-track span { font-family: var(--font-head); font-size: 15px; color: rgba(255,255,255,.65); letter-spacing: 1px; font-weight: 600; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* SECTIONS */
section { padding: 68px 40px; }
.container { max-width: 1100px; margin: 0 auto; }
.label { font-family: var(--font-head); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
h2.section-title { font-family: var(--font-head); font-size: clamp(24px, 3vw, 36px); font-weight: 700; margin-bottom: 14px; line-height: 1.2; }
.section-sub { font-size: 16px; color: var(--gray-text); max-width: 600px; line-height: 1.7; }
.bg-light { background: #f8f8f8; }
.bg-black { background: var(--black); color: #fff; }

/* WHY CARDS */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; margin-top: 44px; }
.why-card { background: #fff; border-radius: 6px; padding: 26px 22px; border-left: 4px solid var(--red); box-shadow: 0 2px 10px rgba(0,0,0,.06); transition: box-shadow .2s, transform .2s; }
.why-card:hover { box-shadow: 0 8px 28px rgba(192,57,43,.12); transform: translateY(-3px); }
.why-icon { font-size: 30px; margin-bottom: 12px; }
.why-card h3 { font-family: var(--font-head); font-size: 17px; margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--gray-text); line-height: 1.65; }

/* SERVICE CARDS */
.grid-services { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; margin-top: 44px; }
.svc-card { background: #fff; border-radius: 6px; padding: 28px 22px; border-top: 4px solid var(--red); box-shadow: 0 2px 10px rgba(0,0,0,.07); transition: all .2s; }
.svc-card:hover { box-shadow: 0 10px 30px rgba(192,57,43,.15); transform: translateY(-4px); }
.svc-card .icon { font-size: 34px; margin-bottom: 14px; }
.svc-card h3 { font-family: var(--font-head); font-size: 18px; color: #1a1a1a; margin-bottom: 8px; }
.svc-card p { font-size: 13px; color: var(--gray-text); line-height: 1.6; margin-bottom: 16px; }
.svc-card a { color: var(--red); font-family: var(--font-head); font-size: 13px; font-weight: 600; }
.svc-card a:hover { text-decoration: underline; }

/* AREA GRID */
.area-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 10px; margin-top: 36px; }
.area-chip { background: #fff; border: 1.5px solid var(--gray-mid); border-radius: 5px; padding: 11px 14px; text-align: center; font-family: var(--font-head); font-size: 13px; color: #1a1a1a; transition: all .2s; }
.area-chip:hover { background: var(--red); color: #fff; border-color: var(--red); transform: translateY(-2px); }

/* EMERGENCY CARDS */
.emerg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 18px; margin-top: 36px; }
.emerg-card { background: #fff; border-left: 4px solid var(--red); border-radius: 6px; padding: 20px 18px; box-shadow: 0 2px 10px rgba(0,0,0,.07); transition: all .2s; }
.emerg-card:hover { box-shadow: 0 8px 24px rgba(192,57,43,.15); transform: translateY(-3px); }
.emerg-card h3 { font-family: var(--font-head); font-size: 15px; margin-bottom: 6px; }
.emerg-card p { font-size: 13px; color: var(--gray-text); margin-bottom: 10px; }
.emerg-card a { color: var(--red); font-family: var(--font-head); font-size: 13px; font-weight: 600; }

/* REVIEWS */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 20px; margin-top: 44px; }
.review-card { background: #fff; border-radius: 6px; padding: 24px 20px; box-shadow: 0 2px 12px rgba(0,0,0,.08); }
.stars { color: #f59e0b; font-size: 17px; margin-bottom: 10px; }
.review-text { font-size: 14px; color: #444; line-height: 1.7; margin-bottom: 14px; font-style: italic; }
.review-author { font-family: var(--font-head); font-size: 14px; font-weight: 600; }
.review-meta { font-size: 12px; color: var(--gray-text); }

/* FAQ */
.faq-list { max-width: 740px; margin: 36px auto 0; }
.faq-item { border-bottom: 1.5px solid var(--gray-mid); }
.faq-q { font-family: var(--font-head); font-size: 16px; padding: 16px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-q::after { content: '+'; font-size: 22px; color: var(--red); font-weight: 700; flex-shrink: 0; margin-left: 12px; transition: transform .2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 16px; font-size: 15px; color: var(--gray-text); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* CTA BAND */
.cta-band { background: var(--red); color: #fff; text-align: center; padding: 56px 40px; }
.cta-band h2 { font-family: var(--font-head); font-size: clamp(24px, 3vw, 40px); margin-bottom: 10px; }
.cta-band p { font-size: 17px; color: rgba(255,255,255,.85); margin-bottom: 24px; }
.cta-phone { font-family: var(--font-head); font-size: clamp(28px, 4vw, 52px); font-weight: 700; color: #fff; display: block; margin-bottom: 18px; }

/* CALL BAR (inline) */
.call-bar { background: var(--red); color: #fff; padding: 20px 24px; border-radius: 6px; text-align: center; margin: 28px 0; }
.page-body .call-bar p, .call-bar p { font-size: 14px; margin-bottom: 4px; color: #fff; }
.call-bar a { font-family: var(--font-head); font-size: 36px; font-weight: 700; color: #fff; }

/* PAGE CONTENT */
.page-hero { background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); color: #fff; padding: 52px 40px; }
.page-hero-inner { max-width: 900px; margin: 0 auto; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.85); margin-bottom: 14px; }
.breadcrumb a { color: rgba(255,255,255,.9); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,.7); margin: 0 6px; }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(24px, 3vw, 42px); font-weight: 700; line-height: 1.2; margin-bottom: 14px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,.95); line-height: 1.7; max-width: 700px; }
.page-body { max-width: 900px; margin: 0 auto; padding: 48px 40px; }
.page-body h2 { font-family: var(--font-head); font-size: 26px; color: #1a1a1a; margin: 36px 0 12px; }
.page-body h3 { font-family: var(--font-head); font-size: 20px; color: var(--red); margin: 26px 0 10px; }
.page-body p { font-size: 16px; color: #444; line-height: 1.75; margin-bottom: 16px; }
.page-body ul, .page-body ol { padding-left: 22px; margin-bottom: 16px; }
.page-body li { font-size: 15px; color: #444; line-height: 1.7; margin-bottom: 6px; }
.step-list { list-style: none; padding: 0; counter-reset: steps; }
.step-list li { counter-increment: steps; padding: 14px 14px 14px 52px; position: relative; background: var(--gray-light); border-radius: 5px; margin-bottom: 10px; }
.step-list li::before { content: counter(steps); position: absolute; left: 14px; top: 13px; background: var(--red); color: #fff; width: 24px; height: 24px; border-radius: 50%; font-family: var(--font-head); font-size: 13px; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 36px; }
.info-box { background: var(--gray-light); border-radius: 6px; padding: 24px; }
.info-box h3 { font-family: var(--font-head); font-size: 18px; color: var(--red); margin-bottom: 12px; }
.related-links { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; margin-top: 20px; }
.related-link { background: #fff; border: 1.5px solid var(--gray-mid); border-radius: 5px; padding: 10px 14px; font-family: var(--font-head); font-size: 13px; color: var(--red); text-align: center; transition: all .2s; }
.related-link:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* FOOTER */
footer { background: var(--black); color: rgba(255,255,255,.65); padding: 56px 40px 28px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
footer h4 { font-family: var(--font-head); font-size: 13px; color: #fff; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 8px; }
footer ul li a { font-size: 14px; color: rgba(255,255,255,.55); transition: color .2s; }
footer ul li a:hover { color: #fff; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 12px; }
.footer-addr { font-size: 13px; line-height: 1.6; margin-top: 14px; color: rgba(255,255,255,.5); }
.footer-phone { font-family: var(--font-head); font-size: 22px; color: #fff; display: block; margin-top: 10px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 13px; }

/* URGENCY BOX */
.urgency-box { background: var(--red); color: #fff; padding: 24px; border-radius: 6px; text-align: center; margin: 24px 0; }
.page-body .urgency-box p, .urgency-box p { font-size: 17px; font-weight: 600; margin-bottom: 6px; color: #fff; }
.urgency-box a { font-family: var(--font-head); font-size: 44px; font-weight: 700; color: #fff; display: block; }
.page-body .urgency-box small, .urgency-box small { font-size: 13px; color: rgba(255,255,255,.9); }

/* HAMBURGER BUTTON */
.hamburger {
  display: none; background: none; border: none; font-size: 28px; cursor: pointer;
  color: #222; padding: 4px 8px; line-height: 1; z-index: 1001;
}

/* ===== TABLET ===== */
@media (max-width: 900px) {
  /* Sticky bar: compact for mobile */
  .sticky-bar { font-size: 12px; padding: 8px 12px; gap: 8px; flex-wrap: nowrap; }
  .sticky-bar span:nth-child(2) { display: none; }
  .sticky-bar a { font-size: 16px; }
  .sticky-bar a::before { content: '📞 CALL NOW: '; font-size: 12px; letter-spacing: .5px; }
  .pulse { width: 7px; height: 7px; }

  /* Nav: account for smaller sticky bar */
  nav { top: 40px; padding: 0 16px; height: 56px; }
  body { padding-top: 96px; }

  /* Hamburger */
  .hamburger { display: block; font-size: 30px; padding: 6px 10px; }

  /* Nav links: fullscreen overlay */
  .nav-links {
    display: none; flex-direction: column; position: fixed;
    top: 0; left: 0; right: 0; bottom: 0; background: #fff; z-index: 1000;
    padding: 80px 24px 32px; gap: 0; overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links > a, .nav-links .dropdown > a {
    font-size: 17px; padding: 14px 0; border-bottom: 1px solid #eee;
  }
  .nav-links .dropdown { position: static; }
  .nav-links .dropdown:hover .dropdown-menu { display: none; }
  .nav-links .dropdown-menu {
    display: none; position: static; box-shadow: none;
    border-top: none; min-width: 0; padding-left: 16px;
  }
  .nav-links .dropdown.open .dropdown-menu { display: block; }
  .nav-links .dropdown-menu a { padding: 10px 0; border-bottom: 1px solid #f5f5f5; font-size: 15px; }
  .nav-links .nav-cta {
    margin-top: 16px; text-align: center; padding: 14px !important;
    font-size: 17px !important; border-radius: 6px !important;
  }
  .nav-logo img { height: 42px; }

  /* Hero */
  .hero { padding: 40px 20px 36px; }
  .hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 15px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-white, .hero-btns .btn-outline, .hero-btns .btn-sms { width: 100%; text-align: center; justify-content: center; }
  .hero-phone { font-size: 26px; }
  .form-box {
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
    padding: 24px 18px; border-radius: 8px;
  }
  .form-box h3 { font-size: 20px; text-align: center; }
  .form-box .sub { text-align: center; }

  /* Sections */
  section { padding: 44px 16px; }
  .page-body { padding: 32px 16px; }
  .page-hero { padding: 32px 16px; }
  .page-hero-inner [style*="display:flex"] { flex-direction: column; }
  .page-hero-inner [style*="display:flex"] .btn-white,
  .page-hero-inner [style*="display:flex"] .btn-outline,
  .page-hero-inner [style*="display:flex"] .btn-sms { width: 100%; text-align: center; justify-content: center; }

  /* Grids */
  .grid-3 { grid-template-columns: 1fr; gap: 16px; margin-top: 28px; }
  .grid-services { grid-template-columns: 1fr; gap: 16px; margin-top: 28px; }
  .emerg-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 24px; }
  .review-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 28px; }
  .area-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 24px; }
  .related-links { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 24px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  footer { padding: 40px 16px 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Call bar / urgency */
  .call-bar a { font-size: 28px; }
  .urgency-box a { font-size: 32px; }
  .call-bar-btns { margin-top: 12px; }
  .btn-sms-sm { width: 100%; justify-content: center; font-size: 15px; padding: 12px 20px; }

  /* CTA band */
  .cta-band { padding: 40px 16px; }
  .cta-phone { font-size: 32px; }
  .cta-band .btn-white, .cta-band .btn-sms { width: 100%; text-align: center; justify-content: center; margin-bottom: 12px; }

  /* Sticky bottom bar */
  .sticky-bottom { display: flex; }
  body { padding-bottom: 56px; }

  /* Black bar insurance */
  .black-bar { padding: 20px 0; }
}

/* ===== SMALL PHONE ===== */
@media (max-width: 480px) {
  .sticky-bar { padding: 6px 10px; }
  nav { top: 36px; height: 50px; }
  body { padding-top: 86px; }
  .nav-logo img { height: 36px; }
  .hamburger { font-size: 26px; }

  .hero { padding: 28px 14px 28px; }
  .hero h1 { font-size: 24px; }
  .hero-badge { font-size: 10px; letter-spacing: 1.5px; padding: 4px 10px; }
  .hero-bullets { gap: 6px 14px; }
  .hero-bullets span { font-size: 12px; }
  .hero-phone { font-size: 22px; }

  section { padding: 36px 14px; }
  .page-body { padding: 28px 14px; }
  .page-hero { padding: 28px 14px; }

  .area-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }

  .cta-band { padding: 32px 14px; }
  .cta-phone { font-size: 28px; }
  .call-bar a { font-size: 24px; }
  .urgency-box a { font-size: 28px; }
  .btn-sms-sm { font-size: 13px; padding: 10px 16px; }
  .page-hero .btn-sms { font-size: 14px; padding: 10px 20px; }
}
