
/* ============================
   SPARKS ELECTRICAL SOLUTIONS
   Design System — style.css
   Navy #1B3068 | Gold #F5C215
   Oswald + Open Sans
   ============================ */

/* Async font load via HTML; kept here as fallback */
:root {
  --primary: #1B3068;
  --primary-dark: #122050;
  --accent: #F5C215;
  --accent-dark: #d4a800;
  --text: #222222;
  --text-light: #555555;
  --bg: #ffffff;
  --bg-light: #f4f6fb;
  --bg-dark: #0f1e45;
  --border: #dde2ef;
  --radius: 6px;
  --shadow: 0 2px 12px rgba(27,48,104,0.10);
  --shadow-lg: 0 6px 32px rgba(27,48,104,0.15);
  --font-head: 'Oswald', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
  --max-w: 1200px;
  --transition: 0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-dark); }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }

/* ── LAYOUT ── */
.inner { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

.section { padding: 64px 0; }
.section-alt { background: var(--bg-light); }
.content-wrap { max-width: 860px; margin: 0 auto; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── TOP BAR ── */
.top-bar {
  background: var(--primary-dark);
  color: #fff;
  font-size: 0.82rem;
  font-family: var(--font-head);
  letter-spacing: 0.06em;
  padding: 7px 0;
}
.top-bar .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: #cfd8f0; }
.top-bar a:hover { color: var(--accent); }
.top-bar-email { font-size: 0.78rem; }
.top-bar-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.top-bar-btns a {
  background: var(--accent);
  color: var(--primary-dark) !important;
  font-weight: 700;
  font-size: 0.76rem;
  padding: 4px 12px;
  border-radius: 3px;
  letter-spacing: 0.08em;
  transition: background var(--transition);
}
.top-bar-btns a:hover { background: #fff; color: var(--primary-dark) !important; }

/* ── HEADER ── */
.site-header {
  background: #fff;
  border-bottom: 3px solid var(--accent);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-tagline {
  font-family: var(--font-head);
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}
.logo img { width: 180px; height: auto; display: block; }

.header-center { flex: 1; text-align: center; padding: 0 20px; }
.header-center h2 {
  font-size: 0.95rem;
  color: var(--primary);
  font-family: var(--font-head);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.header-center p { font-size: 0.8rem; color: var(--text-light); margin: 2px 0 0; line-height: 1.4; }
.header-center p a { color: var(--primary); }
.header-phone { text-align: right; flex-shrink: 0; }
.header-phone .phone {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.03em;
  display: block;
  white-space: nowrap;
}
.header-phone .phone:hover { color: var(--accent-dark); }
.header-phone .phone-sub {
  font-size: 0.72rem;
  color: var(--text-light);
  display: block;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.header-address {
  font-size: 0.72rem;
  color: var(--text-light);
  display: block;
  margin-top: 4px;
}
.header-address:hover { color: var(--primary); }

/* ── NAV ── */
.site-nav {
  background: var(--primary);
}
.site-nav .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block;
  color: #e0e8ff;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 14px;
  transition: color var(--transition), background var(--transition);
}
.nav-links > li > a:hover,
.nav-links > li.nav-has-dropdown:hover > a { color: var(--accent); background: rgba(255,255,255,0.07); }
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--primary-dark);
  border-top: 3px solid var(--accent);
  box-shadow: var(--shadow-lg);
  z-index: 200;
}
.nav-has-dropdown:hover .nav-dropdown { display: block; }
.nav-dropdown li a {
  display: block;
  padding: 10px 18px;
  color: #cfd8f0;
  font-size: 0.82rem;
  font-family: var(--font-head);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition), color var(--transition);
}
.nav-dropdown li a:hover { background: rgba(245,194,21,0.15); color: var(--accent); }
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-right: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  position: relative;
  background: var(--primary-dark);
  color: #fff;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.28;
}
.hero .inner { position: relative; z-index: 2; padding: 60px 20px; }
.hero-content { max-width: 680px; }
.hero-eyebrow {
  display: inline-block;
  background: var(--accent);
  color: var(--primary-dark);
  font-family: var(--font-head);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 14px;
  margin-bottom: 18px;
  border-radius: 2px;
}
.hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); color: #fff; margin-bottom: 18px; }
.hero h1 span { color: var(--accent); }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 28px; max-width: 560px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--accent); color: var(--primary-dark); }
.btn-primary:hover { background: #fff; color: var(--primary-dark); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }
.btn-secondary { background: var(--primary); color: #fff; }
.btn-secondary:hover { background: var(--primary-dark); color: #fff; }
.hero-trust { margin-top: 32px; display: flex; gap: 24px; flex-wrap: wrap; }
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: rgba(255,255,255,0.75);
}
.hero-trust-item svg { flex-shrink: 0; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--accent);
  padding: 18px 0;
}
.trust-bar .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.trust-item svg { flex-shrink: 0; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--primary);
  padding: 48px 0;
  color: #fff;
}
.page-hero h1 { color: #fff; margin-bottom: 8px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin: 0; }
.breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  font-family: var(--font-head);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { color: #fff; }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  transition: background var(--transition);
}
.service-card:hover .service-icon { background: var(--accent); }
.service-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--primary);
}
.service-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.55;
}
.service-card a.card-link {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}
.service-card a.card-link:hover { color: var(--accent-dark); }

/* ── INFO CARDS ── */
.info-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; margin: 32px 0; }
.info-card {
  background: var(--bg-light);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 20px;
}
.info-card h4 { font-size: 0.9rem; margin-bottom: 6px; color: var(--primary); }
.info-card p { font-size: 0.84rem; color: var(--text-light); margin: 0; line-height: 1.5; }

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 32px 0;
}
.highlight-box h3 { color: var(--accent); font-size: 1.05rem; margin-bottom: 10px; }
.highlight-box p { color: rgba(255,255,255,0.85); margin: 0; font-size: 0.9rem; }

/* ── CTA SECTION ── */
.cta-section {
  background: var(--primary);
  padding: 64px 0;
  text-align: center;
}
.cta-section h2 { color: #fff; margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.8); margin-bottom: 28px; font-size: 1.05rem; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-phone {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.03em;
  display: block;
  margin-bottom: 24px;
}
.cta-phone:hover { color: #fff; }

/* ── WHY CHOOSE US ── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.why-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.why-icon {
  width: 48px; height: 48px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--primary-dark);
}
.why-card h4 { margin-bottom: 6px; font-size: 0.95rem; }
.why-card p { font-size: 0.84rem; color: var(--text-light); margin: 0; }

/* ── REVIEWS ── */
.review-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.review-stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 10px; letter-spacing: 2px; }
.review-text { font-size: 0.9rem; color: var(--text); margin-bottom: 14px; font-style: italic; line-height: 1.6; }
.review-author { font-family: var(--font-head); font-size: 0.82rem; color: var(--primary); text-transform: uppercase; letter-spacing: 0.06em; }
.review-summary {
  text-align: center;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 28px;
}
.review-summary .big-num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.review-summary .review-label { font-size: 0.9rem; color: rgba(255,255,255,0.8); margin-top: 4px; }
.review-summary .review-count { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.faq-a { font-size: 0.9rem; color: var(--text-light); line-height: 1.65; margin: 0; }

/* ── HIRING BANNER ── */
.hiring-banner {
  background: var(--accent);
  padding: 28px 0;
  text-align: center;
}
.hiring-banner h2 { color: var(--primary-dark); font-size: 1.4rem; margin-bottom: 8px; }
.hiring-banner p { color: var(--primary-dark); margin-bottom: 18px; font-size: 0.95rem; opacity: 0.85; }
.hiring-banner .btn-secondary { background: var(--primary); color: #fff; }
.hiring-banner .btn-secondary:hover { background: var(--primary-dark); }

/* ── STICKY CALL ── */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  border-top: 3px solid var(--accent);
  z-index: 9999;
  padding: 10px 20px;
  text-align: center;
}
.sticky-call a {
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.sticky-call a:hover { color: #fff; }

/* ── TV FEATURE ── */
.tv-section { background: var(--bg-light); padding: 64px 0; }
.tv-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.tv-content h2 { margin-bottom: 14px; }
.tv-content p { color: var(--text-light); margin-bottom: 20px; }
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ── CITY/SERVICE TABLE ── */
.city-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  margin: 20px 0;
}
.city-list li { }
.city-list a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--primary);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.city-list a:hover { color: var(--accent-dark); }
.city-list a::before {
  content: "⚡";
  font-size: 0.7rem;
}

/* ── CAREERS ── */
.job-card {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 5px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin-bottom: 20px;
}
.job-card h3 { margin-bottom: 6px; font-size: 1.1rem; }
.job-meta { font-size: 0.82rem; color: var(--text-light); margin-bottom: 12px; }
.job-meta span { margin-right: 16px; }
.job-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 14px; }

/* ── FORM ── */
.form-section { background: var(--bg-light); padding: 64px 0; }
.form-wrap {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px 48px;
  box-shadow: var(--shadow);
  max-width: 680px;
  margin: 0 auto;
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27,48,104,0.12);
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-submit { text-align: center; margin-top: 8px; }
.form-success { display: none; text-align: center; padding: 24px; }
.form-success h3 { color: #2d7a4f; margin-bottom: 8px; }
.form-error { display: none; color: #c0392b; font-size: 0.85rem; margin-top: 6px; }

/* ── FOOTER ── */
.site-footer { background: var(--bg-dark); color: rgba(255,255,255,0.75); }
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 56px 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-brand img { height: 56px; width: auto; margin-bottom: 16px; filter: brightness(1.1); }
.footer-brand p { font-size: 0.84rem; line-height: 1.7; color: rgba(255,255,255,0.55); }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-col address { font-style: normal; font-size: 0.84rem; color: rgba(255,255,255,0.6); line-height: 1.7; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--accent); color: var(--primary-dark); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 20px;
}
.footer-bottom .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom span { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--accent); }

/* ── SERVICE AREA INDEX ── */
.sa-county-block { margin-bottom: 40px; }
.sa-county-block h3 {
  background: var(--primary);
  color: var(--accent);
  padding: 10px 20px;
  font-size: 0.95rem;
  border-radius: var(--radius) var(--radius) 0 0;
  margin: 0;
}
.sa-city-row {
  padding: 14px 20px;
  border: 1px solid var(--border);
  border-top: none;
  line-height: 2.2;
  font-size: 0.875rem;
}
.sa-city-row a.city-name { font-weight: 700; color: var(--primary); margin-right: 8px; }
.sa-city-row a.svc-link { color: var(--text-light); font-size: 0.82rem; }
.sa-city-row a.svc-link:hover { color: var(--accent-dark); }

/* ── UTILITY ── */
.text-center { text-align: center; }
.mt-sm { margin-top: 12px; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 40px; }
.mb-md { margin-bottom: 24px; }
.tag {
  display: inline-block;
  background: rgba(27,48,104,0.08);
  color: var(--primary);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
}
.divider { border: none; border-top: 2px solid var(--accent); margin: 40px 0; width: 60px; }
.section-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dark);
  display: block;
  margin-bottom: 10px;
}
.checklist { list-style: none; margin: 16px 0; }
.checklist li {
  padding: 6px 0 6px 28px;
  position: relative;
  font-size: 0.92rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-family: var(--font-head);
}
.zip-box {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 28px 0;
  font-size: 0.88rem;
  color: var(--text-light);
}
.zip-box strong { color: var(--primary); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .tv-inner { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .site-header .inner { flex-wrap: wrap; gap: 12px; }
  .header-center { display: none; }
  .header-phone .phone { font-size: 1.2rem; }
  .nav-links { display: none; flex-direction: column; width: 100%; }
  .nav-links.open { display: flex; }
  .nav-links > li > a { padding: 12px 18px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-dropdown { position: static; border-top: none; box-shadow: none; background: rgba(0,0,0,0.2); display: none; }
  .nav-has-dropdown.open .nav-dropdown { display: block; }
  .hamburger { display: flex; }
  .site-nav .inner { flex-wrap: wrap; padding: 0; }
  .form-wrap { padding: 28px 20px; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .top-bar .inner { justify-content: center; }
  .top-bar-email { display: none; }
  .sticky-call { display: block; }
  body { padding-bottom: 54px; }
  .hero { min-height: 420px; }
  .hero .inner { padding: 40px 20px; }
  .trust-bar .inner { gap: 20px; }
  .sa-city-row { font-size: 0.78rem; line-height: 2; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  h1 { font-size: 1.7rem; }
  .hero h1 { font-size: 1.9rem; }
  .btn { padding: 12px 22px; font-size: 0.85rem; }
}


/* ── Responsive section fixes ── */
@media (max-width: 768px) {
  .team-feature-inner,
  .hq-grid,
  .news-hp-grid {
    grid-template-columns: 1fr !important;
  }
  .team-feature-inner > div:last-child { order: -1; }
  .hq-grid > div:first-child { order: 2; }
  .hq-grid > div:last-child { order: 1; }
  .homepage-quote-section { padding: 2.5rem 0; }
  .news-hp-grid > div:first-child { order: 2; }
  .news-hp-grid > div:last-child { order: 1; }
}

/* ── Logo & responsive fixes ── */
@media (max-width: 900px) {
  .logo img { width: 150px; }
  .header-center { display: none; }
}
