@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=Source+Sans+3:wght@400;600;700&display=swap");

:root {
  --bg: #0a0f18;
  --bg-soft: #101827;
  --surface: rgba(18, 26, 40, 0.78);
  --surface-strong: rgba(10, 15, 24, 0.92);
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.07);
  --text: #f3f8ff;
  --muted: rgba(235, 244, 255, 0.74);
  --muted-strong: rgba(243, 248, 255, 0.92);
  --brand: #31d8ff;
  --brand-dark: #0d72c9;
  --brand-soft: rgba(49, 216, 255, 0.14);
  --accent: #ffb545;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
  --radius: 26px;
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Source Sans 3", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 16%, rgba(49, 216, 255, 0.16), transparent 22%),
    radial-gradient(circle at 84% 22%, rgba(255, 181, 69, 0.12), transparent 20%),
    radial-gradient(circle at 52% 64%, rgba(13, 114, 201, 0.18), transparent 28%),
    linear-gradient(180deg, #09101a 0%, #0d1622 34%, #081019 100%);
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 100% 4px, 4px 100%;
  mix-blend-mode: soft-light;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

section[id] {
  scroll-margin-top: 100px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(7, 11, 18, 0.82);
  border-bottom: 1px solid var(--line-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 92px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.brand-mark {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  border: 1px solid rgba(49, 216, 255, 0.25);
  background: radial-gradient(circle at 35% 28%, rgba(49, 216, 255, 0.22), rgba(49, 216, 255, 0.06) 58%, rgba(9, 15, 24, 0.92) 100%);
  color: #f7fbff;
  box-shadow: 0 18px 34px rgba(2, 8, 17, 0.36);
}

.brand-mark svg {
  width: 42px;
  height: 42px;
}

.brand-type {
  display: grid;
  gap: 4px;
}

.brand-type strong {
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1.95rem;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.brand-type span {
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  content: "";
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span {
  margin-top: 4px;
  margin-bottom: 4px;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.header-nav a {
  font-weight: 700;
  color: rgba(243, 248, 255, 0.86);
  transition: color 0.18s ease;
}

.header-nav a:hover,
.header-nav a:focus-visible {
  color: #fff;
}

.cta-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 18px;
  border: 1px solid transparent;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, background 0.18s ease;
}

.cta-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
}

.cta-button {
  background: linear-gradient(180deg, #2ce1ff 0%, #1394eb 100%);
  color: #06111c;
}

.cta-button strong {
  font-weight: 800;
}

.ghost-button {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  color: var(--text);
}

.site-main {
  overflow: clip;
}

.hero {
  position: relative;
  padding: 0 0 28px;
}

.hero-stage,
.mini-hero {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-stage {
  min-height: 880px;
  margin-top: -1px;
  background:
    radial-gradient(circle at 72% 18%, rgba(49, 216, 255, 0.14), transparent 20%),
    radial-gradient(circle at 18% 22%, rgba(255, 181, 69, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(7, 11, 18, 0.84) 0%, rgba(7, 11, 18, 0.96) 100%);
}

.hero-stage--wallbox::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(49, 216, 255, 0.08), transparent 35%),
    linear-gradient(90deg, rgba(7, 11, 18, 0.96) 0%, rgba(7, 11, 18, 0.82) 34%, rgba(7, 11, 18, 0.34) 64%, rgba(7, 11, 18, 0.54) 100%);
}

.hero-shade,
.hero-gridline {
  position: absolute;
  inset: 0;
}

.hero-gridline {
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 100% 36px, 36px 100%;
  mask-image: radial-gradient(circle at 62% 44%, #000 34%, transparent 74%);
}

.hero-inner {
  position: relative;
  width: min(1540px, calc(100% - 56px));
  min-height: 880px;
  margin: 0 auto;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 30px 0 20px;
}

.hero-copy--stage {
  max-width: 560px;
  padding: 126px 0 0 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(49, 216, 255, 0.12);
  border: 1px solid rgba(49, 216, 255, 0.28);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(49, 216, 255, 0.14);
}

.hero h1,
.section-heading h2,
.mini-hero h1 {
  margin: 18px 0 0;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(3.7rem, 7vw, 5.85rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.hero-subline {
  margin: 18px 0 0;
  font-size: clamp(1.55rem, 2vw, 2.3rem);
  font-weight: 700;
  color: var(--muted-strong);
  max-width: 760px;
}

.hero-highlight {
  display: inline-flex;
  margin-top: 28px;
  padding: 10px 18px;
  background: linear-gradient(90deg, rgba(49, 216, 255, 0.98) 0%, rgba(13, 114, 201, 0.96) 100%);
  box-shadow: 0 18px 34px rgba(3, 34, 77, 0.32);
  color: #031018;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(1.9rem, 2.5vw, 2.7rem);
  font-weight: 700;
  line-height: 1;
}

.hero-highlight--compact {
  padding: 8px 14px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(9, 14, 22, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-weight: 700;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 30px;
}

.hero-benefit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(243, 248, 255, 0.92);
  font-size: 1.1rem;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}

.hero-benefit svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--brand);
}

.hero-device {
  position: absolute;
  right: 16px;
  bottom: 0;
  z-index: 4;
  width: min(44vw, 620px);
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.42));
}

.hero-charge-band {
  position: absolute;
  left: -3%;
  right: -8%;
  bottom: 146px;
  z-index: 2;
  height: 88px;
  display: flex;
  align-items: center;
  transform: rotate(5deg);
  background: linear-gradient(180deg, #30d6ff 0%, #1079d4 100%);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.34);
}

.hero-charge-band span {
  margin-left: 5%;
  padding: 12px 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: #09111a;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(2.1rem, 3.5vw, 4rem);
  font-weight: 800;
  letter-spacing: 0.03em;
}

.hero-trust-badge {
  position: absolute;
  right: 26px;
  bottom: 108px;
  z-index: 5;
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 26px;
  border-radius: 20px;
  background: rgba(248, 252, 255, 0.96);
  color: #122138;
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.24);
}

.trust-line {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-kicker {
  font-size: 1.1rem;
  font-weight: 800;
}

.stars {
  color: var(--accent);
  letter-spacing: 0.14em;
  font-size: 1.3rem;
}

.rating-copy {
  font-size: 1.5rem;
  font-weight: 800;
}

.rating-subcopy {
  color: #37526b;
  font-size: 1.04rem;
  font-weight: 700;
  max-width: 280px;
}

.hero-bottom-note {
  position: absolute;
  left: 0;
  bottom: 30px;
  z-index: 3;
  max-width: 430px;
  margin: 0;
  color: rgba(243, 248, 255, 0.96);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.15;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.34);
}

.hero-panel {
  position: relative;
  margin-top: 42px;
}

.info-grid,
.services-grid,
.contact-grid,
.footer-grid,
.about-grid,
.district-grid {
  display: grid;
  gap: 20px;
}

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

.info-card,
.service-card,
.contact-card,
.about-card,
.district-card,
.service-showcase-media,
.service-showcase-copy {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18, 26, 40, 0.82) 0%, rgba(9, 14, 22, 0.8) 100%);
  box-shadow: var(--shadow);
}

.info-card,
.about-card {
  padding: 28px 24px;
}

.info-card-icon,
.service-card-icon,
.contact-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(49, 216, 255, 0.22) 0%, rgba(49, 216, 255, 0.08) 100%);
  border: 1px solid rgba(49, 216, 255, 0.34);
  color: #fff;
}

.info-card-icon svg,
.service-card-icon svg,
.contact-card-icon svg {
  width: 28px;
  height: 28px;
}

.info-card h3,
.service-card h3,
.contact-card h3,
.about-card h3,
.district-card strong,
.service-showcase-copy h3 {
  margin: 18px 0 8px;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.info-card p,
.service-card p,
.contact-card p,
.about-card p,
.section-heading p,
.district-card span,
.service-showcase-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.14rem;
}

.about-card ul,
.info-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.about-card li,
.info-card li {
  margin-bottom: 10px;
}

.section {
  padding: 46px 0;
}

.section-heading {
  max-width: 920px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(3.1rem, 5vw, 4.5rem);
}

.section-heading p {
  margin-top: 16px;
  font-size: 1.28rem;
}

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

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

.service-card {
  padding: 28px 20px;
  text-align: center;
}

.service-card-link {
  display: block;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.service-card-link:hover,
.service-card-link:focus-visible,
.district-card:hover,
.district-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(49, 216, 255, 0.34);
  background: linear-gradient(180deg, rgba(20, 30, 46, 0.9) 0%, rgba(10, 15, 23, 0.88) 100%);
}

.service-card-icon {
  margin: 0 auto;
  width: 88px;
  height: 88px;
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.12);
}

.service-card-icon--plain {
  background: transparent;
  border: 0;
}

.service-card-icon--plain svg {
  width: 72px;
  height: 72px;
}

.service-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 24px;
  margin-top: 8px;
  align-items: stretch;
}

.service-showcase-media,
.service-showcase-copy {
  overflow: hidden;
}

.service-showcase-copy {
  padding: 28px;
}

.wallbox-mock-panel {
  padding: 28px;
  display: grid;
  gap: 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(49, 216, 255, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(18, 26, 40, 0.86) 0%, rgba(9, 14, 22, 0.86) 100%);
}

.wallbox-meter {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(49, 216, 255, 0.16);
  background: rgba(6, 12, 20, 0.52);
}

.wallbox-meter-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.86rem;
}

.wallbox-meter strong {
  display: block;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 3rem;
  line-height: 0.95;
}

.wallbox-meter-bars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.wallbox-meter-bars span {
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(49, 216, 255, 0.26), rgba(49, 216, 255, 0.92));
}

.wallbox-diagram {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.diagram-node {
  min-height: 120px;
  display: flex;
  align-items: end;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(49, 216, 255, 0.1), rgba(255, 181, 69, 0.06));
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1.85rem;
}

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

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

.contact-card {
  padding: 28px 24px;
  text-align: center;
}

.small-note {
  margin-top: 8px;
}

.contact-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

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

.district-card {
  display: block;
  padding: 22px 20px;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.district-card strong {
  display: block;
}

.district-card span {
  display: block;
  margin-top: 8px;
}

.mini-hero {
  padding: 72px 0 54px;
  background:
    radial-gradient(circle at 82% 26%, rgba(49, 216, 255, 0.12), transparent 18%),
    radial-gradient(circle at 12% 18%, rgba(255, 181, 69, 0.1), transparent 16%),
    linear-gradient(180deg, rgba(10, 15, 24, 0.98) 0%, rgba(13, 21, 31, 0.9) 100%);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

.breadcrumbs a:hover {
  color: #fff;
}

.site-footer {
  padding: 54px 0 40px;
  border-top: 1px solid var(--line-soft);
  background: rgba(7, 10, 16, 0.56);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line-soft);
}

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

.footer-column {
  display: grid;
  gap: 10px;
}

.footer-column h3 {
  margin: 0 0 8px;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1.8rem;
}

.footer-column a,
.footer-column p,
.footer-note,
.copyright {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.footer-column a:hover {
  color: #fff;
}

.footer-note {
  margin-top: 28px;
  font-size: 1.14rem;
}

.copyright {
  margin-top: 14px;
}

@media (max-width: 1180px) {
  .services-grid,
  .services-grid--three,
  .district-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-device {
    width: min(46vw, 540px);
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-block;
  }

  .header-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 20px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(8, 12, 18, 0.98);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .header-nav {
    display: flex;
  }

  .header-inner {
    min-height: 82px;
  }

  .hero-stage,
  .hero-inner {
    min-height: 980px;
  }

  .hero-copy--stage {
    max-width: 100%;
    padding-top: 104px;
  }

  .hero-device {
    right: 50%;
    bottom: 110px;
    width: min(82vw, 520px);
    transform: translateX(50%);
  }

  .hero-charge-band {
    bottom: 360px;
  }

  .hero-trust-badge {
    right: auto;
    left: 0;
    bottom: 286px;
  }

  .hero-bottom-note {
    max-width: 100%;
    bottom: 24px;
  }

  .info-grid,
  .about-grid,
  .contact-grid,
  .footer-grid,
  .service-showcase,
  .district-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .hero h1,
  .mini-hero h1,
  .section-heading h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .hero-stage,
  .hero-inner {
    min-height: 940px;
  }

  .hero-copy--stage {
    padding-top: 90px;
  }

  .hero-charge-band {
    height: 70px;
    bottom: 352px;
  }

  .hero-charge-band span {
    padding: 10px 18px;
    font-size: 1.9rem;
  }

  .hero-trust-badge {
    position: static;
    margin-top: 28px;
    max-width: 100%;
  }

  .hero-device {
    bottom: 160px;
  }

  .services-grid,
  .services-grid--three {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
}
