* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f7f5f2;
  --text: #1f2a24;
  --muted: #55635b;
  --accent: #2f6f5e;
  --accent-dark: #1f4d40;
  --sand: #efe7db;
  --stone: #e1ded8;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(31, 42, 36, 0.12);
  --radius: 18px;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

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: var(--white);
}

.section.sand {
  background: var(--sand);
}

.section.stone {
  background: var(--stone);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 600;
}

.section-title {
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  margin-bottom: 16px;
}

.section-text {
  color: var(--muted);
  max-width: 720px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.secondary {
  background: var(--accent-dark);
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.btn.ghost:hover,
.btn.ghost:focus-visible {
  background: var(--accent);
  color: var(--white);
}

header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 6px 20px rgba(31, 42, 36, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.1rem;
}

.brand svg {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 14px;
  background: var(--white);
  padding: 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: absolute;
  right: 4%;
  top: 76px;
  min-width: 200px;
}

.nav-links.active {
  display: flex;
}

.nav-links a {
  font-weight: 600;
  color: var(--text);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--stone);
  background: var(--bg);
}

.hero {
  padding: 80px 0;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-card {
  background: var(--white);
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-weight: 600;
}

.icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.icon-card {
  flex: 1 1 210px;
  background: var(--white);
  padding: 22px;
  border-radius: var(--radius);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.icon-card svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.highlight-panel {
  background: var(--accent);
  color: var(--white);
  padding: 28px;
  border-radius: var(--radius);
}

.stats-bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--white);
  border-radius: 999px;
  font-weight: 600;
}

.stat span {
  color: var(--accent);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--white);
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(31, 42, 36, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial {
  background: var(--accent-dark);
  color: var(--white);
  padding: 26px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.quote {
  font-size: 1.1rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--stone);
  font-weight: 600;
  color: var(--muted);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--stone);
}

.faq-question {
  padding: 18px;
  width: 100%;
  text-align: left;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-answer {
  padding: 0 18px 18px;
  color: var(--muted);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  background: var(--white);
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-price {
  font-weight: 700;
  color: var(--accent);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comparison-row {
  background: var(--white);
  padding: 16px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

.cta {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

footer {
  background: var(--text);
  color: var(--white);
  padding: 40px 0 60px;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--white);
  opacity: 0.9;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: min(520px, 92%);
  display: none;
  flex-direction: column;
  gap: 14px;
  z-index: 20;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(31, 42, 36, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 30;
}

.cookie-modal.visible {
  display: flex;
}

.cookie-modal-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  width: min(520px, 94%);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.toggle-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--sand);
}

.toggle button {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--stone);
  font-weight: 600;
}

.toggle button.active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    flex-direction: row;
    gap: 22px;
    background: transparent;
    padding: 0;
    box-shadow: none;
    display: flex;
  }

  .hero-grid {
    flex-direction: row;
    align-items: center;
  }

  .hero-card {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .split > * {
    flex: 1;
  }

  .cards {
    flex-direction: row;
  }

  .card,
  .testimonial {
    flex: 1;
  }

  .process-steps {
    flex-direction: row;
  }

  .step {
    flex: 1;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 240px;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
