* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f5f2;
  --text: #1f1d1a;
  --muted: #5e5a55;
  --accent: #3f6b5a;
  --accent-dark: #2c4b40;
  --light: #ffffff;
  --sand: #efe7dd;
  --stone: #d7cbbd;
  --highlight: #f0ede8;
  --shadow: 0 18px 40px rgba(31, 29, 26, 0.08);
}

body {
  font-family: "Segoe UI", "Trebuchet MS", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 3.5rem 0;
}

.section.alt {
  background: var(--highlight);
}

.section.sand {
  background: var(--sand);
}

.section-title {
  font-size: 1.9rem;
  margin-bottom: 1rem;
}

.section-lead {
  color: var(--muted);
  max-width: 680px;
}

.site-header {
  background: var(--light);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links {
  display: none;
  gap: 1.5rem;
}

.nav-links a {
  font-weight: 500;
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--accent);
}

.menu-toggle {
  background: var(--accent);
  color: var(--light);
  border: none;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.mobile-menu {
  background: var(--light);
  padding: 1.2rem 1.6rem;
  border-top: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.mobile-menu a {
  color: var(--muted);
  font-weight: 600;
}

.hero {
  padding: 4rem 0 3rem;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-card {
  background: var(--light);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero h1 {
  font-size: 2.4rem;
  line-height: 1.2;
}

.hero p {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: var(--light);
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn.secondary {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn.light {
  background: var(--light);
  color: var(--accent);
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
  box-shadow: 0 12px 25px rgba(63, 107, 90, 0.2);
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-top: 2rem;
}

.card {
  background: var(--light);
  border-radius: 18px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.card h3 {
  font-size: 1.2rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  background: var(--sand);
  color: var(--accent-dark);
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.icon-row {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.icon-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-circle svg {
  width: 24px;
  height: 24px;
  fill: var(--light);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.panel {
  background: var(--light);
  padding: 1.6rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.stat-bar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat {
  background: var(--light);
  border-radius: 14px;
  padding: 1.1rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.stat strong {
  font-size: 1.5rem;
}

.quote {
  background: var(--accent-dark);
  color: var(--light);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial {
  background: var(--light);
  padding: 1.4rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: var(--light);
  border-radius: 14px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.faq-item {
  background: var(--light);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.2rem;
  background: var(--light);
  border: none;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-answer {
  padding: 0 1.2rem 1.2rem;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.cta-panel {
  background: var(--accent);
  color: var(--light);
  padding: 2.5rem;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card {
  border: 1px solid var(--stone);
  border-radius: 16px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  background: var(--light);
}

.service-card strong {
  font-size: 1.1rem;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.tag {
  background: var(--stone);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--accent-dark);
}

.site-footer {
  background: var(--accent-dark);
  color: var(--light);
  padding: 2.5rem 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--light);
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--light);
  padding: 1rem 1.4rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  width: min(680px, 92%);
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30;
}

.cookie-modal .modal-content {
  background: var(--light);
  padding: 2rem;
  border-radius: 20px;
  width: min(640px, 90%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.show {
  display: flex;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  .hero-grid {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-card {
    flex: 1;
  }

  .card-grid,
  .testimonial-grid,
  .icon-row {
    flex-direction: row;
  }

  .card,
  .testimonial {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split > div {
    flex: 1;
  }

  .stat-bar {
    flex-direction: row;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
