* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1f24;
  --muted: #5a6572;
  --accent: #2b6f8a;
  --accent-dark: #184455;
  --accent-soft: #e7f2f6;
  --warm: #f5efe8;
  --line: #d9e1e8;
  --panel: #ffffff;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #f8fafc;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section.soft {
  background: var(--accent-soft);
}

.section.warm {
  background: var(--warm);
}

.section.panel {
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 600;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  margin-bottom: 12px;
}

p {
  color: var(--muted);
  margin-bottom: 16px;
}

.header {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.1rem;
}

.brand span {
  color: var(--accent);
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 16px;
  position: absolute;
  top: 68px;
  right: 4%;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(27, 31, 36, 0.08);
}

.nav-links.active {
  display: flex;
}

.nav-links a {
  font-weight: 600;
}

.nav-toggle {
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
}

.hero {
  padding: 84px 0 68px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  background: var(--panel);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card h3 {
  margin-bottom: 4px;
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-row img {
  width: 36px;
  height: 36px;
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: #ffffff;
  border-radius: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat strong {
  font-size: 1.6rem;
  color: var(--accent-dark);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.timeline-item span {
  font-weight: 700;
  color: var(--accent);
  min-width: 56px;
}

.quote {
  background: var(--accent-dark);
  color: #ffffff;
  padding: 28px;
  border-radius: 16px;
}

.quote p {
  color: #ffffff;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--accent-dark);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.comparison .card {
  border-left: 4px solid var(--accent);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  background: transparent;
  border: none;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 20px 16px;
  display: none;
  color: var(--muted);
}

.faq-item.active .faq-answer {
  display: block;
}

.footer {
  background: #111418;
  color: #f2f5f8;
  padding: 40px 0;
}

.footer a {
  color: #f2f5f8;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  left: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  display: none;
  z-index: 20;
}

.cookie-banner.show {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(17, 20, 24, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 30;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  width: min(520px, 100%);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.cookie-option:last-child {
  border-bottom: none;
}

.toggle {
  width: 42px;
  height: 24px;
  border-radius: 999px;
  background: #d0d7de;
  position: relative;
  border: none;
}

.toggle::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  transition: transform 0.2s ease;
}

.toggle.active {
  background: var(--accent);
}

.toggle.active::after {
  transform: translateX(18px);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    position: static;
    flex-direction: row;
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
  }

  .nav-toggle {
    display: none;
  }

  .hero-inner {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-card {
    flex: 1;
  }

  .hero-actions {
    flex-direction: row;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(50% - 12px);
  }

  .two-column {
    flex-direction: row;
    align-items: flex-start;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison .card {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-actions {
    flex-direction: row;
  }
}
