* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f3ef;
  --bg-alt: #ffffff;
  --text: #1f2a34;
  --muted: #5b6b7a;
  --accent: #2b6f9b;
  --accent-dark: #1d4f6d;
  --highlight: #f3d6b0;
  --border: #d9e0e6;
  --shadow: 0 14px 30px rgba(31, 42, 52, 0.08);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section--highlight {
  background: var(--highlight);
}

.section__header {
  margin-bottom: 32px;
}

.section__header p {
  color: var(--muted);
  max-width: 640px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-dark);
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 24px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--accent-dark);
}

.btn--light {
  background: #fff;
  color: var(--accent-dark);
}

.site-header {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav__links {
  display: none;
  flex-direction: column;
  gap: 16px;
  background: var(--bg-alt);
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  position: absolute;
  right: 5%;
  top: 70px;
  min-width: 220px;
}

.nav__links a {
  font-weight: 600;
  color: var(--text);
}

.nav__toggle {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 600;
}

.nav__links.is-open {
  display: flex;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__content h1 {
  font-size: 2.4rem;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero__content p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.hero__panel {
  background: var(--bg-alt);
  padding: 24px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--bg-alt);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card--plain {
  box-shadow: none;
}

.card h3 {
  font-size: 1.2rem;
}

.card p {
  color: var(--muted);
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  padding: 8px 14px;
  background: var(--bg);
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--accent-dark);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  background: var(--bg-alt);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--border);
}

.stat strong {
  font-size: 1.8rem;
  display: block;
}

.testimonial {
  background: var(--bg-alt);
  padding: 24px;
  border-left: 6px solid var(--accent);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq button {
  width: 100%;
  text-align: left;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 16px;
  border-radius: 14px;
  font-weight: 600;
}

.faq__panel {
  display: none;
  padding: 0 16px 16px;
  color: var(--muted);
}

.faq__item.is-open .faq__panel {
  display: block;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison__row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  background: var(--bg-alt);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer {
  background: #1e2b36;
  color: #e9f0f6;
  padding: 40px 0;
}

.footer a {
  color: inherit;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--bg-alt);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(31, 42, 52, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 30;
}

.modal.is-visible {
  display: flex;
}

.modal__content {
  background: var(--bg-alt);
  padding: 24px;
  border-radius: 20px;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal__content label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline__item {
  background: var(--bg-alt);
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.notice {
  background: #e8f1f7;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #c9dce9;
}

.notice--spaced {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .nav__toggle {
    display: none;
  }

  .nav__links {
    position: static;
    display: flex;
    flex-direction: row;
    gap: 24px;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }

  .hero__content {
    flex: 1.2;
  }

  .hero__panel {
    flex: 1;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 260px;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .split > * {
    flex: 1;
  }

  .stats {
    flex-direction: row;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison__row {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }

  .contact-grid > * {
    flex: 1;
  }

  .two-col {
    flex-direction: row;
  }

  .footer__links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
  }
}
