:root {
  --bg: #03070c;
  --bg-soft: #07111c;
  --panel: #0d1724;
  --panel-strong: #132336;
  --text: #f8fbff;
  --muted: #c7d2df;
  --line: rgba(255, 255, 255, 0.14);
  --blue: #0b5fa7;
  --blue-bright: #1381dc;
  --yellow: #ffc400;
  --yellow-dark: #d99b00;
  --black: #03070c;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 10;
  padding: 0.7rem 1rem;
  background: var(--yellow);
  color: var(--black);
  border-radius: 6px;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(3, 7, 12, 0.93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(160px, 230px) 1fr auto;
  gap: 1.4rem;
  align-items: center;
  min-height: 94px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 170px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.94rem;
  color: var(--muted);
}

.site-nav a {
  text-decoration: none;
  padding: 0.4rem 0;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.phone-link {
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.05rem;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 850;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 12px 28px rgba(255, 196, 0, 0.22);
}

.button-primary:hover {
  background: #ffd644;
}

.button-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--text);
}

.button-secondary:hover {
  border-color: var(--blue-bright);
}

.hero {
  padding: 5.2rem 0 4rem;
  background:
    linear-gradient(110deg, rgba(11, 95, 167, 0.28), transparent 44%),
    linear-gradient(180deg, rgba(255, 196, 0, 0.1), transparent 38%);
}

.hero-compact {
  padding: 4.4rem 0 3.4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 3rem;
  align-items: center;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--blue-bright);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.12rem;
  line-height: 1.25;
}

.hero-lede,
.section-lede {
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.5rem 0 1rem;
}

.micro-trust {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 430px;
  padding: 0.75rem;
  border: 1px solid rgba(19, 129, 220, 0.34);
  border-radius: 8px;
  background: #000;
  box-shadow: var(--shadow), 0 0 52px rgba(19, 129, 220, 0.18);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 45%, rgba(19, 129, 220, 0.34), transparent 42%),
    radial-gradient(circle at 65% 62%, rgba(255, 196, 0, 0.13), transparent 42%);
  opacity: 0.95;
  filter: blur(28px);
}

.electric-logo {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.electric-logo-animated,
.electric-logo-static {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
}

.electric-logo-animated {
  display: block;
  background: #000;
  filter:
    drop-shadow(0 0 18px rgba(19, 129, 220, 0.55))
    drop-shadow(0 0 34px rgba(19, 129, 220, 0.24));
}

.electric-logo-static {
  display: none;
  width: min(420px, 100%);
  height: auto;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.34));
}

.hero-callout {
  display: grid;
  gap: 1rem;
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-left: 4px solid var(--yellow);
  border-radius: 8px;
  background: var(--panel);
}

.section {
  padding: 4rem 0;
}

.section-muted {
  background: var(--bg-soft);
}

.section-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.area-card,
.service-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.card,
.service-card {
  padding: 1.25rem;
}

.service-card {
  border-top: 3px solid var(--blue-bright);
}

.service-card:nth-child(2n) {
  border-top-color: var(--yellow);
}

.area-card {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  font-weight: 850;
  text-decoration: none;
}

.area-card::after {
  content: ">";
  color: var(--yellow);
}

.area-card:hover {
  border-color: var(--blue-bright);
  background: var(--panel-strong);
}

.steps {
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 3.5rem;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1.25rem;
  top: 1.25rem;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-weight: 900;
}

.check-list,
.nearby-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.nearby-list li {
  padding-left: 1.4rem;
  position: relative;
}

.check-list li::before,
.nearby-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-bright);
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 1rem 1.1rem;
}

summary {
  cursor: pointer;
  font-weight: 850;
}

details p {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.cta-band {
  padding: 3rem 0;
  background: var(--blue);
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 0;
}

.site-footer {
  padding: 2.4rem 0;
  border-top: 1px solid var(--line);
  background: #020407;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
}

.footer-links a {
  text-decoration: none;
}

@media (max-width: 880px) {
  .header-inner {
    grid-template-columns: 1fr;
    padding: 1rem 0;
  }

  .site-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .header-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero-grid,
  .grid-3,
  .grid-4,
  .cta-inner,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-visual {
    min-height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .electric-logo-animated {
    display: none;
  }

  .electric-logo-static {
    display: block;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .brand img {
    width: 145px;
  }

  .phone-link,
  .header-cta,
  .button {
    width: 100%;
  }

  h1 {
    font-size: 2.7rem;
  }
}
