*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f8fafc;
  --panel: #ffffff;
  --ink: #0f172a;
  --muted: #475569;
  --brand: #0ea5e9;
  --accent: #f59e0b;
  --border: #e2e8f0;
  --shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
  --radius: 16px;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  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: 3.5rem 0;
}

.section.alt {
  background: #eef2ff;
}

.section.dark {
  background: #0f172a;
  color: #e2e8f0;
}

.eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 0.8rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
}

h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.button-outline {
  background: transparent;
  border-color: var(--brand);
  color: var(--brand);
}

.button-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248, 250, 252, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.menu-toggle {
  background: transparent;
  border: 1px solid var(--border);
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
}

.nav-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--panel);
  border-bottom: 1px solid var(--border);
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.2rem 0;
}

.nav-panel a {
  padding: 0.3rem 1.4rem;
  color: var(--muted);
}

body.nav-open .nav-panel {
  display: flex;
}

.nav-links {
  display: none;
  gap: 1.6rem;
  align-items: center;
  font-weight: 600;
}

.nav-links a {
  color: var(--muted);
}

.hero {
  padding: 4rem 0 3.5rem;
}

.hero-card {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow);
}

.flex {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.card {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 1.6rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.card svg {
  width: 40px;
  height: 40px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--border);
}

.quote {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag {
  border: 1px solid var(--border);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--muted);
  background: var(--panel);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 0;
  padding-left: 1.1rem;
}

.list li {
  color: var(--muted);
}

.testimonial {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 1.6rem;
  border-left: 4px solid var(--accent);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison .card {
  border-left: 4px solid var(--brand);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--panel);
}

.faq-item button {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1rem 1.2rem;
  text-align: left;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-content {
  padding: 0 1.2rem 1rem;
  color: var(--muted);
}

.footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--border);
  background: #f1f5f9;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: var(--panel);
  border-radius: 18px;
  padding: 1.2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 40;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 50;
}

.cookie-modal .panel {
  background: var(--panel);
  border-radius: 18px;
  padding: 1.8rem;
  width: min(520px, 92%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.toggle-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border);
  padding: 0.7rem 1rem;
  border-radius: 12px;
}

.is-hidden {
  display: none;
}

@media (min-width: 760px) {
  .menu-toggle {
    display: none;
  }

  .nav-panel {
    display: none;
  }

  .nav-links {
    display: flex;
  }

  .flex {
    flex-direction: row;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cards .card {
    flex: 1 1 calc(33% - 1rem);
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .stats {
    flex-direction: row;
  }

  .stats .stat {
    flex: 1;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison .card {
    flex: 1;
  }

  .cookie-banner {
    left: auto;
    right: 1.5rem;
    bottom: 1.5rem;
    width: min(420px, 92%);
  }

  .cookie-actions {
    flex-direction: row;
    justify-content: flex-start;
  }
}
