* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f7f7fb;
  --bg-alt: #ffffff;
  --text: #1f2330;
  --muted: #5b6173;
  --brand: #1b6ca8;
  --brand-dark: #0f3d63;
  --accent: #f2a541;
  --border: #e3e5ec;
  --shadow: 0 12px 28px rgba(20, 35, 60, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

main {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 24px 0 64px;
}

img,
video {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  padding: 36px 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section--highlight {
  background: linear-gradient(135deg, rgba(27, 108, 168, 0.1), rgba(242, 165, 65, 0.1));
}

.eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  background: var(--brand-dark);
}

.btn--ghost {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

.btn--light {
  background: #fff;
  color: var(--brand-dark);
  border-color: #fff;
}

.btn--accent {
  background: var(--accent);
  color: #1f1f1f;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(247, 247, 251, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.1rem;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 18px;
  font-weight: 500;
}

.menu-toggle {
  background: transparent;
  border: 1px solid var(--border);
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 80%);
  height: 100vh;
  background: var(--bg-alt);
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: right 0.3s ease;
  z-index: 40;
}

.mobile-menu.is-open {
  right: 0;
}

.mobile-menu a {
  font-weight: 600;
  color: var(--text);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 8px 22px rgba(20, 35, 60, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card--accent {
  background: #fdf2e1;
  border-color: rgba(242, 165, 65, 0.3);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: var(--bg-alt);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat strong {
  font-size: 1.6rem;
  color: var(--brand);
}

.testimonial {
  background: var(--bg-alt);
  border-radius: 16px;
  padding: 20px;
  border-left: 4px solid var(--brand);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-item svg {
  flex-shrink: 0;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 16px;
  background: var(--bg-alt);
  border: 1px dashed var(--border);
}

.step span {
  background: var(--brand);
  color: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 700;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  gap: 16px;
  flex-direction: column;
  background: var(--bg-alt);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 16px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-alt);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 14px 16px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  padding: 0 16px 16px;
  display: none;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.cta-panel {
  border-radius: 22px;
  padding: 26px;
  background: var(--brand);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.85);
}

.site-footer {
  background: #0d2237;
  color: rgba(255, 255, 255, 0.8);
  padding: 40px 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  width: min(360px, 90%);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(18, 24, 40, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
  padding: 24px;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal__content {
  background: var(--bg-alt);
  border-radius: 20px;
  padding: 24px;
  width: min(520px, 96%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-pref {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  border-radius: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  gap: 16px;
}

.pill {
  font-size: 0.8rem;
  background: rgba(27, 108, 168, 0.12);
  color: var(--brand-dark);
  padding: 4px 10px;
  border-radius: 999px;
}

.grid-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 18px;
}

.list li {
  color: var(--muted);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 240px;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split > * {
    flex: 1;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
  }
}
