* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1b1f1d;
  background: #f6f5f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  padding: 32px 24px;
  background: #102119;
  color: #f5f3eb;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.nav a {
  color: #f5f3eb;
  opacity: 0.9;
}

.nav a:hover {
  opacity: 1;
}

.sidebar-cta {
  margin-top: auto;
  padding: 16px;
  border: 1px solid #c5d2c7;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-cta a {
  padding: 10px 14px;
  border-radius: 999px;
  background: #f5f3eb;
  color: #102119;
  text-align: center;
  font-weight: 600;
}

.content {
  flex: 1;
  padding: 32px 48px 80px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.section {
  display: flex;
  gap: 32px;
  align-items: center;
}

.section.column {
  flex-direction: column;
  align-items: flex-start;
}

.section.split-reverse {
  flex-direction: row-reverse;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #5d6f64;
}

.hero {
  background: #e9efe7;
  padding: 36px;
  border-radius: 28px;
  display: flex;
  gap: 32px;
  align-items: center;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 3vw, 3.4rem);
  margin: 0;
}

.hero-text p {
  margin: 0;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1b1f1d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  background: #1b1f1d;
  color: #f6f5f2;
}

.btn.ghost {
  background: transparent;
  color: #1b1f1d;
}

.image-frame {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.story-block {
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.metrics {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.metric-card {
  flex: 1;
  min-width: 200px;
  padding: 18px;
  border-radius: 18px;
  background: #102119;
  color: #f5f3eb;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.floating-panel {
  background: #fef9ed;
  padding: 24px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #f0dfc2;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 220px;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e4e0d7;
}

.card img {
  border-radius: 14px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-item {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid #e4e0d7;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.service-item h3 {
  margin: 0 0 8px;
}

.service-price {
  font-weight: 700;
  color: #102119;
  font-size: 1.2rem;
}

.service-meta {
  font-size: 0.9rem;
  color: #5d6f64;
}

.layered {
  position: relative;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(16, 33, 25, 0.95), rgba(39, 74, 60, 0.92)),
    url("../img/pattern-energy.svg");
  color: #f5f3eb;
  overflow: hidden;
}

.layered::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -60px;
  right: 40px;
}

.form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid #e4e0d7;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #cfd5ce;
  font-size: 1rem;
  font-family: inherit;
}

.form-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.inline-link {
  font-weight: 600;
  color: #274a3c;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1b1f1d;
  color: #f6f5f2;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #d5d2c7;
  font-size: 0.9rem;
  color: #5d6f64;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #1b1f1d;
  background: #1b1f1d;
  color: #f6f5f2;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: transparent;
  color: #1b1f1d;
}

@media (max-width: 960px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  .sidebar-cta {
    width: 100%;
  }

  .content {
    padding: 24px;
  }

  .section {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
