/* ============================================================
   SPG ELECTRICAL — SHARED STYLESHEET
   Design system: "Dark Current" — premium dark ground with
   logo teal/green accents and a metallic gold highlight.
   ============================================================ */

:root {
  /* ---- Color: surfaces ---- */
  --bg: #0a0d0f;
  --bg-alt: #10151a;
  --surface: #161d22;
  --surface-raised: #1b2329;
  --border: #232c32;
  --border-light: #2f3a41;

  /* ---- Color: text ---- */
  --text: #eef2f3;
  --text-muted: #9baab0;
  --text-faint: #6c7a80;

  /* ---- Color: brand accents (from logo) ---- */
  --teal: #178a96;
  --teal-bright: #2bb2c0;
  --green: #7cb62c;
  --green-bright: #96d63e;
  --gold: #c9a227;
  --gold-bright: #e6c34f;

  /* ---- Semantic ---- */
  --cta: var(--gold);
  --cta-text: #14100a;
  --link: var(--teal-bright);
  --focus-ring: #e6c34f;

  /* ---- Typography ---- */
  --font-heading: Georgia, 'Times New Roman', Times, serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* ---- Spacing scale ---- */
  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* ---- Radius ---- */
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  /* ---- Layout ---- */
  --content-width: 1180px;
  --sticky-cta-height: 64px;

  /* ---- Shadow ---- */
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.45);
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.35);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--sticky-cta-height);
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { padding-left: 1.25em; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 var(--space-sm);
  color: #ffffff;
  letter-spacing: 0.2px;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 var(--space-sm); color: var(--text-muted); }
.container {
  width: 100%;
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

/* Visible focus states — accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--gold);
  color: var(--cta-text);
  padding: var(--space-2xs) var(--space-sm);
  z-index: 200;
  border-radius: var(--radius-sm);
  font-weight: 700;
}
.skip-link:focus {
  left: var(--space-sm);
  top: var(--space-sm);
}

/* ============================================================
   THE CURRENT LINE — signature element
   A slim gold-to-teal rule that sits beside section eyebrows,
   echoing the live bolt running through the SPG mark.
   ============================================================ */
.eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: var(--space-sm);
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 3px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--gold) 0%, var(--teal-bright) 100%);
}
.section-head {
  max-width: 640px;
  margin-bottom: var(--space-lg);
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xs);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9em 1.7em;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  line-height: 1.1;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(120deg, var(--gold-bright), var(--gold));
  color: var(--cta-text);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--gold-bright); }
.btn-outline {
  background: transparent;
  border-color: var(--border-light);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--teal-bright); color: var(--teal-bright); }
.btn-teal {
  background: var(--teal);
  color: #ffffff;
}
.btn-teal:hover { background: var(--teal-bright); }
.btn-block { width: 100%; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 13, 15, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-block: var(--space-xs);
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--space-2xs);
  color: var(--text);
}
.brand:hover { text-decoration: none; }
.brand img { height: 42px; width: auto; }
.brand-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.3px;
}
.brand-text span { color: var(--teal-bright); }

.main-nav > ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--space-lg);
}
.main-nav a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  padding: var(--space-2xs) 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--text);
  text-decoration: none;
  border-bottom-color: var(--gold);
}
.main-nav li { position: relative; }
.main-nav li.has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: var(--space-sm);
}
.main-nav .nav-caret {
  display: inline-block;
  font-size: 0.65em;
  margin-left: 0.3em;
  color: var(--text-faint);
  transform: translateY(-1px);
}
.main-nav li.has-dropdown:hover .nav-caret,
.main-nav li.has-dropdown:focus-within .nav-caret {
  color: var(--gold-bright);
}
.main-nav .dropdown {
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 6px);
  min-width: 240px;
  margin: 0;
  padding: var(--space-2xs);
  list-style: none;
  background: var(--surface-raised);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  z-index: 110;
}
.main-nav li.has-dropdown:hover .dropdown,
.main-nav li.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.main-nav .dropdown li { position: static; }
.main-nav .dropdown a {
  display: block;
  padding: 0.6em var(--space-sm);
  border-radius: var(--radius-sm);
  border-bottom: none;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}
.main-nav .dropdown a:hover,
.main-nav .dropdown a:focus-visible {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  text-decoration: none;
}
.header-cta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.header-phone {
  display: flex;
  align-items: center;
  gap: var(--space-3xs);
  color: var(--text);
  font-weight: 700;
  white-space: nowrap;
}
.header-phone svg { flex-shrink: 0; }

.nav-toggle { display: none; }

/* ============================================================
   STICKY BOTTOM-RIGHT CTA (all pages)
   ============================================================ */
.sticky-cta {
  position: fixed;
  right: var(--space-md);
  bottom: var(--space-md);
  z-index: 150;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  background: linear-gradient(120deg, var(--gold-bright), var(--gold));
  color: var(--cta-text);
  padding: 0.85em 1.4em;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 30px rgba(201, 162, 39, 0.35);
  font-weight: 700;
  border: 2px solid rgba(20, 16, 10, 0.15);
}
.sticky-cta:hover { text-decoration: none; background: var(--gold-bright); }
.sticky-cta .cta-label {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.sticky-cta .cta-small {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.85;
}
.sticky-cta .cta-big {
  font-size: 1.15rem;
  font-weight: 800;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 900px 500px at 85% -10%, rgba(23, 138, 150, 0.28), transparent 60%),
    radial-gradient(ellipse 700px 500px at -10% 110%, rgba(124, 182, 44, 0.14), transparent 60%),
    var(--bg);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-xl);
  align-items: center;
  padding-block: var(--space-2xl) var(--space-xl);
}
.hero-copy .eyebrow { color: var(--gold-bright); }
.hero h1 { margin-bottom: var(--space-sm); }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--teal-bright), var(--green-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lede {
  font-size: 1.1rem;
  max-width: 46ch;
  color: var(--text-muted);
}
.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-md);
}
.hero-trust {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  flex-wrap: wrap;
}
.hero-trust .trust-item {
  display: flex;
  flex-direction: column;
}
.hero-trust .trust-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--gold-bright);
  font-weight: 700;
}
.hero-trust .trust-label {
  font-size: 0.8rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual .frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}
.hero-visual .frame img { width: 100%; }
.hero-visual .badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--surface-raised);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}
.hero-visual .badge svg { color: var(--green-bright); flex-shrink: 0; }
.hero-visual .badge strong { display: block; color: #fff; font-size: 0.95rem; }
.hero-visual .badge span { font-size: 0.78rem; color: var(--text-faint); }

/* ============================================================
   PAGE HEADER (About / Services / Contact banners)
   ============================================================ */
.page-banner {
  position: relative;
  padding-block: var(--space-2xl) var(--space-xl);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 800px 400px at 90% 0%, rgba(23, 138, 150, 0.22), transparent 65%),
    var(--bg-alt);
}
.page-banner .eyebrow { color: var(--gold-bright); }
.page-banner p { max-width: 60ch; font-size: 1.05rem; }

/* ============================================================
   SECTIONS / GENERIC LAYOUT
   ============================================================ */
.section { padding-block: var(--space-2xl); }
.section-alt { background: var(--bg-alt); }
.section-tight { padding-block: var(--space-xl); }

.grid {
  display: grid;
  gap: var(--space-lg);
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}
.card-hover { transition: border-color 0.15s ease, transform 0.15s ease; }
.card-hover:hover { border-color: var(--teal-bright); transform: translateY(-4px); }

.service-card { display: flex; flex-direction: column; gap: var(--space-sm); }
.service-card .icon-badge {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(23, 138, 150, 0.16);
  border: 1px solid rgba(43, 178, 192, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-bright);
}
.service-card h3 { margin-bottom: var(--space-3xs); }
.service-card .service-link {
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-bright);
}

/* ============================================================
   STATS / RESULTS SECTION (unique section type)
   ============================================================ */
.stats-band {
  background: linear-gradient(120deg, #0d2b2f 0%, #0a0d0f 55%, #16220a 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  text-align: center;
  padding-block: var(--space-xl);
}
.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--gold-bright);
  font-weight: 700;
  line-height: 1;
}
.stat-label {
  margin-top: var(--space-2xs);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   PROCESS TIMELINE (unique section type)
   ============================================================ */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  counter-reset: step;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--teal-bright), var(--green-bright));
  opacity: 0.5;
}
.timeline-step {
  position: relative;
  padding-top: var(--space-xl);
}
.timeline-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--surface-raised);
  border: 2px solid var(--gold);
  color: var(--gold-bright);
  font-family: var(--font-heading);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.timeline-step h3 { font-size: 1.1rem; margin-top: var(--space-sm); }
.timeline-step p { font-size: 0.92rem; }

/* ============================================================
   COMPARISON TABLE (unique section type)
   ============================================================ */
.compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
table.compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  background: var(--surface);
}
table.compare caption { caption-side: top; text-align: left; padding: var(--space-md); font-weight: 700; color: #fff; }
table.compare th,
table.compare td {
  padding: var(--space-sm) var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
table.compare thead th {
  background: var(--bg-alt);
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.78rem;
}
table.compare tbody th { color: var(--text); font-weight: 600; width: 32%; }
table.compare .col-spg { background: rgba(124, 182, 44, 0.06); color: #fff; font-weight: 600; }
table.compare tbody tr:last-child td,
table.compare tbody tr:last-child th { border-bottom: none; }
.icon-yes { color: var(--green-bright); }
.icon-no { color: var(--text-faint); }

/* ============================================================
   FAQ ACCORDION — native <details>/<summary> (unique section)
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: var(--space-sm); max-width: 780px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: var(--space-md) var(--space-lg);
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  font-size: 1.1rem;
  font-weight: 700;
}
.faq-item[open] summary .plus { transform: rotate(45deg); }
.faq-item .faq-body {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--text-muted);
}

/* ============================================================
   TESTIMONIAL / QUOTE
   ============================================================ */
.quote-block {
  border-left: 3px solid var(--gold);
  padding-left: var(--space-lg);
  margin: 0;
}
.quote-block p {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: #fff;
  font-style: italic;
}
.quote-block cite {
  display: block;
  margin-top: var(--space-sm);
  font-style: normal;
  color: var(--text-faint);
  font-size: 0.9rem;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  background: linear-gradient(120deg, #0f2a2d, #16220a);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}
.cta-banner h2 { margin-bottom: var(--space-3xs); }
.cta-banner p { margin-bottom: 0; }

/* ============================================================
   VALUES / CREDENTIALS LIST
   ============================================================ */
.value-item { display: flex; gap: var(--space-sm); align-items: flex-start; }
.value-item svg { flex-shrink: 0; color: var(--green-bright); margin-top: 3px; }
.value-item h3 { font-size: 1.05rem; margin-bottom: 0.2em; }
.value-item p { font-size: 0.92rem; margin-bottom: 0; }

/* ============================================================
   AREAS SERVED PILLS
   ============================================================ */
.pill-list { display: flex; flex-wrap: wrap; gap: var(--space-2xs); list-style: none; padding: 0; margin: 0; }
.pill-list li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.5em 1.1em;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ============================================================
   FORMS (Contact page)
   ============================================================ */
.form-grid { display: grid; gap: var(--space-md); }
.field { display: flex; flex-direction: column; gap: var(--space-3xs); }
.field label { font-weight: 700; font-size: 0.9rem; color: var(--text); }
.field .hint { font-size: 0.78rem; color: var(--text-faint); }
.field input,
.field select,
.field textarea {
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.8em 1em;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  width: 100%;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-faint); }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--teal-bright); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
fieldset { border: 1px solid var(--border); border-radius: var(--radius-md); padding: var(--space-md); margin: 0; }
legend { padding: 0 var(--space-2xs); font-weight: 700; color: #fff; }
.required-note { font-size: 0.82rem; color: var(--text-faint); }
.form-note { font-size: 0.82rem; color: var(--text-faint); margin-top: var(--space-sm); }

/* Contact info cards */
.contact-info-list { display: flex; flex-direction: column; gap: var(--space-md); }
.contact-info-item { display: flex; gap: var(--space-sm); align-items: flex-start; }
.contact-info-item .icon-badge {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: var(--radius-md);
  background: rgba(201, 162, 39, 0.14);
  border: 1px solid rgba(230, 195, 79, 0.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-bright);
}
.contact-info-item h3 { font-size: 1rem; margin-bottom: 0.15em; }
.contact-info-item p { margin-bottom: 0; font-size: 0.92rem; }

.map-block {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  position: relative;
  background:
    linear-gradient(160deg, rgba(23,138,150,0.18), rgba(124,182,44,0.10)),
    var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-2xs);
  text-align: center;
  padding: var(--space-lg);
}
.map-block svg { color: var(--teal-bright); }
.map-block strong { color: #fff; }
.map-block span { color: var(--text-faint); font-size: 0.85rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding-block: var(--space-xl) var(--space-lg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--space-lg);
}
.footer-brand { display: flex; align-items: center; gap: var(--space-2xs); margin-bottom: var(--space-sm); }
.footer-brand img { height: 38px; }
.footer-brand span { font-family: var(--font-heading); font-size: 1.1rem; color: #fff; font-weight: 700; }
.footer-col h3 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  margin-bottom: var(--space-sm);
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--space-2xs); }
.footer-col a { color: var(--text-muted); font-size: 0.92rem; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-socials { display: flex; gap: var(--space-2xs); margin-top: var(--space-sm); }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
}
.footer-socials a:hover { color: var(--gold-bright); border-color: var(--gold-bright); text-decoration: none; }
.footer-bottom {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: var(--space-sm);
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-faint);
}
.footer-bottom a { color: var(--text-faint); }

/* ============================================================
   MISC UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mt-lg { margin-top: var(--space-lg); }
.badge-list { display: flex; flex-wrap: wrap; gap: var(--space-2xs); }
.badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  background: rgba(124, 182, 44, 0.12);
  border: 1px solid rgba(150, 214, 62, 0.3);
  color: var(--green-bright);
  border-radius: var(--radius-pill);
  padding: 0.4em 0.9em;
  font-size: 0.82rem;
  font-weight: 700;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .header-phone .phone-text { display: none; }
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
  .compare-wrap { border-radius: var(--radius-sm); }
  .sticky-cta .cta-label { display: none; }
  .sticky-cta { padding: 0.85em; }
  h1 { font-size: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
