*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1c1a1b;
  --muted: #5c5155;
  --accent: #8b1d2c;
  --accent-dark: #6f1622;
  --sand: #f6f1ef;
  --fog: #efe7e4;
  --sea: #0f4b5a;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 14px 40px rgba(17, 14, 15, 0.12);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--white);
  border-bottom: 1px solid var(--fog);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 1px;
  color: var(--accent);
}

.site-nav {
  display: none;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-list a {
  font-weight: 600;
  color: var(--ink);
}

.nav-list a:hover,
.nav-list a:focus {
  color: var(--accent);
}

.menu-toggle {
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 20px 24px;
  background: var(--white);
  border-top: 1px solid var(--fog);
}

.mobile-menu a {
  font-weight: 600;
}

.section {
  padding: 64px 0;
}

.section-tight {
  padding: 40px 0;
}

.section-alt {
  background: var(--sand);
}

.section-accent {
  background: var(--accent);
  color: var(--white);
}

.hero {
  background: linear-gradient(135deg, #f7eeee 0%, #f1e5e2 45%, #f7f1ef 100%);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero h1 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin: 0 0 12px;
}

.hero p {
  margin: 0 0 20px;
  color: var(--muted);
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--accent);
  color: var(--white);
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--white);
  border: 1px solid var(--fog);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 8px 24px rgba(24, 18, 20, 0.08);
}

.card h3 {
  margin-top: 0;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: var(--fog);
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.highlight-panel {
  background: var(--white);
  border-left: 6px solid var(--accent);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  border: 1px solid var(--fog);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.stat span {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--fog);
}

.testimonial strong {
  display: block;
  margin-top: 12px;
  color: var(--accent);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-item img {
  width: 36px;
  height: 36px;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  background: var(--fog);
  border-radius: var(--radius);
}

.comparison-row strong {
  color: var(--accent);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--fog);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.faq-button {
  width: 100%;
  text-align: left;
  background: var(--white);
  border: none;
  padding: 16px 18px;
  font-weight: 600;
  cursor: pointer;
}

.faq-content {
  padding: 0 18px 18px;
  color: var(--muted);
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer {
  background: var(--ink);
  color: var(--white);
  padding: 36px 0;
}

.footer a {
  color: var(--white);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--white);
  border-radius: 18px;
  border: 1px solid var(--fog);
  padding: 18px;
  box-shadow: var(--shadow);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(17, 14, 15, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 60;
  padding: 20px;
}

.cookie-modal-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  max-width: 540px;
  width: 100%;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.toggle-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toggle {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--fog);
  background: var(--sand);
  font-weight: 600;
}

[hidden] {
  display: none !important;
}

@media (min-width: 800px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-cta {
    flex-direction: row;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 260px;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .testimonials {
    flex-direction: row;
  }

  .testimonial {
    flex: 1;
  }

  .feature-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature-item {
    flex: 1 1 240px;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }

  .contact-block {
    flex-direction: row;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cookie-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (min-width: 900px) {
  .site-nav {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none;
  }
}
