* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f7f4f0;
  --surface: #ffffff;
  --surface-muted: #efe9e1;
  --text: #2a2a2a;
  --muted: #5f5c58;
  --brand: #2f5d50;
  --brand-light: #5e8a7c;
  --accent: #c07b3e;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  --radius: 20px;
}

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%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.section {
  padding: 3.5rem 0;
}

.section.alt {
  background: var(--surface-muted);
}

.section.panel {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 0 auto 2.5rem;
  width: min(1100px, 92%);
  padding: 2.5rem;
}

.section h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  margin-bottom: 1rem;
}

.section p {
  color: var(--muted);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: var(--brand-light);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: var(--brand);
  color: #fff;
}

.site-header {
  background: var(--surface);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--brand);
}

.main-nav ul {
  display: none;
  gap: 1.5rem;
  align-items: center;
}

.main-nav a {
  font-weight: 600;
  color: var(--muted);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--brand);
}

.menu-toggle {
  background: none;
  border: 2px solid var(--brand);
  color: var(--brand);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--surface);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-nav a {
  font-weight: 600;
  color: var(--text);
}

.hero {
  padding: 4rem 0 3rem;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.2;
}

.hero-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface-muted);
  padding: 1rem 1.2rem;
  border-radius: 16px;
}

.stat strong {
  font-size: 1.4rem;
  color: var(--brand);
}

.grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.card.highlight {
  background: var(--brand);
  color: #fff;
}

.card.highlight p {
  color: rgba(255, 255, 255, 0.8);
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle svg {
  width: 24px;
  height: 24px;
  fill: var(--brand);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.split .panel {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timeline-item {
  background: var(--surface);
  padding: 1rem 1.2rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.quote {
  font-size: 1.4rem;
  font-style: italic;
  color: var(--brand);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.tag {
  background: var(--surface);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  color: var(--brand);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-card {
  background: var(--surface);
  padding: 1.6rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.service-card .price {
  font-weight: 700;
  color: var(--accent);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-row {
  background: var(--surface);
  padding: 1rem 1.2rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial {
  background: var(--surface);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.testimonial p {
  color: var(--muted);
}

.stats-bar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stats-bar .stat {
  flex-direction: row;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  background: var(--surface);
  border-radius: 16px;
  padding: 1rem 1.2rem;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.faq-answer {
  margin-top: 0.6rem;
  color: var(--muted);
}

.faq-answer[hidden] {
  display: none;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.info-item {
  background: var(--surface);
  padding: 1rem 1.2rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer {
  background: var(--surface);
  padding: 2.5rem 0;
  margin-top: 3rem;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cookie-banner,
.cookie-modal {
  position: fixed;
  inset: auto 1.5rem 1.5rem 1.5rem;
  background: var(--surface);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 1.5rem;
  z-index: 40;
}

.cookie-banner p,
.cookie-modal p {
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1rem;
}

.cookie-modal {
  inset: 0;
  margin: auto;
  width: min(520px, 92%);
  height: fit-content;
  display: none;
}

.cookie-modal.open {
  display: block;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1rem;
}

.cookie-option {
  background: var(--surface-muted);
  padding: 0.8rem 1rem;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hidden {
  display: none;
}

.button-row {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.content-gap {
  margin-top: 1.5rem;
}

.content-gap-sm {
  margin-top: 1.2rem;
}

@media (min-width: 768px) {
  .main-nav ul {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-card {
    max-width: 420px;
  }

  .grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .grid .card {
    flex: 1 1 260px;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .split > * {
    flex: 1 1 0;
  }

  .services-list .service-card {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .services-list .service-info {
    flex: 1;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1 1 0;
  }

  .steps {
    flex-direction: row;
  }

  .step {
    flex: 1 1 0;
  }

  .testimonials {
    flex-direction: row;
  }

  .testimonial {
    flex: 1 1 0;
  }

  .stats-bar {
    flex-direction: row;
  }

  .stats-bar .stat {
    flex: 1 1 0;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-actions {
    flex-direction: row;
    justify-content: flex-start;
  }
}
