* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2a2c;
  --muted: #546266;
  --soft: #eef2f1;
  --sage: #7a9a8b;
  --deep: #234146;
  --sand: #f6f1eb;
  --accent: #c58b5a;
  --card: #ffffff;
  --shadow: 0 12px 28px rgba(31, 42, 44, 0.12);
  --radius: 16px;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: #fafafa;
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid #e6e9e8;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.brand span {
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: none;
  gap: 20px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-color: var(--accent);
}

.menu-toggle {
  border: none;
  background: var(--soft);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  border-top: 1px solid #e6e9e8;
  background: #fff;
}

.mobile-menu.open {
  display: flex;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

section {
  padding: 28px 20px;
}

.hero {
  background: linear-gradient(135deg, #f7f2ec 0%, #edf4f1 100%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero h1 {
  font-size: 2.2rem;
  line-height: 1.2;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  background: var(--deep);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--deep);
  color: var(--deep);
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.section-title h2 {
  font-size: 1.7rem;
}

.section-title p {
  color: var(--muted);
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-icon {
  width: 44px;
  height: 44px;
  background: var(--soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon img {
  width: 24px;
  height: 24px;
}

.highlight-panel {
  background: var(--deep);
  color: #fff;
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.highlight-panel p {
  color: #d8e2e0;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  background: var(--sand);
  border-radius: 14px;
  padding: 18px;
}

.stat strong {
  font-size: 1.5rem;
}

.quote {
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 22px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: var(--soft);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.comparison-row span {
  font-weight: 600;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  background: transparent;
  border: none;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  padding: 0 18px 16px;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.footer {
  background: #101b1d;
  color: #c9d3d1;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer a {
  color: #fff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 14px;
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 14px;
  z-index: 20;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 25, 26, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 30;
}

.cookie-modal.open {
  display: flex;
}

.cookie-modal-content {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--soft);
  padding: 12px;
  border-radius: 12px;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-text {
    flex: 1.2;
  }

  .hero-visual {
    flex: 0.8;
  }

  .card-grid,
  .stats,
  .comparison {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .stat,
  .comparison-row {
    flex: 1;
    min-width: 240px;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .footer {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-links {
    flex-direction: row;
    gap: 18px;
  }
}
