* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f7fb;
  --text: #1f2937;
  --muted: #5b6470;
  --brand: #1d4ed8;
  --brand-dark: #153eab;
  --accent: #f59e0b;
  --panel: #ffffff;
  --line: #e3e7ee;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--brand);
}

.nav-links {
  display: none;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 0;
}

.menu-toggle {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.95rem;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 16px 0 20px;
  border-top: 1px solid var(--line);
}

.mobile-nav a {
  padding: 8px 0;
}

.mobile-nav.active {
  display: flex;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 6px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--brand);
}

section {
  padding: 56px 0;
}

.hero {
  background: var(--panel);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: 2.3rem;
  line-height: 1.2;
}

.hero p {
  color: var(--muted);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.highlight {
  border-color: var(--brand);
  box-shadow: 0 8px 20px rgba(29, 78, 216, 0.12);
}

.icon-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.stat-bar {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stat {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat strong {
  font-size: 1.4rem;
  color: var(--brand);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.quote {
  background: var(--brand);
  color: #fff;
  padding: 28px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  background: var(--panel);
  padding: 16px;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  background: transparent;
  border: none;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 16px 14px;
  color: var(--muted);
}

.faq-item.active .faq-answer {
  display: block;
}

.footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: 40px 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.95rem;
}

.footer .muted {
  color: #94a3b8;
}

.tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 99px;
  background: #eff6ff;
  color: var(--brand);
  font-size: 0.85rem;
  font-weight: 600;
}

.panel {
  background: var(--panel);
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 24px;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--panel);
  padding: 16px;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 40;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--panel);
  border-radius: 14px;
  padding: 24px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-content ul {
  padding-left: 20px;
  color: var(--muted);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  background: #ecfeff;
  color: #0f766e;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.divider {
  height: 1px;
  background: var(--line);
  width: 100%;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle,
  .mobile-nav {
    display: none;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-text {
    flex: 1;
    padding-right: 32px;
  }

  .hero-visual {
    flex: 1;
  }

  .grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .grid .card {
    flex: 1 1 calc(33.333% - 16px);
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .feature-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature-item {
    flex: 1 1 calc(50% - 12px);
  }

  .two-col {
    flex-direction: row;
    gap: 32px;
  }

  .two-col > div {
    flex: 1;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }

  .stat-bar {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
}
