:root {
  color-scheme: light;
  --bg: #f7f6f2;
  --text: #1d1c19;
  --muted: #5b5a55;
  --accent: #2f6b5f;
  --accent-dark: #224a42;
  --sand: #efe7db;
  --leaf: #cfe3d6;
  --sun: #f0c36a;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 10;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: absolute;
  right: 4%;
  top: 72px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: 0.2s ease;
  min-width: 220px;
}

.nav-links a {
  font-weight: 500;
}

.nav-links.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-toggle {
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  cursor: pointer;
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--accent-dark);
  outline-offset: 2px;
}

.nav-inline {
  display: none;
}

.hero {
  padding: 70px 0 40px;
}

.hero-wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1.15;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag {
  background: var(--leaf);
  color: var(--accent-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: var(--sand);
  color: var(--accent-dark);
}

.section {
  padding: 56px 0;
}

.section.light {
  background: var(--white);
}

.section.soft {
  background: var(--sand);
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.section-title h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.highlight {
  background: var(--leaf);
}

.stat-bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
}

.stat {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  padding-bottom: 10px;
}

.stat:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.quote {
  background: var(--accent-dark);
  color: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote span {
  font-weight: 600;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature svg {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--white);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}

.faq-item button {
  width: 100%;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}

.faq-item p {
  margin-top: 12px;
  color: var(--muted);
}

.faq-item .icon {
  font-size: 1.4rem;
}

.faq-item.is-open .icon {
  transform: rotate(45deg);
}

.cta {
  background: var(--accent);
  color: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-footer {
  padding: 40px 0;
  background: var(--accent-dark);
  color: var(--white);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.1);
  padding: 18px;
  display: none;
  z-index: 20;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-banner .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30;
  padding: 20px;
}

.cookie-modal.open {
  display: flex;
}

.cookie-panel {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  width: min(520px, 100%);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  border-radius: 14px;
  background: var(--sand);
}

.cookie-option button {
  border: none;
  background: var(--accent);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-option.active button {
  background: var(--accent-dark);
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--accent-dark);
  font-size: 0.85rem;
  font-weight: 600;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px;
  background: var(--white);
  border-radius: var(--radius);
}

@media (min-width: 768px) {
  .nav-inline {
    display: flex;
    gap: 18px;
    align-items: center;
  }

  .menu-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    flex-direction: row;
    background: transparent;
    box-shadow: none;
    padding: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .hero-wrap {
    flex-direction: row;
    align-items: stretch;
  }

  .split {
    flex-direction: row;
  }

  .card-grid,
  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .service-card {
    flex: 1 1 30%;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .cookie-banner .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cookie-actions {
    justify-content: flex-end;
  }
}
