@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&display=swap");

:root {
  --bg: #f7f3ee;
  --bg-alt: #ffffff;
  --ink: #1b2733;
  --muted: #4b5b6a;
  --accent: #2b6d73;
  --accent-strong: #1f4f54;
  --highlight: #f0d9b5;
  --border: #e2d7ca;
  --shadow: 0 20px 40px rgba(27, 39, 51, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, 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, 92vw);
  margin: 0 auto;
  padding: 0 0 32px;
}

.site-header {
  background: var(--bg-alt);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 6px 18px rgba(27, 39, 51, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.03em;
}

.nav-links {
  display: none;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--accent);
}

.menu-toggle {
  border: 1px solid var(--border);
  background: var(--bg);
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 16px 0 24px;
}

.mobile-menu a {
  padding: 10px 0;
  color: var(--muted);
  font-weight: 500;
}

.mobile-menu.active {
  display: flex;
}

.hero {
  padding: 56px 0 40px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  background: var(--bg-alt);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 600;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.2;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.section {
  padding: 48px 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section--highlight {
  background: var(--highlight);
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: var(--bg-alt);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid var(--border);
  flex: 1 1 240px;
  min-width: 220px;
}

.card h3 {
  margin-bottom: 12px;
}

.icon-badge {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.icon-badge svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: var(--bg-alt);
  padding: 20px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border);
}

.stat strong {
  font-size: 1.4rem;
}

.quote {
  background: var(--accent);
  color: #fff;
  padding: 32px;
  border-radius: 22px;
}

.quote p {
  color: #fff;
}

.cta {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-item svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  fill: var(--accent);
  margin-top: 4px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-step {
  background: var(--bg-alt);
  border-radius: 16px;
  padding: 18px;
  border-left: 4px solid var(--accent);
}

.testimonial {
  background: var(--bg-alt);
  border-radius: 18px;
  padding: 22px;
  border: 1px solid var(--border);
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-alt);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  background: transparent;
  border: none;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 18px 16px;
  display: none;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.footer {
  background: var(--ink);
  color: #fff;
  padding: 32px 0;
}

.footer p,
.footer a {
  color: #d2d9df;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  left: 16px;
  background: var(--bg-alt);
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: none;
  z-index: 20;
}

.cookie-banner.active {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(27, 39, 51, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 30;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--bg-alt);
  padding: 26px;
  border-radius: 20px;
  width: min(520px, 92vw);
  box-shadow: var(--shadow);
}

.modal-content ul {
  padding-left: 18px;
  color: var(--muted);
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.info-box {
  background: var(--bg-alt);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--border);
  flex: 1 1 220px;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table-row {
  background: var(--bg-alt);
  border-radius: 14px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price {
  font-weight: 700;
  color: var(--accent-strong);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-block {
  background: var(--bg-alt);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--border);
}

@media (min-width: 860px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  .hero-inner {
    flex-direction: row;
    align-items: stretch;
  }

  .two-col {
    flex-direction: row;
    align-items: stretch;
  }

  .cookie-actions {
    flex-direction: row;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
  }

  .table-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
