* {
  box-sizing: border-box;
}

:root {
  --ink: #102019;
  --muted: #4a5a52;
  --light: #f4f6f3;
  --accent: #1f7a5a;
  --accent-dark: #11523d;
  --sand: #e8ece7;
  --energy: #cfe7dd;
  --shadow: 0 18px 45px rgba(16, 32, 25, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--energy);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 600;
}

.split-section {
  display: flex;
  gap: 40px;
  align-items: stretch;
  padding: 70px 0;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.split-panel h1,
.split-panel h2,
.split-panel h3 {
  margin: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  width: fit-content;
  border: none;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn:hover,
.btn.secondary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 16px;
  align-items: center;
}

.card-media {
  width: 140px;
  height: 110px;
  flex: 0 0 auto;
  background: var(--sand);
  border-radius: 14px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.pill {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--muted);
  font-size: 0.82rem;
}

.image-frame {
  background: var(--sand);
  border-radius: 24px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  padding: 18px;
  border-radius: 18px;
  background: var(--light);
}

.form-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-card label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d4ddd7;
  font-family: inherit;
}

.form-card button {
  margin-top: 8px;
}

.split-bg {
  background: var(--light);
}

.split-energy {
  background: var(--energy);
}

.split-forest-bg {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: var(--sand);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 10;
}

.footer {
  padding: 40px 0 60px;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-grid {
  display: flex;
  gap: 30px;
}

.footer-grid > div {
  flex: 1;
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  z-index: 20;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.section-note {
  font-size: 0.92rem;
  color: var(--muted);
}

.disclaimer {
  font-size: 0.82rem;
  color: #6a7670;
  margin-top: 16px;
}

@media (max-width: 960px) {
  .split-section,
  .split-section.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .footer-grid {
    flex-direction: column;
  }
}
