* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f7f4ef;
  --text: #1c1a18;
  --muted: #5a5752;
  --accent: #2f5d62;
  --accent-strong: #21464b;
  --warm: #d9a441;
  --panel: #ffffff;
  --border: #d9d2c7;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 92%;
  max-width: 1160px;
  margin: 0 auto;
}

.site-header {
  background: var(--panel);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand span {
  font-size: 1.05rem;
}

.brand img {
  width: 36px;
  height: 36px;
}

.nav-toggle {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  font-size: 0.95rem;
  cursor: pointer;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.2rem 0;
}

.nav-links a {
  font-weight: 500;
}

body.nav-open .nav-links {
  display: flex;
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    padding: 0;
  }
}

main {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 3rem 0 4rem;
}

section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero {
  background: var(--panel);
  padding: 2.5rem 1.8rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero h1 {
  font-size: 2.3rem;
  line-height: 1.2;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 900px) {
  .hero-grid,
  .split {
    flex-direction: row;
    align-items: center;
  }

  .hero-grid > div,
  .split > div {
    flex: 1;
  }
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

@media (min-width: 700px) {
  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(50% - 1.2rem);
  }
}

@media (min-width: 1024px) {
  .card {
    flex: 1 1 calc(33.333% - 1.2rem);
  }
}

.card {
  background: var(--panel);
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card h3 {
  font-size: 1.2rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(47, 93, 98, 0.12);
  color: var(--accent-strong);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 700px) {
  .stats {
    flex-direction: row;
  }
}

.stat {
  flex: 1;
  background: var(--accent);
  color: #fff;
  border-radius: 20px;
  padding: 1.5rem;
}

.stat strong {
  font-size: 2rem;
  display: block;
}

.quote {
  background: var(--warm);
  color: #2b2010;
  padding: 2rem;
  border-radius: 24px;
  font-size: 1.1rem;
}

.highlight {
  background: #fff8e5;
  border-radius: 20px;
  padding: 1.8rem;
  border: 1px solid #f1d7a0;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.list svg {
  flex-shrink: 0;
  margin-top: 0.3rem;
}

.panel {
  background: var(--panel);
  border-radius: 22px;
  padding: 2rem;
  border: 1px solid var(--border);
}

.testimonial {
  background: var(--panel);
  padding: 1.6rem;
  border-left: 4px solid var(--accent);
  border-radius: 16px;
}

.testimonial span {
  display: block;
  margin-top: 0.8rem;
  font-weight: 600;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.timeline-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.timeline-item strong {
  min-width: 80px;
  color: var(--accent-strong);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.2rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--panel);
}

@media (min-width: 800px) {
  .comparison-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--panel);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.2rem;
  background: transparent;
  border: none;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.faq-answer {
  padding: 0 1.2rem 1.2rem;
  display: none;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.footer {
  background: var(--panel);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem 1.4rem;
  width: min(92%, 520px);
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 40;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

@media (min-width: 520px) {
  .cookie-actions {
    flex-direction: row;
  }
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 50;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: var(--panel);
  border-radius: 20px;
  padding: 2rem;
  width: min(92%, 560px);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.toggle-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  background: #f3efe8;
}

.toggle-button {
  border: 1px solid var(--accent);
  background: transparent;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  cursor: pointer;
}

.toggle-button[aria-pressed="true"] {
  background: var(--accent);
  color: #fff;
}

.notice {
  color: var(--muted);
  font-size: 0.95rem;
}
