* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1a1b1f;
  --muted: #5b6570;
  --accent: #0f6b5f;
  --accent-strong: #0b4e45;
  --sand: #f4f2ee;
  --mist: #e9eef1;
  --sun: #f6f0d8;
  --glass: rgba(255, 255, 255, 0.78);
  --shadow: 0 18px 40px rgba(12, 15, 22, 0.12);
  --radius: 18px;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 7vw;
  gap: 16px;
}

.nav .brand {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--ink);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  font-weight: 600;
}

.ad-label {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sun);
  font-size: 0.85rem;
  color: var(--accent-strong);
  flex-shrink: 0;
}

.hero {
  position: relative;
  padding: 80px 7vw 90px;
  display: flex;
  align-items: stretch;
  gap: 32px;
  background-color: #e7edf1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  z-index: 0;
}

.hero-alt {
  padding: 70px 7vw;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 260px;
  background-color: #293038;
}

.hero-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.9;
  z-index: 0;
}

.hero-alt .hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-alt.bg-about::before {
  background-image: url("https://images.unsplash.com/photo-1503736334956-4c8f8e92946d?w=1400&q=80");
}

.hero-alt.bg-services::before {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
}

.hero-alt.bg-contact::before {
  background-image: url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1400&q=80");
}

.hero-alt.bg-privacy::before {
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
}

.hero-alt.bg-gdpr::before {
  background-image: url("https://images.pexels.com/photos/14865245/pexels-photo-14865245.jpeg");
}

.hero-alt.bg-cookies::before {
  background-image: url("https://images.pexels.com/photos/37508105/pexels-photo-37508105.jpeg");
}

.hero-alt.bg-terms::before {
  background-image: url("https://images.unsplash.com/photo-1470770841072-f978cf4d019e?w=1400&q=80");
}

.hero-alt.bg-thanks::before {
  background-image: url("https://images.pexels.com/photos/31405214/pexels-photo-31405214.jpeg");
}

.hero-content,
.hero-card {
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1.1;
  padding: 20px 12px 20px 0;
}

.hero-card {
  flex: 0.9;
  background: var(--glass);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--accent);
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 3vw, 3.1rem);
}

h2 {
  font-size: clamp(1.7rem, 2.2vw, 2.4rem);
}

h3 {
  font-size: 1.35rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
}

.btn.secondary {
  background: var(--ink);
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.section {
  padding: 70px 7vw;
  position: relative;
}

.section.alt {
  background: var(--sand);
}

.section.mist {
  background: var(--mist);
}

.section.sun {
  background: var(--sun);
}

.offset {
  display: flex;
  gap: 36px;
  align-items: center;
}

.offset.reverse {
  flex-direction: row-reverse;
}

.offset .panel {
  flex: 1;
}

.floating-card {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: translateY(-24px);
}

.image-frame {
  background: #dde4ea;
  border-radius: var(--radius);
  overflow: hidden;
  flex: 1;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.stat {
  flex: 1 1 180px;
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--mist);
  font-size: 0.85rem;
}

.pricing-table {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.price-card {
  flex: 1 1 220px;
  padding: 20px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.price {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--accent-strong);
}

.form-wrap {
  display: flex;
  gap: 26px;
  align-items: stretch;
  flex-wrap: wrap;
}

.form-card {
  flex: 1 1 320px;
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-card label {
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #ccd3da;
  font-size: 1rem;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  margin-top: auto;
  background: #111;
  color: #fff;
  padding: 12px 7vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  z-index: 10;
}

.sticky-cta button {
  background: var(--sun);
  color: #1f1d17;
  border: none;
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 700;
  cursor: pointer;
}

.footer {
  padding: 50px 7vw;
  background: #0f1115;
  color: #f5f5f5;
}

.footer a {
  color: #f6f0d8;
}

.footer-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 220px;
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  z-index: 20;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 700;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
}

.cookie-actions .reject {
  background: #ddd;
  color: #1d1d1d;
}

.legal-hero {
  padding: 70px 7vw 40px;
  background: var(--mist);
}

.legal-content {
  padding: 0 7vw 70px;
}

.legal-content h2 {
  margin-top: 28px;
}

.contact-grid {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 240px;
  background: #fff;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-stack .image-frame {
  min-height: 180px;
}

.bg-ev-map {
  background-image: url("https://images.unsplash.com/photo-1493238792000-8113da705763?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-charge {
  background-image: url("https://images.unsplash.com/photo-1509395176047-4a66953fd231?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-battery {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-about {
  background-image: url("https://images.unsplash.com/photo-1503736334956-4c8f8e92946d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-services {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-contact {
  background-image: url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-privacy {
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-gdpr {
  background-image: url("https://images.pexels.com/photos/14865245/pexels-photo-14865245.jpeg");
  background-size: cover;
  background-position: center;
}

.bg-cookies {
  background-image: url("https://images.pexels.com/photos/37508105/pexels-photo-37508105.jpeg");
  background-size: cover;
  background-position: center;
}

.bg-terms {
  background-image: url("https://images.unsplash.com/photo-1470770841072-f978cf4d019e?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-thanks {
  background-image: url("https://images.pexels.com/photos/31405214/pexels-photo-31405214.jpeg");
  background-size: cover;
  background-position: center;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .offset,
  .offset.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
