* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f8f5f1;
  --surface: #ffffff;
  --ink: #1f1f24;
  --muted: #5f626a;
  --brand: #2b6e68;
  --brand-dark: #1f4d49;
  --accent: #c47d3d;
  --soft: #ece6de;
  --highlight: #e8f1f0;
  --radius: 18px;
  --shadow: 0 18px 40px rgba(31, 31, 36, 0.08);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 8px 30px rgba(31, 31, 36, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--brand-dark);
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 16px 0;
}

.nav-links a {
  color: var(--muted);
}

.menu-toggle {
  background: var(--brand);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
}

.nav-open .nav-links {
  display: flex;
}

.nav-open .menu-toggle {
  background: var(--brand-dark);
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--surface);
}

.section.highlight {
  background: var(--highlight);
}

.section-header {
  margin-bottom: 24px;
}

.section-header p {
  color: var(--muted);
  max-width: 720px;
}

.grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card.soft {
  background: var(--soft);
  box-shadow: none;
}

.hero {
  padding: 80px 0 64px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3.3vw, 3rem);
  line-height: 1.2;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--brand);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
}

.button.secondary {
  background: var(--accent);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  background: var(--surface);
  border-radius: 16px;
}

.stat span {
  font-weight: 700;
  color: var(--brand-dark);
}

.quote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--brand-dark);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--soft);
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--brand-dark);
  font-size: 0.85rem;
}

.service-card h3 {
  margin-bottom: 8px;
}

.service-card .price {
  font-weight: 700;
  color: var(--brand-dark);
  margin-top: 12px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding-left: 0;
}

.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-item svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border-radius: 16px;
  padding: 16px;
}

.faq-item button {
  width: 100%;
  text-align: left;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.faq-item p {
  margin-top: 10px;
  color: var(--muted);
  display: none;
}

.faq-item.open p {
  display: block;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--surface);
  padding: 16px;
  border-radius: 16px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--surface);
  padding: 16px;
  border-radius: 16px;
}

.timeline-item span {
  font-weight: 700;
  color: var(--accent);
}

.cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.site-footer {
  background: #111417;
  color: #e0e0e2;
  padding: 48px 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #c1c3c7;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 20px;
  border-radius: 18px;
  width: min(920px, 92%);
  display: none;
  z-index: 50;
}

.cookie-banner.active {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(15, 17, 21, 0.6);
  z-index: 60;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal .modal-content {
  background: var(--surface);
  padding: 24px;
  border-radius: 20px;
  width: min(680px, 92%);
  box-shadow: var(--shadow);
}

.toggle-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
}

.toggle-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  background: var(--soft);
  border-radius: 14px;
}

.toggle-item button {
  background: var(--brand);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: row;
    gap: 18px;
    padding: 0;
  }

  .menu-toggle {
    display: none;
  }

  .grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .grid > * {
    flex: 1 1 260px;
  }

  .split {
    flex-direction: row;
  }

  .split > * {
    flex: 1 1 0;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1 1 0;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-actions,
  .modal-actions {
    flex-direction: row;
    align-items: center;
  }
}
