* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f7f4f2;
  --surface: #ffffff;
  --ink: #2d2a28;
  --muted: #6a5f58;
  --accent: #6b4e3d;
  --accent-dark: #4f382b;
  --soft: #e7ddd6;
  --highlight: #f1e8e2;
  --success: #2c6e5f;
  --shadow: 0 12px 30px rgba(35, 27, 24, 0.08);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--soft);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.brand span {
  font-size: 0.95rem;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: var(--highlight);
  color: var(--accent-dark);
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  background: var(--surface);
  padding: 1rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  position: absolute;
  right: 4%;
  top: 4.4rem;
  min-width: 210px;
}

.nav-links.is-open {
  display: flex;
}

.nav-links a {
  font-weight: 600;
  color: var(--accent-dark);
}

main {
  padding: 2.2rem 0 3rem;
}

section {
  padding: 2.5rem 0;
}

.section-title {
  font-size: clamp(1.4rem, 2vw, 2rem);
  margin-bottom: 0.8rem;
}

.section-lead {
  color: var(--muted);
  max-width: 720px;
}

.hero {
  background: var(--surface);
  padding: 2.8rem 0 3.4rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.15;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-outline {
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex: 1 1 240px;
}

.card h3 {
  font-size: 1.1rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--highlight);
  padding: 1.2rem;
  border-radius: 16px;
}

.feature svg {
  width: 36px;
  height: 36px;
}

.stats-bar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--surface);
  padding: 1.6rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-weight: 600;
}

.stat span {
  color: var(--muted);
  font-weight: 400;
}

.highlight-panel {
  background: var(--accent);
  color: #fff;
  padding: 2rem;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial {
  background: var(--surface);
  border-left: 4px solid var(--accent);
  padding: 1.4rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.quote {
  font-style: italic;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--surface);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.2rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-answer {
  display: none;
  padding: 0 1.2rem 1rem;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.pill {
  background: var(--highlight);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--accent-dark);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-card {
  background: var(--surface);
  padding: 1.4rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  flex: 1 1 200px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step {
  background: var(--highlight);
  padding: 1.1rem 1.3rem;
  border-radius: 14px;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.info-card {
  background: var(--surface);
  padding: 1.4rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.footer {
  background: var(--accent-dark);
  color: #f9f4f0;
  padding: 2rem 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.95rem;
}

.footer-bottom {
  margin-top: 1.4rem;
  font-size: 0.85rem;
  color: #e7ddd6;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 1rem 1.2rem;
  width: min(960px, 92%);
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 20;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(32, 24, 20, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 30;
}

.modal.is-open {
  display: flex;
}

.modal-content {
  background: var(--surface);
  padding: 1.8rem;
  border-radius: 18px;
  width: min(560px, 100%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.modal-title {
  margin: 0;
}

.toggle-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.toggle-btn {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
  font-size: 0.9rem;
}

.toggle-btn[aria-pressed="true"] {
  background: var(--accent);
  color: #fff;
}

@media (min-width: 720px) {
  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-actions {
    flex-direction: row;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature {
    flex: 1 1 240px;
  }

  .stats-bar {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat {
    flex: 1 1 200px;
  }

  .comparison {
    flex-direction: row;
  }

  .steps {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .step {
    flex: 1 1 220px;
  }

  .info-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .info-card {
    flex: 1 1 260px;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.2rem;
  }

  .cookie-actions {
    flex-direction: row;
    justify-content: flex-end;
  }
}

@media (min-width: 960px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    position: static;
    flex-direction: row;
    box-shadow: none;
    background: transparent;
    padding: 0;
  }
}
