:root {
  color-scheme: light;
  --bg: #f6f4ef;
  --surface: #ffffff;
  --ink: #1a1f1e;
  --muted: #5a6663;
  --brand: #0f3d3e;
  --accent: #f5b946;
  --accent-dark: #d79b2b;
  --line: #e2dfd6;
  --success: #1f7a5c;
  --shadow: 0 18px 38px rgba(15, 61, 62, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.site-header {
  position: sticky;
  top: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  z-index: 20;
}

.site-header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--brand);
}

.brand svg {
  width: 34px;
  height: 34px;
}

.menu-toggle {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.nav {
  display: none;
  flex-direction: column;
  gap: 14px;
  background: var(--surface);
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  position: absolute;
  right: 4vw;
  top: 70px;
  min-width: 200px;
}

.nav a {
  font-weight: 600;
  color: var(--brand);
}

.nav-open .nav {
  display: flex;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(13, 26, 25, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 10;
}

.nav-open .nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}

main {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 0 70px;
}

.section {
  padding: 32px;
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: var(--brand);
  color: #f5f4f0;
}

.section.soft {
  background: #f1efe6;
  box-shadow: none;
  border: 1px solid var(--line);
}

.section h2 {
  margin: 0;
  font-size: clamp(1.4rem, 1.2rem + 1vw, 2rem);
}

.section p {
  margin: 0;
  color: var(--muted);
}

.section.alt p {
  color: #f3e9d1;
}

.section .lead {
  font-size: 1.1rem;
  color: var(--ink);
}

.section.alt .lead {
  color: #fef8e7;
}

.hero {
  padding: 42px;
  gap: 20px;
}

.hero h1 {
  font-size: clamp(2rem, 1.6rem + 2vw, 3.2rem);
  margin: 0;
}

.hero .actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--brand);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: #fef2d2;
  color: #4b3a06;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.flex-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  padding: 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card strong {
  font-size: 1.05rem;
}

.icon-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.icon-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.icon-item svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  padding: 16px;
  border-radius: 16px;
  background: #f9f7f0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat span {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brand);
}

.testimonial {
  background: #f9f4e3;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid #f0e2b6;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comparison .card {
  background: #f3f7f5;
  border: 1px solid #cddcd8;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.step span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #4b3a06;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  background: #f6f4ef;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  padding: 0 16px 14px;
  display: none;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 8px 12px;
  background: #e9f0ee;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #34504a;
}

.footer {
  background: #0b2b2c;
  color: #e5ecea;
  padding: 32px 0 50px;
}

.footer .container {
  gap: 18px;
}

.footer a {
  color: #e5ecea;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 0.95rem;
}

.cookie-banner,
.cookie-modal {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 18px;
  padding: 18px;
  width: min(520px, 92vw);
  display: none;
  z-index: 40;
}

.cookie-banner {
  bottom: 20px;
}

.cookie-banner.active,
.cookie-modal.active {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  top: 12vh;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-option {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #f6f4ef;
  padding: 10px 12px;
  border-radius: 12px;
}

.cookie-option input {
  margin-top: 4px;
}

.inline-note {
  font-size: 0.92rem;
  color: var(--muted);
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-block {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.accent-panel {
  background: #f9f2dc;
  border: 1px solid #f0e2b6;
  border-radius: 18px;
  padding: 18px;
}

@media (min-width: 760px) {
  .menu-toggle {
    display: none;
  }

  .nav {
    position: static;
    display: flex;
    flex-direction: row;
    box-shadow: none;
    background: transparent;
    padding: 0;
  }

  .nav a {
    color: var(--ink);
  }

  .nav-backdrop {
    display: none;
  }

  .hero .actions {
    flex-direction: row;
  }

  .flex-row {
    flex-direction: row;
    align-items: flex-start;
  }

  .card-list,
  .icon-row,
  .stats,
  .comparison,
  .steps,
  .info-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .icon-item,
  .stat,
  .testimonial,
  .info-block,
  .comparison .card {
    flex: 1 1 calc(50% - 16px);
  }

  .section .wide {
    flex: 1 1 60%;
  }

  .section .narrow {
    flex: 1 1 35%;
  }

  .cookie-actions {
    flex-direction: row;
  }
}

@media (min-width: 980px) {
  .card,
  .stat,
  .testimonial,
  .info-block,
  .comparison .card {
    flex: 1 1 calc(33.333% - 16px);
  }
}
