:root {
  --bg: #f7f6f3;
  --text: #1e1f22;
  --muted: #5a5f66;
  --brand: #3454d1;
  --brand-dark: #243a8f;
  --accent: #e9c46a;
  --surface: #ffffff;
  --surface-alt: #eef1f6;
  --border: #d7dbe0;
  --success: #2a9d8f;
}

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

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  height: auto;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  background: var(--brand);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(247, 246, 243, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
  z-index: 999;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

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

.nav-toggle {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  font-size: 0.95rem;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
  position: absolute;
  right: 4%;
  top: 70px;
  width: min(260px, 80%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

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

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

.hero {
  padding: 4rem 0 3rem;
}

.hero .hero-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--brand);
  color: white;
  font-weight: 600;
}

.button.secondary {
  background: transparent;
  border-color: var(--brand);
  color: var(--brand);
}

.section {
  padding: 3.5rem 0;
}

.section.alt {
  background: var(--surface-alt);
}

.section.dark {
  background: var(--brand-dark);
  color: white;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}

.section-lead {
  color: var(--muted);
  max-width: 720px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card.alt {
  background: var(--surface-alt);
}

.card h3 {
  font-size: 1.2rem;
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.icon-row img {
  width: 36px;
  height: 36px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat {
  background: var(--surface);
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.stat strong {
  font-size: 2rem;
  display: block;
}

.quote {
  font-size: 1.3rem;
  font-style: italic;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--surface);
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.badge {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  display: inline-flex;
}


.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
  background: var(--surface);
  border-radius: 1.25rem;
  border: 1px solid var(--border);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

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

.faq-item button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 1rem 1.25rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item .faq-content {
  padding: 0 1.25rem 1rem;
  color: var(--muted);
  display: none;
}

.faq-item.is-open .faq-content {
  display: block;
}

.footer {
  background: #111219;
  color: #f2f2f2;
  padding: 3rem 0;
}

.footer a {
  color: inherit;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer small {
  color: #b6bbc2;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  display: none;
  gap: 1rem;
  flex-direction: column;
  z-index: 999;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(17, 18, 25, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 1000;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal-content {
  background: var(--surface);
  border-radius: 1.5rem;
  padding: 2rem;
  max-width: 560px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cookie-options button {
  width: 100%;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    width: auto;
  }

  .hero .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 280px;
  }

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

  .split > * {
    flex: 1;
  }

  .stat-grid {
    flex-direction: row;
  }

  .process-steps {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .process-step {
    flex: 1 1 240px;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-actions {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 5rem 0 4rem;
  }
}
