:root {
  color-scheme: light;
  --bg: #f5f4ef;
  --ink: #1b2a22;
  --muted: #53635a;
  --accent: #2f7a52;
  --accent-dark: #1f5a3c;
  --light: #ffffff;
  --sand: #ebe6d9;
  --mist: #e3ece7;
  --shadow: 0 12px 30px rgba(19, 28, 23, 0.12);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.sidebar {
  background: var(--sand);
  padding: 28px 22px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.tagline {
  color: var(--muted);
  font-size: 0.95rem;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav a {
  font-weight: 600;
}

.side-card {
  background: var(--light);
  padding: 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.side-card button,
.button {
  background: var(--accent);
  border: none;
  color: var(--light);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 32px 20px 80px;
}

.section {
  background: var(--light);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section.alt {
  background: var(--mist);
}

.section.split {
  flex-direction: column;
  gap: 28px;
}

.section.split .split-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section.hero {
  background: linear-gradient(120deg, #fefdf8 0%, #e7f1ea 100%);
  padding: 36px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--muted);
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metric {
  background: var(--sand);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--light);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 16px;
  border-left: 3px solid var(--accent);
  background: #f9faf7;
  border-radius: 12px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial {
  background: var(--sand);
  padding: 16px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fdfcf8;
  border: 1px solid rgba(47, 122, 82, 0.2);
  border-radius: 16px;
  padding: 16px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-dark);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfd8d2;
  font: inherit;
  background: var(--light);
}

label {
  font-weight: 600;
}

.inline-cta {
  font-weight: 600;
  color: var(--accent-dark);
}

.sticky-cta {
  position: sticky;
  top: 18px;
  background: var(--accent-dark);
  color: var(--light);
  padding: 16px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}

.footer {
  padding: 24px 20px 40px;
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer a {
  color: inherit;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--light);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-strip {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-strip img {
  border-radius: 16px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: #eaf2ec;
  font-size: 0.85rem;
}

.list-clean {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

@media (min-width: 900px) {
  .page {
    flex-direction: row;
  }

  .sidebar {
    width: 280px;
    min-height: 100vh;
    position: static;
  }

  main {
    padding: 40px 48px 80px;
  }

  .section.split .split-row {
    flex-direction: row;
    align-items: center;
  }

  .hero-grid {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-grid > div {
    flex: 1;
  }

  .metrics {
    flex-direction: row;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 240px;
  }

  .pricing-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-item {
    flex: 1 1 220px;
  }

  .testimonials {
    flex-direction: row;
  }

  .testimonial {
    flex: 1;
  }

  .image-strip {
    flex-direction: row;
  }

  .image-strip img {
    flex: 1;
  }

  .form-wrap {
    flex-direction: row;
  }

  .form-wrap > div {
    flex: 1;
  }
}

