:root {
  --bg: #f7f6f2;
  --surface: #ffffff;
  --ink: #1d1f1f;
  --muted: #5d6460;
  --brand: #2e7d6f;
  --brand-dark: #215e54;
  --accent: #c3b37a;
  --line: #e4e0d4;
  --shadow: 0 10px 30px rgba(30, 36, 34, 0.08);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.section {
  padding: 48px 0;
}

.section--alt {
  background: var(--surface);
}

.section--contrast {
  background: #eef3f0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--brand);
  font-weight: 600;
}

.headline {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin: 8px 0 16px;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--brand);
  color: var(--brand);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e0ece8;
  color: var(--brand-dark);
  font-weight: 600;
  font-size: 0.85rem;
}

header {
  position: sticky;
  top: 0;
  background: rgba(247, 246, 242, 0.92);
  backdrop-filter: blur(12px);
  z-index: 20;
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand svg {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: none;
  gap: 22px;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
}

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px 4%;
  box-shadow: var(--shadow);
}

.mobile-nav a {
  padding: 10px 8px;
  border-radius: 8px;
  color: var(--muted);
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  background: #f1f4f2;
  color: var(--ink);
}

.mobile-nav.is-open {
  display: flex;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.grid-cards,
.feature-list,
.stats,
.testimonial-list,
.faq-list,
.services-list,
.comparison,
.steps,
.case-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
}

.icon {
  width: 44px;
  height: 44px;
}

.feature-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-row .icon {
  flex-shrink: 0;
}

.stats .card {
  text-align: center;
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.quote {
  font-style: italic;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--muted);
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  background: var(--surface);
}

.faq-item button {
  width: 100%;
  text-align: left;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.faq-answer {
  margin-top: 10px;
  color: var(--muted);
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.comparison-row strong {
  color: var(--brand-dark);
}

.cta {
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta .btn {
  background: #fff;
  color: var(--brand);
}

footer {
  background: #1e2523;
  color: #e3ebe6;
  padding: 36px 0;
}

footer a {
  color: inherit;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-meta {
  color: #b2bdb7;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--surface);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(27, 31, 30, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 40;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal__panel {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  width: min(520px, 100%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-option {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-block {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tagline {
  font-weight: 600;
  color: var(--brand-dark);
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 12px 0;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .nav-toggle,
  .mobile-nav {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .grid-cards,
  .feature-list,
  .stats,
  .testimonial-list,
  .faq-list,
  .services-list,
  .comparison,
  .steps,
  .case-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .grid-cards .card,
  .feature-list .card,
  .stats .card,
  .testimonial-list .card,
  .services-list .card,
  .case-list .card {
    flex: 1 1 calc(50% - 18px);
  }

  .comparison-row {
    flex: 1 1 calc(50% - 18px);
  }

  .contact-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact-grid .info-block {
    flex: 1 1 calc(50% - 18px);
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
  }
}

@media (min-width: 1024px) {
  .grid-cards .card,
  .feature-list .card,
  .stats .card,
  .testimonial-list .card,
  .services-list .card,
  .case-list .card {
    flex: 1 1 calc(33% - 18px);
  }

  .comparison-row {
    flex: 1 1 calc(33% - 18px);
  }
}
