:root {
  --ink: #101417;
  --muted: #5b6670;
  --brand: #2b8a6a;
  --accent: #f5b544;
  --bg: #f6f4ef;
  --panel: #ffffff;
  --shadow: 0 20px 45px rgba(16, 20, 23, 0.12);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}
a {
  color: inherit;
  text-decoration: none;
}
header {
  padding: 24px 6vw 12px;
}
.nav-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}
.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover {
  border-color: var(--brand);
}
.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 36px 6vw 20px;
}
.hero-card {
  background: var(--panel);
  padding: 30px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 12px;
}
.tagline {
  color: var(--muted);
  font-size: 1.1rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}
.btn.outline {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
}
.btn.sun {
  background: var(--accent);
  color: var(--ink);
}
.section {
  padding: 40px 6vw;
}
.section.dark {
  background: #1f2a2b;
  color: #fefbf5;
}
.section.soft {
  background: #e9f2ee;
}
.asym {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.asym-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.asym-row.reverse {
  flex-direction: column-reverse;
}
.card-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.card {
  background: var(--panel);
  padding: 22px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.card.highlight {
  border-left: 6px solid var(--brand);
}
.price-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.price-card {
  background: #0f1b18;
  color: #fefbf5;
  padding: 24px;
  border-radius: 24px;
}
.badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(43, 138, 106, 0.15);
  color: var(--brand);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}
.inline-cta {
  color: var(--brand);
  font-weight: 600;
  text-decoration: underline;
}
.form-shell {
  background: var(--panel);
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-shell label {
  font-weight: 600;
  font-size: 0.9rem;
}
.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cbd5d2;
  font-size: 1rem;
  font-family: inherit;
}
.sticky-cta {
  position: sticky;
  top: 16px;
  align-self: flex-start;
  background: #fff6db;
  padding: 18px 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer {
  padding: 32px 6vw 46px;
  background: #0f1413;
  color: #f1f1f1;
}
.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-grid a {
  color: #f1f1f1;
}
.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}
.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (min-width: 840px) {
  .hero {
    flex-direction: row;
    align-items: stretch;
  }
  .hero-card {
    flex: 1.2;
  }
  .hero-media {
    flex: 1;
  }
  .asym {
    gap: 36px;
  }
  .asym-row,
  .asym-row.reverse {
    flex-direction: row;
    align-items: center;
  }
  .asym-row.reverse {
    flex-direction: row-reverse;
  }
  .card-grid {
    flex-direction: row;
  }
  .card {
    flex: 1;
  }
  .price-grid {
    flex-direction: row;
  }
  .price-card {
    flex: 1;
  }
  .form-layout {
    display: flex;
    gap: 28px;
    align-items: flex-start;
  }
  .form-shell {
    flex: 1.2;
  }
  .sticky-cta {
    min-width: 240px;
  }
  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
