* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f6f7fb;
  --surface: #ffffff;
  --ink: #1d2330;
  --muted: #5a657a;
  --accent: #2e7dbf;
  --accent-strong: #1a4f7a;
  --highlight: #e8f1f9;
  --border: #dde3ee;
  --warm: #f2eee8;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 100%);
  padding: 0 20px;
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.logo {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: capitalize;
}

.menu-toggle {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
}

.site-nav {
  display: none;
  flex-direction: column;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  position: absolute;
  right: 20px;
  top: 70px;
  width: min(260px, 80vw);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.14);
}

.site-nav a {
  font-weight: 600;
  color: var(--ink);
}

.nav-open .site-nav {
  display: flex;
}

main {
  padding-bottom: 60px;
}

section {
  padding: 56px 0;
}

.hero {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  background: var(--highlight);
  padding: 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--accent-strong);
  border: 1px solid var(--accent-strong);
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.section-lead {
  color: var(--muted);
  max-width: 720px;
  margin-bottom: 24px;
}

.flex-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.highlight {
  background: var(--warm);
  border-color: transparent;
}

.card svg {
  width: 42px;
  height: 42px;
  color: var(--accent);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-item {
  background: var(--surface);
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.stat-item strong {
  font-size: 1.4rem;
  display: block;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.quote {
  background: var(--accent);
  color: #fff;
  padding: 28px;
  border-radius: 18px;
}

.process {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process-step {
  border-left: 4px solid var(--accent);
  padding-left: 16px;
}

.testimonial {
  background: var(--surface);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--border);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}

.faq-question {
  width: 100%;
  padding: 16px;
  text-align: left;
  background: transparent;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 16px 16px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: var(--highlight);
  color: var(--accent-strong);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison .card {
  flex: 1;
}

.contact-block {
  background: var(--surface);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer {
  background: var(--ink);
  color: #fefefe;
  padding: 36px 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: #fefefe;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 16px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
  display: none;
  z-index: 30;
}

.cookie-banner.visible {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(20, 27, 38, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 40;
}

.cookie-modal.open {
  display: flex;
}

.modal-panel {
  background: var(--surface);
  border-radius: 18px;
  padding: 24px;
  width: min(520px, 100%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.toggle-row button {
  border: 1px solid var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--highlight);
  color: var(--accent-strong);
  cursor: pointer;
  font-weight: 600;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    flex-direction: row;
    display: flex;
    border: none;
    box-shadow: none;
    padding: 0;
    width: auto;
    gap: 18px;
  }

  .hero-grid {
    flex-direction: row;
    align-items: center;
  }

  .flex-row {
    flex-direction: row;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 280px;
  }

  .stats {
    flex-direction: row;
  }

  .split {
    flex-direction: row;
  }

  .process {
    flex-direction: row;
  }

  .process-step {
    flex: 1;
  }

  .comparison {
    flex-direction: row;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
