* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1d1e20;
  --muted: #5d6470;
  --accent: #3b6c4b;
  --accent-dark: #2b4b35;
  --soft: #f3f0ea;
  --mist: #f7f8fb;
  --warm: #fff7ef;
  --line: #e2e4ea;
  --highlight: #ffe3bf;
  --shadow: 0 20px 50px rgba(20, 24, 30, 0.08);
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.page {
  display: flex;
  min-height: 100vh;
  background: #ffffff;
}

.side-nav {
  width: 240px;
  padding: 32px 24px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: #ffffff;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.side-nav nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-weight: 500;
}

.side-nav .nav-note {
  font-size: 0.85rem;
  color: var(--muted);
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px 6vw 80px;
}

section {
  border-radius: 24px;
  padding: 32px;
  background: var(--mist);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-plain {
  background: transparent;
  padding: 0;
}

.split {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.split > * {
  flex: 1 1 260px;
}

.hero {
  background: linear-gradient(120deg, rgba(255, 247, 239, 0.9), rgba(243, 240, 234, 0.9)),
    url("https://images.unsplash.com/photo-1543852786-1cf6624b9987?auto=format&fit=crop&w=1400&q=80")
      center/cover;
  color: var(--ink);
  position: relative;
  overflow: hidden;
}

.hero .hero-card {
  background: rgba(255, 255, 255, 0.88);
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--highlight);
  font-size: 0.85rem;
  font-weight: 600;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.card button {
  border: none;
  background: var(--accent-dark);
  color: #ffffff;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  cursor: pointer;
}

.quote {
  background: #ffffff;
  border-left: 4px solid var(--accent);
  padding: 20px;
  border-radius: 16px;
  font-style: italic;
}

.form-wrap {
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.overlay-strip {
  background: var(--warm);
  position: relative;
}

.overlay-strip::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: -18px;
  width: 120px;
  height: 120px;
  background: rgba(59, 108, 75, 0.12);
  border-radius: 30px;
}

.metrics {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.metric {
  flex: 1 1 160px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  text-align: left;
  border: 1px solid var(--line);
}

.footer {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--accent-dark);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #ffffff;
}

.cookie-reject {
  background: var(--line);
  color: var(--ink);
}

.banner-image {
  border-radius: 22px;
  overflow: hidden;
}

.floating-callout {
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin-top: -32px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.highlight-box {
  background: var(--highlight);
  padding: 18px;
  border-radius: 16px;
  font-weight: 600;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .side-nav {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .side-nav nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  main {
    padding: 24px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
