/* DJM Electrical — concept. Palette and type from live-site scan. */
:root {
  --black: #0c0c0c;
  --black-2: #121212;
  --black-3: #1a1a1a;
  --white: #ffffff;
  --grey: #818589;
  --grey-light: #b7babd;
  --lime: #9acd32;
  --lime-dim: rgba(154, 205, 50, 0.12);
  --lime-glow: rgba(154, 205, 50, 0.35);
  --font-head: "Poppins", sans-serif;
  --font-body: "Source Sans 3", "Source Sans Pro", sans-serif;
  --pad: clamp(20px, 5vw, 80px);
  --radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
li { list-style: none; }

h1, h2, h3 { font-family: var(--font-head); line-height: 1.05; }

.container { width: min(1280px, 100%); margin-inline: auto; padding-inline: var(--pad); }

::selection { background: var(--lime); color: var(--black); }

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===== Skip link ===== */
.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 300;
  background: var(--lime); color: var(--black);
  font-family: var(--font-head); font-weight: 600; font-size: 14px;
  padding: 10px 18px; border-radius: 8px;
  transform: translateY(-200%); transition: transform 0.2s;
}
.skip-link:focus-visible { transform: none; }

/* ===== Film grain ===== */
body::after {
  content: ""; position: fixed; inset: -50%; z-index: 90; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.05;
  animation: grain 9s steps(6) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); } 20% { transform: translate(-3%,2%); }
  40% { transform: translate(2%,-3%); } 60% { transform: translate(-2%,-2%); }
  80% { transform: translate(3%,3%); }
}
@media (prefers-reduced-motion: reduce) { body::after { animation: none; } }

/* ===== Preloader ===== */
.preloader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--black);
  display: grid; place-items: center;
  transition: opacity 0.6s ease, visibility 0.6s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader-inner { position: relative; width: 120px; height: 120px; display: grid; place-items: center; }
.preloader-ring { position: absolute; inset: 0; color: var(--lime); transform: rotate(-90deg); }
.preloader-ring circle {
  stroke-dasharray: 100; stroke-dashoffset: 100;
  animation: ringDraw 1.2s ease forwards;
}
@keyframes ringDraw { to { stroke-dashoffset: 0; } }
.preloader-logo { width: 64px; filter: drop-shadow(0 0 12px var(--lime-glow)); }

/* ===== Cursor glow ===== */
.cursor-glow {
  position: fixed; z-index: 1; pointer-events: none;
  width: 520px; height: 520px; border-radius: 50%;
  left: 0; top: 0; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(154,205,50,0.07) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.5s;
}
body.has-pointer .cursor-glow { opacity: 1; }

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s, box-shadow 0.4s, transform 0.4s;
}
.site-header.scrolled {
  background: rgba(12, 12, 12, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.site-header.hidden { transform: translateY(-100%); }
body.nav-open .site-header {
  z-index: 140; transform: none;
  background: transparent; box-shadow: none;
  backdrop-filter: none; -webkit-backdrop-filter: none;
}
.header-inner {
  display: flex; align-items: center; gap: 28px;
  padding: 14px var(--pad);
}
.header-logo img { width: 108px; height: auto; }
.header-nav { display: flex; gap: 26px; margin-left: auto; }
.header-nav a {
  font-family: var(--font-head); font-weight: 500; font-size: 14px;
  letter-spacing: 0.04em; position: relative; padding: 6px 0;
}
.header-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--lime);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}
.header-nav a:hover::after, .header-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-cta { display: flex; align-items: center; gap: 18px; }
.header-phone { font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--lime); white-space: nowrap; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; position: relative; z-index: 130;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px; background: var(--white);
  margin: 7px auto; transition: transform 0.35s, opacity 0.35s, background 0.35s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; z-index: 120;
  background: var(--black);
  display: flex; flex-direction: column; justify-content: center; gap: 40px;
  padding: 100px var(--pad) 48px;
  clip-path: circle(0% at calc(100% - 44px) 44px);
  transition: clip-path 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  visibility: hidden;
}
.mobile-nav.open { clip-path: circle(150% at calc(100% - 44px) 44px); visibility: visible; }
.mobile-nav nav { display: flex; flex-direction: column; gap: 8px; }
.mobile-nav nav a {
  font-family: var(--font-head); font-weight: 800; font-size: clamp(34px, 9vw, 54px);
  text-transform: uppercase; line-height: 1.15;
  color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.75);
  transition: color 0.3s;
}
.mobile-nav nav a:hover, .mobile-nav nav a:focus-visible { color: var(--lime); -webkit-text-stroke: 0px transparent; }
.mobile-nav-foot { display: flex; flex-direction: column; gap: 16px; color: var(--grey-light); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 600; letter-spacing: 0.02em;
  border-radius: 999px; padding: 14px 30px; font-size: 15px;
  position: relative; overflow: hidden; isolation: isolate;
  transition: color 0.35s, border-color 0.35s, box-shadow 0.35s;
  min-height: 48px;
}
.btn span { position: relative; z-index: 2; }
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  border-radius: inherit; transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.btn:hover::before, .btn:focus-visible::before { transform: scaleY(1); }
.btn-sm { padding: 10px 22px; font-size: 13.5px; min-height: 40px; }
.btn-lg { padding: 17px 38px; font-size: 16px; }

.btn-lime { background: var(--lime); color: var(--black); box-shadow: 0 0 0 rgba(154,205,50,0); }
.btn-lime::before { background: var(--white); }
.btn-lime:hover, .btn-lime:focus-visible { box-shadow: 0 8px 34px var(--lime-glow); }

.btn-ghost { border: 1.5px solid rgba(255,255,255,0.3); color: var(--white); }
.btn-ghost::before { background: var(--lime); }
.btn-ghost:hover, .btn-ghost:focus-visible { color: var(--black); border-color: var(--lime); }

.btn-black { background: var(--black); color: var(--lime); }
.btn-black::before { background: var(--white); }
.btn-black:hover, .btn-black:focus-visible { color: var(--black); }

.btn-ghost-black { border: 1.5px solid rgba(12,12,12,0.4); color: var(--black); }
.btn-ghost-black::before { background: var(--black); }
.btn-ghost-black:hover, .btn-ghost-black:focus-visible { color: var(--lime); }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 100dvh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px var(--pad) 40px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity 1.2s ease;
}
.hero-bg-video.ready { opacity: 1; }
.hero-vignette {
  /* Heavier wash than the arc version: the client's drone footage is bright
     daylight, and the headline has to stay AA-legible over it. */
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(12,12,12,0.92) 0%, rgba(12,12,12,0.72) 42%, rgba(12,12,12,0.55) 70%, rgba(12,12,12,0.48) 100%),
    linear-gradient(180deg, rgba(12,12,12,0.6) 0%, transparent 30%, transparent 55%, var(--black) 100%);
}

.hero-content { position: relative; width: min(1280px, 100%); margin-inline: auto; }
.hero-eyebrow {
  font-family: var(--font-head); font-weight: 500; font-size: clamp(12px, 1.4vw, 14px);
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--grey-light);
  display: flex; align-items: center; gap: 12px; margin-bottom: 26px;
}
.pulse-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--lime);
  box-shadow: 0 0 0 0 var(--lime-glow);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 var(--lime-glow); }
  70% { box-shadow: 0 0 0 14px rgba(154,205,50,0); }
  100% { box-shadow: 0 0 0 0 rgba(154,205,50,0); }
}

.hero-title {
  font-weight: 900; text-transform: uppercase;
  font-size: clamp(42px, 8.2vw, 118px);
  letter-spacing: -0.015em; line-height: 0.98;
  display: flex; flex-direction: column;
}
.ht-row { display: block; overflow: hidden; }
.ht-outline {
  color: transparent; -webkit-text-stroke: 1.5px #ffffff;
  filter: drop-shadow(0 2px 14px rgba(12,12,12,0.85));
}
.ht-lime { color: var(--lime); font-style: normal; }
.ht-lime-fill {
  font-style: normal; color: var(--lime);
  -webkit-text-stroke: 0;
  text-shadow: 0 0 40px var(--lime-glow);
}
.char { display: inline-block; will-change: transform; }
.word-w {
  display: inline-block; white-space: nowrap; overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.08em; margin-bottom: -0.08em;
}

.hero-sub {
  max-width: 560px; margin-top: 30px;
  color: var(--grey-light); font-size: clamp(16px, 1.6vw, 19px);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; }

.hero-badges {
  position: relative; width: min(1280px, 100%); margin: 56px auto 0;
  display: flex; align-items: center; gap: clamp(18px, 3.5vw, 44px); flex-wrap: wrap;
}
.hero-badges img {
  height: 66px; width: auto;
  background: #f5f5f5; padding: 9px 14px; border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.45);
}

.hero-scrollcue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1.5px solid rgba(255,255,255,0.3); border-radius: 14px;
}
.hero-scrollcue span {
  position: absolute; top: 7px; left: 50%; width: 3px; height: 8px;
  background: var(--lime); border-radius: 3px; transform: translateX(-50%);
  animation: scrollcue 1.8s ease-in-out infinite;
}
@keyframes scrollcue {
  0% { transform: translate(-50%, 0); opacity: 1; }
  70% { transform: translate(-50%, 14px); opacity: 0; }
  100% { transform: translate(-50%, 0); opacity: 0; }
}

/* ===== Marquee ===== */
.marquee {
  border-block: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0; overflow: hidden;
  background: var(--black-2);
}
.marquee-track {
  display: flex; align-items: center; gap: 34px; width: max-content;
  will-change: transform;
}
.marquee-track span {
  font-family: var(--font-head); font-weight: 800; font-size: clamp(20px, 2.6vw, 30px);
  text-transform: uppercase; white-space: nowrap; letter-spacing: 0.01em;
}
.marquee-track .mq-outline { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.55); }
.mq-bolt { width: 18px; height: 18px; fill: var(--lime); flex-shrink: 0; }

/* ===== Stats ===== */
.stats { padding: clamp(70px, 9vw, 130px) 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
}
.stat { border-left: 2px solid var(--lime); padding-left: 22px; }
.stat-num {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(44px, 5.5vw, 76px); line-height: 1; color: var(--white);
  display: block;
}
.stat-small { font-size: 0.4em; color: var(--lime); vertical-align: super; margin-left: 4px; letter-spacing: 0.06em; }
.stat-label { display: block; margin-top: 10px; color: var(--grey); font-size: 15px; }

/* ===== Section heads ===== */
.section-eyebrow {
  font-family: var(--font-head); font-weight: 600; font-size: 13px;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--lime);
  margin-bottom: 18px;
}
.section-title {
  font-weight: 800; font-size: clamp(34px, 5.2vw, 68px);
  text-transform: uppercase; letter-spacing: -0.01em;
}
.section-title > span { display: inline-block; overflow: hidden; vertical-align: bottom; }
.section-sub { max-width: 560px; margin-top: 20px; color: var(--grey-light); }
.section-head { margin-bottom: clamp(40px, 6vw, 70px); }

/* ===== Services ===== */
.services { position: relative; padding: clamp(70px, 9vw, 130px) 0; }
.service-list { border-top: 1px solid rgba(255,255,255,0.1); }
.service-row { border-bottom: 1px solid rgba(255,255,255,0.1); }
.service-row a {
  display: grid;
  grid-template-columns: 70px 1fr auto 60px;
  align-items: center; gap: 20px;
  padding: clamp(20px, 3vw, 34px) 10px;
  position: relative; transition: padding-left 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.service-row a::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, var(--lime-dim), transparent 70%);
  opacity: 0; transition: opacity 0.4s;
}
.service-row a:hover, .service-row a:focus-visible { padding-left: 26px; }
.service-row a:hover::before, .service-row a:focus-visible::before { opacity: 1; }
.sr-index { font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--lime); }
.sr-name {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(22px, 3.4vw, 42px); text-transform: uppercase; line-height: 1.1;
  transition: color 0.3s;
}
.service-row a:hover .sr-name, .service-row a:focus-visible .sr-name { color: var(--lime); }
.sr-tag { color: var(--grey); font-size: 15px; white-space: nowrap; }
.sr-arrow {
  font-size: 26px; color: var(--grey);
  transition: transform 0.35s, color 0.35s;
}
.service-row a:hover .sr-arrow, .service-row a:focus-visible .sr-arrow { transform: translateX(8px); color: var(--lime); }

.service-preview {
  position: fixed; z-index: 60; pointer-events: none;
  width: 320px; height: 220px; border-radius: 14px; overflow: hidden;
  opacity: 0; transform: scale(0.9);
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(154,205,50,0.25);
}
.service-preview img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Hunter coverage ===== */
.coverage {
  position: relative; overflow: hidden;
  padding: clamp(70px, 9vw, 130px) 0;
  background: radial-gradient(70% 80% at 75% 45%, #131608 0%, var(--black) 70%);
}
.coverage-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 90px); align-items: center;
}
.coverage-lead { color: var(--grey-light); font-size: clamp(16px, 1.7vw, 19px); margin-top: 22px; max-width: 520px; }
.coverage-list { margin: 28px 0 34px; display: flex; flex-direction: column; gap: 16px; }
.coverage-list li {
  display: flex; gap: 14px; align-items: flex-start;
  color: var(--grey-light); font-size: 16px; max-width: 500px;
}
.cl-bolt {
  flex-shrink: 0; display: inline-grid; place-items: center;
  width: 30px; height: 30px; border-radius: 9px;
  background: var(--lime-dim); margin-top: -2px;
}
.cl-bolt svg { width: 15px; height: 15px; fill: var(--lime); }
.coverage-map { position: relative; }
.coverage-map svg { width: 100%; height: auto; display: block; }
.map-coast {
  stroke: rgba(255,255,255,0.22); stroke-width: 2.5;
  stroke-linecap: round; stroke-dasharray: 1 9;
}
.map-line {
  stroke: rgba(154,205,50,0.55); stroke-width: 1.6;
  stroke-dasharray: 5 9; stroke-linecap: round;
  animation: mapFlow 1.5s linear infinite;
}
@keyframes mapFlow { to { stroke-dashoffset: -14; } }
.map-node circle { fill: #0c0c0c; stroke: var(--lime); stroke-width: 2; }
.map-node .mn-ring {
  fill: none; stroke: rgba(154,205,50,0.35); stroke-width: 1;
  animation: nodeRing 2.6s ease-out infinite;
  transform-origin: center; transform-box: fill-box;
}
@keyframes nodeRing {
  0% { transform: scale(0.55); opacity: 1; }
  70%, 100% { transform: scale(1.25); opacity: 0; }
}
.map-hub .mh-pulse {
  fill: none; stroke: var(--lime); stroke-width: 1.4;
  animation: nodeRing 2.2s ease-out infinite;
  transform-origin: center; transform-box: fill-box;
}
.map-label, .map-label-sub, .map-tasman { font-family: var(--font-head); }
.map-label { fill: #ffffff; font-size: 14px; font-weight: 700; letter-spacing: 0.08em; }
.map-label-hub { fill: var(--lime); font-size: 16px; }
.map-label-sub { fill: var(--grey); font-size: 10.5px; font-weight: 600; letter-spacing: 0.24em; }
.map-tasman { fill: rgba(255,255,255,0.28); font-size: 11px; font-weight: 600; letter-spacing: 0.42em; }

/* ===== Solar ===== */
.solar { position: relative; padding: clamp(70px, 9vw, 130px) 0; overflow: hidden; }
.solar-bg { position: absolute; inset: 0; z-index: -1; }
.solar-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.solar::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, var(--black) 0%, rgba(12,12,12,0.15) 45%, var(--black) 100%);
}
.solar-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.solar-card {
  background: rgba(18, 18, 18, 0.75);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 18px 18px 26px;
  backdrop-filter: blur(6px);
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1), border-color 0.45s, box-shadow 0.45s;
}
.solar-card:hover, .solar-card:focus-visible {
  transform: translateY(-10px);
  border-color: rgba(154,205,50,0.5);
  box-shadow: 0 24px 50px rgba(0,0,0,0.5), 0 0 40px rgba(154,205,50,0.08);
}
.solar-card-media { border-radius: 10px; overflow: hidden; aspect-ratio: 4/3; margin-bottom: 20px; }
.solar-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1); }
.solar-card:hover .solar-card-media img { transform: scale(1.06); }
.solar-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.solar-card p { color: var(--grey-light); font-size: 15px; }
.solar-card-cta {
  display: inline-flex; gap: 8px; align-items: center; margin-top: 16px;
  font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--lime);
}
.solar-card-cta i { font-style: normal; transition: transform 0.3s; }
.solar-card:hover .solar-card-cta i { transform: translateX(6px); }

/* ===== Regions ===== */
.regions { position: relative; }
.regions-pin { padding: clamp(70px, 9vw, 120px) 0 clamp(50px, 6vw, 90px); overflow: hidden; }
.regions-head { padding-inline: var(--pad); width: min(1280px, 100%); margin-inline: auto; margin-bottom: clamp(36px, 5vw, 60px); }
.regions-track {
  display: flex; gap: clamp(18px, 2.5vw, 30px);
  padding-inline: var(--pad);
  width: max-content;
  will-change: transform;
}
.region-card {
  position: relative; width: clamp(300px, 34vw, 460px); aspect-ratio: 4/5;
  border-radius: var(--radius); overflow: hidden; flex-shrink: 0;
}
.region-card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.55) brightness(0.75);
  transition: filter 0.5s, transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}
.region-card:hover img { filter: grayscale(0) brightness(0.9); transform: scale(1.05); }
.region-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(12,12,12,0.9) 100%);
}
.region-card h3 {
  position: absolute; left: 24px; right: 24px; bottom: 22px; z-index: 2;
  font-size: clamp(24px, 2.6vw, 34px); font-weight: 800; text-transform: uppercase;
  display: flex; flex-direction: column; gap: 6px;
}
.region-card h3 span { font-size: 13px; font-weight: 600; color: var(--lime); letter-spacing: 0.2em; }

/* ===== Why ===== */
.why { padding: clamp(70px, 9vw, 130px) 0; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card {
  position: relative;
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 36px 30px;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s;
}
.why-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(154,205,50,0.1), transparent 45%);
  opacity: 0; transition: opacity 0.4s;
}
.why-card:hover { border-color: rgba(154,205,50,0.4); transform: translateY(-6px); }
.why-card:hover::before { opacity: 1; }
.why-icon {
  display: inline-grid; place-items: center;
  width: 72px; height: 72px; border-radius: 18px;
  background: var(--lime-dim); color: var(--lime);
  border: 1px solid rgba(154,205,50,0.25);
  margin-bottom: 24px;
  transition: background 0.4s, box-shadow 0.4s;
}
.why-card:hover .why-icon {
  background: rgba(154,205,50,0.2);
  box-shadow: 0 0 30px rgba(154,205,50,0.15);
}
.why-icon svg { width: 38px; height: 38px; }
.why-card h3 { font-size: 21px; font-weight: 700; margin-bottom: 10px; }
.why-card p { color: var(--grey-light); font-size: 16px; }

/* ===== Proof ===== */
.proof {
  padding: clamp(70px, 9vw, 130px) 0;
  background: linear-gradient(180deg, var(--black) 0%, #10120b 50%, var(--black) 100%);
  text-align: center;
}
.proof .section-eyebrow { margin-bottom: 34px; }
.proof-quote { max-width: 900px; margin-inline: auto; }
.proof-quote p {
  font-family: var(--font-head); font-weight: 500;
  font-size: clamp(21px, 3vw, 34px); line-height: 1.35; letter-spacing: -0.01em;
}
.proof-quote .word { display: inline-block; }
.proof-quote cite {
  display: block; margin-top: 28px; font-style: normal;
  color: var(--lime); font-family: var(--font-head); font-weight: 600; font-size: 15px;
}
.proof-badges {
  margin-top: 50px; display: flex; justify-content: center; align-items: center;
  gap: clamp(24px, 4vw, 54px); flex-wrap: wrap;
}
.proof-badges img {
  height: 72px; width: auto;
  background: #f5f5f5; padding: 10px 16px; border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
}

/* ===== About ===== */
.about { padding: clamp(70px, 9vw, 130px) 0; }
.about-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 6vw, 90px); align-items: center;
}
.about-media { position: relative; border-radius: var(--radius); overflow: hidden; }
.about-media img { width: 100%; height: auto; }
.about-media-card {
  position: absolute; left: 18px; bottom: 18px;
  background: rgba(12,12,12,0.85); backdrop-filter: blur(8px);
  border: 1px solid rgba(154,205,50,0.35);
  border-radius: 12px; padding: 14px 20px;
  display: flex; flex-direction: column; gap: 2px;
  font-family: var(--font-head); font-size: 14px;
}
.about-media-card .ht-lime { font-weight: 800; font-size: 20px; }
.about-copy p { color: var(--grey-light); margin-bottom: 18px; }
.about-copy .btn { margin-top: 10px; }
.about-copy .section-title { margin-bottom: 24px; }

/* ===== CTA ===== */
.cta {
  position: relative; overflow: hidden;
  background: var(--lime); color: var(--black);
  padding: clamp(80px, 11vw, 160px) 0;
}
.cta-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.35; }
.cta-inner { position: relative; text-align: center; }
.cta-title {
  font-weight: 900; text-transform: uppercase;
  font-size: clamp(40px, 7.4vw, 110px); line-height: 0.98; letter-spacing: -0.015em;
}
.ct-row { display: block; overflow: hidden; }
.cta-title em { font-style: normal; color: var(--white); text-shadow: 0 2px 30px rgba(0,0,0,0.25); }
.cta-sub { max-width: 560px; margin: 26px auto 0; font-size: 18px; color: rgba(12,12,12,0.8); }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; margin-top: 40px; }

/* ===== Footer ===== */
.site-footer { background: var(--black); border-top: 1px solid rgba(255,255,255,0.08); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px; padding-block: clamp(50px, 7vw, 90px);
}
.footer-brand img { width: 120px; height: auto; margin-bottom: 18px; }
.footer-brand p { color: var(--grey); font-size: 15px; max-width: 300px; }
.footer-col h3 {
  font-size: 13px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 18px;
}
.footer-col a { display: block; color: var(--grey-light); font-size: 15px; padding: 5px 0; transition: color 0.3s; }
.footer-col a:hover, .footer-col a:focus-visible { color: var(--lime); }
.footer-col p { color: var(--grey); font-size: 14px; margin-top: 12px; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  padding: 22px var(--pad);
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--grey); font-size: 13.5px;
}

/* ===== Reveal helpers ===== */
.reveal-line { opacity: 0; transform: translateY(30px); }
body.no-js .reveal-line, body.reduced-motion .reveal-line { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .solar-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  /* Regions: natural swipe carousel instead of the pinned scroll */
  .regions-track {
    width: auto; overflow-x: auto; -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory; padding-bottom: 14px;
    scrollbar-width: none;
  }
  .regions-track::-webkit-scrollbar { display: none; }
  .region-card { scroll-snap-align: start; width: min(78vw, 340px); }
  .header-nav, .header-cta { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-grid { grid-template-columns: 1fr; }
  .coverage-map { max-width: 480px; margin-inline: auto; width: 100%; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 520px; }
  .service-row a { grid-template-columns: 44px 1fr 40px; }
  .sr-tag { display: none; }
  .service-preview { display: none; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .solar-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-badges img { height: 52px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 34px 20px; }
  .stat-num { font-size: 40px; }
  .btn-lg { padding: 15px 28px; font-size: 15px; }
  .hero-actions .btn { flex: 1 1 auto; }
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .cta-canvas, .cursor-glow, .hero-scrollcue, .hero-bg-video { display: none; }
  .map-line, .mn-ring, .mh-pulse { animation: none; }
  .reveal-line, .char { opacity: 1 !important; transform: none !important; }
}
