* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f6f4f0;
  --surface: #ffffff;
  --ink: #1c1a18;
  --muted: #5c5a57;
  --accent: #b25b3d;
  --accent-dark: #8c4329;
  --accent-soft: #f2d7cc;
  --line: #e3ded7;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #fff;
  display: inline-block;
  margin: 1rem;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.brand-mark {
  width: 36px;
  height: 36px;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  cursor: pointer;
}

.main-nav {
  position: relative;
}

.nav-links {
  list-style: none;
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  position: absolute;
  right: 0;
  top: 3.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  min-width: 220px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--accent);
}

.nav-links.is-open {
  display: flex;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cta-btn:hover,
.cta-btn:focus {
  background: var(--accent-dark);
}

.ghost-btn {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.ghost-btn:hover,
.ghost-btn:focus {
  background: var(--accent-soft);
}

main {
  padding: 2.5rem 0 4rem;
}

section {
  margin: 2.5rem 0;
}

.section-title {
  font-size: clamp(1.4rem, 2vw, 2rem);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.hero {
  background: var(--surface);
  border-radius: 24px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border: 1px solid var(--line);
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.panel {
  background: var(--surface);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--line);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card-icon {
  width: 42px;
  height: 42px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--accent-soft);
  color: var(--accent-dark);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  background: var(--surface);
  border-radius: 16px;
  padding: 1.25rem;
  border: 1px solid var(--line);
}

.stat span {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
}

.quote {
  background: var(--accent);
  color: #fff;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quote strong {
  font-size: 1.1rem;
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.logo-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  background: #fff;
  font-size: 0.85rem;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.comparison-item span {
  font-weight: 700;
  color: var(--accent);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timeline-item {
  padding: 1rem 1.25rem;
  background: var(--surface);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  border: 1px solid var(--line);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-answer {
  padding: 0 1.25rem 1rem;
  color: var(--muted);
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 2rem 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-nav a {
  color: var(--muted);
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 30;
}

.cookie-banner.is-visible {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 40;
}

.modal-overlay.is-visible {
  display: flex;
}

.modal {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  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-close {
  border: none;
  background: var(--accent-soft);
  color: var(--accent-dark);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  cursor: pointer;
}

.pref-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pref-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.pref-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.toggle input {
  width: 38px;
  height: 22px;
}

.highlight {
  background: var(--accent-soft);
  border-radius: 20px;
  padding: 2rem;
}

@media (min-width: 760px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    min-width: auto;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .split > * {
    flex: 1;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(50% - 1rem);
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
