/* ============================================================
   Gen-Man Generators - Pro Star Pro Class Series
   Public Site CSS
   Final domain: genmangenerators.com
   ============================================================ */

:root {
  /* Generac brand palette */
  --blue:        #1a4a9e;
  --blue-dark:   #0d2e6e;
  --blue-mid:    #2255b8;
  --blue-light:  #3060cc;
  --blue-glow:   rgba(34,85,184,.18);
  --accent:      #fa6600;
  --accent-dim:  rgba(250,102,0,.12);
  --charcoal:    #00121e;
  --dark-1:      #001a2c;
  --dark:        #00263e;
  --dark-2:      #002d48;
  --dark-3:      #003558;
  --silver:      #8fa8c0;
  --silver-lt:   #b8cfe0;
  --white:       #ffffff;
  --off-white:   #f0f4f8;
  --text:        #c8dff0;
  --text-body:   #8fa8c0;
  --danger:      #e53935;
  --success:     #00c853;
  --warning:     #ffb300;

  /* Layout */
  --max-w:      1240px;
  --header-h:   72px;
  --radius:     4px;
  --radius-lg:  10px;

  /* Type */
  --font-sans:  -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  --font-cond:  'Arial Narrow', 'Helvetica Neue Condensed', Arial, sans-serif;
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--charcoal);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: var(--accent); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .82; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-sans);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 700; letter-spacing: 0; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}

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

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }
.section-pad { padding: 5rem 0; }

/* Background utilities — alternating dark shades for section separation */
.bg-dark-1 { background: var(--dark-1); }
.bg-dark-2 { background: var(--dark-2); }
.bg-dark-3 { background: var(--dark-3); }

/* Content section variants (used on service/info pages) */
.content-section  { padding: 5rem 0; background: var(--dark-1); }
.section--light   { background: var(--dark-1); }
.section--dark    { background: var(--dark-2); }

/* Narrow container for text-heavy sections */
.container--narrow { max-width: 800px; }

/* Button aliases */
.btn--primary   { background: var(--accent); color: #fff; border: 2px solid var(--accent); }
.btn--primary:hover { background: #d95900; border-color: #d95900; opacity: 1; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(250,102,0,.4); }
.btn--secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.35); }
.btn--secondary:hover { border-color: var(--accent); color: var(--accent); opacity: 1; }

/* Preparedness checklist cards (cold-weather / hurricane pages) */
.hp-checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.hp-check-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.hp-check-num {
  width: 36px; height: 36px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .88rem; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.hp-check-card h3 { font-size: .95rem; color: var(--white); margin-bottom: .25rem; }
.hp-check-card p  { font-size: .85rem; color: var(--silver); line-height: 1.65; margin: 0; }

/* "What not to do" grid */
.hp-notdo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.hp-notdo-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  background: rgba(229,57,53,.06);
  border: 1px solid rgba(229,57,53,.18);
  border-radius: 10px;
  padding: 1.25rem;
}
.hp-notdo-item svg { width: 20px; height: 20px; color: var(--danger); flex-shrink: 0; margin-top: 2px; }
.hp-notdo-item p   { font-size: .85rem; color: var(--silver-lt); line-height: 1.6; margin: 0; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: #d95900;
  border-color: #d95900;
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(250,102,0,.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.35);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  opacity: 1;
}
.btn-accent {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  font-weight: 800;
}
.btn-accent:hover {
  background: #d95900;
  border-color: #d95900;
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(250,102,0,.4);
}
.btn-lg { padding: .95rem 2.25rem; font-size: 1rem; }
.btn-sm { padding: .5rem 1.1rem; font-size: .78rem; }

/* ── HEADER ──────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: color-mix(in srgb, var(--header-bg, #00263e) 94%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  z-index: 1000;
  transition: background .3s;
}
.site-header.scrolled {
  background: color-mix(in srgb, var(--header-bg, #00263e) 98%, transparent);
  box-shadow: 0 2px 24px rgba(0,0,0,.5);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: .85rem;
  text-decoration: none;
  flex-shrink: 0;
}
.header-logo-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, #c95f00, var(--accent));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-logo-mark svg { width: 22px; height: 22px; color: #fff; }
.header-logo-img { height: 42px; width: auto; max-width: 200px; object-fit: contain; display: block; }
.header-logo-text { line-height: 1.15; }
.header-logo-name {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.01em;
}
.header-logo-sub {
  display: block;
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--silver);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-size: .84rem;
  font-weight: 600;
  color: var(--silver-lt);
  padding: .4rem .75rem;
  border-radius: 4px;
  transition: color .2s, background .2s;
  letter-spacing: .02em;
  position: relative;
  white-space: nowrap;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.06); opacity: 1; }

/* Dropdown */
.nav-item { position: relative; }
.nav-item:hover .nav-dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: .5rem 0;
  padding-top: calc(.5rem + 8px); /* 8px invisible hover bridge replaces the gap */
  min-width: 210px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .18s, transform .18s;
  box-shadow: 0 12px 40px rgba(0,0,0,.6);
  margin-top: -8px; /* visually shift back down so menu appears in same spot */
}
.nav-dropdown a {
  display: block;
  padding: .55rem 1.1rem;
  font-size: .83rem;
  color: var(--silver-lt);
  transition: color .15s, background .15s;
}
.nav-dropdown a:hover { color: var(--accent); background: rgba(250,102,0,.07); opacity: 1; }

.header-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.header-phone {
  font-size: .88rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .03em;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.header-phone svg { width: 14px; height: 14px; color: var(--accent); }

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: .4rem;
}
.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .25s;
}

/* ── MOBILE NAV ──────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: var(--dark-2);
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 1rem 1.5rem 1.5rem;
  z-index: 999;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: .65rem 0;
  font-size: .95rem;
  font-weight: 600;
  color: var(--silver-lt);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--accent); opacity: 1; }
.mobile-nav .mobile-section-label {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--accent);
  margin: .75rem 0 .25rem;
}
.mobile-nav-actions {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

/* ── STICKY MOBILE CTA ────────────────────────────────────── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: .65rem 1rem;
  z-index: 900;
  gap: .6rem;
}
.mobile-cta-bar a {
  flex: 1;
  text-align: center;
  padding: .7rem;
  border-radius: var(--radius);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.mobile-cta-bar .cta-call {
  background: var(--success);
  color: #000;
}
.mobile-cta-bar .cta-quote {
  background: var(--accent);
  color: #fff;
}

/* ── ANNOUNCE BAND ───────────────────────────────────────── */
.announce-band {
  background: #fa6600;
  color: #fff;
  width: 100%;
  padding-top: var(--header-h);
}
.announce-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.75rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: center;
}
.announce-headline {
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 .85rem;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.announce-sub {
  font-size: .97rem;
  line-height: 1.65;
  color: rgba(255,255,255,.92);
  margin: 0 0 1.4rem;
  max-width: 580px;
}
.announce-cta {
  display: inline-block;
  background: #fff;
  color: #fa6600;
  font-weight: 700;
  font-size: .92rem;
  padding: .65rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: .02em;
  transition: background .15s, color .15s;
}
.announce-cta:hover { background: #00263e; color: #fff; }
.announce-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(255,255,255,.6);
  border-radius: 8px;
  padding: 1.1rem 1.6rem;
  text-align: center;
  min-width: 160px;
}
.announce-badge-top {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
}
.announce-badge-main {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  margin: .15rem 0;
}
.announce-badge-sub {
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}
.announce-badge-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,.4);
  margin: .5rem 0;
}
.announce-badge-tag {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
}
@media (max-width: 640px) {
  .announce-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .announce-logo  { display: flex; justify-content: flex-start; }
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 600px;
  background: var(--dark);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero--no-offset { padding-top: 0; }
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 60% at 65% 50%, rgba(0,55,90,.6) 0%, transparent 70%),
    linear-gradient(160deg, #00121e 0%, #00263e 40%, #000e1a 100%);
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  opacity: .22;
}
/* Angled overlay - transitions hero into white trust bar */
.hero-angle {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 120px;
  background: #ffffff;
  clip-path: polygon(0 60%, 100% 0%, 100% 100%, 0% 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 1.5rem 8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-left {}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(250,102,0,.15);
  border: 1px solid rgba(250,102,0,.4);
  border-radius: 20px;
  padding: .3rem .9rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: .3; }
}
.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.0;
  margin-bottom: 1.25rem;
}
.hero h1 .accent-word { color: var(--accent); }
.hero-sub {
  font-size: 1.08rem;
  color: var(--silver-lt);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 500px;
}
.hero-ctas {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  color: var(--silver);
}
.hero-trust-item svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; }

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-stat-card {
  background: rgba(13,26,44,.88);
  border: 1px solid rgba(250,102,0,.35);
  border-radius: 12px;
  padding: 1.75rem;
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 360px;
  border-top: 3px solid var(--accent);
}
.hero-stat-card .card-label {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hero-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .6rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: .84rem;
}
.hero-stat-row:last-child { border-bottom: none; }
.hero-stat-key { color: var(--silver); }
.hero-stat-val { color: var(--white); font-weight: 700; }
.hero-stat-val.good { color: var(--success); }
.hero-stat-val.accent { color: var(--accent); }
.hero-phone-cta {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.hero-phone-cta a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.01em;
}
.hero-phone-cta a:hover { color: var(--accent); opacity: 1; }
.hero-phone-cta a svg { color: var(--accent); width: 20px; height: 20px; }
.hero-phone-cta p { font-size: .7rem; color: var(--silver); margin-top: .25rem; margin-bottom: 0; }

/* ── TRUST BAR ────────────────────────────────────────────── */
.trust-bar {
  background: #ffffff;
  border-top: 1px solid #dde6ee;
  border-bottom: 1px solid #dde6ee;
  padding: 1.25rem 0;
}
.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  font-weight: 600;
  color: #1e3a5f;
  white-space: nowrap;
}
.trust-item svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
.trust-divider { width: 1px; height: 24px; background: #e0d4c8; }

/* ── SECTION TITLES ──────────────────────────────────────── */
.section-title { margin-bottom: 3rem; }
.section-title.center { text-align: center; }
.section-title h2 { margin-bottom: .5rem; }
.section-title p { color: var(--silver-lt); font-size: 1.02rem; max-width: 560px; }
.section-title.center p { margin: 0 auto; }

/* ── ABOUT STRIP ──────────────────────────────────────────── */
.about-strip {
  background: var(--off-white);
  position: relative;
}
.about-strip .container { position: relative; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 2rem 0;
}
.about-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img img { width: 100%; border-radius: var(--radius-lg); }
.about-img-badge {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem;
  background: var(--accent);
  color: var(--white);
  padding: .5rem .9rem;
  border-radius: 6px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.about-img-badge svg { width: 14px; height: 14px; }
.about-content h2 { margin-bottom: 1rem; color: #0f172a; }
.about-content p { color: #334155; margin-bottom: 1rem; }
.about-bullets { margin: 1.5rem 0; }
.about-bullet {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .6rem 0;
  border-bottom: 1px solid #dde8f0;
  font-size: .9rem;
  color: #334155;
}
.about-bullet:last-child { border-bottom: none; }
.about-bullet svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: .15rem; }
.about-strip .eyebrow { color: var(--accent); }

/* ── SERVICES GRID ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color .25s, transform .25s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #d95900);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.service-card:hover {
  border-color: rgba(250,102,0,.35);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 48px; height: 48px;
  background: rgba(250,102,0,.1);
  border: 1px solid rgba(250,102,0,.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 1.1rem; margin-bottom: .6rem; color: var(--white); }
.service-card p  { font-size: .88rem; color: var(--silver); margin-bottom: 1.25rem; }
.service-link {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.service-link svg { width: 12px; height: 12px; transition: transform .2s; }
.service-link:hover svg { transform: translateX(3px); }
.service-link:hover { opacity: 1; }

/* ── STATS ROW ────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-box {
  padding: 2.25rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.12);
  position: relative;
}
.stat-box:last-child { border-right: none; }
.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  font-family: var(--font-sans);
}
.stat-number .unit { font-size: .5em; vertical-align: super; font-weight: 700; }
.stat-desc { font-size: .78rem; color: rgba(255,255,255,.7); margin-top: .4rem; letter-spacing: .05em; text-transform: uppercase; }

/* ── DIAGONAL SPLIT SECTION ──────────────────────────────── */
.diagonal-section {
  position: relative;
  background: var(--dark-2);
  padding: 5rem 0;
}
.diagonal-section::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--charcoal);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 30%);
}
.diagonal-section::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--charcoal);
  clip-path: polygon(0 70%, 100% 0, 100% 100%, 0 100%);
}
.diagonal-section .container { position: relative; z-index: 2; }

/* ── FINANCING SECTION ────────────────────────────────────── */
.financing-band {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.financing-band::before {
  content: '';
  position: absolute;
  top: -40px; left: -10%; right: -10%;
  height: 80px;
  background: var(--charcoal);
  clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
}
.financing-band::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -10%; right: -10%;
  height: 80px;
  background: var(--charcoal);
  clip-path: polygon(15% 0, 85% 0, 100% 100%, 0 100%);
}
.financing-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.financing-text h2 { font-size: 1.8rem; color: var(--white); margin-bottom: .4rem; }
.financing-text p  { color: rgba(255,255,255,.7); font-size: .9rem; }
.financing-badges {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.fin-badge {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: .5rem 1rem;
  font-size: .78rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  white-space: nowrap;
}
.fin-badge span { display: block; font-size: 1.1rem; color: var(--accent); }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.review-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
}
.review-stars { color: #ffb300; font-size: 1rem; letter-spacing: .1em; margin-bottom: .75rem; }
.review-text {
  font-size: .88rem;
  color: var(--silver-lt);
  line-height: 1.65;
  margin-bottom: 1.1rem;
  font-style: italic;
}
.review-text::before { content: '"'; }
.review-text::after  { content: '"'; }
.review-author { font-size: .78rem; font-weight: 700; color: var(--white); }
.review-date   { font-size: .7rem; color: var(--silver); margin-top: .15rem; }

/* ── SERVICE AREA ─────────────────────────────────────────── */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: .6rem;
  margin-top: 2rem;
}
.area-tag {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: .5rem .85rem;
  font-size: .8rem;
  color: var(--silver-lt);
  text-align: center;
  transition: border-color .2s, color .2s;
  text-decoration: none;
  display: block;
}
.area-tag:hover { border-color: var(--accent); color: var(--accent); opacity: 1; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
}
.faq-question svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-answer p { padding-bottom: 1.1rem; font-size: .9rem; color: var(--silver-lt); }

/* ── CTA BAND ─────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, #c95f00 0%, var(--accent) 50%, #c95f00 100%);
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--charcoal);
  clip-path: polygon(0 0, 100% 0, 55% 100%, 45% 100%);
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--charcoal);
  clip-path: polygon(45% 0, 55% 0, 100% 100%, 0 100%);
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: var(--white); margin-bottom: .75rem; }
.cta-band p { color: rgba(255,255,255,.8); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-band-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.cta-phone-big {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  margin: .5rem 0 1.5rem;
  letter-spacing: -.01em;
}
.cta-phone-big svg { width: 26px; height: 26px; color: rgba(255,255,255,.8); }
.cta-phone-big:hover { color: var(--accent); opacity: 1; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1rem;
  text-decoration: none;
}
.footer-logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #c95f00, var(--accent));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo-mark svg { width: 20px; height: 20px; color: #fff; }
.footer-logo-name { font-size: .95rem; font-weight: 800; color: var(--white); }
.footer-brand p { font-size: .84rem; color: var(--silver); line-height: 1.65; margin-bottom: .75rem; }
.footer-contact { font-size: .84rem; color: var(--silver-lt); }
.footer-contact a { color: var(--silver-lt); }
.footer-contact a:hover { color: var(--accent); opacity: 1; }
.footer-contact strong { color: var(--white); display: block; margin-top: .6rem; }
.footer-hours { font-size: .78rem; color: var(--silver); margin-top: .5rem; }

.footer-col h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: .83rem;
  color: var(--silver);
  padding: .22rem 0;
  transition: color .15s;
}
.footer-col a:hover { color: var(--accent); opacity: 1; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: .76rem; color: var(--silver); }
.footer-badges {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-badge {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(250,102,0,.1);
  border: 1px solid rgba(250,102,0,.25);
  padding: .25rem .65rem;
  border-radius: 3px;
}

/* ── GENERAC DEALER BADGE ─────────────────────────────────── */
.generac-badge-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.generac-badge-row img { height: 28px; width: auto; opacity: .8; }

/* ── RIGHT-CLICK MENU ─────────────────────────────────────── */
.ctx-menu {
  position: fixed;
  z-index: 9999;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: .4rem 0;
  min-width: 200px;
  box-shadow: 0 12px 48px rgba(0,0,0,.7);
  opacity: 0;
  pointer-events: none;
  transform: scale(.95) translateY(-4px);
  transition: opacity .15s, transform .15s;
  transform-origin: top left;
}
.ctx-menu.visible {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}
.ctx-menu-header {
  padding: .5rem 1rem .4rem;
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: .25rem;
}
.ctx-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .55rem 1rem;
  font-size: .84rem;
  color: var(--silver-lt);
  cursor: pointer;
  transition: background .15s, color .15s;
  text-decoration: none;
}
.ctx-item:hover { background: rgba(250,102,0,.07); color: var(--accent); opacity: 1; }
.ctx-item svg  { width: 14px; height: 14px; flex-shrink: 0; }
.ctx-divider   { height: 1px; background: rgba(255,255,255,.07); margin: .25rem 0; }

/* ── FORMS ────────────────────────────────────────────────── */
.form-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  color: var(--text);
  font-size: .9rem;
  padding: .65rem .9rem;
  outline: none;
  font-family: inherit;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(250,102,0,.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: .76rem; color: var(--silver); margin-bottom: 1.25rem; line-height: 1.5; }

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  background: var(--dark);
  padding: calc(var(--header-h) + 3.5rem) 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--charcoal);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 20% 50%, rgba(8,45,82,.5) 0%, transparent 70%);
}
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .76rem;
  color: var(--silver);
  margin-bottom: 1.25rem;
}
.breadcrumb-nav a { color: var(--silver); }
.breadcrumb-nav a:hover { color: var(--accent); opacity: 1; }
.breadcrumb-nav span { color: var(--accent); }
.breadcrumb-sep { color: var(--dark-3); }

/* ── HERO SECTION (BEM variant for inner pages) ──────────── */
.hero-section {
  background: var(--dark);
  padding: calc(var(--header-h) + 3.5rem) 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--charcoal);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}
.hero-section .container { position: relative; z-index: 2; }
.hero--page { /* no extra overrides needed — hero-section base handles it */ }

/* ── TRUST STRIP (compact bar used on inner pages) ────────── */
.trust-strip {
  background: var(--dark-2);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 1rem 0;
}
.trust-strip__list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 2rem;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: var(--silver);
}
.trust-strip__list li { display: flex; align-items: center; gap: .35rem; }
.trust-strip__list strong { color: var(--white); }

/* ── FINAL CTA SECTION / BAND (bottom CTA before cta-band) ── */
.final-cta-band {
  background: var(--dark-1);
  padding: 5rem 0;
  text-align: center;
}
.final-cta-band .eyebrow { margin-bottom: .6rem; }
.final-cta-band h2 { margin-bottom: 1rem; }
.final-cta-band p  { color: var(--silver); max-width: 640px; margin: 0 auto 2rem; line-height: 1.75; }
.final-cta-section {
  background: var(--dark-1);
  padding: 5rem 0;
  text-align: center;
}
.final-cta-section .eyebrow { margin-bottom: .6rem; }
.final-cta-section h2 { margin-bottom: 1rem; }
.final-cta-section p  { color: var(--silver); max-width: 640px; margin: 0 auto 2rem; line-height: 1.75; }
.final-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── PRODUCT GRID ─────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.product-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.product-card:hover { border-color: rgba(250,102,0,.4); transform: translateY(-3px); }
.product-card-img {
  height: 180px;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; }
.product-card-body { padding: 1.25rem; }
.product-model {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .35rem;
}
.product-card h3 { font-size: .95rem; color: var(--white); margin-bottom: .5rem; }
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.product-price { font-size: .8rem; color: var(--silver); }

/* ── UTILITY ──────────────────────────────────────────────── */
.text-accent  { color: var(--accent); }
.text-muted   { color: var(--silver); }
.text-center  { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.hidden { display: none !important; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-content  { grid-template-columns: 1fr; }
  .hero-right    { display: none; }
  .about-grid    { grid-template-columns: 1fr; }
  .about-img     { max-width: 500px; }
  .reviews-grid  { grid-template-columns: repeat(2, 1fr); }
  .stats-row     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .header-nav    { display: none; }
  .header-phone  { display: none; }
  .menu-toggle   { display: flex; }
  .mobile-cta-bar{ display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid  { grid-template-columns: 1fr; }
  .stats-row     { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr; gap: 1.5rem; }
  .form-row      { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 1rem; }
  .trust-divider { display: none; }
  .financing-inner { flex-direction: column; }
  .hero          { min-height: auto; padding-bottom: 4rem; }
  .hero-content  { padding: 3rem 1.5rem 5rem; }
  .cta-band      { padding: 4rem 0; }
  body           { padding-bottom: 64px; }
}

@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── PAGE HERO EXTRAS ─────────────────────────────────── */
.page-hero-content h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: .75rem; }
.page-hero-content p  { color: var(--silver-lt); font-size: 1.05rem; max-width: 580px; }
.page-hero-angle {
  background: var(--dark);
  padding: calc(var(--header-h) + 3.5rem) 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero-angle::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--charcoal);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}
.page-hero-angle .container { position: relative; z-index: 2; }
.page-hero-angle h1,
.page-hero-angle p {
  text-shadow: 0 1px 4px rgba(0,0,0,.7), 0 2px 12px rgba(0,0,0,.4);
}
.breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-size: .74rem; color: var(--silver); margin-bottom: 1rem;
}
.breadcrumb a { color: var(--silver); }
.breadcrumb a:hover { color: var(--accent); opacity: 1; }
.breadcrumb span { color: var(--silver-lt); }

/* ── ABOUT FULL PAGE ──────────────────────────────────── */
.about-full-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}
.about-full-img { position: relative; }
.about-full-img img { width: 100%; border-radius: var(--radius-lg); }
.about-full-content h2 { margin-bottom: 1rem; }
.about-full-content p  { color: var(--silver-lt); line-height: 1.7; }
.about-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.credential-card {
  display: flex; align-items: flex-start; gap: .75rem;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: .9rem 1rem;
}
.cred-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(250,102,0,.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.cred-icon svg { width: 18px; height: 18px; }
.credential-card strong { display: block; color: var(--white); font-size: .85rem; line-height: 1.3; }
.credential-card span   { font-size: .75rem; color: var(--silver); }

/* ── WHY GRID ─────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: rgba(13,23,38,.6);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color .2s;
}
.why-card:hover { border-color: rgba(250,102,0,.35); }
.why-icon {
  width: 44px; height: 44px;
  background: rgba(250,102,0,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 1rem;
}
.why-icon svg { width: 22px; height: 22px; }
.why-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.why-card p  { font-size: .86rem; color: var(--silver); line-height: 1.65; margin: 0; }

/* ── GENERAC PARTNER ──────────────────────────────────── */
.generac-partner-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}
.generac-partner-text h2 { margin-bottom: 1rem; }
.generac-partner-text p  { color: var(--silver-lt); }
.generac-points { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .6rem; }
.gen-point {
  display: flex; align-items: center; gap: .6rem;
  font-size: .9rem; color: var(--silver-lt);
}
.gen-point svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.generac-logo-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.generac-logo-card img { margin: 0 auto 1rem; height: 50px; width: auto; }
.generac-dealer-badge {
  display: inline-block;
  background: rgba(250,102,0,.1);
  border: 1px solid rgba(250,102,0,.3);
  color: var(--accent);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.generac-logo-card p { font-size: .84rem; color: var(--silver); }

/* ── CONTACT INFO GRID ────────────────────────────────── */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.contact-info-card {
  background: rgba(13,23,38,.5);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
}
.ci-icon {
  width: 48px; height: 48px;
  background: rgba(250,102,0,.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); margin: 0 auto 1rem;
}
.ci-icon svg { width: 22px; height: 22px; }
.contact-info-card h3 { font-size: .95rem; margin-bottom: .6rem; }
.contact-info-card p  { font-size: .84rem; color: var(--silver); margin: 0; }
.ci-value { display: block; font-size: 1.2rem; font-weight: 800; color: var(--white); margin-bottom: .35rem; }

/* ── RESPONSIVE - about page ──────────────────────────── */
@media (max-width: 1024px) {
  .about-full-grid        { grid-template-columns: 1fr; }
  .generac-partner-grid   { grid-template-columns: 1fr; }
  .why-grid               { grid-template-columns: repeat(2, 1fr); }
  .contact-info-grid      { grid-template-columns: repeat(2, 1fr); }
  .about-credentials      { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .why-grid               { grid-template-columns: 1fr; }
  .contact-info-grid      { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   INSTALLATION PAGE
   ============================================================ */

/* ── Installation steps ────────────────────────────────── */
.install-steps-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.install-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.25rem;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  padding: 1.75rem;
  align-items: start;
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--accent);
}

.step-content h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin: 0 0 .6rem;
}

.step-content p {
  color: var(--silver);
  font-size: .95rem;
  line-height: 1.7;
  margin: 0 0 .5rem;
}

.step-content p:last-child { margin-bottom: 0; }

/* ── Licensed band (diagonal) ──────────────────────────── */
.install-licensed-band {
  background: #1a1a1a;
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  padding: 6rem 0;
  margin: -2px 0;
}

.licensed-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.licensed-text h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

.licensed-text p {
  color: rgba(255,255,255,.8);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: .97rem;
}

.licensed-badge-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.licensed-badge-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lbc-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--accent);
}

.lbc-icon svg { width: 100%; height: 100%; }

.licensed-badge-card strong {
  display: block;
  color: #fff;
  font-size: .95rem;
  font-weight: 600;
}

.licensed-badge-card span {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
}

/* ── Install product cards ──────────────────────────────── */
.install-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.install-product-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
}

.install-product-card svg {
  width: 44px;
  height: 44px;
  color: var(--accent);
  margin-bottom: 1rem;
}

.install-product-card h3 {
  font-size: 1rem;
  margin-bottom: .6rem;
}

.install-product-card p {
  font-size: .88rem;
  color: var(--silver);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.install-product-card a {
  font-size: .85rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.install-product-card a:hover { text-decoration: underline; }

/* ── RESPONSIVE - installation page ───────────────────── */
@media (max-width: 900px) {
  .install-step           { grid-template-columns: 1fr; }
  .step-number            { width: 40px; height: 40px; font-size: 1rem; }
  .licensed-grid          { grid-template-columns: 1fr; }
  .licensed-badge-stack   { flex-direction: row; flex-wrap: wrap; }
  .licensed-badge-card    { flex: 1 1 calc(50% - .5rem); }
  .install-product-grid   { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .licensed-badge-card    { flex: 1 1 100%; }
  .install-licensed-band  { clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%); }
}

/* ============================================================
   HOME STANDBY GENERATORS PAGE
   ============================================================ */

/* ── Problem / compare section ─────────────────────────── */
.hsg-problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.hsg-problem-text h2 { margin-bottom: 1rem; }
.hsg-problem-text p  { color: var(--silver); line-height: 1.8; margin-bottom: 1rem; font-size: .97rem; }

.hsg-problem-compare {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.compare-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  overflow: hidden;
}

.compare-label {
  padding: .6rem 1.25rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.compare-bad  { background: rgba(229,57,53,.15); color: #ff8a80; border-bottom: 1px solid rgba(229,57,53,.2); }
.compare-good { background: rgba(0,200,83,.12);  color: #69f0ae; border-bottom: 1px solid rgba(0,200,83,.2); }

.compare-list { padding: 1rem 1.25rem; }
.compare-list li {
  font-size: .88rem;
  color: var(--silver);
  padding: .3rem 0;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.4;
}

.compare-list-bad li::before {
  content: '\2715';
  position: absolute;
  left: 0;
  color: #ff8a80;
  font-size: .8rem;
}

.compare-list-good li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #69f0ae;
  font-weight: 700;
}

/* ── How it works steps row ─────────────────────────────── */
.hsg-steps-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hsg-mini-step {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px;
  padding: 1.1rem 1.25rem;
  text-align: center;
  min-width: 140px;
}

.hms-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .6rem;
  border: 2px solid var(--accent);
}

.hsg-mini-step p {
  font-size: .82rem;
  color: var(--silver);
  margin: 0;
  line-height: 1.35;
}

.hsg-step-arrow {
  font-size: 1.5rem;
  color: var(--accent);
}

/* ── Generac band (diagonal) ────────────────────────────── */
.hsg-generac-band {
  background: #1a1a1a;
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  padding: 6rem 0;
  margin: -2px 0;
}

.hsg-generac-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--gutter, 1.5rem);
}

.hsg-generac-grid h2  { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 1rem; }
.hsg-generac-grid p   { color: rgba(255,255,255,.82); line-height: 1.8; font-size: .97rem; margin-bottom: 1rem; }

.hsg-generac-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.hsg-stat-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  padding: 1.25rem 1rem;
  text-align: center;
}

.hsg-stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: .4rem;
}

.hsg-stat-label {
  font-size: .73rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.7);
}

/* ── Sizing grid ─────────────────────────────────────────── */
.hsg-sizing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.sizing-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  position: relative;
}

.sizing-card-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 8px 32px rgba(250,102,0,.15);
}

.sizing-popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--dark);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 20px;
  white-space: nowrap;
}

.sizing-kw {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: .25rem;
}

.sizing-label {
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.sizing-list { margin-bottom: 1.25rem; }
.sizing-list li {
  font-size: .87rem;
  color: var(--silver);
  padding: .28rem 0;
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.4;
}
.sizing-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: .8rem;
  font-weight: 700;
}

.sizing-note {
  font-size: .78rem;
  color: var(--silver);
  font-style: italic;
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 1rem;
  margin-top: auto;
  margin-bottom: 0;
}

/* ── Transfer switch section ────────────────────────────── */
.hsg-ts-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.hsg-ts-text h2 { margin-bottom: 1rem; }
.hsg-ts-text p  { color: var(--silver); line-height: 1.8; font-size: .97rem; margin-bottom: 1rem; }

.ts-diagram {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
}

.ts-diagram-bottom { margin-top: 1rem; }

.ts-box {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: .75rem 1rem;
  text-align: center;
  flex: 1;
}

.ts-box svg   { width: 28px; height: 28px; color: var(--accent); margin: 0 auto .4rem; }
.ts-box span  { display: block; font-size: .76rem; color: var(--silver); }

.ts-switch    { border-color: var(--accent); }
.ts-generator { border-color: var(--accent); }

.ts-switch-secondary {
  background: rgba(250,102,0,.07);
}

.ts-switch-label {
  font-size: .72rem;
  color: var(--accent);
  line-height: 1.4;
}

.ts-arrow {
  width: 24px;
  height: 2px;
  background: var(--accent);
  position: relative;
  flex-shrink: 0;
}

.ts-arrow::after {
  content: '';
  position: absolute;
  right: -1px;
  top: -4px;
  border: 5px solid transparent;
  border-left-color: var(--accent);
}

/* ── Why Gen-Man band ───────────────────────────────────── */
.hsg-why-band {
  background: #1a1a1a;
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  padding: 6rem 0;
  margin: -2px 0;
}

.hsg-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--gutter, 1.5rem);
}

.hsg-why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 1.75rem;
}

.hwc-icon {
  width: 44px;
  height: 44px;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hwc-icon svg { width: 100%; height: 100%; }

.hsg-why-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.hsg-why-card p  { font-size: .88rem; color: rgba(255,255,255,.72); line-height: 1.65; margin: 0; }

/* ── CTA pair / triple ──────────────────────────────────── */
.hsg-cta-pair {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.hsg-cta-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.hsg-cta-card svg {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin: 0 auto 1rem;
}

.hsg-cta-card h2 { font-size: 1.2rem; margin-bottom: .75rem; }
.hsg-cta-card p  { font-size: .88rem; color: var(--silver); line-height: 1.6; margin-bottom: 1.25rem; }

/* ── Responsive - home standby page ────────────────────── */
@media (max-width: 1024px) {
  .hsg-problem-grid    { grid-template-columns: 1fr; }
  .hsg-generac-grid    { grid-template-columns: 1fr; }
  .hsg-generac-badges  { grid-template-columns: repeat(4, 1fr); }
  .hsg-sizing-grid     { grid-template-columns: 1fr 1fr; }
  .hsg-ts-grid         { grid-template-columns: 1fr; }
  .hsg-why-grid        { grid-template-columns: repeat(2, 1fr); }
  .hsg-cta-pair        { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hsg-generac-badges  { grid-template-columns: repeat(2, 1fr); }
  .hsg-sizing-grid     { grid-template-columns: 1fr; }
  .hsg-why-grid        { grid-template-columns: 1fr; }
  .hsg-cta-pair        { grid-template-columns: 1fr; }
  .hsg-steps-row       { gap: .4rem; }
  .hsg-mini-step       { min-width: 100px; }
  .hsg-generac-band,
  .hsg-why-band        { clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%); }
}

@media (max-width: 480px) {
  .ts-diagram { flex-wrap: wrap; }
  .ts-arrow   { display: none; }
}

/* ============================================================
   REPAIR AND WARRANTY PAGE
   ============================================================ */

/* ── Intro grid ─────────────────────────────────────────── */
.rw-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.rw-intro-text h2 { margin-bottom: 1rem; }
.rw-intro-text p  { color: var(--silver); line-height: 1.8; font-size: .97rem; margin-bottom: 1rem; }

.rw-why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.rw-why-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  padding: 1.5rem;
}

.rwc-icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
  margin-bottom: .75rem;
}

.rwc-icon svg { width: 100%; height: 100%; }

.rw-why-card h3 { font-size: .95rem; margin-bottom: .4rem; }
.rw-why-card p  { font-size: .85rem; color: var(--silver); line-height: 1.6; margin: 0; }

/* ── Problems grid ──────────────────────────────────────── */
.rw-problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.rw-problem-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  padding: 1.75rem;
}

.rpc-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: 1rem;
}

.rpc-icon svg { width: 100%; height: 100%; }

.rw-problem-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.rw-problem-card p  { font-size: .88rem; color: var(--silver); line-height: 1.65; margin: 0; }

/* ── Maintenance band (diagonal) ────────────────────────── */
.rw-maintenance-band {
  background: #1a1a1a;
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  padding: 6rem 0;
  margin: -2px 0;
}

.rw-maint-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3.5rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--gutter, 1.5rem);
}

.rw-maint-grid h2 { margin-bottom: 1rem; }
.rw-maint-grid p  { color: rgba(255,255,255,.8); line-height: 1.8; font-size: .97rem; margin-bottom: .75rem; }

.rw-maint-list { margin: 1rem 0; }
.rw-maint-list li {
  font-size: .88rem;
  color: rgba(255,255,255,.75);
  padding: .35rem 0;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.4;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.rw-maint-list li:last-child { border-bottom: none; }
.rw-maint-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.rw-maint-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rw-maint-stat {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
}

.rms-number {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: .3rem;
}

.rms-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.6);
  line-height: 1.4;
}

.rw-maint-callout {
  background: rgba(250,102,0,.08);
  border: 1px solid rgba(250,102,0,.2);
  border-radius: 10px;
  padding: 1.25rem;
}

.rw-maint-callout svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
  margin-bottom: .75rem;
}

.rw-maint-callout p {
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
  margin: 0;
}

/* ── Ready / When to call grid ──────────────────────────── */
.rw-ready-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.rw-ready-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 2rem;
}

.rw-ready-card h2 { font-size: 1.4rem; margin-bottom: .75rem; }

.rw-checklist { }
.rw-checklist li {
  font-size: .9rem;
  color: var(--silver);
  padding: .4rem 0;
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.rw-checklist li:last-child { border-bottom: none; }
.rw-checklist li::before {
  content: '\25A0';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: .55rem;
  top: .6rem;
}

/* ── Internal links grid ────────────────────────────────── */
.rw-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.rw-link-card {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px;
  padding: .9rem 1.25rem;
  color: var(--silver-lt);
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color .2s, color .2s;
  min-width: 200px;
}

.rw-link-card svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

.rw-link-card:hover {
  border-color: var(--accent);
  color: var(--white);
  opacity: 1;
}

/* ── Responsive - repair page ───────────────────────────── */
@media (max-width: 1024px) {
  .rw-intro-grid       { grid-template-columns: 1fr; }
  .rw-maint-grid       { grid-template-columns: 1fr; }
  .rw-problems-grid    { grid-template-columns: repeat(2, 1fr); }
  .rw-ready-grid       { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .rw-why-cards        { grid-template-columns: 1fr; }
  .rw-problems-grid    { grid-template-columns: 1fr; }
  .rw-maintenance-band { clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%); }
}

/* ============================================================
   TRANSFER SWITCHES PAGE
   ============================================================ */

/* ── What it does grid ──────────────────────────────────── */
.ts-what-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.ts-what-text h2 { margin-bottom: 1rem; }
.ts-what-text p  { color: var(--silver); line-height: 1.8; font-size: .97rem; margin-bottom: 1rem; }

/* ── Flow diagram ───────────────────────────────────────── */
.ts-flow-diagram {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tsf-row {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.tsf-row-bottom {
  padding-left: 0;
  align-items: flex-start;
}

.tsf-box {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 8px;
  padding: .85rem .75rem;
  text-align: center;
  flex: 1;
}

.tsf-box svg  { width: 28px; height: 28px; color: var(--accent); margin: 0 auto .35rem; }
.tsf-box span { display: block; font-size: .7rem; color: var(--silver); font-weight: 600; }

.tsf-switch      { border-color: var(--accent); }
.tsf-switch-main { box-shadow: 0 0 0 1px rgba(250,102,0,.3); }
.tsf-generator   { border-color: var(--accent); }

.tsf-connector {
  width: 24px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
  position: relative;
}

.tsf-connector::after {
  content: '';
  position: absolute;
  right: -1px;
  top: -4px;
  border: 5px solid transparent;
  border-left-color: var(--accent);
}

.tsf-connector-up {
  transform: rotate(-90deg);
  margin-top: -2rem;
  margin-left: 1.5rem;
}

/* ── Safety callout ─────────────────────────────────────── */
.ts-safety-callout {
  background: rgba(250,102,0,.07);
  border: 1px solid rgba(250,102,0,.2);
  border-radius: 12px;
  padding: 1.75rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.ts-safety-callout svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
  margin-bottom: .75rem;
}

.ts-safety-callout p {
  color: var(--silver-lt);
  line-height: 1.75;
  font-size: .95rem;
  margin: 0;
}

/* ── Auto vs Manual band ─────────────────────────────────── */
.ts-types-band {
  background: #1a1a1a;
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  padding: 6rem 0;
  margin: -2px 0;
}

.ts-types-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--gutter, 1.5rem);
}

.ts-type-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 2rem;
}

.ts-type-auto { border-color: rgba(250,102,0,.35); }

.ts-type-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 20px;
  margin-bottom: .9rem;
}

.ts-type-badge-manual {
  background: rgba(255,255,255,.18);
  color: var(--white);
}

.ts-type-card h3 { font-size: 1.1rem; margin-bottom: .75rem; }
.ts-type-card p  { font-size: .88rem; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: .75rem; }

.ts-type-list { margin-top: 1rem; }
.ts-type-list li {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  padding: .3rem 0;
  padding-left: 1.25rem;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ts-type-list li:last-child { border-bottom: none; }
.ts-type-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.ts-type-list-manual li::before {
  color: rgba(255,255,255,.5);
}

/* ── How it connects ─────────────────────────────────────── */
.ts-connect-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.ts-connect-grid h2 { margin-bottom: 1rem; }

.ts-connect-steps {
  list-style: none;
  counter-reset: step-counter;
  margin: 1rem 0;
}

.ts-connect-steps li {
  counter-increment: step-counter;
  padding: .9rem 0 .9rem 3rem;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.ts-connect-steps li:last-child { border-bottom: none; }

.ts-connect-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: .85rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1a1a1a;
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
}

.ts-connect-steps li strong {
  display: block;
  color: var(--white);
  font-size: .9rem;
  margin-bottom: .25rem;
}

.ts-connect-steps li span {
  font-size: .85rem;
  color: var(--silver);
  line-height: 1.6;
}

.ts-connect-checklist {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 1.75rem;
}

.ts-connect-checklist h3 { font-size: 1rem; margin-bottom: 1rem; }

.ts-connect-checklist ul { }
.ts-connect-checklist li {
  font-size: .87rem;
  color: var(--silver);
  padding: .35rem 0;
  padding-left: 1.25rem;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,.05);
  line-height: 1.45;
}
.ts-connect-checklist li:last-child { border-bottom: none; }
.ts-connect-checklist li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ── Licensed / Risks ───────────────────────────────────── */
.ts-licensed-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.ts-licensed-text h2 { margin-bottom: 1rem; }
.ts-licensed-text p  { color: var(--silver); line-height: 1.8; font-size: .97rem; margin-bottom: 1rem; }

.ts-risks-list h3 { font-size: 1rem; margin-bottom: 1.25rem; color: var(--white); }

.ts-risk-item {
  display: flex;
  gap: 1rem;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  align-items: flex-start;
}

.ts-risk-item:last-child { border-bottom: none; }

.tri-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: #ffb300;
  margin-top: .1rem;
}

.tri-icon svg { width: 100%; height: 100%; }

.ts-risk-item strong {
  display: block;
  color: var(--white);
  font-size: .9rem;
  margin-bottom: .2rem;
}

.ts-risk-item p {
  font-size: .83rem;
  color: var(--silver);
  line-height: 1.5;
  margin: 0;
}

/* ── Responsive - transfer switches ─────────────────────── */
@media (max-width: 1024px) {
  .ts-what-grid     { grid-template-columns: 1fr; }
  .ts-types-grid    { grid-template-columns: 1fr; }
  .ts-connect-grid  { grid-template-columns: 1fr; }
  .ts-licensed-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .ts-types-band { clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%); }
  .tsf-row       { flex-wrap: wrap; }
}

/* ============================================================
   FLEXIBLE FINANCING PAGE
   ============================================================ */

/* ── Benefits grid ──────────────────────────────────────── */
.ff-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.ff-benefit-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  padding: 1.75rem 1.25rem;
  text-align: center;
}

.ffbc-icon {
  width: 44px;
  height: 44px;
  color: var(--accent);
  margin: 0 auto 1rem;
}

.ffbc-icon svg { width: 100%; height: 100%; }

.ff-benefit-card h3 { font-size: .95rem; margin-bottom: .5rem; }
.ff-benefit-card p  { font-size: .85rem; color: var(--silver); line-height: 1.65; margin: 0; }

/* ── Process band (diagonal) ────────────────────────────── */
.ff-process-band {
  background: #1a1a1a;
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  padding: 6rem 0;
  margin: -2px 0;
}

.ff-process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--gutter, 1.5rem);
}

.ff-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  align-items: flex-start;
}

.ff-step:last-child { border-bottom: none; }

.ffs-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid #c95f00;
}

.ffs-content h3 { font-size: 1rem; margin-bottom: .5rem; }
.ffs-content p  { font-size: .9rem; color: rgba(255,255,255,.75); line-height: 1.7; margin: 0; }

/* ── Disclaimer callout ─────────────────────────────────── */
.ff-disclaimer-callout {
  background: rgba(255,179,0,.07);
  border: 1px solid rgba(255,179,0,.25);
  border-radius: 10px;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
  max-width: 680px;
  margin: 0 auto;
}

.ff-disclaimer-callout svg {
  width: 28px;
  height: 28px;
  color: #ffb300;
  flex-shrink: 0;
  margin-top: .1rem;
}

.ff-disclaimer-callout p {
  font-size: .86rem;
  color: var(--silver-lt);
  line-height: 1.65;
  margin: 0;
}

/* ── Connection cards ───────────────────────────────────── */
.ff-connect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.ff-connect-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.ff-connect-card svg {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin: 0 auto 1rem;
}

.ff-connect-card h2 { font-size: 1.1rem; margin-bottom: .6rem; }
.ff-connect-card p  { font-size: .88rem; color: var(--silver); line-height: 1.6; margin-bottom: 1.25rem; }

/* ── Responsive - financing page ────────────────────────── */
@media (max-width: 1024px) {
  .ff-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .ff-connect-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .ff-benefits-grid { grid-template-columns: 1fr; }
  .ff-connect-grid  { grid-template-columns: 1fr; }
  .ff-step          { grid-template-columns: 1fr; }
  .ff-process-band  { clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%); }
}

/* ════════════════════════════════════════════════════════
   PRODUCTS PAGE
   ════════════════════════════════════════════════════════ */

/* ── Generac trust grid ──────────────────────────────────── */
.prod-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.prod-trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ptb-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .5rem;
}

.ptb-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
}

.ptb-icon svg { width: 100%; height: 100%; }

.ptb-card strong { color: var(--white); font-size: .95rem; }
.ptb-card span   { color: var(--silver); font-size: .78rem; }

/* ── Product category cards ──────────────────────────────── */
.prod-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.prod-cat-card {
  display: flex;
  flex-direction: column;
  background: var(--dark-1);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  gap: .75rem;
}

.prod-cat-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(250,102,0,.14);
}

.pcc-icon {
  width: 44px;
  height: 44px;
  color: var(--accent);
  margin-bottom: .25rem;
}

.pcc-icon svg { width: 100%; height: 100%; }

.prod-cat-card h3 {
  font-size: 1.05rem;
  color: var(--white);
  margin: 0;
}

.prod-cat-card p {
  font-size: .86rem;
  color: var(--silver);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.pcc-cta {
  font-size: .82rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: auto;
}

/* ── Product section header ──────────────────────────────── */
.prod-section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.prod-section-header h2 { margin-bottom: .6rem; }

/* ── Product cards grid ──────────────────────────────────── */
.prod-card-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.prod-card-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.prod-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  transition: border-color .2s;
}

.prod-card:hover { border-color: rgba(250,102,0,.35); }

.prod-card-kw {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1.1;
}

.prod-card-model {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
}

.prod-card-sku {
  font-size: .75rem;
  color: var(--silver);
  opacity: .7;
}

.prod-card-desc {
  font-size: .82rem;
  color: var(--silver);
  line-height: 1.6;
  margin: .25rem 0 .5rem;
  flex: 1;
}

.prod-card-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 .75rem;
  font-size: .77rem;
  color: var(--silver);
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: .75rem;
}

.prod-card-specs li { margin-bottom: .25rem; }
.prod-card-specs strong { color: rgba(255,255,255,.7); }

.prod-card-actions {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: auto;
}

.prod-link-spec {
  font-size: .77rem;
  color: var(--accent);
  text-align: center;
  text-decoration: none;
  opacity: .8;
  transition: opacity .15s;
}

.prod-link-spec:hover { opacity: 1; text-decoration: underline; }

/* ── Downloads cards ─────────────────────────────────────── */
.prod-dl-cards {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.prod-dl-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  background: var(--dark-1);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  text-decoration: none;
  color: var(--silver);
  font-size: .9rem;
  font-weight: 600;
  min-width: 190px;
  transition: border-color .2s, color .2s;
}

.prod-dl-card:hover { border-color: var(--accent); color: var(--white); }

.prod-dl-card svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.prod-dl-card small {
  font-size: .72rem;
  font-weight: 400;
  color: var(--silver);
  opacity: .6;
}

/* ── CTA / links row ─────────────────────────────────────── */
.prod-links-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.prod-cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-decoration: none;
  color: var(--silver);
  font-size: .95rem;
  font-weight: 600;
  text-align: center;
  transition: border-color .2s, transform .2s;
}

.prod-cta-card:hover {
  border-color: rgba(250,102,0,.35);
  transform: translateY(-3px);
  color: var(--white);
}

.prod-cta-primary {
  border-color: var(--accent);
  color: var(--white);
  background: rgba(250,102,0,.07);
}

.prod-cta-card svg {
  width: 36px;
  height: 36px;
  color: var(--accent);
}

/* ── Responsive - products page ─────────────────────────── */
@media (max-width: 1200px) {
  .prod-card-grid     { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .prod-trust-grid    { grid-template-columns: 1fr; }
  .prod-cat-grid      { grid-template-columns: repeat(2, 1fr); }
  .prod-card-grid     { grid-template-columns: repeat(2, 1fr); }
  .prod-card-grid-3   { grid-template-columns: repeat(2, 1fr); }
  .prod-links-row     { grid-template-columns: repeat(2, 1fr); }
  .prod-section-header { flex-direction: column; }
}

@media (max-width: 600px) {
  .prod-cat-grid      { grid-template-columns: 1fr; }
  .prod-card-grid     { grid-template-columns: 1fr; }
  .prod-card-grid-3   { grid-template-columns: 1fr; }
  .prod-trust-badges  { grid-template-columns: 1fr; }
  .prod-links-row     { grid-template-columns: 1fr; }
  .prod-dl-cards      { flex-direction: column; align-items: center; }
}

/* ════════════════════════════════════════════════════════
   BUSINESS STANDBY PAGE
   ════════════════════════════════════════════════════════ */

/* ── Intro grid ──────────────────────────────────────────── */
.bs-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.bs-outage-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.bs-stat {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  text-align: center;
}

.bs-stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: .5rem;
}

.bs-stat-label {
  font-size: .78rem;
  color: var(--silver);
  line-height: 1.5;
}

/* ── Industry grid ───────────────────────────────────────── */
.bs-industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.bs-industry-card {
  background: var(--dark-1);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 1.75rem 1.25rem;
  transition: border-color .2s;
}

.bs-industry-card:hover { border-color: rgba(250,102,0,.3); }

.bs-ind-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: 1rem;
}

.bs-ind-icon svg { width: 100%; height: 100%; }

.bs-industry-card h3 {
  font-size: .95rem;
  color: var(--white);
  margin-bottom: .6rem;
}

.bs-industry-card p {
  font-size: .82rem;
  color: var(--silver);
  line-height: 1.65;
  margin: 0;
}

/* ── Why band ────────────────────────────────────────────── */
.bs-why-band {
  background: linear-gradient(135deg, #c95f00 0%, var(--accent) 60%, #c95f00 100%);
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  margin: -2px 0;
}

.bs-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.bs-why-item {
  padding: 1.5rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
}

.bs-why-num {
  font-size: 2rem;
  font-weight: 900;
  color: rgba(255,255,255,.25);
  line-height: 1;
  margin-bottom: .75rem;
}

.bs-why-item h3 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: .6rem;
}

.bs-why-item p {
  font-size: .84rem;
  color: rgba(255,255,255,.8);
  line-height: 1.65;
  margin: 0;
}

/* ── Generator specs grid ────────────────────────────────── */
.bs-gen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.bs-gen-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.bs-spec-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  padding: 1.25rem;
}

.bsc-label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: .35rem;
}

.bsc-value {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .25rem;
}

.bsc-note {
  font-size: .75rem;
  color: var(--silver);
  opacity: .7;
  line-height: 1.4;
}

/* ── Load planning ───────────────────────────────────────── */
.bs-load-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.bs-load-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem;
  align-items: start;
  background: var(--dark-1);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 1.5rem;
}

.bs-load-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
}

.bs-load-step h3 { font-size: 1rem; color: var(--white); margin-bottom: .4rem; }
.bs-load-step p  { font-size: .85rem; color: var(--silver); line-height: 1.65; margin: 0; }

.bs-load-callout {
  background: rgba(250,102,0,.07);
  border: 1px solid rgba(250,102,0,.25);
  border-radius: 12px;
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.bs-load-callout p {
  color: var(--silver);
  font-size: .9rem;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

/* ── Transfer switch section ─────────────────────────────── */
.bs-ts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.bs-ts-checklist-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 2rem;
}

.bs-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.bs-checklist li {
  font-size: .87rem;
  color: var(--silver);
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.5;
}

.bs-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .35rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* ── Support band ────────────────────────────────────────── */
.bs-support-band {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  margin: -2px 0;
}

.bs-support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.bs-support-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
}

.bs-support-card h3 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: .75rem;
}

.bs-support-card p {
  font-size: .84rem;
  color: rgba(255,255,255,.8);
  line-height: 1.65;
  margin: 0;
}

/* ── Internal links ──────────────────────────────────────── */
.bs-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.bs-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  text-decoration: none;
  color: var(--silver);
  text-align: center;
  transition: border-color .2s, transform .2s;
}

.bs-link-card:hover {
  border-color: rgba(250,102,0,.35);
  transform: translateY(-3px);
  color: var(--white);
}

.bs-link-primary {
  border-color: var(--accent);
  color: var(--white);
  background: rgba(250,102,0,.07);
}

.bs-link-card svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
}

.bs-link-card strong { font-size: .95rem; color: var(--white); }
.bs-link-card span   { font-size: .8rem; }

/* ── Responsive - business standby page ──────────────────── */
@media (max-width: 1200px) {
  .bs-industry-grid { grid-template-columns: repeat(2, 1fr); }
  .bs-support-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .bs-intro-grid    { grid-template-columns: 1fr; }
  .bs-gen-grid      { grid-template-columns: 1fr; }
  .bs-ts-grid       { grid-template-columns: 1fr; }
  .bs-why-grid      { grid-template-columns: repeat(2, 1fr); }
  .bs-links-grid    { grid-template-columns: repeat(2, 1fr); }
  .bs-load-callout  { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .bs-industry-grid { grid-template-columns: 1fr; }
  .bs-support-grid  { grid-template-columns: 1fr; }
  .bs-why-grid      { grid-template-columns: 1fr; }
  .bs-outage-stats  { grid-template-columns: 1fr; }
  .bs-gen-specs     { grid-template-columns: 1fr; }
  .bs-links-grid    { grid-template-columns: 1fr; }
  .bs-load-step     { grid-template-columns: 1fr; }
  .bs-why-band      { clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%); }
  .bs-support-band  { clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%); }
}

/* ════════════════════════════════════════════════════════
   EV CHARGERS PAGE
   ════════════════════════════════════════════════════════ */

/* ── Hero accent color ───────────────────────────────────── */
.ev-hero-angle {
  background: linear-gradient(135deg, #0d1117 0%, #0f2a4a 40%, #003d6b 100%);
}

/* ── Level 1 vs Level 2 compare ──────────────────────────── */
.ev-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.ev-compare-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ev-compare-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
}

.ev-compare-card-featured {
  border-color: var(--accent);
  background: rgba(250,102,0,.05);
}

.ev-cc-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  border-radius: 4px;
  padding: .2rem .6rem;
  margin-bottom: .75rem;
}

.ev-cc-level1 {
  background: rgba(255,255,255,.1);
  color: var(--silver);
}

.ev-cc-level2 {
  background: rgba(250,102,0,.2);
  color: var(--accent);
}

.ev-compare-card h3 {
  font-size: .95rem;
  color: var(--white);
  margin-bottom: .75rem;
}

.ev-cc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.ev-cc-list li {
  font-size: .82rem;
  color: var(--silver);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}

.ev-cc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .45rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
}

.ev-cc-check li::before {
  background: var(--accent);
}

/* ── Why professional grid ───────────────────────────────── */
.ev-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.ev-why-card {
  background: var(--dark-1);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  transition: border-color .2s;
}

.ev-why-card:hover { border-color: rgba(250,102,0,.3); }

.ev-why-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: 1rem;
}

.ev-why-icon svg { width: 100%; height: 100%; }

.ev-why-card h3 { font-size: .95rem; color: var(--white); margin-bottom: .6rem; }
.ev-why-card p  { font-size: .82rem; color: var(--silver); line-height: 1.65; margin: 0; }

/* ── Home installation grid ──────────────────────────────── */
.ev-home-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.ev-home-steps {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ev-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1rem;
  align-items: start;
}

.ev-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
}

.ev-step strong { color: var(--white); display: block; font-size: .9rem; margin-bottom: .25rem; }
.ev-step p      { font-size: .82rem; color: var(--silver); line-height: 1.6; margin: 0; }

/* ── Business section ────────────────────────────────────── */
.ev-biz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.ev-biz-callout {
  background: var(--dark-1);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 2rem;
}

.ev-biz-icon {
  width: 44px;
  height: 44px;
  color: var(--accent);
  margin-bottom: 1rem;
}

.ev-biz-icon svg { width: 100%; height: 100%; }

.ev-biz-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.ev-biz-list li {
  font-size: .85rem;
  color: var(--silver);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.55;
}

.ev-biz-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .45rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ── Panel band ──────────────────────────────────────────── */
.ev-panel-band {
  background: linear-gradient(135deg, #0a1a2e 0%, #002244 60%, #003366 100%);
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  margin: -2px 0;
}

.ev-panel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.ev-panel-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
}

.ev-panel-card h3 { font-size: .95rem; color: var(--white); margin-bottom: .6rem; }
.ev-panel-card p  { font-size: .82rem; color: rgba(255,255,255,.8); line-height: 1.65; margin: 0; }

/* ── Permits grid ────────────────────────────────────────── */
.ev-permit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.ev-permit-block {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
}

.ev-permit-block h3 { font-size: 1rem; color: var(--white); margin-bottom: .75rem; }

/* ── Electrical contractor section ───────────────────────── */
.ev-elec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.ev-elec-links {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.ev-elec-card {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 1rem;
  align-items: center;
  background: var(--dark-1);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s;
}

.ev-elec-card:hover { border-color: var(--accent); }

.ev-elec-card svg { width: 28px; height: 28px; color: var(--accent); flex-shrink: 0; }
.ev-elec-card strong { display: block; color: var(--white); font-size: .9rem; margin-bottom: .2rem; }
.ev-elec-card span   { font-size: .78rem; color: var(--silver); }

/* ── Area CTAs ───────────────────────────────────────────── */
.ev-area-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Responsive - ev chargers page ──────────────────────── */
@media (max-width: 1200px) {
  .ev-why-grid   { grid-template-columns: repeat(2, 1fr); }
  .ev-panel-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .ev-intro-grid  { grid-template-columns: 1fr; }
  .ev-home-grid   { grid-template-columns: 1fr; }
  .ev-biz-grid    { grid-template-columns: 1fr; }
  .ev-elec-grid   { grid-template-columns: 1fr; }
  .ev-permit-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .ev-compare-cards { grid-template-columns: 1fr; }
  .ev-why-grid      { grid-template-columns: 1fr; }
  .ev-panel-grid    { grid-template-columns: 1fr; }
  .ev-panel-band    { clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%); }
  .ev-area-ctas     { flex-direction: column; align-items: center; }
}

/* ════════════════════════════════════════════════════════
   ABOUT PAGE
   ════════════════════════════════════════════════════════ */

/* ── Story grid ──────────────────────────────────────────── */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.about-story-badge-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-badge {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  align-items: center;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  padding: 1.25rem;
}

.ab-icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
  flex-shrink: 0;
}

.ab-icon svg { width: 100%; height: 100%; }

.about-badge strong { display: block; color: var(--white); font-size: .9rem; margin-bottom: .2rem; }
.about-badge span   { font-size: .78rem; color: var(--silver); }

/* ── WPS grid ────────────────────────────────────────────── */
.about-wps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.about-wps-block {
  background: var(--dark-1);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
}

.about-wps-block h3 { font-size: 1rem; color: var(--white); margin-bottom: .6rem; }
.about-wps-block p  { font-size: .85rem; color: var(--silver); line-height: 1.65; margin: 0; }

/* ── Veteran band ────────────────────────────────────────── */
.about-vet-band {
  background: linear-gradient(135deg, #060f1a 0%, #0a1e35 50%, #0f2d50 100%);
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  margin: -2px 0;
}

.about-vet-grid {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 3rem;
  align-items: center;
}

.about-vet-icon-col svg {
  width: 100px;
  height: 100px;
  color: rgba(250,102,0,.4);
}

/* ── Generac badges ──────────────────────────────────────── */
.about-generac-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.about-generac-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.agb-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .5rem;
}

.agb-icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
}

.agb-icon svg { width: 100%; height: 100%; }
.agb-card strong { color: var(--white); font-size: .88rem; }
.agb-card span   { color: var(--silver); font-size: .75rem; }

/* ── Licensed grid ───────────────────────────────────────── */
.about-lic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.about-lic-item {
  background: var(--dark-1);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  text-align: left;
}

.about-lic-item h3 { font-size: .92rem; color: var(--white); margin-bottom: .5rem; }
.about-lic-item p  { font-size: .82rem; color: var(--silver); line-height: 1.65; margin: 0; }

/* ── Focus band ──────────────────────────────────────────── */
.about-focus-band {
  background: linear-gradient(135deg, #c95f00 0%, var(--accent) 60%, #c95f00 100%);
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  margin: -2px 0;
}

/* ── Service grid ────────────────────────────────────────── */
.about-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.about-service-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
}

.about-service-card h3 { font-size: .95rem; color: var(--white); margin-bottom: .6rem; }
.about-service-card p  { font-size: .82rem; color: var(--silver); line-height: 1.65; margin: 0; }

/* ── Internal links grid ─────────────────────────────────── */
.about-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.about-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  background: var(--dark-1);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  text-decoration: none;
  color: var(--silver);
  text-align: center;
  transition: border-color .2s, transform .2s;
}

.about-link-card:hover {
  border-color: rgba(250,102,0,.35);
  transform: translateY(-3px);
  color: var(--white);
}

.about-link-card svg    { width: 30px; height: 30px; color: var(--accent); }
.about-link-card strong { color: var(--white); font-size: .92rem; }
.about-link-card span   { font-size: .78rem; }

/* ── Responsive - about page ─────────────────────────────── */
@media (max-width: 1200px) {
  .about-lic-grid     { grid-template-columns: repeat(2, 1fr); }
  .about-service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .about-story-grid    { grid-template-columns: 1fr; }
  .about-generac-grid  { grid-template-columns: 1fr; }
  .about-links-grid    { grid-template-columns: repeat(2, 1fr); }
  .about-vet-grid      { grid-template-columns: 1fr; }
  .about-vet-icon-col  { display: none; }
}

@media (max-width: 600px) {
  .about-wps-grid      { grid-template-columns: 1fr; }
  .about-generac-badges { grid-template-columns: 1fr; }
  .about-lic-grid      { grid-template-columns: 1fr; }
  .about-service-grid  { grid-template-columns: 1fr; }
  .about-links-grid    { grid-template-columns: 1fr; }
  .about-vet-band      { clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%); }
  .about-focus-band    { clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%); }
}


/* ============================================================
   TESTIMONIALS PAGE
   ============================================================ */

/* Testimonials grid */
.tm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.tm-card {
  background: #1a1a1a;
  border: 1px solid rgba(250,102,0,.15);
  border-radius: 8px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.tm-stars {
  display: flex;
  gap: 2px;
}

.tm-star {
  color: rgba(255,255,255,.2);
  font-size: 1.1rem;
}

.tm-star-filled {
  color: #f5a623;
}

.tm-quote {
  flex: 1;
  margin: 0;
}

.tm-quote p {
  color: var(--silver);
  line-height: 1.75;
  font-size: .97rem;
  quotes: "\201C" "\201D";
}

.tm-quote p::before { content: open-quote; }
.tm-quote p::after  { content: close-quote; }

.tm-meta {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: .75rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.tm-name {
  color: var(--white);
  font-weight: 600;
  font-size: .9rem;
}

.tm-city {
  color: var(--accent);
  font-size: .83rem;
}

.tm-source-row {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: .15rem;
}

.tm-source-tag {
  background: rgba(250,102,0,.15);
  border: 1px solid rgba(250,102,0,.25);
  color: var(--accent);
  font-size: .75rem;
  border-radius: 4px;
  padding: 1px 8px;
}

.tm-date {
  color: rgba(255,255,255,.35);
  font-size: .78rem;
}

/* No-reviews callout */
.tm-pending-callout {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid rgba(250,102,0,.2);
  border-radius: 8px;
  background: #1a1a1a;
}

.tm-pending-callout svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.tm-pending-callout h3 {
  color: var(--white);
  margin-bottom: .75rem;
}

.tm-pending-callout p {
  color: var(--silver);
  line-height: 1.7;
}

/* Service themes grid */
.tm-themes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.tm-theme-card {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 8px;
  padding: 1.75rem;
}

.tm-theme-icon {
  width: 2.25rem;
  height: 2.25rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.tm-theme-icon svg {
  width: 100%;
  height: 100%;
}

.tm-theme-card h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: .5rem;
}

.tm-theme-card p {
  color: var(--silver);
  font-size: .9rem;
  line-height: 1.65;
}

/* CTA Band */
.tm-cta-band {
  background: linear-gradient(135deg, #c95f00 0%, var(--accent) 100%);
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  margin: -2rem 0;
}

/* Internal links grid */
.tm-links-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.tm-link-card {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px;
  padding: 1.25rem 1rem;
  text-align: center;
  text-decoration: none;
  color: var(--silver);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  transition: border-color .2s, color .2s;
}

.tm-link-card:hover {
  border-color: var(--accent);
  color: var(--white);
}

.tm-link-card svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent);
}

.tm-link-card strong {
  font-size: .82rem;
  line-height: 1.3;
}

/* Responsive */
@media (max-width: 1200px) {
  .tm-grid           { grid-template-columns: repeat(2, 1fr); }
  .tm-themes-grid    { grid-template-columns: repeat(2, 1fr); }
  .tm-links-grid     { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .tm-links-grid     { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .tm-grid           { grid-template-columns: 1fr; }
  .tm-themes-grid    { grid-template-columns: 1fr; }
  .tm-links-grid     { grid-template-columns: repeat(2, 1fr); }
  .tm-cta-band       { clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%); }
}

/* ============================================================
   PHOTO GALLERY PAGE
   ============================================================ */

/* Filter tabs */
.gal-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.gal-filter-btn {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--silver);
  border-radius: 99px;
  padding: .45rem 1.1rem;
  font-size: .85rem;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}

.gal-filter-btn:hover {
  border-color: var(--accent);
  color: var(--white);
}

.gal-filter-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* Photo grid */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gal-card {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .2s;
}

.gal-card:hover {
  border-color: rgba(250,102,0,.3);
}

.gal-card-featured {
  border-color: rgba(250,102,0,.2);
}

.gal-card-img {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: rgba(255,255,255,.04);
}

.gal-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}

.gal-card:hover .gal-card-img img {
  transform: scale(1.04);
}

.gal-card-cat {
  position: absolute;
  top: .6rem;
  left: .6rem;
  background: rgba(0,0,0,.65);
  color: var(--accent);
  font-size: .72rem;
  font-weight: 600;
  border-radius: 4px;
  padding: 2px 8px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.gal-card-body {
  padding: .9rem 1rem;
}

.gal-card-title {
  color: var(--white);
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: .25rem;
}

.gal-card-caption {
  color: var(--silver);
  font-size: .82rem;
  line-height: 1.55;
  margin-bottom: .4rem;
}

.gal-card-loc {
  display: flex;
  align-items: center;
  gap: .3rem;
  color: var(--accent);
  font-size: .78rem;
}

.gal-card-loc svg {
  width: .9rem;
  height: .9rem;
  flex-shrink: 0;
}

/* No photos callout */
.gal-pending-callout {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid rgba(250,102,0,.2);
  border-radius: 8px;
  background: #1a1a1a;
}

.gal-pending-callout svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.gal-pending-callout h3 {
  color: var(--white);
  margin-bottom: .75rem;
}

.gal-pending-callout p {
  color: var(--silver);
  line-height: 1.7;
}

/* Type cards */
.gal-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gal-type-card {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 8px;
  padding: 1.75rem;
}

.gal-type-icon {
  width: 2.25rem;
  height: 2.25rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.gal-type-icon svg {
  width: 100%;
  height: 100%;
}

.gal-type-card h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: .5rem;
}

.gal-type-card p {
  color: var(--silver);
  font-size: .9rem;
  line-height: 1.65;
}

/* CTA Band */
.gal-cta-band {
  background: linear-gradient(135deg, #c95f00 0%, var(--accent) 100%);
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  margin: -2rem 0;
}

/* Internal links */
.gal-links-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.gal-link-card {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px;
  padding: 1.25rem 1rem;
  text-align: center;
  text-decoration: none;
  color: var(--silver);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  transition: border-color .2s, color .2s;
}

.gal-link-card:hover {
  border-color: var(--accent);
  color: var(--white);
}

.gal-link-card svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent);
}

.gal-link-card strong {
  font-size: .82rem;
  line-height: 1.3;
}

/* Responsive */
@media (max-width: 1200px) {
  .gal-grid        { grid-template-columns: repeat(2, 1fr); }
  .gal-types-grid  { grid-template-columns: repeat(2, 1fr); }
  .gal-links-grid  { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .gal-links-grid  { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .gal-grid        { grid-template-columns: 1fr; }
  .gal-types-grid  { grid-template-columns: 1fr; }
  .gal-links-grid  { grid-template-columns: repeat(2, 1fr); }
  .gal-cta-band    { clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%); }
  .gal-filters     { justify-content: flex-start; }
}

/* ============================================================
   VIDEOS PAGE
   ============================================================ */

.vid-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.vid-filter-btn {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--silver);
  border-radius: 99px;
  padding: .45rem 1.1rem;
  font-size: .85rem;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}

.vid-filter-btn:hover { border-color: var(--accent); color: var(--white); }
.vid-filter-active    { background: var(--accent); border-color: var(--accent); color: var(--white); }

/* Video grid */
.vid-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.vid-card {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .2s;
}

.vid-card:hover        { border-color: rgba(250,102,0,.3); }
.vid-card-featured     { border-color: rgba(250,102,0,.2); }

.vid-card-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background: rgba(0,0,0,.4);
}

.vid-card-embed iframe,
.vid-card-embed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  display: block;
}

.vid-card-cat {
  position: absolute;
  top: .6rem;
  left: .6rem;
  background: rgba(0,0,0,.65);
  color: var(--accent);
  font-size: .72rem;
  font-weight: 600;
  border-radius: 4px;
  padding: 2px 8px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.vid-card-body {
  padding: .9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.vid-card-title {
  color: var(--white);
  font-weight: 600;
  font-size: .9rem;
}

.vid-card-desc {
  color: var(--silver);
  font-size: .82rem;
  line-height: 1.55;
}

.vid-card-source {
  background: rgba(250,102,0,.12);
  border: 1px solid rgba(250,102,0,.2);
  color: var(--accent);
  font-size: .72rem;
  border-radius: 4px;
  padding: 2px 8px;
  align-self: flex-start;
}

/* No-videos callout */
.vid-pending-callout {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid rgba(250,102,0,.2);
  border-radius: 8px;
  background: #1a1a1a;
}

.vid-pending-callout svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.vid-pending-callout h3 { color: var(--white); margin-bottom: .75rem; }
.vid-pending-callout p  { color: var(--silver); line-height: 1.7; }

/* Topics grid */
.vid-topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.vid-topic-card {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 8px;
  padding: 1.75rem;
}

.vid-topic-icon {
  width: 2.25rem;
  height: 2.25rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.vid-topic-icon svg { width: 100%; height: 100%; }
.vid-topic-card h3  { color: var(--white); font-size: 1rem; margin-bottom: .5rem; }
.vid-topic-card p   { color: var(--silver); font-size: .9rem; line-height: 1.65; }

/* CTA Band */
.vid-cta-band {
  background: linear-gradient(135deg, #c95f00 0%, var(--accent) 100%);
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  margin: -2rem 0;
}

/* Internal links */
.vid-links-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.vid-link-card {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px;
  padding: 1.25rem 1rem;
  text-align: center;
  text-decoration: none;
  color: var(--silver);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  transition: border-color .2s, color .2s;
}

.vid-link-card:hover { border-color: var(--accent); color: var(--white); }
.vid-link-card svg   { width: 1.5rem; height: 1.5rem; color: var(--accent); }
.vid-link-card strong { font-size: .82rem; line-height: 1.3; }

/* Responsive */
@media (max-width: 1200px) {
  .vid-grid        { grid-template-columns: repeat(2, 1fr); }
  .vid-topics-grid { grid-template-columns: repeat(2, 1fr); }
  .vid-links-grid  { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .vid-grid        { grid-template-columns: 1fr; }
  .vid-topics-grid { grid-template-columns: 1fr; }
  .vid-links-grid  { grid-template-columns: repeat(2, 1fr); }
  .vid-cta-band    { clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%); }
  .vid-filters     { justify-content: flex-start; }
}

/* ============================================================
   LOCATIONS PAGE
   ============================================================ */

/* County Grid */
.loc-county-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .75rem;
}
.loc-county-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: .9rem .75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  text-align: center;
  color: var(--silver);
  font-size: .82rem;
  line-height: 1.3;
  transition: border-color .2s, color .2s;
}
.loc-county-card svg { width: 1.1rem; height: 1.1rem; color: var(--accent); flex-shrink: 0; }
.loc-county-card:hover { border-color: var(--accent); color: var(--white); }

/* City Grid */
.loc-city-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .75rem;
}
.loc-city-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .2s;
}
.loc-city-card:hover { border-color: var(--accent); }
.loc-city-link,
.loc-city-plain {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding: .9rem 1rem;
}
.loc-city-link {
  text-decoration: none;
  color: var(--white);
}
.loc-city-plain { color: var(--silver); }
.loc-city-link strong,
.loc-city-plain strong { font-size: .9rem; color: var(--white); }
.loc-city-link span,
.loc-city-plain span  { font-size: .75rem; color: rgba(255,255,255,.4); }
.loc-city-link:hover strong { color: var(--accent); }

/* How We Work Grid */
.loc-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.loc-how-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
}
.loc-how-icon {
  width: 2.8rem;
  height: 2.8rem;
  background: rgba(250,102,0,.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.loc-how-icon svg { width: 1.35rem; height: 1.35rem; color: var(--accent); }
.loc-how-card h3  { font-size: 1rem; color: var(--white); margin-bottom: .5rem; }
.loc-how-card p   { font-size: .875rem; color: var(--silver); line-height: 1.7; margin: 0; }

/* Split Layout */
.loc-split-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
.loc-split-reverse { grid-template-columns: 380px 1fr; }
.loc-split-reverse .loc-split-aside { order: -1; }
.loc-split-text h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); margin-bottom: 1rem; }
.loc-split-text p  { color: var(--silver); line-height: 1.8; margin-bottom: 1rem; font-size: .95rem; }
.loc-check-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.loc-check-list li {
  padding: .4rem 0 .4rem 1.6rem;
  position: relative;
  color: var(--silver);
  font-size: .9rem;
  line-height: 1.5;
}
.loc-check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55rem;
  width: .85rem;
  height: .85rem;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%2300aaff' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/contain no-repeat;
}
.loc-aside-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 1.75rem;
}
.loc-aside-card h3 {
  font-size: .95rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 1rem;
}
.loc-aside-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.loc-aside-list li {
  padding: .4rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: var(--silver);
  font-size: .875rem;
}
.loc-aside-list li:last-child { border-bottom: none; }

/* CTA Band */
.loc-cta-band {
  background: linear-gradient(135deg, #c95f00 0%, var(--accent) 100%);
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
}

/* Internal Links Grid */
.loc-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.loc-link-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 1.25rem 1rem;
  text-align: center;
  text-decoration: none;
  color: var(--silver);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  transition: border-color .2s, color .2s;
}
.loc-link-card:hover { border-color: var(--accent); color: var(--white); }
.loc-link-card svg   { width: 1.5rem; height: 1.5rem; color: var(--accent); }
.loc-link-card strong { font-size: .82rem; line-height: 1.3; }

/* Responsive */
@media (max-width: 1200px) {
  .loc-county-grid   { grid-template-columns: repeat(4, 1fr); }
  .loc-city-grid     { grid-template-columns: repeat(3, 1fr); }
  .loc-how-grid      { grid-template-columns: repeat(2, 1fr); }
  .loc-split-grid    { grid-template-columns: 1fr; }
  .loc-split-reverse { grid-template-columns: 1fr; }
  .loc-split-reverse .loc-split-aside { order: 0; }
  .loc-links-grid    { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .loc-county-grid   { grid-template-columns: repeat(3, 1fr); }
  .loc-city-grid     { grid-template-columns: repeat(2, 1fr); }
  .loc-how-grid      { grid-template-columns: 1fr; }
  .loc-links-grid    { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .loc-county-grid   { grid-template-columns: repeat(2, 1fr); }
  .loc-city-grid     { grid-template-columns: 1fr; }
  .loc-links-grid    { grid-template-columns: repeat(2, 1fr); }
  .loc-cta-band      { clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%); }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* Contact Methods Grid */
.ct-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ct-method-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 2rem 1.75rem;
}
.ct-method-featured {
  border-color: var(--accent);
  background: rgba(250,102,0,.06);
}
.ct-method-icon {
  width: 3rem;
  height: 3rem;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.ct-method-icon svg { width: 1.75rem; height: 1.75rem; color: var(--accent); }
.ct-method-card h3 { font-size: 1.1rem; color: var(--white); margin-bottom: .6rem; }
.ct-method-card p  { font-size: .9rem; color: var(--silver); line-height: 1.7; margin-bottom: 1.25rem; }
.ct-big-phone {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: .01em;
  line-height: 1.2;
  margin-bottom: .5rem;
}
.ct-big-phone:hover { color: var(--white); }
.ct-sub-note { font-size: .8rem !important; color: rgba(255,255,255,.35) !important; margin-bottom: 0 !important; }
.ct-email-link {
  display: inline-block;
  color: var(--accent);
  text-decoration: none;
  font-size: .95rem;
  word-break: break-all;
}
.ct-email-link:hover { color: var(--white); text-decoration: underline; }

/* Contact Form */
.ct-form { display: flex; flex-direction: column; gap: 1.25rem; }
.ct-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.ct-field { display: flex; flex-direction: column; gap: .4rem; }
.ct-field label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--silver);
  letter-spacing: .02em;
}
.ct-field label span { color: var(--accent); margin-left: .15rem; }
.ct-field input,
.ct-field select,
.ct-field textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: .75rem 1rem;
  color: var(--white);
  font-size: .95rem;
  font-family: inherit;
  transition: border-color .2s;
  width: 100%;
}
.ct-field input::placeholder,
.ct-field textarea::placeholder { color: rgba(255,255,255,.25); }
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.ct-field select { cursor: pointer; }
.ct-field select option { background: var(--charcoal); color: var(--white); }
.ct-field textarea { resize: vertical; min-height: 120px; }
.ct-form-alert {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-size: .9rem;
  line-height: 1.5;
}
.ct-form-alert svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; margin-top: .1rem; }
.ct-form-error {
  background: rgba(220,38,38,.12);
  border: 1px solid rgba(220,38,38,.3);
  color: #fca5a5;
}
.ct-form-error svg { color: #f87171; }

/* About / Info Split */
.ct-about-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
.ct-info-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 1.75rem;
}
.ct-info-card h3 {
  font-size: .9rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 1.25rem;
}
.ct-info-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .9rem; }
.ct-info-list li { display: flex; align-items: flex-start; gap: .9rem; }
.ct-info-list li svg { width: 1.15rem; height: 1.15rem; color: var(--accent); flex-shrink: 0; margin-top: .15rem; }
.ct-info-list li div { display: flex; flex-direction: column; gap: .15rem; }
.ct-info-list li strong { font-size: .8rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .04em; }
.ct-info-list li a, .ct-info-list li span { font-size: .95rem; color: var(--white); text-decoration: none; }
.ct-info-list li a:hover { color: var(--accent); }

/* Internal Links Grid */
.ct-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.ct-link-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 1.25rem 1rem;
  text-align: center;
  text-decoration: none;
  color: var(--silver);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  transition: border-color .2s, color .2s;
}
.ct-link-card:hover { border-color: var(--accent); color: var(--white); }
.ct-link-card svg   { width: 1.5rem; height: 1.5rem; color: var(--accent); }
.ct-link-card strong { font-size: .82rem; line-height: 1.3; }

/* Responsive */
@media (max-width: 1024px) {
  .ct-methods-grid { grid-template-columns: 1fr; }
  .ct-about-grid   { grid-template-columns: 1fr; }
  .ct-links-grid   { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .ct-field-row  { grid-template-columns: 1fr; }
  .ct-links-grid { grid-template-columns: repeat(2, 1fr); }
  .ct-big-phone  { font-size: 1.6rem; }
}

/* ============================================================
   REQUEST A QUOTE PAGE
   ============================================================ */

/* Steps Grid */
.rq-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.rq-step {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  position: relative;
}
.rq-step-num {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.rq-step h3 { font-size: .95rem; color: var(--white); margin-bottom: .5rem; }
.rq-step p  { font-size: .875rem; color: var(--silver); line-height: 1.7; margin: 0; }

/* Form section labels */
.rq-form-section-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(250,102,0,.2);
  margin-bottom: -.25rem;
}

/* Submit area */
.rq-submit-area { display: flex; flex-direction: column; gap: .75rem; }
.rq-submit-btn  { width: 100%; }
.rq-submit-note { font-size: .78rem; color: rgba(255,255,255,.3); text-align: center; line-height: 1.5; margin: 0; }

/* Call alternative */
.rq-call-alt {
  margin-top: 2rem;
  text-align: center;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  background: rgba(255,255,255,.03);
}
.rq-call-alt p { color: var(--silver); margin-bottom: .5rem; font-size: .9rem; }

/* County chips */
.rq-county-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}
.rq-county-chip {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px;
  padding: .35rem .9rem;
  font-size: .82rem;
  color: var(--silver);
  white-space: nowrap;
}

/* Links grid */
.rq-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

/* Responsive */
@media (max-width: 960px) {
  .rq-steps-grid  { grid-template-columns: repeat(2, 1fr); }
  .rq-links-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .rq-steps-grid  { grid-template-columns: 1fr; }
  .rq-links-grid  { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.ty-check-icon {
  width: 5rem;
  height: 5rem;
  background: rgba(250,102,0,.12);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}
.ty-check-icon svg { width: 2.5rem; height: 2.5rem; color: var(--accent); }
.ty-sub {
  font-size: 1.1rem;
  color: var(--silver);
  line-height: 1.8;
  margin: 1rem 0 2rem;
}
.ty-cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.ty-links-row {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.ty-links-row a {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .2s;
}
.ty-links-row a:hover { color: var(--accent); }

/* ============================================================
   LIGHT SECTIONS - white / off-white background overrides
   ============================================================ */
.section-light {
  background: #ffffff;
}
.section-silver {
  background: var(--off-white);
}
.section-light h2,
.section-light h3,
.section-light h4,
.section-silver h2,
.section-silver h3,
.section-silver h4 {
  color: #0f172a;
}
.section-light p,
.section-light li,
.section-silver p,
.section-silver li {
  color: #334155;
}
.section-light .eyebrow,
.section-silver .eyebrow {
  color: var(--accent);
}
.section-light .section-title p,
.section-silver .section-title p {
  color: #475569;
}
.section-silver .btn-outline {
  border-color: var(--accent);
  color: var(--accent);
}
.section-silver .btn-outline:hover {
  background: var(--accent);
  color: #fff;
}
.section-light .service-card {
  background: #f8fafc;
  border-color: #e2e8f0;
}
.section-light .service-card h3 { color: #0f172a; }
.section-light .service-card p  { color: #475569; }
.section-light .service-icon {
  background: rgba(250,102,0,.07);
  border-color: rgba(250,102,0,.18);
}
.section-light .review-card,
.section-silver .review-card {
  background: #ffffff;
  border-color: #e2e8f0;
}
.section-light .review-text,
.section-silver .review-text { color: #334155; }
.section-light .review-author,
.section-silver .review-author { color: #0f172a; }
.section-light .review-date,
.section-silver .review-date { color: #64748b; }
.section-light .faq-item { border-color: #e2e8f0; }
.section-light .faq-question { color: #0f172a; }
.section-light .faq-answer p { color: #334155; }
.section-silver .stats-row {
  box-shadow: 0 4px 20px rgba(15,76,138,.15);
}

/* ============================================================
   HERO TRUST CARD (right side of hero)
   ============================================================ */
.hero-trust-card {
  background: rgba(255,255,255,.97);
  border-radius: 14px;
  padding: 2rem;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.htc-title {
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 3px solid var(--accent);
  letter-spacing: -.01em;
  line-height: 1.3;
}
.htc-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}
.htc-list li {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .55rem 0;
  font-size: .92rem;
  font-weight: 600;
  color: #1e3a5f;
  border-bottom: 1px solid #e8f0f8;
}
.htc-list li:last-child { border-bottom: none; }
.htc-list li svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.htc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  padding: .8rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
  width: 100%;
  transition: background .2s;
  letter-spacing: -.01em;
}
.htc-cta:hover { background: #c95f00; color: #fff; opacity: 1; }
.htc-cta svg { width: 18px; height: 18px; }

/* Financing section diagonal - clip transitions: services (white) above, reviews (off-white) below */
.financing-section::before {
  background: #ffffff;
}
.financing-section::after {
  background: var(--off-white);
}

/* Area section diagonal - clip transitions: reviews (off-white) above, FAQ (white) below */
.area-section::before {
  background: var(--off-white);
}
.area-section::after {
  background: #ffffff;
}

/* ══════════════════════════════════════════════════════════
   LIGHT-TEXT DROP SHADOWS
   Applies to all white/light text over dark or photo backgrounds.
   Keeps text crisp and readable at any zoom or screen.
══════════════════════════════════════════════════════════ */

/* Hero */
.hero h1,
.hero-sub,
.hero-badge,
.hero-trust-item,
.hero-stat-key,
.hero-stat-val {
  text-shadow: 0 1px 4px rgba(0,0,0,.7), 0 2px 12px rgba(0,0,0,.4);
}

/* Announce band */
.announce-headline,
.announce-sub,
.announce-badge-top,
.announce-badge-main,
.announce-badge-sub,
.announce-badge-tag {
  text-shadow: 0 1px 3px rgba(0,0,0,.65), 0 2px 8px rgba(0,0,0,.35);
}

/* Section headings on dark backgrounds */
.section-label,
.section-eyebrow,
.section-title,
.home-standby-section h2,
.home-standby-section h3,
.home-standby-section p,
.business-standby-section h2,
.business-standby-section h3,
.business-standby-section p,
.hsg-generac-grid h2,
.hsg-generac-grid h3,
.hsg-generac-grid p,
.hsg-why-card h3,
.hsg-why-card p,
.rw-maint-grid h2,
.rw-maint-grid h3,
.rw-maint-grid p,
.ts-type-card h3,
.ts-type-card p,
.ffs-content h2,
.ffs-content h3,
.ffs-content p,
.ev-panel-card h3,
.ev-panel-card p,
.stat-val,
.stat-label,
.stat-desc {
  text-shadow: 0 1px 3px rgba(0,0,0,.55), 0 2px 8px rgba(0,0,0,.3);
}

/* CTA band */
.cta-band h2,
.cta-band p,
.cta-band .cta-phone-big {
  text-shadow: 0 1px 4px rgba(0,0,0,.6), 0 2px 10px rgba(0,0,0,.35);
}

/* Footer */
.footer-logo-name,
.footer-tagline,
.footer-col h4,
.footer-link,
.footer-bottom {
  text-shadow: 0 1px 2px rgba(0,0,0,.5);
}

/* Financing & dark feature sections */
.financing-text h2,
.financing-text p {
  text-shadow: 0 1px 3px rgba(0,0,0,.55);
}

/* Trust card (hero right panel) */
.htc-title,
.htc-list li {
  text-shadow: 0 1px 2px rgba(0,0,0,.4);
}

/* Page hero headings (inner pages) */
.page-hero h1,
.page-hero p,
.page-hero-sub {
  text-shadow: 0 1px 4px rgba(0,0,0,.7), 0 2px 12px rgba(0,0,0,.4);
}

/* Explicitly kill shadows on light-background sections */
.section-light h1, .section-light h2, .section-light h3, .section-light h4,
.section-light p,  .section-light li, .section-light span,
.section-silver h1,.section-silver h2,.section-silver h3,.section-silver h4,
.section-silver p, .section-silver li,.section-silver span,
.faq-question, .faq-answer p,
.install-product-card h3, .install-product-card p,
.compare-table td, .compare-table th,
.area-section h1, .area-section h2, .area-section h3, .area-section p,
.products-grid .product-card h3 {
  text-shadow: none !important;
}

/* ============================================================
   CONTRAST LIFT, DROP CAPS & PARAGRAPH POLISH  — v2
   ============================================================ */

/* ── Contrast: content text on dark backgrounds ──────────── */
:root {
  --text-content: #ccdded;   /* lifted from #8fa8c0 — meets WCAG AA on all dark bgs */
}

/* Body copy colour boost across all dark-background sections */
.about-full-content p,
.hsg-problem-text p,
.rw-intro-text p,
.licensed-text p,
.generac-partner-text p,
.hsg-generac-grid p,
.hsg-ts-text p,
.hsg-why-card p,
.step-content p,
.service-card p,
.why-card p,
.faq-answer p,
.page-hero-content p,
.financing-text p,
.ev-intro-text p,
.business-standby-section p,
.hero-sub,
.section-title p,
.footer-brand p,
.rw-maint-grid p,
.rw-problem-card p,
.rw-why-card p,
.review-text,
.hsg-cta-card p,
.sizing-note,
.announce-sub {
  color: var(--text-content);
}

/* ── Contrast: buttons — force full-opacity text ─────────── */
.btn-accent  { color: #ffffff; }
.btn-primary { color: #ffffff; }
.btn-outline { color: #ffffff; border-color: rgba(255,255,255,.55); }
.btn-outline:hover { color: var(--accent); border-color: var(--accent); }

/* Mobile CTA call button — dark text on green for max legibility */
.mobile-cta-bar .cta-call { color: #001a08; font-weight: 800; }

/* ── Contrast: nav & dropdown links ──────────────────────── */
.nav-link           { color: #d4e8f8; }
.nav-dropdown a     { color: #ccdded; }
.mobile-nav a       { color: #d4e8f8; }

/* ── Contrast: trust bar (white bg) — darken text ────────── */
.trust-item { color: #0f2d4e; font-weight: 700; }

/* ── Contrast: hero stat card ────────────────────────────── */
.hero-stat-key { color: #b0cce4; }

/* ── Contrast: footer ────────────────────────────────────── */
.footer-col a  { color: #b0cce4; }
.footer-copy   { color: #9ab8d0; }
.footer-hours  { color: #9ab8d0; }

/* ── Contrast: form labels & inputs ─────────────────────── */
.form-group label { color: #b8d0e8; }
.form-note        { color: #a8c4da; }
.form-group input,
.form-group select,
.form-group textarea { color: #e0f0fa; }

/* ── Contrast: headings — ensure full white everywhere ───── */
h1, h2, h3, h4, h5 { color: #ffffff; }
/* Light-bg sections keep dark headings (already set inline) */
.about-content h2  { color: #0f172a; }
.about-strip h2    { color: #0f172a; }

/* ── Paragraph indentation — 2 em book-style ────────────── */
/* Applied to editorial prose blocks only, not cards/captions */
.about-full-content p,
.hsg-problem-text p,
.rw-intro-text p,
.licensed-text p,
.generac-partner-text p,
.hsg-ts-text p,
.ev-intro-text p,
.business-standby-section p,
.prose p {
  text-indent: 2em;
  line-height: 1.8;
}

/* Drop-cap paragraph resets its own indent (the cap IS the indent) */
.about-full-content > p:first-of-type,
.hsg-problem-text > p:first-of-type,
.rw-intro-text > p:first-of-type,
.licensed-text > p:first-of-type,
.generac-partner-text > p:first-of-type,
.hsg-ts-text > p:first-of-type,
.ev-intro-text > p:first-of-type,
.business-standby-section > p:first-of-type,
.prose > p:first-of-type {
  text-indent: 0;
}

/* ── Drop Caps — classy first-letter treatment ───────────── */
.about-full-content > p:first-of-type::first-letter,
.hsg-problem-text > p:first-of-type::first-letter,
.rw-intro-text > p:first-of-type::first-letter,
.licensed-text > p:first-of-type::first-letter,
.generac-partner-text > p:first-of-type::first-letter,
.hsg-ts-text > p:first-of-type::first-letter,
.ev-intro-text > p:first-of-type::first-letter,
.business-standby-section > p:first-of-type::first-letter,
.prose > p:first-of-type::first-letter {
  float: left;
  font-size: 4em;
  line-height: 0.76;
  font-weight: 900;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--accent);
  padding-right: 0.08em;
  padding-top: 0.05em;
  margin-bottom: -0.05em;
  text-shadow: 0 2px 10px rgba(250,102,0,.4);
  letter-spacing: -.02em;
}

/* Drop cap on light-background content (about strip) */
.about-content > p:first-of-type::first-letter {
  float: left;
  font-size: 4em;
  line-height: 0.76;
  font-weight: 900;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--accent);
  padding-right: 0.08em;
  padding-top: 0.05em;
  margin-bottom: -0.05em;
  letter-spacing: -.02em;
}
.about-content > p:first-of-type { text-indent: 0; }
.about-content p { text-indent: 2em; line-height: 1.8; }
.about-content > p:first-of-type { text-indent: 0; }

/* ── Utility class: .prose ───────────────────────────────── */
.prose p { color: var(--text-content); }
.prose > p:first-of-type::first-letter {
  color: var(--accent);
}

/* ── Section headers — ensure strong white contrast ──────── */
.section-title h2 { color: #ffffff; }
.section-title p  { color: #c0d8ed; }

/* ── Stats row ───────────────────────────────────────────── */
.stat-desc { color: rgba(255,255,255,.88); }

/* ── Eyebrow labels ──────────────────────────────────────── */
.eyebrow { color: var(--accent); }

/* ── Area tags ───────────────────────────────────────────── */
.area-tag { color: #c0d8ed; }

/* ── Review cards ────────────────────────────────────────── */
.review-author { color: #ffffff; }
.review-date   { color: #9ab8d0; }

/* ── Home page — service area note ──────────────────────── */
.area-note { color: var(--silver); font-size: .9rem; margin-bottom: 1rem; }

/* ── Home page — final CTA section ──────────────────────── */
.final-cta-heading { color: #fff; font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 800; margin-bottom: .75rem; }
.final-cta-sub     { color: rgba(255,255,255,.72); font-size: 1rem; line-height: 1.7; margin-bottom: 2rem; }

/* ── About page — orange focus band text ─────────────────── */
/* The about-focus-band has orange gradient bg; eyebrow default is var(--accent) orange
   which is invisible. These classes override it with accessible white text. */
.focus-band-eyebrow { color: rgba(255,255,255,.92); text-shadow: 0 1px 3px rgba(0,0,0,.35); }
.focus-band-heading { color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,.35); }
.focus-band-body    { color: rgba(255,255,255,.92); line-height: 1.85; margin-bottom: 1rem; text-align: center; }
.focus-band-body:last-child { margin-bottom: 0; }
