* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #101624;
  background: #f5f7fb;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 20px;
  transition: background 0.2s ease;
}

.nav-links a:hover {
  background: rgba(16, 22, 36, 0.08);
}

.ad-label {
  font-size: 12px;
  background: #0e3a53;
  color: #e9f1f5;
  padding: 6px 10px;
  border-radius: 14px;
}

.hero {
  display: flex;
  gap: 40px;
  align-items: stretch;
  padding: 32px 0 56px;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-image {
  flex: 1;
  background: #dfe6f0;
  border-radius: 28px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #0e3a53;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: #0b2c40;
}

.btn.outline {
  background: transparent;
  color: #0e3a53;
  border: 1px solid #0e3a53;
}

.section {
  padding: 56px 0;
}

.section.light {
  background: #ffffff;
}

.section.dark {
  background: #0c1c28;
  color: #f1f5f8;
}

.energy-map {
  background-image: linear-gradient(rgba(12, 28, 40, 0.7), rgba(12, 28, 40, 0.7)),
    url("https://images.unsplash.com/photo-1771178301028-49a922aefccd?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-media {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  background: #d8e0ea;
}

.split-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: #e2e9f2;
  color: #1b2a40;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 14px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 14px 30px rgba(16, 22, 36, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  background: #dfe6f0;
}

.price {
  font-weight: 700;
  font-size: 18px;
  color: #0e3a53;
}

.callout {
  background: #eaf1f6;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.inline-link {
  color: #0e3a53;
  text-decoration: underline;
}

.form-wrap {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 18px 38px rgba(16, 22, 36, 0.1);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c9d4e3;
  font-size: 15px;
  font-family: inherit;
}

.form-status {
  font-size: 14px;
  color: #b13333;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #0e3a53;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 12px 24px rgba(16, 22, 36, 0.25);
  z-index: 20;
}

.sticky-cta a {
  color: #fff;
  font-weight: 600;
}

.footer {
  background: #0b1722;
  color: #d7e3ea;
  padding: 36px 0;
}

.footer-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer a:hover {
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #ffffff;
  color: #101624;
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(16, 22, 36, 0.2);
  display: none;
  gap: 12px;
  z-index: 30;
  max-width: 360px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #0e3a53;
  background: transparent;
  color: #0e3a53;
  cursor: pointer;
}

.cookie-btn.primary {
  background: #0e3a53;
  color: #fff;
}

.page-hero {
  padding: 46px 0 24px;
}

.page-hero h1 {
  margin-bottom: 10px;
}

.legal-block {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 20px;
}

.image-strip {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.image-strip img {
  width: 100%;
  max-width: 360px;
  height: 220px;
  border-radius: 18px;
  background: #dde5ee;
}

.contact-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 900px) {
  .hero,
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }
}
