/* ============================================================
   ZERO CARBONZ — SHARED STYLESHEET v3.0
   Dark navy palette + lime accent
   ============================================================ */

:root {
  --navy-950: #090e1a;
  --navy-900: #0d1321;
  --navy-800: #111827;
  --navy-700: #1a2438;
  --navy-600: #243048;
  --navy-500: #2d3f5e;
  --lime:      #c8f135;
  --lime-dark: #a8cc1e;
  --lime-glow: rgba(200,241,53,0.15);
  --white:     #ffffff;
  --off-white: #f5f7fa;
  --gray-50:   #f0f2f7;
  --gray-100:  #e2e6ed;
  --gray-200:  #c4ccd8;
  --gray-400:  #7a8699;
  --gray-600:  #4a5568;
  --text-dark: #0d1117;
  --text-body: #374151;
  --r-sm: 8px; --r-md: 14px; --r-lg: 20px; --r-xl: 28px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Avenir Next','Avenir','Helvetica Neue',Helvetica,Arial,sans-serif; background: var(--off-white); color: var(--text-body); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
h1,h2,h3,h4,h5 { font-family: 'Avenir Next','Avenir','Helvetica Neue',Helvetica,Arial,sans-serif; font-weight: 800; color: var(--text-dark); line-height: 1.1; letter-spacing: -0.02em; }
a { text-decoration: none; }

/* ANNOUNCEMENT */
.announcement-bar { background: var(--lime); color: var(--navy-950); text-align: center; padding: 10px 20px; font-size: 0.85rem; font-weight: 700; }
.announcement-bar a { color: var(--navy-900); text-decoration: underline; font-weight: 800; }

/* NAVBAR */
.navbar { position: sticky; top: 0; z-index: 1000; background: rgba(9,14,26,0.97); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(200,241,53,0.1); padding: 0 5%; display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-img { height: 22px; width: auto; display: block; }
.footer-logo .logo-img { height: 18px; }
.nav-links { display: flex; align-items: center; gap: 1.5rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.68); font-size: 0.875rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover,.nav-links a.active { color: var(--lime); }
.nav-cta { background: var(--lime) !important; color: var(--navy-950) !important; font-weight: 700 !important; padding: 9px 20px !important; border-radius: var(--r-sm) !important; border-bottom: none !important; }
.nav-cta:hover { background: var(--lime-dark) !important; }
.nav-phone { color: rgba(255,255,255,0.88) !important; font-weight: 600 !important; }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; z-index: 1100; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--navy-950); z-index: 1050; flex-direction: column; align-items: center; justify-content: center; padding: 80px 32px 40px; overflow-y: auto; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: rgba(255,255,255,0.82); font-size: 1.2rem; font-weight: 700; padding: 15px 0; width: 100%; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.07); transition: color 0.2s; }
.mobile-menu a:hover { color: var(--lime); }
.mob-cta { margin-top: 20px !important; background: var(--lime) !important; color: var(--navy-950) !important; border-radius: var(--r-md) !important; border-bottom: none !important; }
.mob-phone { color: var(--lime) !important; border-bottom: none !important; font-size: 1rem !important; }

/* BREADCRUMB */
.breadcrumb { background: var(--navy-900); padding: 12px 5%; display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: rgba(255,255,255,0.42); }
.breadcrumb a { color: rgba(255,255,255,0.52); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--lime); }
.breadcrumb .sep { opacity: 0.3; }
.breadcrumb .current { color: var(--lime); font-weight: 600; }

/* BUTTONS */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--lime); color: var(--navy-950); font-family: inherit; font-weight: 700; font-size: 0.95rem; padding: 14px 28px; border-radius: var(--r-sm); border: none; cursor: pointer; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; }
.btn-primary:hover { background: var(--lime-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,241,53,0.25); }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--white); font-family: inherit; font-weight: 600; font-size: 0.95rem; padding: 14px 28px; border-radius: var(--r-sm); border: 1.5px solid rgba(255,255,255,0.28); cursor: pointer; transition: all 0.2s; }
.btn-secondary:hover { border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.07); transform: translateY(-2px); }

/* PAGE HERO */
.page-hero { background: var(--navy-950); padding: 70px 5% 80px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -180px; right: -180px; width: 650px; height: 650px; background: radial-gradient(circle, rgba(200,241,53,0.06) 0%, transparent 68%); pointer-events: none; }
.page-hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.page-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(200,241,53,0.1); border: 1px solid rgba(200,241,53,0.25); color: var(--lime); padding: 6px 14px; border-radius: 100px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; }
.page-hero h1 { font-size: clamp(2.3rem,5vw,3.8rem); color: var(--white); letter-spacing: -0.03em; margin-bottom: 18px; }
.page-hero h1 span { color: var(--lime); }
.page-hero-sub { font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 34px; max-width: 500px; }
.page-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats-row { display: flex; gap: 28px; margin-top: 40px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.09); flex-wrap: wrap; }
.hstat .num { font-size: 1.85rem; font-weight: 800; color: var(--lime); line-height: 1; }
.hstat .lbl { font-size: 0.72rem; color: rgba(255,255,255,0.42); margin-top: 4px; line-height: 1.4; }

/* HERO CARD */
.hero-card { background: var(--navy-800); border: 1px solid rgba(200,241,53,0.12); border-radius: var(--r-xl); overflow: hidden; position: relative; }
.hero-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--lime), rgba(200,241,53,0.4)); }
.hero-card-img { width: 100%; min-height: 200px; overflow: hidden; background: linear-gradient(135deg, var(--navy-950), var(--navy-700)); display: flex; align-items: center; justify-content: center; }
.hero-card-body { padding: 22px 26px; }
.hero-card-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--lime); margin-bottom: 14px; }
.hero-card-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.85rem; }
.hero-card-row:last-child { border-bottom: none; }
.hero-card-row span:first-child { color: rgba(255,255,255,0.48); }
.hero-card-row span:last-child { font-weight: 700; color: var(--white); }
.hero-card-row .lime { color: var(--lime); }

/* TRUST BAR */
.trust-bar { background: var(--navy-900); padding: 18px 5%; display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; border-bottom: 1px solid rgba(255,255,255,0.05); }
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.6); font-size: 0.82rem; font-weight: 500; }
.trust-item .ti { color: var(--lime); font-size: 1rem; }

/* SECTIONS */
section { padding: 88px 5%; }
.section-tag { display: inline-block; background: var(--gray-50); color: var(--navy-700); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; padding: 5px 12px; border-radius: 100px; margin-bottom: 14px; }
.section-tag-dark { background: rgba(200,241,53,0.12); color: var(--lime); }
.section-heading { font-size: clamp(1.85rem,3.5vw,2.8rem); font-weight: 800; letter-spacing: -0.025em; max-width: 640px; margin-bottom: 16px; }
.section-heading-white { color: var(--white); }
.section-sub { font-size: 0.98rem; color: var(--gray-600); max-width: 580px; line-height: 1.76; margin-bottom: 52px; }
.section-sub-white { color: rgba(255,255,255,0.58); }

/* PRODUCT CARDS */
.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.product-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.product-card,.prod-card { background: var(--navy-800); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; position: relative; }
.product-card:hover,.prod-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); border-color: rgba(200,241,53,0.2); }
.product-card.featured,.prod-card.featured { border: 2px solid var(--lime); }
.featured-ribbon,.featured-badge { position: absolute; top: 12px; right: 12px; background: var(--lime); color: var(--navy-950); font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em; padding: 4px 10px; border-radius: 100px; display: flex; align-items: center; gap: 4px; z-index: 2; }
.product-img-wrap,.prod-img { width: 100%; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--navy-950), var(--navy-700)); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.product-body,.prod-body { padding: 22px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.prod-badge { display: inline-block; background: rgba(200,241,53,0.15); color: var(--lime); font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; padding: 4px 10px; border-radius: 100px; width: fit-content; }
.prod-capacity-badge { display: inline-block; background: var(--lime); color: var(--navy-950); font-size: 0.78rem; font-weight: 800; padding: 4px 12px; border-radius: 100px; width: fit-content; }
.prod-name { font-size: 1.25rem; font-weight: 800; color: var(--white); line-height: 1.2; }
.prod-capacity { font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.48); }
.prod-desc { font-size: 0.84rem; color: rgba(255,255,255,0.52); line-height: 1.7; flex: 1; }
.prod-specs { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 12px; display: flex; flex-direction: column; }
.spec-row { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.82rem; }
.spec-row:last-child { border-bottom: none; }
.spec-label { color: rgba(255,255,255,0.42); }
.spec-val { font-weight: 700; color: var(--white); }
.spec-val.lime { color: var(--lime); }
.prod-pricing { background: rgba(200,241,53,0.06); border-radius: var(--r-sm); padding: 14px; margin-top: 4px; }
.featured-pricing { background: rgba(200,241,53,0.12) !important; border: 1px solid rgba(200,241,53,0.2) !important; }
.price-num { font-size: 1.4rem; font-weight: 800; color: var(--white); line-height: 1; }
.price-amount { font-size: 1.4rem; font-weight: 800; color: var(--white); line-height: 1; }
.price-from { font-size: 0.62rem; color: rgba(255,255,255,0.38); display: block; text-align: right; }
.price-tier { display: flex; justify-content: space-between; align-items: center; padding: 5px 0; }
.price-tier-label { font-size: 0.82rem; color: rgba(255,255,255,0.58); }
.price-tier-label::before { content: '› '; color: var(--lime); font-weight: 800; }
.price-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 6px 0; }
.prod-cta { margin-top: 6px; }
.prod-cta .btn-primary { width: 100%; justify-content: center; font-size: 0.9rem; padding: 12px; }

/* REBATES */
.rebate-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.rebate-card { background: var(--white); border-radius: var(--r-lg); padding: 30px; border: 1px solid var(--gray-100); position: relative; }
.rebate-pill { position: absolute; top: -11px; right: 18px; background: var(--lime); color: var(--navy-950); font-size: 0.67rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 12px; border-radius: 100px; }
.rebate-amount { font-size: 1.85rem; font-weight: 800; color: var(--navy-700); margin: 10px 0 8px; line-height: 1; }
.rebate-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; margin-top: 6px; }
.rebate-card p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.7; }

/* WHY GRID */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.why-card { background: var(--navy-800); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--r-lg); padding: 28px; transition: border-color 0.25s, transform 0.25s; }
.why-card:hover { border-color: rgba(200,241,53,0.25); transform: translateY(-4px); }
.why-icon { font-size: 2rem; margin-bottom: 16px; }
.why-card h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.why-card p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--gray-100); }
.faq-question { width: 100%; background: none; border: none; text-align: left; padding: 20px 0; font-family: inherit; font-size: 0.93rem; font-weight: 700; color: var(--text-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: color 0.2s; }
.faq-question:hover { color: var(--navy-600); }
.faq-icon { width: 24px; height: 24px; min-width: 24px; background: var(--gray-50); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; color: var(--navy-600); transition: transform 0.25s, background 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--navy-600); color: var(--white); }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.35s ease; }
.faq-answer p { padding-bottom: 20px; font-size: 0.875rem; color: var(--gray-600); line-height: 1.78; }

/* QUOTE FORM */
.quote-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: start; }
.q-steps { display: flex; flex-direction: column; gap: 16px; }
.q-step { display: flex; align-items: center; gap: 14px; font-size: 0.9rem; color: var(--gray-600); }
.q-step-num { width: 32px; height: 32px; min-width: 32px; background: var(--gray-50); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--navy-700); font-size: 0.85rem; }
.quote-form-box { background: var(--white); border-radius: var(--r-xl); padding: 44px; border: 1px solid var(--gray-100); box-shadow: 0 4px 24px rgba(0,0,0,0.07); }
.form-title { font-size: 1.4rem; font-weight: 800; color: var(--text-dark); margin-bottom: 6px; }
.form-sub { font-size: 0.82rem; color: var(--gray-400); margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-group label { font-size: 0.75rem; font-weight: 700; color: var(--text-dark); letter-spacing: 0.04em; text-transform: uppercase; }
.form-group input,.form-group select,.form-group textarea { padding: 12px 14px; border: 1.5px solid var(--gray-100); border-radius: var(--r-sm); font-family: inherit; font-size: 0.9rem; color: var(--text-dark); background: var(--off-white); transition: border-color 0.2s, background 0.2s; outline: none; }
.form-group input:focus,.form-group select:focus,.form-group textarea:focus { border-color: var(--navy-600); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 85px; }
.svc-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.chk-opt { display: flex; align-items: center; gap: 8px; padding: 10px 12px; border: 1.5px solid var(--gray-100); border-radius: var(--r-sm); cursor: pointer; font-size: 0.82rem; font-weight: 500; transition: border-color 0.2s, background 0.2s; }
.chk-opt input { accent-color: var(--navy-700); }
.chk-opt:hover { border-color: var(--gray-200); background: var(--gray-50); }
.form-submit { width: 100%; padding: 14px; font-size: 0.95rem; margin-top: 6px; justify-content: center; }
.form-privacy { font-size: 0.72rem; color: var(--gray-400); text-align: center; margin-top: 10px; line-height: 1.5; }

/* IMAGE SLOTS */
.img-slot { width: 100%; height: 100%; min-height: 180px; background: linear-gradient(135deg, var(--navy-950), var(--navy-700)); display: flex; align-items: center; justify-content: center; }
.img-slot-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.38); border: 1.5px dashed rgba(255,255,255,0.16); border-radius: 8px; padding: 14px 18px; text-align: center; line-height: 1.65; max-width: 200px; }
.img-slot-label .si,.img-slot-label .slot-icon { display: block; font-size: 1.8rem; margin-bottom: 6px; opacity: 0.45; }
.img-slot-label code { font-size: 0.58rem; opacity: 0.55; display: block; margin-top: 5px; font-family: monospace; }

/* INCLUDES GRID (battery page) */
.includes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.include-item { display: flex; gap: 10px; align-items: flex-start; padding: 14px; background: var(--navy-800); border-radius: var(--r-sm); border: 1px solid rgba(255,255,255,0.05); }
.include-check { width: 20px; height: 20px; min-width: 20px; background: rgba(200,241,53,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.6rem; color: var(--lime); margin-top: 1px; }
.include-text { font-size: 0.83rem; color: rgba(255,255,255,0.62); line-height: 1.55; }

/* FOOTER */
footer { background: var(--navy-950); color: rgba(255,255,255,0.65); padding: 72px 5% 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px; margin-bottom: 52px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.72; color: rgba(255,255,255,0.42); margin: 14px 0 18px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 34px; height: 34px; background: rgba(255,255,255,0.07); border-radius: 7px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 0.82rem; transition: background 0.2s, color 0.2s; }
.social-btn:hover { background: var(--lime); color: var(--navy-950); }
.footer-col h4 { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.32); margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { color: rgba(255,255,255,0.52); font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--lime); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 0.85rem; }
.footer-contact-item .icon { color: var(--lime); flex-shrink: 0; margin-top: 1px; }
.footer-contact-item a { color: rgba(255,255,255,0.62); }
.footer-contact-item a:hover { color: var(--lime); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; font-size: 0.77rem; color: rgba(255,255,255,0.28); }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badge { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.4); font-size: 0.67rem; font-weight: 600; padding: 3px 9px; border-radius: 4px; }

/* ANIMATIONS */
.fade-up { opacity: 1; transform: translateY(0); transition: opacity 0.6s ease, transform 0.6s ease; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .product-grid,.product-grid-3 { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .rebate-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .quote-wrapper { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .navbar { padding: 0 4%; height: 64px; }
  .announcement-bar { font-size: 0.75rem; padding: 8px 14px; line-height: 1.5; }
  section { padding: 56px 5%; }
  .page-hero { padding: 44px 5% 52px; }
  .page-hero h1 { font-size: 2.1rem; }
  .page-hero-ctas { flex-direction: column; }
  .page-hero-ctas a,.page-hero-ctas button { width: 100%; justify-content: center; }
  .hero-stats-row { gap: 18px; }
  .trust-bar { flex-direction: column; align-items: flex-start; gap: 10px; padding: 18px 5%; }
  .section-heading { font-size: 1.75rem; }
  .product-grid,.product-grid-3 { grid-template-columns: 1fr; gap: 16px; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .rebate-grid { grid-template-columns: 1fr; gap: 18px; }
  .includes-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .svc-checks { grid-template-columns: 1fr 1fr; }
  .quote-form-box { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 36px; }
  footer { padding: 52px 5% 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 420px) {
  .page-hero h1 { font-size: 1.85rem; }
  .why-grid { grid-template-columns: 1fr; }
  .svc-checks { grid-template-columns: 1fr; }
  .quote-form-box { padding: 22px 16px; }
}
