:root {
  --bg: #f7f4f1;
  --text: #1d1b1f;
  --muted: #5a5560;
  --brand: #4a2f7b;
  --brand-dark: #2f1f52;
  --accent: #2f8a7f;
  --warm: #f0e6dd;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "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%;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--white);
}

.section.accent {
  background: var(--warm);
}

.eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 12px;
}

h1, h2, h3 {
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
}

.lead {
  font-size: 1.1rem;
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: var(--white);
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--brand);
}

.btn:focus-visible,
.nav-toggle:focus-visible,
.faq-question:focus-visible,
.modal-close:focus-visible,
.cookie-actions button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

header {
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--brand-dark);
}

.brand svg {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: none;
  gap: 20px;
  align-items: center;
  font-weight: 500;
}

.nav-links a {
  color: var(--muted);
}

.nav-toggle {
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0 24px;
}

.mobile-menu a {
  color: var(--muted);
  font-weight: 500;
}

.mobile-menu.open {
  display: flex;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.stats-row,
.cards,
.features,
.testimonials,
.values,
.steps,
.service-grid,
.compare-row,
.info-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card,
.feature,
.testimonial,
.value,
.step,
.service-card,
.compare-card,
.info-card {
  background: var(--white);
  padding: 22px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.feature svg,
.value svg {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
}

.quote {
  background: var(--brand-dark);
  color: var(--white);
  padding: 30px;
  border-radius: var(--radius);
}

.quote p {
  color: var(--white);
}

.stats-row .card {
  text-align: left;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(47, 138, 127, 0.12);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.mt-1 {
  margin-top: 8px;
}

.mt-2 {
  margin-top: 16px;
}

.mt-3 {
  margin-top: 24px;
}

.mt-4 {
  margin-top: 32px;
}

.ml-2 {
  margin-left: 12px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 18px 20px;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-answer {
  padding: 0 20px 18px;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.footer {
  padding: 40px 0;
  background: var(--brand-dark);
  color: var(--white);
}

.footer .links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.8);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: none;
  z-index: 30;
}

.cookie-banner.show {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: var(--white);
  font-weight: 600;
}

.cookie-actions button.secondary {
  background: transparent;
  color: var(--brand);
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 40;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: var(--white);
  border-radius: 18px;
  padding: 24px;
  max-width: 520px;
  width: 100%;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.modal-close {
  border: none;
  background: transparent;
  font-size: 1.2rem;
  align-self: flex-end;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table .row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--white);
  padding: 18px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(74, 47, 123, 0.12);
  color: var(--brand);
  font-size: 0.8rem;
}

@media (min-width: 760px) {
  .nav-links {
    display: flex;
  }

  .nav-toggle,
  .mobile-menu {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero > div {
    flex: 1;
  }

  .cards,
  .features,
  .values,
  .steps,
  .service-grid,
  .testimonials,
  .stats-row,
  .compare-row,
  .info-row {
    flex-direction: row;
  }

  .card,
  .feature,
  .value,
  .step,
  .service-card,
  .testimonial,
  .compare-card,
  .info-card {
    flex: 1;
  }

  .split {
    flex-direction: row;
  }

  .cookie-actions,
  .modal-actions {
    flex-direction: row;
  }

  .table .row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
