*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f1c1a;
  background: #fbfaf8;
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section--alt {
  background: #f1ece6;
}

.section--dark {
  background: #1f1c1a;
  color: #f7f3ee;
}

.section-title {
  font-size: 1.9rem;
  margin: 0 0 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: #7a6d63;
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: #6b3b2a;
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  background: #563022;
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: inherit;
  border: 1px solid currentColor;
}

.site-header {
  position: sticky;
  top: 0;
  background: #fbfaf8;
  border-bottom: 1px solid #e2d8cf;
  z-index: 50;
}

.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;
  align-items: center;
  font-weight: 600;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid #bfae9f;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
}

.mobile-panel {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(320px, 86%);
  background: #fbfaf8;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: -12px 0 24px rgba(0, 0, 0, 0.12);
}

.nav-open .mobile-panel {
  transform: translateX(0);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 15, 12, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.nav-open .overlay {
  opacity: 1;
  pointer-events: auto;
}

.hero {
  padding: 96px 0 72px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero h1 {
  font-size: 2.4rem;
  margin: 0;
}

.hero p {
  font-size: 1.05rem;
}

.hero-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid #e4d8cf;
  box-shadow: 0 16px 32px rgba(31, 28, 26, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.grid--two {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid #eadfd6;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card svg {
  width: 40px;
  height: 40px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f4efe9;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
  color: #6b3b2a;
  font-weight: 600;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px;
  background: #f7f2ed;
  border-radius: 18px;
}

.stat strong {
  font-size: 1.8rem;
}

.testimonial {
  background: #fff;
  border-left: 4px solid #6b3b2a;
  padding: 24px;
  border-radius: 16px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #6b3b2a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.quote-block {
  font-size: 1.4rem;
  font-style: italic;
}

.faq-item {
  border-bottom: 1px solid #dccfc4;
  padding: 16px 0;
}

.faq-question {
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding-top: 10px;
  color: #4e4640;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid #e8dcd2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #6b3b2a;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-item {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #e7dbd1;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-block {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid #e4d8cf;
}

.site-footer {
  background: #1f1c1a;
  color: #f7f3ee;
  padding: 48px 0 32px;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-banner {
  position: fixed;
  inset: auto 16px 16px 16px;
  background: #1f1c1a;
  color: #f7f3ee;
  padding: 18px;
  border-radius: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 80;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(20, 15, 12, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 90;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px;
  border-radius: 12px;
  background: #f5f0eb;
}

.toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.toggle button {
  width: 44px;
  height: 26px;
  border-radius: 999px;
  border: none;
  background: #c8b6a7;
  position: relative;
  cursor: pointer;
}

.toggle button::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.2s ease;
}

.toggle button[aria-checked="true"] {
  background: #6b3b2a;
}

.toggle button[aria-checked="true"]::after {
  transform: translateX(18px);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-panel,
  .overlay {
    display: none;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .grid--two {
    flex-direction: row;
  }

  .grid--two > * {
    flex: 1;
  }

  .grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .grid > * {
    flex: 1 1 calc(33.333% - 24px);
  }

  .cookie-actions {
    flex-direction: row;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
