/* 123HVAC — Global Stylesheet (DARK godmode build)
   Pure black surface + red CTA + orange brand accent.
   - Background: #0A0A0A (true dark, premium feel)
   - Surface (cards): #141414 with 1px border #262626
   - Text on dark: #F5F5F5 primary, #A3A3A3 muted
   - Red CTA: #EA3F3B → #9C0E1C hover (highest emergency CTR)
   - Orange accent: #D77735 for eyebrow labels + brand wordmark span
   - Inter for everything, weights 400-800
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Dark surfaces */
  --bg-page:#0A0A0A;
  --bg-alt:#0F0F0F;
  --bg-soft:#141414;
  --surface:#141414;
  --surface-2:#1A1A1A;
  --surface-3:#222222;

  /* Borders */
  --border:#262626;
  --border-strong:#3A3A3A;
  --border-light:rgba(255,255,255,.08);

  /* Text on dark */
  --text:#F5F5F5;
  --text-2:#D4D4D4;
  --text-muted:#A3A3A3;
  --text-faint:#737373;

  /* Brand accent (orange) — eyebrows, brand wordmark span, link hovers */
  --orange:#D77735;
  --orange-soft:rgba(215,119,53,.12);
  --orange-deep:#BF5C1B;

  /* CTA red — buttons, primary CTAs */
  --cta:#EA3F3B;
  --cta-hover:#FF5550;
  --cta-deep:#9C0E1C;
  --cta-shadow:rgba(234,63,59,.32);
  --cta-glow:rgba(234,63,59,.18);

  /* Legacy aliases for partials that use these names */
  --black:var(--bg-page);
  --charcoal:var(--surface);
  --graphite:var(--surface-2);
  --steel:var(--border);
  --silver:var(--text-muted);
  --smoke:var(--text);
  --white:#FFFFFF;
  --off-white:var(--bg-alt);
  --flame:var(--orange);
  --ember:var(--orange-deep);
  --frost:var(--text-2);
  --ice:var(--orange);
  --chill:var(--text-2);
  --dark-bg:var(--bg-page);
  --dark-surface:var(--surface);
  --dark-border:var(--border);

  /* Typography */
  --font-display:'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --section-pad: clamp(64px, 9vw, 120px);
  --container: 1240px;
  --radius: 12px;
  --radius-sm: 8px;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;background:var(--bg-page)}
body{font-family:var(--font-body);background:var(--bg-page);color:var(--text);line-height:1.65;overflow-x:hidden;font-size:16px;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility}
a{text-decoration:none;color:inherit;transition:color .15s ease}
a:focus-visible,button:focus-visible,details:focus-visible summary{outline:2px solid var(--cta);outline-offset:3px;border-radius:var(--radius-sm)}
img{max-width:100%;height:auto;display:block}
section{scroll-margin-top:80px}

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

/* Eyebrow labels — orange accent, all-caps */
.hvz-label{font-size:.78rem;font-weight:700;text-transform:uppercase;letter-spacing:.16em;color:var(--orange);margin-bottom:14px;display:inline-flex;align-items:center;gap:10px}
.hvz-label::before{content:'';width:24px;height:2px;background:var(--orange)}

/* Typography */
h1,h2,h3,h4{color:#fff;font-family:var(--font-display);line-height:1.1;letter-spacing:-.02em}
h1{font-size:clamp(2.2rem, 5.4vw, 4rem);font-weight:800;margin-bottom:18px}
h2{font-size:clamp(1.7rem, 3.4vw, 2.5rem);font-weight:700;margin-bottom:16px}
h3{font-size:1.2rem;font-weight:700;margin-bottom:10px;color:#fff}
h4{font-size:1rem;font-weight:700;margin-bottom:8px;color:#fff}
p{color:var(--text-2);font-size:1rem}
p + p{margin-top:14px}
.lead{font-size:1.08rem;color:var(--text-2);max-width:62ch}

/* H1 highlight spans — red + orange for gradient-text feel without gradients */
h1 span{color:var(--cta)}
h1 em{font-style:normal;color:var(--orange)}

/* ===== BUTTONS — Flat, no gradient, glow on hover ===== */
.hvz-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  font-family:var(--font-body);font-size:.95rem;font-weight:700;
  padding:14px 28px;min-height:48px;
  border-radius:var(--radius-sm);border:1px solid transparent;cursor:pointer;
  letter-spacing:.005em;
  transition:background .15s ease, border-color .15s ease, transform .15s ease, box-shadow .15s ease;
  white-space:nowrap;
}
.hvz-btn-primary{background:var(--cta);color:#fff;border-color:var(--cta);box-shadow:0 0 0 0 var(--cta-glow), 0 2px 8px var(--cta-shadow)}
.hvz-btn-primary:hover{background:var(--cta-hover);border-color:var(--cta-hover);box-shadow:0 0 0 6px var(--cta-glow), 0 8px 24px var(--cta-shadow);transform:translateY(-1px)}
.hvz-btn-outline{background:transparent;color:#fff;border:1px solid var(--border-strong)}
.hvz-btn-outline:hover{background:var(--surface-2);border-color:#fff;color:#fff}
.hvz-btn-white{background:#fff;color:#0A0A0A;border:1px solid #fff}
.hvz-btn-white:hover{background:#fff;transform:translateY(-1px);box-shadow:0 6px 20px rgba(255,255,255,.2)}
.hvz-btn-ghost{background:transparent;color:#fff;border:1px solid rgba(255,255,255,.3)}
.hvz-btn-ghost:hover{background:rgba(255,255,255,.06);border-color:#fff}
.hvz-btn-sm{padding:10px 18px;font-size:.85rem;min-height:38px}

/* ===== HEADER — pure black bar w/ subtle border ===== */
.hvz-header{position:fixed;top:0;left:0;right:0;z-index:1000;background:rgba(10,10,10,.92);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border-bottom:1px solid var(--border)}
.hvz-header-inner{max-width:var(--container);margin:0 auto;padding:0 24px;height:70px;display:flex;align-items:center;justify-content:space-between;gap:16px}
.hvz-logo{display:flex;align-items:center;gap:10px;flex-shrink:0}
.hvz-logo-icon{width:36px;height:36px;display:flex;align-items:center;justify-content:center}
.hvz-logo-text{font-family:var(--font-display);font-size:1.4rem;font-weight:900;color:#fff;letter-spacing:-.02em;line-height:1}
.hvz-logo-text span{color:var(--cta)}
.hvz-nav{display:flex;align-items:center;gap:2px}
.hvz-nav a{font-size:.86rem;font-weight:600;color:var(--text-2);padding:9px 14px;border-radius:var(--radius-sm);transition:color .15s ease, background .15s ease}
.hvz-nav a:hover{color:#fff;background:var(--surface-2)}
.hvz-nav a.active{color:#fff;background:var(--surface-2)}
.hvz-header-cta{display:flex;align-items:center;gap:14px;flex-shrink:0}
.hvz-phone{font-family:var(--font-display);font-size:1rem;font-weight:700;color:#fff}
.hvz-phone:hover{color:var(--cta)}

.hvz-mobile-btn{display:none;width:42px;height:42px;background:var(--surface-2);border:1px solid var(--border);border-radius:var(--radius-sm);cursor:pointer;flex-direction:column;align-items:center;justify-content:center;gap:4px}
.hvz-mobile-btn span{width:20px;height:2px;background:#fff;transition:transform .2s ease}
.hvz-mobile-nav{display:none;position:fixed;top:70px;left:0;right:0;background:var(--bg-page);padding:12px 20px;border-bottom:3px solid var(--cta);max-height:calc(100vh - 70px);overflow-y:auto}
.hvz-mobile-nav a{display:block;padding:14px 8px;color:var(--text-2);font-weight:600;border-bottom:1px solid var(--border);font-size:.95rem}
.hvz-mobile-nav a:hover,.hvz-mobile-nav a.active{color:#fff}
.hvz-mobile-phone{padding:14px 8px;display:block;font-family:var(--font-display);font-size:1.15rem;font-weight:800;color:var(--cta);border-bottom:1px solid var(--border)}
.hvz-nav-open .hvz-mobile-nav{display:block}
.hvz-nav-open .hvz-mobile-btn span:nth-child(1){transform:translateY(6px) rotate(45deg)}
.hvz-nav-open .hvz-mobile-btn span:nth-child(2){opacity:0}
.hvz-nav-open .hvz-mobile-btn span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}

/* ===== BREADCRUMBS ===== */
.hvz-crumbs{background:var(--bg-alt);border-bottom:1px solid var(--border);padding:14px 0;font-size:.82rem;margin-top:70px}
.hvz-crumbs ol{max-width:var(--container);margin:0 auto;padding:0 24px;display:flex;align-items:center;flex-wrap:wrap;gap:8px;list-style:none}
.hvz-crumbs li{display:flex;align-items:center;gap:8px;color:var(--text-muted);font-weight:500}
.hvz-crumbs li::after{content:'/';color:var(--border-strong);margin-left:8px}
.hvz-crumbs li:last-child::after{display:none}
.hvz-crumbs a{color:var(--text-2);font-weight:600}
.hvz-crumbs a:hover{color:var(--cta)}
.hvz-crumbs li[aria-current="page"]{color:#fff;font-weight:600}

.hvz-no-crumbs main{padding-top:70px}

/* ===== SPLIT HERO (text left, image right) ===== */
.hvz-hero{padding:72px 0 64px;background:var(--bg-page);position:relative;overflow:hidden}
.hvz-hero::before{content:'';position:absolute;inset:0;background:
  radial-gradient(ellipse 60% 50% at 75% 30%, rgba(234,63,59,.10) 0%, transparent 60%),
  radial-gradient(ellipse 50% 50% at 15% 70%, rgba(215,119,53,.08) 0%, transparent 60%);
  pointer-events:none}
.hvz-hero-inner{max-width:var(--container);margin:0 auto;padding:0 24px;position:relative;z-index:2}
.hvz-hero-split{display:grid;grid-template-columns:1.05fr .95fr;gap:48px;align-items:center}
.hvz-hero-text{text-align:left}
.hvz-hero-tag{display:inline-flex;align-items:center;gap:8px;background:var(--surface-2);border:1px solid var(--border);padding:7px 16px;border-radius:999px;font-size:.78rem;font-weight:600;color:var(--text-2);text-transform:uppercase;letter-spacing:.08em;margin-bottom:22px}
.hvz-hero-tag::before{content:'';width:8px;height:8px;background:var(--cta);border-radius:50%;box-shadow:0 0 0 4px rgba(234,63,59,.2);animation:hvz-pulse 2s ease infinite}
@keyframes hvz-pulse{0%,100%{box-shadow:0 0 0 4px rgba(234,63,59,.2)}50%{box-shadow:0 0 0 8px rgba(234,63,59,.05)}}
.hvz-hero h1{max-width:580px;margin-bottom:18px}
.hvz-hero-sub{max-width:540px;margin-bottom:28px;font-size:1.08rem;line-height:1.7;color:var(--text-2)}
.hvz-hero-btns{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:32px}
.hvz-hero-stats{display:flex;gap:36px;flex-wrap:wrap;padding-top:28px;border-top:1px solid var(--border)}
.hvz-hero-stat strong{display:block;font-family:var(--font-display);font-size:1.85rem;font-weight:800;color:#fff;line-height:1;margin-bottom:4px;letter-spacing:-.02em}
.hvz-hero-stat span{font-size:.78rem;color:var(--text-muted);text-transform:uppercase;letter-spacing:.1em;font-weight:600}

.hvz-hero-visual{position:relative}
.hvz-hero-visual img{border-radius:var(--radius);border:1px solid var(--border);width:100%;height:auto;display:block;box-shadow:0 24px 60px rgba(0,0,0,.6), 0 0 0 1px rgba(234,63,59,.15)}
.hvz-hero-visual::after{content:'';position:absolute;inset:-1px;background:linear-gradient(135deg, var(--cta), var(--orange));border-radius:var(--radius);z-index:-1;opacity:.25;filter:blur(40px)}

/* Compat: when hero is centered (older homepage builder) */
.hvz-hero-inner > .hvz-hero-tag,
.hvz-hero-inner > h1,
.hvz-hero-inner > .hvz-hero-sub,
.hvz-hero-inner > .hvz-hero-btns,
.hvz-hero-inner > .hvz-hero-stats{text-align:center;margin-left:auto;margin-right:auto}
.hvz-hero-inner > .hvz-hero-btns{justify-content:center}
.hvz-hero-inner > .hvz-hero-stats{justify-content:center}

/* ===== ZIP CODE WIDGET (under hero) ===== */
.hvz-zip-strip{background:var(--bg-alt);border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:22px 0}
.hvz-zip-inner{max-width:var(--container);margin:0 auto;padding:0 24px;display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:16px}
.hvz-zip-label{font-size:.92rem;color:var(--text-2);font-weight:600;display:flex;align-items:center;gap:10px}
.hvz-zip-label::before{content:'';width:8px;height:8px;background:var(--orange);border-radius:50%}
.hvz-zip-form{display:flex;gap:8px;flex-wrap:wrap}
.hvz-zip-input{padding:12px 16px;background:var(--surface-2);border:1px solid var(--border);border-radius:var(--radius-sm);color:#fff;font-family:var(--font-body);font-size:1rem;font-weight:600;width:140px;letter-spacing:.05em;transition:border-color .15s}
.hvz-zip-input::placeholder{color:var(--text-faint);font-weight:400;letter-spacing:.02em}
.hvz-zip-input:focus{outline:none;border-color:var(--cta);background:var(--surface)}
.hvz-zip-msg{font-size:.86rem;color:var(--text-muted);min-height:1.2em;width:100%;text-align:center;margin-top:4px}
.hvz-zip-msg.error{color:var(--cta)}

/* ===== TRUST STRIP ===== */
.hvz-trust-strip{background:var(--bg-alt);border-bottom:1px solid var(--border);padding:18px 0}
.hvz-trust-strip-inner{max-width:var(--container);margin:0 auto;padding:0 24px;display:flex;justify-content:center;flex-wrap:wrap;gap:28px}
.hvz-trust-item{display:flex;align-items:center;gap:8px;font-size:.86rem;font-weight:600;color:var(--text-2)}
.hvz-trust-icon{width:18px;height:18px;background:var(--cta);border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0;background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'><path fill-rule='evenodd' d='M16.7 5.3a1 1 0 010 1.4l-8 8a1 1 0 01-1.4 0l-4-4a1 1 0 011.4-1.4L8 12.6l7.3-7.3a1 1 0 011.4 0z' clip-rule='evenodd'/></svg>");background-repeat:no-repeat;background-position:center}

/* ===== SECTIONS ===== */
.hvz-section{padding:var(--section-pad) 0;background:var(--bg-page)}
.hvz-section.alt{background:var(--bg-alt)}
.hvz-section h2{margin-bottom:12px}
.hvz-section p.lead{margin-bottom:24px;color:var(--text-2);font-size:1.08rem}

/* ===== GRIDS ===== */
.hvz-grid{display:grid;gap:18px}
.hvz-grid.cols-4{grid-template-columns:repeat(4,1fr)}
.hvz-grid.cols-3{grid-template-columns:repeat(3,1fr)}
.hvz-grid.cols-2{grid-template-columns:repeat(2,1fr)}

/* ===== CARDS — dark surface w/ red glow on hover ===== */
.hvz-card{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);padding:26px;transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;position:relative;overflow:hidden}
.hvz-card h3{font-size:1.15rem;font-weight:700;margin-bottom:8px;color:#fff}
.hvz-card p{font-size:.94rem;line-height:1.65;color:var(--text-2)}
.hvz-card .mini{margin-top:12px;color:#fff;font-weight:600;font-size:.88rem}
.hvz-card-link{display:block;text-decoration:none;color:inherit}
.hvz-card-link:hover{border-color:var(--cta);box-shadow:0 0 0 1px var(--cta), 0 10px 28px rgba(234,63,59,.15);transform:translateY(-3px)}
.hvz-card-link:hover h3{color:#fff}
.hvz-card-link:hover .hvz-card-icon{background:var(--cta);color:#fff;transform:scale(1.05)}
.hvz-card-icon{width:48px;height:48px;margin-bottom:16px;color:var(--cta);display:flex;align-items:center;justify-content:center;background:rgba(234,63,59,.1);border:1px solid rgba(234,63,59,.2);border-radius:var(--radius-sm);transition:all .2s ease}
.hvz-card-icon svg{width:26px;height:26px;stroke:currentColor;fill:none;stroke-width:1.75;stroke-linecap:round;stroke-linejoin:round}
.hvz-card .hvz-arrow{margin-top:16px;display:inline-flex;align-items:center;gap:6px;color:var(--cta);font-weight:700;font-size:.86rem}

.hvz-bullets{margin-top:14px;display:grid;gap:8px}
.hvz-bullets div{background:var(--surface);border:1px solid var(--border);border-left:3px solid var(--cta);padding:14px 16px;border-radius:var(--radius-sm);color:var(--text-2);font-size:.96rem;line-height:1.65}
.hvz-bullets div strong{color:#fff;font-weight:700}

.hvz-steps{margin-top:14px;display:grid;gap:10px;list-style-position:inside}
.hvz-steps li{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-sm);padding:14px 16px;color:var(--text-2);font-size:.96rem;line-height:1.65}
.hvz-steps li strong{color:#fff;font-weight:700}
.hvz-steps li::marker{color:var(--cta);font-weight:800}

.hvz-checklist{margin-top:14px;display:grid;gap:8px;list-style:none}
.hvz-checklist li{position:relative;padding-left:30px;color:var(--text-2);font-size:.96rem;line-height:1.65}
.hvz-checklist li::before{content:'';position:absolute;left:0;top:4px;width:18px;height:18px;background:var(--cta);border-radius:50%;background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'><path fill-rule='evenodd' d='M16.7 5.3a1 1 0 010 1.4l-8 8a1 1 0 01-1.4 0l-4-4a1 1 0 011.4-1.4L8 12.6l7.3-7.3a1 1 0 011.4 0z' clip-rule='evenodd'/></svg>");background-repeat:no-repeat;background-position:center}
.hvz-checklist li strong{color:#fff;font-weight:700}

.hvz-split{display:grid;grid-template-columns:1.05fr .95fr;gap:32px;align-items:start}

/* ===== NEARBY CITIES ===== */
.hvz-nearby{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);padding:18px}
.hvz-nearby a{display:inline-block;color:var(--text-2);padding:5px 10px;margin:2px 0;border-radius:var(--radius-sm);font-size:.92rem;font-weight:500}
.hvz-nearby a:hover{color:#fff;background:var(--surface-2);text-decoration:none}

/* ===== FAQ ===== */
.hvz-faq-list{display:flex;flex-direction:column;gap:8px;margin-top:18px}
.hvz-faq-item{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-sm);overflow:hidden;transition:border-color .15s ease}
.hvz-faq-item[open]{border-color:var(--cta)}
.hvz-faq-item summary{padding:18px 20px;font-size:1rem;font-weight:600;color:#fff;cursor:pointer;list-style:none;display:flex;justify-content:space-between;align-items:center;gap:16px}
.hvz-faq-item summary::-webkit-details-marker{display:none}
.hvz-faq-item summary::after{content:'+';font-size:1.4rem;font-weight:400;color:var(--cta);transition:transform .2s ease;flex-shrink:0}
.hvz-faq-item[open] summary::after{transform:rotate(45deg)}
.hvz-faq-answer{padding:0 20px 18px;color:var(--text-2);line-height:1.7;font-size:.95rem}

/* ===== CTA SECTION ===== */
.hvz-cta{padding:var(--section-pad) 0;background:linear-gradient(135deg, var(--cta) 0%, var(--cta-deep) 100%);text-align:center;color:#fff;position:relative;overflow:hidden}
.hvz-cta::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 60% 60% at 50% 0%, rgba(255,255,255,.12) 0%, transparent 60%);pointer-events:none}
.hvz-cta h2{font-size:clamp(1.8rem,4vw,2.8rem);font-weight:800;color:#fff;margin-bottom:14px;position:relative}
.hvz-cta p{max-width:680px;margin:0 auto 24px;color:rgba(255,255,255,.94);font-size:1.05rem;line-height:1.7;position:relative}
.hvz-cta-btns{display:flex;justify-content:center;gap:12px;flex-wrap:wrap;position:relative}

/* ===== NEAR YOU banner ===== */
.hvz-near-you{background:var(--surface);border:1px solid var(--border);border-left:4px solid var(--cta);border-radius:var(--radius);padding:16px 20px;margin:20px 0 24px;animation:hvz-slide-in .3s ease}
.hvz-near-you[hidden]{display:none}
.hvz-near-you-inner{display:flex;align-items:center;flex-wrap:wrap;gap:12px}
.hvz-near-you-label{font-size:.74rem;font-weight:700;text-transform:uppercase;letter-spacing:.12em;color:var(--cta);padding:4px 10px;background:rgba(234,63,59,.12);border-radius:999px}
.hvz-near-you strong{color:#fff;font-weight:700}
@keyframes hvz-slide-in{from{opacity:0;transform:translateY(-6px)}to{opacity:1;transform:translateY(0)}}

/* ===== HUB ===== */
.hvz-states{display:grid;grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));gap:14px;margin-top:24px}
.hvz-state{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-sm);overflow:hidden;transition:border-color .15s ease}
.hvz-state summary{padding:16px 20px;font-family:var(--font-display);font-size:1.05rem;font-weight:700;color:#fff;cursor:pointer;list-style:none;display:flex;justify-content:space-between;align-items:center;gap:12px}
.hvz-state summary::-webkit-details-marker{display:none}
.hvz-state summary::after{content:'+';font-size:1.4rem;font-weight:400;color:var(--cta);transition:transform .2s ease}
.hvz-state[open] summary::after{transform:rotate(45deg)}
.hvz-state[open]{border-color:var(--cta)}
.hvz-state-count{font-size:.74rem;font-weight:600;color:var(--text-muted);text-transform:uppercase;letter-spacing:.08em}
.hvz-state-cities{padding:0 20px 20px;display:grid;grid-template-columns:repeat(auto-fill, minmax(180px, 1fr));gap:4px 12px}
.hvz-state-cities a{color:var(--text-2);font-size:.9rem;padding:5px 0;display:block;font-weight:500}
.hvz-state-cities a:hover{color:var(--cta)}

/* ===== HOMEPAGE ===== */
.hvz-service-grid{display:grid;grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));gap:16px;margin-top:24px}
.hvz-coverage{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center}
.hvz-coverage img{border-radius:var(--radius);border:1px solid var(--border)}
.hvz-why{display:grid;grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));gap:18px;margin-top:24px}
.hvz-why-item{text-align:left}
.hvz-why-item .num{font-family:var(--font-display);font-size:2.5rem;color:var(--cta);font-weight:900;line-height:1;margin-bottom:8px;display:block;letter-spacing:-.03em}
.hvz-why-item h3{font-size:1.1rem;font-weight:700;margin-bottom:6px}
.hvz-why-item p{font-size:.94rem;color:var(--text-2)}

/* ===== EDITORIAL BYLINE ===== */
.hvz-byline-block{background:var(--bg-alt);border-top:1px solid var(--border);padding:32px 0;text-align:center}
.hvz-byline-block .hvz-container{max-width:760px}
.hvz-byline-text{font-size:.92rem;font-weight:600;color:#fff;margin-bottom:6px}
.hvz-byline-meta{font-size:.84rem;color:var(--text-muted);line-height:1.65}

/* ===== FOOTER ===== */
.hvz-footer{background:var(--bg-page);border-top:1px solid var(--border);color:var(--text-2);padding:56px 0 24px}
.hvz-footer .hvz-logo-text{color:#fff;font-size:1.25rem}
.hvz-footer .hvz-logo-text span{color:var(--cta)}
.hvz-footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:36px;margin-bottom:36px}
.hvz-footer-brand .hvz-logo{margin-bottom:14px}
.hvz-footer-brand p{font-size:.9rem;max-width:320px;line-height:1.7;color:var(--text-muted)}
.hvz-footer h4{font-family:var(--font-display);font-size:.84rem;font-weight:700;color:#fff;margin-bottom:14px;text-transform:uppercase;letter-spacing:.12em}
.hvz-footer ul{list-style:none;display:grid;gap:8px}
.hvz-footer ul a{font-size:.92rem;color:var(--text-muted);font-weight:500}
.hvz-footer ul a:hover{color:#fff}
.hvz-footer-bottom{border-top:1px solid var(--border);padding-top:20px;display:flex;justify-content:space-between;align-items:center;gap:16px;flex-wrap:wrap}
.hvz-footer-bottom p{font-size:.78rem;color:var(--text-muted);font-weight:500}
.hvz-footer-phone{font-family:var(--font-display);font-size:1.15rem;font-weight:800;color:#fff}
.hvz-footer-phone:hover{color:var(--cta)}

/* ===== MOBILE STICKY CALL CTA ===== */
.hvz-mobile-cta{display:none}
@media (max-width:767px){
  body{padding-bottom:64px}
  .hvz-mobile-cta{
    display:flex;align-items:center;gap:12px;
    position:fixed;bottom:0;left:0;right:0;z-index:999;
    background:linear-gradient(135deg, var(--cta) 0%, var(--cta-deep) 100%);
    color:#fff;padding:12px 16px;
    box-shadow:0 -6px 20px rgba(234,63,59,.3);
    text-decoration:none;
  }
  .hvz-mobile-cta-icon{font-size:1.4rem;color:#fff;flex-shrink:0;line-height:1}
  .hvz-mobile-cta-text{display:flex;flex-direction:column;line-height:1.2;flex:1}
  .hvz-mobile-cta-text strong{font-family:var(--font-display);font-size:1.05rem;font-weight:800;letter-spacing:-.005em}
  .hvz-mobile-cta-sub{font-size:.72rem;color:rgba(255,255,255,.85);text-transform:uppercase;letter-spacing:.08em;margin-top:2px;font-weight:600}
}

/* ===== RESPONSIVE ===== */
@media (max-width:1024px){
  .hvz-nav{display:none}
  .hvz-phone{display:none}
  .hvz-mobile-btn{display:flex}
  .hvz-hero-split{grid-template-columns:1fr;gap:32px}
  .hvz-hero-text{text-align:center}
  .hvz-hero-text h1, .hvz-hero-text .hvz-hero-sub{margin-left:auto;margin-right:auto}
  .hvz-hero-btns{justify-content:center}
  .hvz-hero-stats{justify-content:center}
  .hvz-grid.cols-4{grid-template-columns:repeat(2,1fr)}
  .hvz-grid.cols-3{grid-template-columns:1fr 1fr}
  .hvz-grid.cols-2{grid-template-columns:1fr}
  .hvz-split{grid-template-columns:1fr}
  .hvz-coverage{grid-template-columns:1fr}
  .hvz-footer-grid{grid-template-columns:1fr 1fr;gap:28px}
}
@media (max-width:768px){
  .hvz-header-inner{padding:0 16px;height:64px}
  .hvz-hero-inner,.hvz-container{padding:0 16px}
  .hvz-crumbs ol{padding:0 16px}
  .hvz-crumbs{margin-top:64px}
  .hvz-mobile-nav{top:64px}
  .hvz-hero{padding:48px 0 40px}
  .hvz-hero-stats{gap:20px}
  .hvz-hero-stat strong{font-size:1.5rem}
  .hvz-grid.cols-4,.hvz-grid.cols-3{grid-template-columns:1fr}
  .hvz-footer-grid{grid-template-columns:1fr;gap:24px}
  .hvz-footer-bottom{flex-direction:column;text-align:center}
  h1{font-size:clamp(1.85rem,8vw,2.5rem)}
  .hvz-zip-form{justify-content:center}
  .hvz-zip-input{width:130px}
  .hvz-trust-strip-inner{gap:16px;justify-content:flex-start;padding:0 16px;overflow-x:auto}
  .hvz-trust-item{font-size:.78rem;white-space:nowrap}
}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:.01ms !important;transition-duration:.01ms !important}
}
