:root {
  --bg: #f6f7fb;
  --surface: #ffffff;
  --primary: #203864;
  --secondary: #1d6f6a;
  --accent: #d87b32;
  --muted: #5c6373;
  --border: #e2e6ef;
  --shadow: 0 14px 32px rgba(17, 27, 54, 0.12);
  --radius: 18px;
  --transition: 0.25s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: #1a1d24;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

header {
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 20px rgba(21, 33, 63, 0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.15rem;
}

.brand svg {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 12px;
  background: var(--surface);
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  position: absolute;
  right: 4%;
  top: 72px;
}

.nav-links a {
  font-weight: 600;
  color: var(--primary);
}

.nav-links.open {
  display: flex;
}

.mobile-toggle {
  background: transparent;
  border: 1px solid var(--border);
  padding: 10px 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .mobile-toggle {
    display: none;
  }
}

main {
  padding: 28px 0 72px;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.section-header span {
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.section-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--primary);
}

.section-header p {
  color: var(--muted);
  max-width: 640px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  padding-top: 32px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--primary);
}

.hero p {
  color: var(--muted);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.button.secondary {
  background: var(--secondary);
}

.button.ghost {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--border);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(32, 56, 100, 0.18);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 22px rgba(21, 33, 63, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card.highlight {
  background: #eef2f8;
  border-color: transparent;
}

.card h3 {
  color: var(--primary);
  font-size: 1.2rem;
}

.card p {
  color: var(--muted);
}

.icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.icon-block {
  flex: 1 1 180px;
  background: var(--surface);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.icon-block svg {
  width: 38px;
  height: 38px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

@media (min-width: 860px) {
  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 280px;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split > div {
    flex: 1;
  }
}

.stat-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat {
  background: var(--surface);
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat span {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
}

.testimonial {
  background: #1f2e4f;
  color: #fff;
  padding: 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial cite {
  font-style: normal;
  font-weight: 600;
  color: #dce4ff;
}

.highlight-panel {
  background: #ffe9d7;
  padding: 26px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--surface);
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.step strong {
  font-size: 1.1rem;
  color: var(--primary);
}

.comparison-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.compare-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.compare-row span {
  font-weight: 600;
  color: var(--primary);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 18px 20px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item button span {
  font-size: 1.1rem;
}

.faq-item .answer {
  padding: 0 20px 18px;
  color: var(--muted);
  display: none;
}

.faq-item.open .answer {
  display: block;
}

.footer {
  background: #101624;
  color: #cdd4e2;
  padding: 40px 0 30px;
}

.footer a {
  color: #f3f5ff;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 860px) {
  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag {
  background: #26345a;
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 18px;
  border-radius: 16px;
  width: min(520px, 92%);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 60;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 26, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 70;
}

.cookie-modal {
  background: var(--surface);
  border-radius: 20px;
  padding: 24px;
  width: min(560px, 92%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.toggle-row input {
  width: 20px;
  height: 20px;
}

.notice {
  background: #e9f1ff;
  border-radius: 16px;
  padding: 18px;
  color: var(--primary);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

.small-text {
  font-size: 0.9rem;
  color: var(--muted);
}
