* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1d2420;
  --muted: #5d6a62;
  --sage: #e7efe8;
  --pine: #123a2a;
  --mist: #f7f9f7;
  --accent: #1b7f5a;
  --sun: #e6d08a;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--mist);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.img-wrap {
  background: #dfe8e2;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 96px;
}

.nav-wrap {
  padding: 24px 0 12px;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid #c6d0c7;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f3f7f4;
}

.hero {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  align-items: stretch;
}

.hero-copy {
  flex: 1.1;
  padding: 32px;
  background: var(--sage);
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}

.hero-media {
  flex: 1;
  min-height: 360px;
  border-radius: 24px;
  background-color: #2d3d35;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.35));
}

.hero-tag {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--sun);
  font-size: 12px;
  font-weight: 600;
  align-self: flex-start;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.section {
  margin-top: 72px;
  display: flex;
  gap: 28px;
  align-items: center;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section.offset {
  align-items: flex-start;
}

.section .text {
  flex: 1.1;
}

.section .media {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  background: #dfe9e2;
}

.cards {
  display: flex;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 220px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--pine);
}

.accent-panel {
  background: var(--pine);
  color: #f7faf8;
  border-radius: 24px;
  padding: 28px;
}

.form-shell {
  background: #fff;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.07);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c8d2cc;
  font-size: 15px;
}

.pill-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.pill {
  background: #f0f5f1;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
}

.two-col {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.two-col .block {
  flex: 1;
}

.footer {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid #d6ded8;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.notice {
  font-size: 13px;
  color: var(--muted);
  background: #f4f6f3;
  padding: 14px;
  border-radius: 14px;
}

.banner {
  background: #e8efe9;
  border-radius: 18px;
  padding: 18px 22px;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}

.banner p {
  font-size: 14px;
  color: var(--muted);
}

.banner-actions {
  display: flex;
  gap: 10px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 18px;
  background: #fff;
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 40;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 90px;
  z-index: 30;
}

.sticky-cta .btn {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.cookie-banner.visible {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.background-slab {
  padding: 36px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  background-color: #2e4237;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.background-slab::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.55));
}

.background-slab > * {
  position: relative;
  z-index: 2;
}

.legal-hero {
  display: flex;
  gap: 26px;
  align-items: stretch;
  margin-top: 28px;
}

.legal-hero .media {
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
  background: #e2e8e3;
}

.hero-energy {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
}

.slab-future {
  background-image: url("https://images.unsplash.com/photo-1482192596544-9eb780fc7f66?w=1400&q=80");
}

.legal-hero .text {
  flex: 1.2;
  background: #f1f5f1;
  border-radius: 18px;
  padding: 22px;
}

@media (max-width: 980px) {
  .hero,
  .section,
  .two-col,
  .legal-hero {
    flex-direction: column;
  }

  .hero-media {
    min-height: 260px;
  }
}
