* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f1b16;
  --muted: #5e554a;
  --accent: #9b6b3b;
  --accent-dark: #7c4f2a;
  --soft: #f6f1ea;
  --panel: #efe7dd;
  --border: #ded3c5;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fbf9f6;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--soft);
}

.section.panel {
  background: var(--panel);
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.section-subtitle {
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 700px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.logo {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: none;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--muted);
}

.menu-toggle {
  background: transparent;
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 20px 24px;
  border-top: 1px solid var(--border);
  background: #fff;
}

.mobile-nav a {
  color: var(--muted);
  font-weight: 600;
}

.hero {
  padding: 72px 0 64px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: 2.4rem;
  line-height: 1.2;
}

.hero p {
  color: var(--muted);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card strong {
  font-size: 1.05rem;
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--panel);
  display: flex;
  align-items: center;
  justify-content: center;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stat-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  padding: 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
}

.stat span {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.testimonial {
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 18px 20px;
  border-radius: 12px;
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.list-item span {
  font-weight: 600;
  color: var(--accent);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
}

.faq-question {
  background: transparent;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-answer {
  margin-top: 12px;
  color: var(--muted);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--muted);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-card {
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border);
}

.service-price {
  color: var(--accent);
  font-weight: 700;
}

.site-footer {
  background: #1f1b16;
  color: #f8f3ec;
  padding: 40px 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-grid a {
  color: #f8f3ec;
}

.footer-meta {
  color: #d7cab8;
  font-size: 0.9rem;
}

.footer-links {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  z-index: 60;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(27, 23, 17, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 70;
}

.cookie-modal[hidden] {
  display: none;
}

.cookie-panel {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.toggle {
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.toggle[aria-pressed="true"] {
  background: var(--accent);
  color: #fff;
}

.cookie-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none;
  }

  .hero {
    padding: 96px 0 80px;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 260px;
  }

  .split {
    flex-direction: row;
  }

  .split > * {
    flex: 1;
  }

  .stat-grid {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .comparison {
    flex-direction: row;
  }

  .comparison-card {
    flex: 1;
  }
}
