*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f5f2;
  --surface: #ffffff;
  --panel: #efe9e3;
  --text: #1d1d22;
  --muted: #6b6f76;
  --accent: #5b4bdf;
  --accent-dark: #3b2fb2;
  --accent-soft: #e4ddff;
  --line: #e4ded7;
  --shadow: 0 14px 30px rgba(25, 25, 25, 0.08);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.section {
  padding: 3rem 0;
}

.section--alt {
  background: var(--surface);
}

.section--panel {
  background: var(--panel);
}

.section__intro {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.nav-toggle {
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  padding: 0.55rem 1.1rem;
  font-weight: 600;
}

.primary-nav {
  display: none;
}

.primary-nav.open {
  display: block;
}

.primary-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1rem;
}

.primary-nav a {
  font-weight: 600;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 1rem;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-weight: 600;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn--ghost {
  background: transparent;
  color: var(--accent);
}

.btn--dark {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  padding: 1.6rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card--soft {
  background: var(--accent-soft);
  border-color: transparent;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  background: var(--surface);
  padding: 1.2rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.stat strong {
  font-size: 1.6rem;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill {
  border: 1px solid var(--line);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step {
  background: var(--surface);
  border-radius: 14px;
  border-left: 4px solid var(--accent);
  padding: 1rem 1.2rem;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  background: var(--surface);
  padding: 1.2rem;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.comparison-row h4 {
  margin-bottom: 0.2rem;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1rem;
}

.faq-item.open .faq-answer {
  max-height: 420px;
  padding: 0 1rem 1rem;
}

.cta {
  background: var(--accent-dark);
  color: #fff;
  padding: 2.5rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.site-footer {
  background: #101018;
  color: #f2f2f4;
  padding: 2.5rem 0;
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-columns {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-note {
  color: #c4c4cc;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: var(--shadow);
  display: none;
  z-index: 20;
}

.cookie-banner.show {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
  display: none;
  z-index: 30;
}

.cookie-overlay.show {
  display: block;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 40;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal__content {
  background: var(--surface);
  border-radius: 20px;
  padding: 1.8rem;
  width: min(520px, 92%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-option {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
}

.cookie-option:last-child {
  border-bottom: none;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.2rem;
  border-radius: 16px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.service-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-item strong {
  font-size: 1.2rem;
}

.notice {
  border-left: 4px solid var(--accent);
  padding-left: 1rem;
  color: var(--muted);
}

@media (min-width: 768px) {
  .primary-nav {
    display: block;
  }

  .primary-nav ul {
    flex-direction: row;
    margin-top: 0;
  }

  .nav-toggle {
    display: none;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(50% - 1rem);
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .testimonials {
    flex-direction: row;
  }

  .testimonial {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .split > div {
    flex: 1;
  }

  .comparison-row {
    flex-direction: row;
    align-items: center;
  }

  .comparison-row > div {
    flex: 1;
  }

  .footer-columns {
    flex-direction: row;
    justify-content: space-between;
  }

  .info-grid {
    flex-direction: row;
  }

  .info-card {
    flex: 1;
  }
}
