* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f4f0;
  --ink: #1d1b1a;
  --muted: #5f5a55;
  --accent: #2f6b5f;
  --accent-dark: #234f46;
  --sand: #efe6d8;
  --pebble: #e2dfda;
  --soft: #ffffff;
  --highlight: #d2e8df;
  --shadow: 0 12px 30px rgba(29, 27, 26, 0.12);
}

html {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

button {
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: var(--soft);
  padding: 0.6rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: var(--sand);
}

.section-contrast {
  background: var(--soft);
}

.section-highlight {
  background: var(--highlight);
}

.section-title {
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
  margin-bottom: 1rem;
}

.section-lead {
  color: var(--muted);
  max-width: 52ch;
}

.site-header {
  background: var(--soft);
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 1px 0 rgba(29, 27, 26, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.brand svg {
  width: 32px;
  height: 32px;
}

.nav-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--sand);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: fixed;
  inset: 70px 1rem auto 1rem;
  background: var(--soft);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-links a {
  font-weight: 500;
}

.nav-open .nav-links {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.2;
}

.hero p {
  color: var(--muted);
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--soft);
  font-weight: 600;
  transition: background 0.2s ease;
}

.button-secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.button:hover,
.button:focus-visible {
  background: var(--accent-dark);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--accent);
  color: var(--soft);
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: var(--soft);
  padding: 1.6rem;
  border-radius: 1.2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.card h3 {
  font-size: 1.3rem;
}

.card p {
  color: var(--muted);
}

.icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.icon-card {
  background: var(--soft);
  padding: 1.2rem;
  border-radius: 1rem;
  flex: 1 1 160px;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  box-shadow: var(--shadow);
}

.icon-card svg {
  width: 34px;
  height: 34px;
  color: var(--accent);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.split-block {
  flex: 1;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.stat {
  background: var(--soft);
  padding: 1.3rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  box-shadow: var(--shadow);
}

.stat strong {
  font-size: 1.6rem;
}

.testimonial {
  background: var(--soft);
  padding: 1.6rem;
  border-radius: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.testimonial span {
  font-weight: 600;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.timeline-item {
  background: var(--soft);
  padding: 1.2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.faq-item {
  background: var(--soft);
  padding: 1.2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
}

.faq-answer {
  margin-top: 0.8rem;
  color: var(--muted);
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-weight: 600;
  color: var(--accent-dark);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: var(--soft);
  padding: 1.2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.cta-panel {
  background: var(--accent);
  color: var(--soft);
  padding: 2.5rem;
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.cta-panel .button {
  background: var(--soft);
  color: var(--accent);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-block {
  background: var(--soft);
  padding: 1.4rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.site-footer {
  background: var(--pebble);
  padding: 2.5rem 0;
  margin-top: 2rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1rem;
}

.footer-note {
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: var(--soft);
  padding: 1.2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 30;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(29, 27, 26, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 40;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal-content {
  background: var(--soft);
  border-radius: 1.2rem;
  padding: 2rem;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-option {
  background: var(--sand);
  border-radius: 0.8rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.cookie-option button {
  align-self: flex-start;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.tag {
  background: var(--soft);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.9rem;
  border: 1px solid var(--pebble);
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    flex-direction: row;
    background: transparent;
    box-shadow: none;
    padding: 0;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card-list,
  .stats,
  .comparison,
  .contact-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .stat,
  .comparison-row,
  .info-block {
    flex: 1 1 calc(33% - 1rem);
  }

  .split {
    flex-direction: row;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cookie-actions {
    flex-direction: row;
  }
}
