*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f7f6f3;
  --ink: #1b1c1e;
  --muted: #5c6168;
  --brand: #2f6f64;
  --brand-dark: #24574f;
  --accent: #d49f3a;
  --panel: #ffffff;
  --panel-alt: #eff2f0;
  --border: #e2e5e1;
  --shadow: 0 10px 30px rgba(27, 28, 30, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.section.tight {
  padding: 36px 0;
}

.section.alt {
  background: var(--panel-alt);
}

.section.panel {
  background: var(--panel);
  box-shadow: var(--shadow);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--brand-dark);
  font-weight: 600;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(47, 111, 100, 0.12);
  color: var(--brand-dark);
  font-size: 13px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  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:hover,
.btn:focus-visible {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.btn.secondary {
  background: transparent;
  color: var(--brand-dark);
  border-color: var(--brand);
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 246, 243, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  background: var(--brand);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-mark svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 18px;
  font-weight: 500;
}

.nav-links a {
  padding: 6px 2px;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  border: 1px solid var(--border);
  background: #fff;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(27, 28, 30, 0.5);
  display: none;
  align-items: flex-start;
  justify-content: flex-end;
}

.mobile-menu.open {
  display: flex;
}

.mobile-panel {
  background: #fff;
  width: min(320px, 85%);
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-panel a {
  font-size: 18px;
  font-weight: 600;
  padding: 8px 0;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  background: var(--panel);
  padding: 28px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-stat {
  background: var(--panel-alt);
  border-radius: 18px;
  padding: 16px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.highlight {
  border-color: transparent;
  background: linear-gradient(135deg, rgba(47, 111, 100, 0.12), rgba(212, 159, 58, 0.12));
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(47, 111, 100, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle svg {
  width: 22px;
  height: 22px;
  stroke: var(--brand-dark);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-item span {
  background: var(--brand);
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat {
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid var(--border);
}

.quote {
  font-size: 20px;
  font-weight: 600;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border-left: 4px solid var(--accent);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.comparison-row {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price {
  font-weight: 700;
  color: var(--brand-dark);
  font-size: 20px;
}

.process {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step {
  display: flex;
  gap: 14px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--border);
}

.step strong {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(47, 111, 100, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-answer {
  padding: 0 16px 16px;
  display: none;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pillar {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--border);
}

.cta {
  background: var(--brand);
  color: #fff;
  border-radius: 26px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

footer {
  padding: 32px 0;
  background: #111414;
  color: #f2f2f2;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #f2f2f2;
  opacity: 0.8;
}

.footer-bottom {
  margin-top: 24px;
  font-size: 13px;
  color: #c2c2c2;
}

.cookie-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: none;
  z-index: 60;
}

.cookie-banner.show {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(27, 28, 30, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 70;
}

.modal.open {
  display: flex;
}

.modal-card {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  width: min(520px, 90%);
  max-height: 90vh;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.toggle-row:last-child {
  border-bottom: none;
}

.text-muted {
  color: var(--muted);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 860px) {
  .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-card {
    flex: 1.2;
  }

  .hero-grid {
    flex: 0.8;
  }

  .cards,
  .stats,
  .testimonials,
  .comparison,
  .process,
  .pillars {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .stat,
  .testimonial,
  .comparison-row,
  .step,
  .pillar {
    flex: 1 1 calc(50% - 12px);
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .two-col {
    flex-direction: row;
  }

  .two-col > div {
    flex: 1;
  }
}
