*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --ink: #1a2433;
  --slate: #4b5b6b;
  --muted: #6b7b8c;
  --brand: #1f5a7a;
  --brand-soft: #e7f0f6;
  --accent: #9b7c2f;
  --accent-soft: #f6efe0;
  --bg: #f8fafc;
  --white: #ffffff;
  --border: #d6dee6;
  --shadow: 0 16px 36px rgba(20, 30, 40, 0.12);
}

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;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  padding: 12px 16px;
  background: var(--brand);
  color: var(--white);
  z-index: 50;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 40;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.brand svg {
  width: 34px;
  height: 34px;
}

.menu-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
}

.menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  background: var(--white);
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  position: absolute;
  right: 4%;
  top: 70px;
  min-width: 220px;
}

.menu a {
  color: var(--slate);
  font-weight: 500;
}

.menu.open {
  display: flex;
}

main {
  padding: 28px 0 56px;
}

.hero {
  background: linear-gradient(120deg, var(--brand) 0%, #234b5f 100%);
  color: var(--white);
  border-radius: 28px;
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn.primary {
  background: var(--accent);
  color: var(--white);
}

.btn.secondary {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.section {
  padding: 36px 0;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--brand-soft);
  color: var(--brand);
  width: fit-content;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--border);
  flex: 1 1 240px;
}

.card.highlight {
  background: var(--accent-soft);
  border-color: transparent;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.panel {
  background: var(--white);
  border-radius: 22px;
  padding: 24px;
  border: 1px solid var(--border);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--border);
}

.quote {
  background: var(--brand);
  color: var(--white);
  padding: 32px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step {
  display: flex;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--border);
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  padding: 0 20px 16px;
  color: var(--slate);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.compare {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.compare-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--white);
}

.notice {
  background: var(--brand-soft);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--border);
}

footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 30px 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  inset: auto 12px 12px 12px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 60;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(16, 24, 32, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 70;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-panel {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  width: min(560px, 92%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
}

.toggle-btn {
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 600;
  cursor: pointer;
}

.toggle-btn.active {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

.table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--white);
}

.badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  width: fit-content;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 860px) {
  .menu-toggle {
    display: none;
  }

  .menu {
    display: flex;
    position: static;
    flex-direction: row;
    box-shadow: none;
    padding: 0;
    background: transparent;
    min-width: auto;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 1 1 220px;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .contact-grid {
    flex-direction: row;
  }
}
