* {
  box-sizing: border-box;
}

:root {
  --ink: #10251a;
  --muted: #516255;
  --leaf: #2f7a4f;
  --leaf-dark: #1f5a3a;
  --stone: #eef3ef;
  --sand: #f7f4ee;
  --clay: #dfe7e1;
  --accent: #caa75a;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: var(--leaf-dark);
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 5vw;
  background: var(--sand);
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
  background: #ffffff;
  padding: 6px 10px;
  border-radius: 20px;
  border: 1px solid var(--clay);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px 5vw 20px;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.hero-visual {
  flex: 1 1 320px;
  background: var(--clay);
  padding: 12px;
  border-radius: 20px;
}

.hero-visual img {
  border-radius: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: var(--leaf);
  color: #ffffff;
  border-radius: 26px;
  font-weight: 600;
  border: none;
}

.btn-light {
  background: #ffffff;
  color: var(--leaf-dark);
  border: 1px solid var(--leaf-dark);
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  padding: 40px 5vw;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split-visual {
  flex: 1 1 320px;
  padding: 12px;
  border-radius: 18px;
  background: var(--stone);
}

.split-visual img {
  border-radius: 12px;
}

.bg-panel {
  padding: 50px 5vw;
  color: #ffffff;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #2b3f2f;
}

.bg-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 37, 26, 0.65);
}

.bg-panel > * {
  position: relative;
  z-index: 1;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(16, 37, 26, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-media {
  background: var(--clay);
  border-radius: 14px;
  overflow: hidden;
}

.price {
  font-weight: 700;
  color: var(--leaf-dark);
}

.divider {
  height: 1px;
  background: var(--clay);
  margin: 10px 0;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--stone);
  padding: 24px;
  border-radius: 20px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--clay);
  font-size: 1rem;
}

.footer {
  margin-top: auto;
  padding: 30px 5vw;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.disclaimer {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: var(--ink);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(16, 37, 26, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.hidden {
  display: none;
}

.legal-block {
  background: var(--stone);
  padding: 26px 5vw;
}

.bg-leaves {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.bg-forest {
  background-image: url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1400&q=80");
}

@media (max-width: 900px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    position: static;
    align-self: flex-start;
    margin: 0 5vw 24px;
  }
}
