:root {
  color-scheme: light;
  --bg: #f7f6f2;
  --surface: #ffffff;
  --ink: #1d1d1f;
  --muted: #575a63;
  --accent: #3b5cff;
  --accent-dark: #2a3cbf;
  --highlight: #f2d07b;
  --border: #e2e1da;
  --shadow: 0 12px 30px rgba(29, 29, 31, 0.08);
  --radius: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Inter", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}
[hidden] {
    display: none !important;
}
img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--surface);
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(247, 246, 242, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.menu-toggle {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
}

.site-nav {
  position: absolute;
  top: 64px;
  right: 5%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  min-width: 180px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
}

.nav-open .site-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero {
  padding: 80px 0 64px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-panel {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cards,
.feature-list,
.stat-list,
.split,
.timeline,
.comparison,
.faq-list,
.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.highlight {
  background: #eef1ff;
  border-color: transparent;
}

.icon {
  width: 40px;
  height: 40px;
  background: #e8ecff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.split .panel {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
}

.stat {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat strong {
  font-size: 2rem;
  color: var(--accent-dark);
}

.testimonial {
  background: #1d1d1f;
  color: #fff;
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote {
  font-size: 1.1rem;
  font-weight: 500;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: #f0f0f0;
  font-size: 0.85rem;
  color: var(--muted);
}

.comparison .row {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 18px;
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 1rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  margin-top: 12px;
}

.site-footer {
  background: #151517;
  color: #fff;
  padding: 36px 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  width: min(520px, 92%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 60;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(29, 29, 31, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 70;
}

.cookie-modal__content {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  width: min(560px, 100%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.cookie-toggle button {
  border: none;
  background: #e8ecff;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-toggle button.active {
  background: var(--accent);
  color: #fff;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-list .tag {
  background: #fff1cf;
  color: #6b5300;
}

.callout {
  background: var(--highlight);
  border-radius: var(--radius);
  padding: 28px;
}

.contact-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--border);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 18px;
}

.list li {
  color: var(--muted);
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    background: transparent;
    border: none;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    padding: 0;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-panel {
    flex: 1;
  }

  .cards,
  .feature-list,
  .stat-list,
  .split,
  .timeline,
  .comparison,
  .testimonial-list,
  .faq-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cards .card,
  .feature-list .card,
  .stat-list .stat,
  .comparison .row,
  .testimonial-list .testimonial,
  .split .panel {
    flex: 1 1 calc(50% - 18px);
  }

  .faq-list .faq-item {
    flex: 1 1 calc(50% - 18px);
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
  }

  .cookie-actions {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .cards .card,
  .feature-list .card,
  .stat-list .stat,
  .testimonial-list .testimonial {
    flex: 1 1 calc(33% - 18px);
  }

  .split .panel {
    flex: 1 1 calc(50% - 18px);
  }
}
