* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f2a2e;
  --muted: #55606a;
  --accent: #9b5de5;
  --accent-soft: #efe7fb;
  --sand: #f6f1ea;
  --paper: #ffffff;
  --line: #e3e0da;
  --success: #2f855a;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 3rem 0;
}

.section.alt {
  background: var(--sand);
}

.section.soft {
  background: var(--accent-soft);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--muted);
}

.section h2 {
  font-size: 1.9rem;
  margin-top: 0.4rem;
  margin-bottom: 1rem;
}

.section p {
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1rem;
}

.logo {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-toggle {
  background: transparent;
  border: 1px solid var(--line);
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.nav-links {
  list-style: none;
  display: none;
  flex-direction: column;
  gap: 0.6rem;
  position: absolute;
  right: 4%;
  top: 4.2rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem;
  min-width: 180px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.site-nav.open .nav-links {
  display: flex;
}

.nav-links a {
  font-weight: 600;
  color: var(--ink);
}

.hero {
  padding: 4rem 0 3.5rem;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-copy h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-copy p {
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.hero-panel {
  background: var(--accent-soft);
  border-radius: 1.4rem;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-panel ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.grid {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.grid.two {
  flex-direction: column;
}

.card {
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  padding: 1.3rem;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.card strong {
  font-size: 1.05rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  padding: 1rem;
  border-radius: 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
}

.stat span {
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.4rem;
}

.quote {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.5;
}

.testimonial {
  border-left: 4px solid var(--accent);
  padding-left: 1rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.feature-list li {
  list-style: none;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.feature-list svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-item {
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem;
  background: var(--paper);
}

.process {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.process-step {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.process-step span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--paper);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  padding: 1rem 1.1rem;
  background: transparent;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item .faq-content {
  padding: 0 1.1rem 1rem;
  display: none;
  color: var(--muted);
}

.faq-item.is-open .faq-content {
  display: block;
}

.cta {
  background: var(--ink);
  color: #fff;
  border-radius: 1.6rem;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta p {
  color: #e8edf1;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 0;
  background: var(--paper);
}

.footer-columns {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 1rem 0;
  display: none;
  z-index: 100;
}

.cookie-banner.visible {
  display: block;
}

.cookie-banner .container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(31, 42, 46, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 200;
}

.cookie-modal.open {
  display: flex;
}

.cookie-modal .modal-content {
  background: var(--paper);
  border-radius: 1.2rem;
  padding: 1.6rem;
  width: min(520px, 100%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  border-radius: 0.8rem;
  border: 1px solid var(--line);
  background: var(--sand);
}

.cookie-toggle button {
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-toggle button[aria-pressed="true"] {
  background: var(--accent);
  color: #fff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (min-width: 860px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    flex-direction: row;
    display: flex;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    min-width: auto;
    gap: 1.4rem;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-copy {
    flex: 1.1;
  }

  .hero-panel {
    flex: 0.9;
  }

  .grid.two {
    flex-direction: row;
  }

  .grid.two > * {
    flex: 1;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cards .card {
    flex: 1 1 260px;
  }

  .stats {
    flex-direction: row;
  }

  .stats .stat {
    flex: 1;
  }

  .footer-columns {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-banner .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
