* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1c2423;
  background: #f7f5f2;
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  background: #f7f5f2;
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid #ded7ce;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.brand-mark {
  width: 36px;
  height: 36px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: absolute;
  top: 64px;
  right: 0;
  background: #ffffff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  width: 220px;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
}

.nav-links.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-links a {
  font-size: 0.95rem;
  padding: 6px 0;
}

.mobile-toggle {
  border: 1px solid #d7c9b6;
  background: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
}

.hero {
  padding: 48px 0 32px;
}

.hero-card {
  background: #1f4d4a;
  color: #f7f5f2;
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: #d9b27c;
  color: #1f4d4a;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn.secondary {
  background: transparent;
  border-color: #d9b27c;
  color: #f7f5f2;
}

.btn.ghost {
  background: transparent;
  border-color: #1f4d4a;
  color: #1f4d4a;
}

.btn:hover {
  transform: translateY(-2px);
}

.section {
  padding: 42px 0;
}

.section.alt {
  background: #ffffff;
}

.section-header {
  margin-bottom: 24px;
}

.section-header h2 {
  margin: 0 0 10px;
  font-size: 1.6rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #ece4d8;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.highlight {
  background: #f0ece6;
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon {
  width: 40px;
  height: 40px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: #1f4d4a;
  color: #f7f5f2;
  padding: 18px;
  border-radius: 14px;
}

.stat strong {
  font-size: 1.5rem;
  display: block;
}

.quote {
  background: #fff;
  border-left: 4px solid #d9b27c;
  padding: 20px;
  border-radius: 12px;
  font-style: italic;
}

.process {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.process-step span {
  background: #1f4d4a;
  color: #f7f5f2;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testimonial {
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid #eee3d4;
}

.testimonial strong {
  display: block;
  margin-top: 8px;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comparison-item {
  padding: 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e7ddcf;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid #eadfce;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  background: transparent;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  padding: 0 16px 14px;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price {
  font-weight: 600;
  color: #1f4d4a;
}

.site-footer {
  background: #1c2423;
  color: #f7f5f2;
  padding: 32px 0;
  margin-top: 48px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #1c2423;
  color: #f7f5f2;
  padding: 16px;
  border-radius: 16px;
  display: none;
  z-index: 30;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 40;
}

.cookie-modal.active {
  display: flex;
}

.cookie-panel {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  width: min(520px, 100%);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid #eadfce;
  padding: 12px;
  border-radius: 12px;
}

.pill {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  background: #f0ece6;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.info-list li {
  padding: 10px 12px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eadfce;
}

.divider {
  height: 2px;
  background: #e3d8c8;
  border: none;
  margin: 24px 0;
}

@media (min-width: 768px) {
  .nav-links {
    position: static;
    flex-direction: row;
    width: auto;
    background: transparent;
    padding: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    gap: 18px;
  }

  .mobile-toggle {
    display: none;
  }

  .hero-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .split > * {
    flex: 1;
  }

  .cards,
  .service-grid,
  .stats,
  .comparison {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .comparison-item,
  .testimonial,
  .stat {
    flex: 1 1 240px;
  }

  .process {
    flex-direction: row;
  }

  .process-step {
    flex: 1;
  }

  .footer-links {
    flex-direction: row;
    gap: 18px;
  }

  .cookie-banner {
    left: auto;
    right: 24px;
    max-width: 420px;
  }
}
