* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f5f2;
  --text: #1e1d1b;
  --muted: #5a5a56;
  --brand: #1f5f5b;
  --brand-2: #c59b4a;
  --surface: #ffffff;
  --line: #e3dfd6;
  --focus: #1f5f5b;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 10px 16px;
  background: var(--brand);
  color: #fff;
  border-radius: 6px;
}

.header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.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.3px;
}

.brand span {
  color: var(--brand);
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px 0;
}

.nav-links a {
  color: var(--muted);
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--brand);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 8px 12px;
  border-radius: 8px;
}

.menu-toggle:focus {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.nav-open .nav-links {
  display: flex;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
}

.cta.secondary {
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--brand);
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--surface);
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.section-lead {
  color: var(--muted);
  max-width: 780px;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  flex: 1 1 260px;
}

.card.highlight {
  border-color: var(--brand-2);
  background: #fff7e8;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #edf4f3;
  color: var(--brand);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.hero {
  padding: 72px 0 48px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: 2.4rem;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.stat {
  flex: 1 1 150px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
}

.stat strong {
  display: block;
  font-size: 1.4rem;
  color: var(--brand);
}

.icon-line {
  display: flex;
  align-items: center;
  gap: 12px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list li {
  margin-left: 18px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 3px solid var(--brand-2);
  padding-left: 16px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  border: none;
  background: var(--surface);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.faq-answer {
  padding: 0 16px 16px;
  display: none;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px;
  border-radius: 12px;
  background: #f0f5f4;
}

.footer {
  background: #121212;
  color: #f1f1f1;
  padding: 40px 0;
}

.footer a {
  color: #f1f1f1;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer small {
  color: #c6c6c6;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: #eff1ed;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.9rem;
}

.banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  display: none;
  z-index: 30;
}

.banner.visible {
  display: block;
}

.banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 40;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--surface);
  padding: 22px;
  border-radius: 16px;
  max-width: 520px;
  width: 100%;
  border: 1px solid var(--line);
}

.modal h2 {
  margin-top: 0;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
}

.muted {
  color: var(--muted);
}

.section-divider {
  height: 1px;
  background: var(--line);
  margin: 24px 0;
}

.alert {
  background: #eaf3f2;
  padding: 16px;
  border-radius: 12px;
  border-left: 3px solid var(--brand);
}

@media (min-width: 800px) {
  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    padding: 0;
  }

  .menu-toggle {
    display: none;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-text,
  .hero-panel {
    flex: 1 1 50%;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .split > * {
    flex: 1 1 50%;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .comparison-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
