* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f5f3ef;
  --surface: #ffffff;
  --ink: #1d1b1a;
  --muted: #5c5853;
  --accent: #2a6f70;
  --accent-strong: #1f4f50;
  --highlight: #f0e1b9;
  --soft: #e7e3dc;
  --radius: 16px;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.menu-toggle {
  border: 1px solid var(--soft);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--surface);
}

.primary-nav {
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--surface);
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  border-bottom: 1px solid var(--soft);
}

.primary-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-cta {
  align-self: flex-start;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.nav-open .primary-nav {
  display: flex;
}

.section {
  padding: 56px 0;
}

.section--tight {
  padding: 40px 0;
}

.section--accent {
  background: var(--surface);
}

.section--highlight {
  background: var(--highlight);
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 14px;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 10px;
  font-weight: 600;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 720px;
}

.hero {
  padding: 70px 0 60px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-secondary {
  border: 1px solid var(--accent);
  color: var(--accent);
}

.grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: var(--soft);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: var(--surface);
  padding: 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat strong {
  font-size: 1.4rem;
}

.testimonial {
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quote {
  font-style: italic;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-marker {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  padding: 16px;
  border-radius: 14px;
}

.faq-question {
  width: 100%;
  text-align: left;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-answer {
  margin-top: 10px;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  background: var(--surface);
  padding: 18px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer {
  background: #121110;
  color: #f7f4ee;
  padding: 40px 0;
}

.footer a {
  color: #f7f4ee;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-note {
  font-size: 0.85rem;
  color: #c4bfb8;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 20;
}

.cookie-banner.show {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 30;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal__content {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  width: min(520px, 92vw);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--soft);
  border-radius: 12px;
  padding: 12px 16px;
}

.toggle-btn {
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.toggle-btn[aria-pressed="true"] {
  background: var(--accent);
  color: #fff;
}

.modal-close {
  align-self: flex-end;
  font-size: 1.4rem;
}

.contact-card {
  background: var(--surface);
  padding: 20px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  border: 1px solid var(--soft);
}

.price {
  font-weight: 700;
  color: var(--accent-strong);
  font-size: 1.1rem;
}

@media (min-width: 760px) {
  .menu-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 0;
    border: none;
  }

  .primary-nav ul {
    flex-direction: row;
    gap: 18px;
  }

  .hero-inner,
  .split {
    flex-direction: row;
    align-items: center;
  }

  .hero-inner > * {
    flex: 1;
  }

  .grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .grid > * {
    flex: 1 1 calc(50% - 20px);
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .footer-top {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
  }

  .cookie-actions {
    flex-direction: row;
  }

  .info-grid {
    flex-direction: row;
  }

  .info-grid > * {
    flex: 1;
  }
}
