* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f4ef;
  --text: #1f1b16;
  --muted: #5c5147;
  --primary: #b2852b;
  --primary-dark: #8c651e;
  --accent: #2f6b6b;
  --card: #ffffff;
  --line: #e4ddd3;
  --shadow: 0 18px 40px rgba(31, 27, 22, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: #fffaf3;
}

.section.dark {
  background: #1f1b16;
  color: #f6efe6;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--accent);
}

.title {
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  margin: 12px 0 16px;
}

.subtitle {
  color: var(--muted);
  max-width: 640px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  font-weight: 600;
  transition: background 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: var(--primary-dark);
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.pill {
  padding: 6px 14px;
  border-radius: 999px;
  background: #f0e8dc;
  font-size: 0.85rem;
  color: var(--muted);
}

.spacer {
  height: 18px;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 244, 239, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.1rem;
}

.brand svg {
  width: 36px;
  height: 36px;
}

.nav-links {
  display: none;
  gap: 18px;
  font-weight: 600;
}

.nav-links a {
  padding: 6px 0;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  display: block;
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--text);
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(31, 27, 22, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 30;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-panel {
  background: white;
  height: 100%;
  width: min(320px, 86%);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateX(-100%);
  transition: transform 0.25s ease;
}

.mobile-menu.open .mobile-panel {
  transform: translateX(0);
}

.mobile-panel a {
  font-size: 1.1rem;
  font-weight: 600;
}

.grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--card);
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid #f1ece4;
}

.card.simple {
  box-shadow: none;
  border: 1px solid var(--line);
}

.icon-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.icon {
  width: 44px;
  height: 44px;
  background: #f3ede3;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon svg {
  width: 24px;
  height: 24px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-radius: 14px;
  background: #f3ede3;
  font-weight: 600;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote {
  background: #fffdf8;
  border-left: 4px solid var(--primary);
  padding: 20px 20px 20px 24px;
  border-radius: 12px;
  font-style: italic;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price {
  font-weight: 700;
  color: var(--primary-dark);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-answer {
  padding: 0 16px 16px;
  display: none;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  padding: 8px 14px;
  background: #f3ede3;
  border-radius: 999px;
  font-size: 0.85rem;
}

.cta {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

footer {
  padding: 40px 0;
  background: #1a1714;
  color: #e6ded5;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  background: #1f1b16;
  color: #f6efe6;
  padding: 18px 0;
  z-index: 50;
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-banner .container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(31, 27, 22, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-panel {
  background: white;
  border-radius: 16px;
  padding: 24px;
  width: min(520px, 96%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.toggle-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f3ede3;
}

.toggle-row button {
  background: white;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.breadcrumb {
  font-size: 0.9rem;
  color: var(--muted);
}

.info-block {
  background: #f0e8dc;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .grid > * {
    flex: 1 1 calc(50% - 20px);
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .testimonials {
    flex-direction: row;
  }

  .testimonials .card,
  .testimonials .quote {
    flex: 1;
  }

  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-list .card {
    flex: 1 1 calc(50% - 18px);
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }

  .cookie-banner .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-actions {
    flex-direction: row;
  }

  .footer-links {
    flex-direction: row;
    gap: 16px;
  }
}
