/* Base */
:root {
  --ink: #0b1f33;
  --muted: #526173;
  --accent: #2b7a78;
  --accent-dark: #1f5a58;
  --surface: #f6f7f9;
  --panel: #ffffff;
  --border: #dde2e7;
  --highlight: #e8f2f1;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 92%;
  max-width: 1120px;
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.section--alt {
  background: var(--surface);
}

.section--panel {
  background: var(--highlight);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.2;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 999px;
  border: 1px solid var(--accent);
  font-weight: 600;
  transition: background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  background: var(--accent-dark);
}

.button--ghost {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Header */
.site-header {
  border-bottom: 1px solid var(--border);
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand span {
  font-size: 1.05rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-links {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 20px;
}

.nav-links a {
  color: var(--ink);
  font-weight: 500;
}

.menu-toggle {
  background: transparent;
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
}

.mobile-menu {
  border-top: 1px solid var(--border);
  background: #ffffff;
}

.mobile-menu ul {
  list-style: none;
  padding: 16px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu a {
  font-weight: 600;
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-highlight {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: 12px;
  background: var(--highlight);
}

/* Cards & layouts */
.card-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--panel);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.icon-badge {
  width: 40px;
  height: 40px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-item strong {
  display: block;
  margin-bottom: 4px;
}

.stats-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-card {
  background: var(--panel);
  border-radius: 14px;
  padding: 20px;
  border: 1px solid var(--border);
}

.stat-card span {
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
  color: var(--accent);
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.9rem;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  background: var(--panel);
}

.comparison-card ul {
  padding-left: 18px;
  margin: 8px 0 0;
  color: var(--muted);
}

/* Testimonials */
.testimonial {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-panel {
  padding: 0 16px 16px;
  display: none;
}

.faq-panel.is-open {
  display: block;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 32px 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  border-top: 1px solid var(--border);
  padding: 16px;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.08);
  display: none;
  z-index: 20;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(9, 21, 36, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 30;
}

.cookie-modal.is-open {
  display: flex;
}

.cookie-modal-content {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.switch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.switch {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.switch[aria-pressed="true"] {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

/* Responsive */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-card {
    flex: 1;
  }

  .split {
    flex-direction: row;
  }

  .split > * {
    flex: 1;
  }

  .card-row {
    flex-direction: row;
  }

  .card-row .card {
    flex: 1;
  }

  .stats-row {
    flex-direction: row;
  }

  .stat-card {
    flex: 1;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-card {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
