* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1f1d;
  background-color: #f7f7f3;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: #1d5f48;
  text-decoration: underline;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 80px;
}

.topbar {
  padding: 24px 32px 8px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 16px;
}

.ad-label {
  font-size: 13px;
  color: #3d4a44;
  max-width: 320px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
  color: #1b1f1d;
  border-bottom: 1px solid #1b1f1d;
  padding-bottom: 2px;
}

.hero {
  padding: 24px 0 16px;
}

.section {
  padding: 48px 0;
}

.section-alt {
  background-color: #edf1ea;
}

.section-dark {
  background-color: #1f2a24;
  color: #f7f7f3;
}

.bg-energy {
  background-image: url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
}

.section-dark a {
  color: #f7f7f3;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-tight {
  display: flex;
  gap: 18px;
  align-items: stretch;
}

.split .text,
.split .media,
.split-tight .text,
.split-tight .media {
  flex: 1;
}

.image-frame {
  border-radius: 14px;
  overflow: hidden;
  background-color: #d4ddd2;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.pill {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background-color: #e0e8dc;
  font-size: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.headline {
  font-size: 36px;
  line-height: 1.2;
  margin: 16px 0;
}

.subhead {
  font-size: 18px;
  color: #3d4a44;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #1d5f48;
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}

.button.secondary {
  background-color: #dfe6db;
  color: #1b1f1d;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
  flex: 1;
}

.card .price {
  font-weight: 700;
  font-size: 18px;
  color: #1d5f48;
}

.divider {
  height: 1px;
  background-color: rgba(0, 0, 0, 0.12);
  margin: 20px 0;
}

.form-box {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ccd6cf;
  font-size: 14px;
  font-family: inherit;
}

.form-note {
  font-size: 13px;
  color: #3d4a44;
}

.footer {
  padding: 40px 32px;
  background-color: #111613;
  color: #e7ece8;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #e7ece8;
}

.footer-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 20;
}

.sticky-cta button {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 1px solid #cfd8d1;
  padding: 16px 24px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.muted {
  color: #657067;
  font-size: 14px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
}

.map-frame {
  background-color: #ccd6cf;
  border-radius: 16px;
  overflow: hidden;
}

.map-frame img {
  object-fit: cover;
}

.center {
  text-align: center;
}

@media (max-width: 960px) {
  .split,
  .split.reverse,
  .split-tight {
    flex-direction: column;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
  }
}
