* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f6f3ef;
  --bg-alt: #ffffff;
  --text: #1f1b16;
  --muted: #5c554d;
  --accent: #b4372f;
  --accent-dark: #8f2c26;
  --soft: #efe7df;
  --border: #ded2c7;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 1rem;
}

.nav-toggle {
  background: none;
  border: 1px solid var(--border);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--bg-alt);
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
}

.nav-links a {
  font-weight: 600;
}

.nav-links.is-open {
  display: flex;
}

.hero {
  padding: 3.5rem 0;
  background: linear-gradient(120deg, #fdfbfa, #f2e7dd);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero h1 {
  font-size: 2.2rem;
  line-height: 1.2;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--accent-dark);
}

.btn-secondary {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.section {
  padding: 3rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section h2 {
  font-size: 1.7rem;
  margin-bottom: 1rem;
}

.section p {
  color: var(--muted);
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card strong {
  font-size: 1.05rem;
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat {
  background: var(--soft);
  border-radius: 1rem;
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.stat span {
  font-weight: 700;
  font-size: 1.4rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.quote {
  background: var(--accent);
  color: #fff;
  padding: 2rem;
  border-radius: 1.5rem;
  font-size: 1.1rem;
}

.quote-author {
  margin-top: 1rem;
  font-weight: 600;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.tag {
  background: var(--soft);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.timeline-item {
  border-left: 3px solid var(--accent);
  padding-left: 1.2rem;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card {
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  padding: 1.6rem;
  background: var(--bg-alt);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.service-card span {
  font-weight: 700;
  color: var(--accent);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.comparison-item {
  background: var(--soft);
  border-radius: 1rem;
  padding: 1.4rem;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--bg-alt);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.2rem;
  background: none;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.2rem 1rem;
  display: none;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.cta-panel {
  background: var(--accent-dark);
  color: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer {
  background: #14110f;
  color: #eee;
  padding: 2rem 0;
}

.footer a {
  color: #eee;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.2rem;
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 100;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 120;
}

.modal.is-open {
  display: flex;
}

.modal-content {
  background: var(--bg-alt);
  padding: 2rem;
  border-radius: 1.2rem;
  width: min(560px, 95%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.toggle-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem;
  background: var(--soft);
  border-radius: 0.8rem;
}

.toggle-buttons {
  display: flex;
  gap: 0.4rem;
}

.toggle-btn {
  border: 1px solid var(--border);
  background: #fff;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  cursor: pointer;
}

.toggle-btn.is-active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

@media (min-width: 720px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    border: none;
    padding: 0;
    background: transparent;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-actions {
    flex-direction: row;
  }

  .card-grid,
  .stats,
  .service-list,
  .comparison,
  .faq,
  .footer-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .stat,
  .service-card,
  .comparison-item,
  .faq-item {
    flex: 1 1 calc(50% - 1rem);
  }

  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .cookie-actions {
    flex-direction: row;
  }
}

@media (min-width: 980px) {
  .card,
  .service-card,
  .comparison-item,
  .faq-item {
    flex: 1 1 calc(33% - 1rem);
  }

  .stat {
    flex: 1 1 calc(25% - 1rem);
  }
}
