* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f6f4ef;
  --text: #2b2b2b;
  --muted: #6d6a66;
  --accent: #8c5a3c;
  --accent-dark: #6f442c;
  --panel: #ffffff;
  --sand: #efe7dc;
  --sage: #e3eadf;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 24px 18px 64px;
}

.section {
  background: var(--panel);
  border-radius: 18px;
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 12px 32px rgba(28, 25, 23, 0.08);
}

.section.alt {
  background: var(--sand);
}

.section.accent {
  background: var(--sage);
}

.container {
  width: min(1100px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

header {
  background: var(--panel);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand span {
  font-size: 1.2rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.menu-toggle {
  background: var(--accent);
  border: none;
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 12px 20px 20px;
}

.nav-links.open {
  display: flex;
}

.nav-links a {
  font-weight: 600;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.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: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  font-size: 1.1rem;
}

.muted {
  color: var(--muted);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-item svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 16px;
  background: #fff;
  border-radius: 14px;
}

.stat strong {
  font-size: 1.6rem;
}

.testimonial {
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 16px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quote {
  font-style: italic;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  background: transparent;
  border: none;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 16px 14px;
  display: none;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  border-radius: 14px;
  background: #fff;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
}

footer {
  background: #1f1b17;
  color: #fefcf8;
  padding: 32px 18px;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-grid a {
  color: #fefcf8;
  opacity: 0.9;
}

.cookie-banner,
.cookie-modal {
  position: fixed;
  left: 18px;
  right: 18px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 18px;
  z-index: 40;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner {
  bottom: 18px;
}

.cookie-modal {
  inset: 0;
  background: rgba(31, 27, 23, 0.45);
  padding: 24px;
  border-radius: 0;
  align-items: center;
  justify-content: center;
}

.cookie-banner.show,
.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  width: min(420px, 100%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chip {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sand);
  font-size: 0.85rem;
}

.modal-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--sand);
  padding: 10px 12px;
  border-radius: 12px;
}

@media (min-width: 720px) {
  .nav-links {
    display: flex;
    flex-direction: row;
    padding: 0;
  }

  .menu-toggle {
    display: none;
  }

  main {
    padding: 40px 32px 80px;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-content,
  .hero-visual {
    flex: 1;
  }

  .hero-actions {
    flex-direction: row;
  }

  .split {
    flex-direction: row;
  }

  .cards,
  .service-grid,
  .feature-list,
  .stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .service-card,
  .feature-item,
  .stat {
    flex: 1;
    min-width: 220px;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-banner {
    width: 420px;
    left: auto;
    right: 32px;
  }

  .cookie-modal {
    left: 0;
    right: 0;
  }

  .cookie-actions {
    flex-direction: row;
  }
}
