* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1e23;
  --muted: #5b6776;
  --accent: #8b1e3f;
  --accent-dark: #6e142f;
  --sand: #f6f1ea;
  --stone: #e6e0d7;
  --deep: #243049;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(27, 30, 35, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--accent);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 4px;
  z-index: 1000;
}

.skip-link:focus {
  left: 10px;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--stone);
  position: sticky;
  top: 0;
  z-index: 800;
}

.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.5px;
}

.brand-mark {
  width: 34px;
  height: 34px;
}

.nav-toggle {
  background: none;
  border: 1px solid var(--stone);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.95rem;
  cursor: pointer;
}

.nav-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0;
}

.nav-menu.is-open {
  display: flex;
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-list a {
  color: var(--ink);
  font-weight: 500;
}

.nav-cta {
  display: flex;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 6px;
  border: 1px solid var(--accent);
  font-weight: 600;
  cursor: pointer;
  background: var(--accent);
  color: var(--white);
  transition: 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
}

.section {
  padding: 60px 0;
}

.section-alt {
  background: var(--sand);
}

.section-deep {
  background: var(--deep);
  color: var(--white);
}

.section-highlight {
  background: var(--stone);
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

.section-lead {
  color: var(--muted);
  max-width: 700px;
  margin-bottom: 24px;
}

.hero {
  padding: 70px 0 80px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero-panel {
  background: var(--sand);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--accent);
  border: 1px solid var(--stone);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 8px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  background: var(--white);
  border-radius: 10px;
  padding: 18px;
  border: 1px solid var(--stone);
}

.stat strong {
  display: block;
  font-size: 1.6rem;
}

.quote {
  background: var(--white);
  border-left: 4px solid var(--accent);
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.columns {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid var(--stone);
  border-radius: 10px;
  padding: 16px;
  background: var(--white);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.step-number {
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex: 0 0 36px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--stone);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
}

.faq-button {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-panel {
  padding: 0 16px 16px;
  color: var(--muted);
}

.cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--deep);
  color: var(--white);
  border-radius: 14px;
  padding: 30px;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 40px 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a,
.footer-links button {
  color: var(--white);
  background: none;
  border: none;
  text-align: left;
  padding: 0;
  cursor: pointer;
  font: inherit;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: 12px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 900;
}

.cookie-banner.is-visible {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(27, 30, 35, 0.6);
  z-index: 950;
}

.cookie-modal.is-visible {
  display: flex;
}

.modal-content {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  width: min(520px, 92%);
  box-shadow: var(--shadow);
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.tag {
  background: var(--stone);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.notice {
  border-left: 3px solid var(--accent);
  padding-left: 12px;
  color: var(--muted);
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .nav-list {
    flex-direction: row;
    gap: 18px;
  }

  .hero-grid {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-panel {
    flex: 1;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(50% - 18px);
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .columns {
    flex-direction: row;
  }

  .columns > * {
    flex: 1;
  }

  .comparison-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .process-steps {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .step {
    flex: 1 1 calc(50% - 16px);
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-actions {
    flex-direction: row;
  }

  .modal-actions {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .card {
    flex: 1 1 calc(33% - 18px);
  }

  .step {
    flex: 1 1 calc(33% - 16px);
  }
}
