* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f6f4f0;
  --surface: #ffffff;
  --accent: #2f7d4f;
  --accent-dark: #225d3b;
  --text: #1c1f1d;
  --muted: #58655c;
  --sand: #efe6d9;
  --olive: #d9e2d3;
  --shadow: 0 18px 40px rgba(16, 24, 16, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section--alt {
  background: var(--surface);
}

.section--sand {
  background: var(--sand);
}

.section--olive {
  background: var(--olive);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  line-height: 1.2;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 18px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
  background: transparent;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  background: var(--accent);
  color: #fff;
  outline: none;
}

.btn--ghost {
  border-color: transparent;
  background: rgba(47, 125, 79, 0.12);
  color: var(--accent-dark);
}

.site-header {
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand svg {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: none;
  gap: 18px;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  color: var(--muted);
}

.menu-toggle {
  border: 1px solid var(--accent);
  background: transparent;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  color: var(--accent);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 18px 0 24px;
}

.mobile-menu a {
  color: var(--muted);
}

.mobile-menu.is-open {
  display: flex;
}

.hero {
  padding: 72px 0 64px;
}

.hero-layout {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.hero-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip {
  background: rgba(47, 125, 79, 0.12);
  color: var(--accent-dark);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow);
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.stats-bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat strong {
  font-size: 1.6rem;
  color: var(--accent-dark);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.quote {
  background: var(--accent-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  font-size: 1.1rem;
}

.quote span {
  display: block;
  margin-top: 16px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  padding: 16px 20px;
  border-left: 3px solid var(--accent);
  background: var(--surface);
  border-radius: var(--radius-sm);
}

.highlight {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(47, 125, 79, 0.12);
  color: var(--accent-dark);
  font-weight: 600;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-item {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 18px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.faq-item button {
  width: 100%;
  text-align: left;
  border: none;
  background: none;
  font-weight: 600;
  padding: 0;
  cursor: pointer;
  color: var(--text);
}

.faq-item p {
  margin-top: 12px;
  display: none;
}

.faq-item.is-open p {
  display: block;
}

.cta-panel {
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.85);
}

.cta-panel .btn {
  border-color: #fff;
  color: #fff;
}

.footer {
  padding: 48px 0;
  background: #1f2b22;
  color: #e4ece6;
}

.footer a {
  color: inherit;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer small {
  color: rgba(228, 236, 230, 0.7);
}

.service-price {
  font-weight: 700;
  color: var(--accent-dark);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  background: var(--surface);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--muted);
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 20px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 30;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal__content {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  width: min(560px, 100%);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: rgba(47, 125, 79, 0.08);
}

.toggle-row button {
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: transparent;
  padding: 6px 16px;
  color: var(--accent);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 100;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  .hero-layout {
    flex-direction: row;
    align-items: center;
  }

  .hero-layout > * {
    flex: 1;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(33.33% - 20px);
  }

  .stats-bar {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split > * {
    flex: 1;
  }

  .timeline {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .timeline-item {
    flex: 1 1 calc(50% - 16px);
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-list .card {
    flex: 1 1 calc(50% - 18px);
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-item {
    flex: 1;
  }

  .info-grid {
    flex-direction: row;
  }
}
