* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f6f3ef;
  --text: #1f2a2e;
  --muted: #4b5a60;
  --accent: #d46a2c;
  --accent-dark: #a94d1b;
  --brand: #2b6f6b;
  --surface: #ffffff;
  --surface-alt: #efe8e0;
  --border: #d7cbbf;
  --shadow: 0 16px 40px rgba(27, 31, 33, 0.12);
}

body {
  font-family: "Segoe UI", "Inter", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--brand);
  font-size: 1.1rem;
}

.nav-toggle {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.site-nav {
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  background: var(--surface);
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  position: absolute;
  right: 5%;
  top: 70px;
}

.site-nav.open {
  display: flex;
}

.site-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.nav-link {
  font-weight: 600;
  color: var(--text);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--accent);
}

main {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  padding: 2.5rem 0 4rem;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section.alt {
  background: var(--surface);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.section.highlight {
  background: var(--surface-alt);
  border-radius: 1.5rem;
  padding: 2rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
}

.section h2 {
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.card {
  background: var(--surface);
  border-radius: 1.2rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.card h3 {
  font-size: 1.2rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill {
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: var(--surface-alt);
  font-size: 0.85rem;
  font-weight: 600;
}

.stat-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  background: var(--surface);
  border-radius: 1rem;
  padding: 1.4rem;
  border: 1px solid var(--border);
}

.stat strong {
  font-size: 1.8rem;
  color: var(--brand);
  display: block;
}

.icon-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.icon-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--surface);
  padding: 1.2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
}

.icon-card svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.quote {
  background: var(--brand);
  color: #fff;
  padding: 2.5rem;
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.quote span {
  font-weight: 600;
}

.cta {
  background: var(--accent);
  color: #fff;
  padding: 2rem;
  border-radius: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta .button {
  align-self: flex-start;
  background: #fff;
  color: var(--accent-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: var(--brand);
}

.compare-table {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.compare-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: var(--surface);
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--surface);
  border-radius: 1rem;
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  padding: 1rem 1.2rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.2rem 1.2rem;
  color: var(--muted);
}

.service-price {
  font-weight: 700;
  color: var(--accent-dark);
}

.tagline {
  color: var(--muted);
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.info-block {
  background: var(--surface);
  border-radius: 1rem;
  padding: 1.4rem;
  border: 1px solid var(--border);
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  padding: 1rem 1.4rem;
  width: min(520px, 90%);
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 30;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(27, 31, 33, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
  padding: 1.5rem;
}

.cookie-modal.visible {
  display: flex;
}

.cookie-panel {
  background: var(--surface);
  border-radius: 1.4rem;
  padding: 1.6rem;
  width: min(560px, 100%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface-alt);
  padding: 0.8rem 1rem;
  border-radius: 0.8rem;
}

.cookie-toggle button {
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-toggle button[aria-pressed="true"] {
  background: var(--accent);
}

@media (min-width: 768px) {
  .site-nav {
    position: static;
    display: flex;
    box-shadow: none;
    padding: 0;
    flex-direction: row;
    background: transparent;
  }

  .site-nav ul {
    flex-direction: row;
  }

  .nav-toggle {
    display: none;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(50% - 1rem);
  }

  .stat-grid {
    flex-direction: row;
  }

  .stat {
    flex: 1 1 0;
  }

  .icon-row {
    flex-direction: row;
  }

  .icon-card {
    flex: 1 1 0;
  }

  .compare-table {
    flex-direction: row;
  }

  .compare-row {
    flex: 1 1 0;
  }

  .info-grid {
    flex-direction: row;
  }

  .info-block {
    flex: 1 1 0;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
