* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2937;
  --muted: #4b5563;
  --brand: #2846a5;
  --brand-dark: #1d357d;
  --accent: #f4b400;
  --soft: #f5f7fb;
  --panel: #ffffff;
  --border: #d8dee9;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  z-index: 20;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.menu-toggle {
  background: var(--brand);
  color: #ffffff;
  border: none;
  border-radius: 24px;
  padding: 10px 16px;
  font-size: 0.95rem;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  position: absolute;
  right: 20px;
  top: 68px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: 0.2s ease;
}

.nav-links.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
}

.hero {
  padding: 72px 0 48px;
  background: linear-gradient(180deg, #f5f7fb 0%, #ffffff 100%);
}

.hero .hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: 2.4rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 28px;
  background: var(--brand);
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: #ffffff;
  color: var(--brand);
  border: 1px solid var(--brand);
}

.section {
  padding: 56px 0;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.section-header h2 {
  font-size: 1.8rem;
}

.section-header p {
  color: var(--muted);
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 24px rgba(31, 41, 55, 0.05);
}

.card strong {
  font-size: 1.1rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--soft);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--brand);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.highlight-panel {
  background: var(--brand);
  color: #ffffff;
  padding: 28px;
  border-radius: 20px;
}

.highlight-panel p {
  color: #e5e7eb;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-item {
  background: var(--soft);
  padding: 18px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-item span {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote {
  background: #fff4e5;
  border-left: 4px solid var(--accent);
  padding: 20px;
  border-radius: 12px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-style: italic;
}

.testimonial span {
  font-weight: 600;
  font-style: normal;
  color: var(--muted);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--soft);
  padding: 18px;
  border-radius: 14px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px;
  background: #ffffff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-answer {
  padding: 0 16px 16px;
  color: var(--muted);
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.cta {
  background: var(--brand-dark);
  color: #ffffff;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta p {
  color: #d1d5db;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  background: #ffffff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.footer-links a {
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.2);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 40;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 50;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal-content {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: var(--soft);
  padding: 12px;
  border-radius: 12px;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    flex-direction: row;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0;
    background: transparent;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero .hero-text {
    max-width: 520px;
  }

  .card-grid,
  .stats,
  .comparison,
  .feature-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .stat-item,
  .comparison-row {
    flex: 1 1 220px;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cookie-actions {
    flex-direction: row;
  }
}
