*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f7f4ef;
  --bg-alt: #ffffff;
  --ink: #1f2933;
  --muted: #5f6b73;
  --brand: #2e6f68;
  --brand-dark: #1f4d48;
  --accent: #e7b56a;
  --line: #d9d2c8;
  --shadow: 0 12px 30px rgba(31, 41, 51, 0.08);
  font-size: 16px;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section {
  padding: 3.5rem 0;
}

.section.alt {
  background: var(--bg-alt);
}

.section.accent {
  background: #f1ebe2;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--brand);
  font-weight: 600;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  background: var(--brand-dark);
  color: #fff;
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
  background: var(--brand);
  color: #fff;
}

header {
  position: sticky;
  top: 0;
  background: rgba(247, 244, 239, 0.95);
  backdrop-filter: blur(8px);
  z-index: 20;
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.1rem;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logo-mark svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.nav-links {
  display: none;
  gap: 1.5rem;
  align-items: center;
  font-weight: 600;
}

.nav-links a {
  color: var(--muted);
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-alt);
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
  fill: var(--brand);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(31, 41, 51, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-panel {
  background: var(--bg-alt);
  height: 100%;
  width: min(320px, 80vw);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateX(-100%);
  transition: transform 0.2s ease;
}

.mobile-menu.active .mobile-panel {
  transform: translateX(0);
}

.mobile-panel a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-card {
  background: var(--bg-alt);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat {
  padding: 1.25rem;
  background: #f1ece4;
  border-radius: 18px;
}

.stat strong {
  font-size: 1.4rem;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  padding: 1.5rem;
  border-radius: 18px;
  background: var(--bg-alt);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.card.icon-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: none;
}

.icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #e3ece9;
}

.icon svg {
  width: 22px;
  height: 22px;
  fill: var(--brand);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.quote {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brand-dark);
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pillars li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.pillars span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  margin-top: 0.45rem;
}

.stats-bar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stats-bar .bar {
  background: #f0e8dd;
  border-radius: 999px;
  overflow: hidden;
}

.stats-bar .bar span {
  display: block;
  padding: 0.6rem 1rem;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
}

.testimonial strong {
  color: var(--brand);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-radius: 16px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1rem 1.25rem;
  background: transparent;
  border: none;
  text-align: left;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-answer {
  padding: 0 1.25rem 1.2rem;
  display: none;
  color: var(--muted);
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.comparison {
  border-radius: 18px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.comparison table {
  width: 100%;
  border-collapse: collapse;
}

.comparison th,
.comparison td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.comparison th {
  background: #f3eee6;
}

.comparison tr:last-child td {
  border-bottom: none;
}

.banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem;
  width: min(900px, 92vw);
  box-shadow: var(--shadow);
  display: none;
  z-index: 30;
}

.banner.active {
  display: block;
}

.banner-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(31, 41, 51, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 40;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  width: min(640px, 95vw);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.toggle-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.toggle-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: #f5f1ea;
}

.toggle-item button {
  border-radius: 999px;
  padding: 0.4rem 1rem;
  border: 1px solid var(--brand);
  background: transparent;
  color: var(--brand);
  font-weight: 600;
}

.toggle-item button.active {
  background: var(--brand);
  color: #fff;
}

footer {
  background: #1f2a28;
  color: #e9ece9;
  padding: 2.5rem 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.footer-links a {
  color: #d7dedc;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.legal {
  font-size: 0.85rem;
  color: #c8d0cd;
}

@media (min-width: 860px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-card,
  .hero-stats {
    flex: 1;
  }

  .hero-stats {
    gap: 1rem;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card-grid .card {
    flex: 1 1 calc(33% - 1rem);
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .split > * {
    flex: 1;
  }

  .banner-actions {
    flex-direction: row;
    align-items: center;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
