* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f6f5f2;
  --surface: #ffffff;
  --accent: #2f6f6a;
  --accent-dark: #1f4b47;
  --muted: #5d6b6a;
  --text: #1b1f1e;
  --highlight: #f0e7d8;
  --line: #e2ded7;
  --shadow: 0 16px 30px rgba(27, 31, 30, 0.08);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent-dark);
}

.nav-toggle {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 0.4rem 0.7rem;
  border-radius: 0.6rem;
  cursor: pointer;
  font-weight: 600;
}

.nav-menu {
  display: none;
  flex-direction: column;
  gap: 0.6rem;
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 1rem 0;
}

.nav-menu a {
  font-weight: 600;
  color: var(--accent-dark);
}

.nav-menu.is-open {
  display: flex;
}

main {
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
  padding: 2.4rem 0 3.5rem;
}

section {
  background: var(--surface);
  border-radius: 1.4rem;
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow);
}

section.highlight {
  background: var(--highlight);
}

section.dark {
  background: var(--accent-dark);
  color: #fff;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}

.section-header p {
  color: var(--muted);
}

.dark .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.grid-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.card.alt {
  background: #fff9f0;
}

.card h3 {
  font-size: 1.1rem;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.6rem;
}

.stat-item span {
  font-weight: 700;
  color: var(--accent-dark);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  background: #fefcf7;
  border-left: 4px solid var(--accent);
  padding: 1.2rem;
  border-radius: 1rem;
}

.icon-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.icon-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.icon-item svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--accent);
}

.list-inline {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.process {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.process-step {
  display: flex;
  gap: 0.8rem;
}

.process-step span {
  font-weight: 700;
  color: var(--accent);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  padding: 0.9rem 1rem;
  background: #fff;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--accent-dark);
}

.faq-answer {
  margin-top: 0.6rem;
  display: none;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
}

.highlight-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--accent-dark);
  color: #fff;
  border-radius: 1.2rem;
  padding: 1.6rem;
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 2rem 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(960px, 92%);
  background: var(--surface);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  padding: 1.2rem;
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 50;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(27, 31, 30, 0.6);
  z-index: 60;
  padding: 1.5rem;
}

.cookie-modal.is-open {
  display: flex;
}

.cookie-modal .modal-card {
  background: var(--surface);
  border-radius: 1.2rem;
  padding: 1.6rem;
  width: min(560px, 100%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.modal-options label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.hero-badge {
  background: #e1f0ee;
  color: var(--accent-dark);
  align-self: flex-start;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-weight: 600;
}

.section-columns {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.info-block {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: #f9f7f1;
  padding: 1.2rem;
  border-radius: 1rem;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    display: flex;
    flex-direction: row;
    gap: 1.6rem;
    border-top: none;
    padding: 0;
  }

  .grid-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .grid-cards .card {
    flex: 1 1 calc(50% - 0.6rem);
  }

  .stats {
    flex-direction: row;
  }

  .stat-item {
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: none;
    border-left: 1px solid var(--line);
    padding-left: 1rem;
  }

  .stat-item:first-child {
    border-left: none;
    padding-left: 0;
  }

  .icon-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .icon-item {
    flex: 1 1 calc(50% - 0.6rem);
  }

  .process {
    flex-direction: row;
  }

  .process-step {
    flex: 1;
    flex-direction: column;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }

  .cookie-actions {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }

  .hero-actions {
    flex-direction: row;
  }

  .section-columns {
    flex-direction: row;
  }

  .section-columns .info-block {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
