:root {
  --bg: #f7f7f4;
  --surface: #ffffff;
  --text: #1f2a2f;
  --muted: #55626b;
  --primary: #1d6b5e;
  --primary-dark: #144b42;
  --accent: #d9b44a;
  --border: #e3e5e8;
  --shadow: 0 18px 35px rgba(20, 30, 40, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: #eef1ef;
}

.section.dark {
  background: var(--primary-dark);
  color: #f4f6f7;
}

.section.dark a {
  color: #f4f6f7;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 600;
}

h1,
h2,
h3 {
  font-family: "Poppins", "Segoe UI", system-ui, sans-serif;
  margin-top: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 3vw, 3.4rem);
}

h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  background: var(--surface);
  z-index: 10;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.menu {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: none;
  flex-direction: column;
  gap: 10px;
}

.menu a {
  padding: 6px 0;
  color: var(--muted);
  font-weight: 500;
}

.nav-open .menu {
  display: flex;
}

.cta {
  padding: 10px 18px;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta.small {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.btn {
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-weight: 600;
  cursor: pointer;
}

.btn.primary {
  background: var(--primary);
  color: #fff;
  border-color: transparent;
}

.btn.ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-panel {
  background: var(--surface);
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--surface);
  padding: 22px;
  border-radius: 16px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.highlight {
  border-color: var(--accent);
  background: #fff9e8;
}

.icon-badge {
  width: 44px;
  height: 44px;
  background: #eef6f2;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: var(--surface);
  border-radius: 14px;
  padding: 18px;
  border: 1px solid var(--border);
}

.stat strong {
  display: block;
  font-size: 1.6rem;
  color: var(--primary);
}

.quote {
  background: var(--primary-dark);
  color: #fff;
  padding: 26px;
  border-radius: 18px;
}

.quote p {
  color: #fff;
}

.list {
  padding-left: 18px;
  color: var(--muted);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  padding: 18px;
  background: var(--surface);
  border-radius: 16px;
  border-left: 4px solid var(--primary);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison .card {
  border-left: 4px solid var(--accent);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px;
  border: none;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  padding: 0 16px 16px;
  color: var(--muted);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: #e6efe9;
  color: var(--primary-dark);
  font-size: 0.85rem;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-block {
  background: var(--surface);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.footer {
  background: #101718;
  color: #f4f6f7;
  padding: 40px 0;
}

.footer p {
  color: #c9ced2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: #c9ced2;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--surface);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: none;
  z-index: 30;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(13, 20, 25, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal__panel {
  background: var(--surface);
  padding: 24px;
  border-radius: 18px;
  width: min(520px, 92%);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.cookie-option:last-child {
  border-bottom: none;
}

@media (min-width: 900px) {
  .menu {
    display: flex;
    flex-direction: row;
    margin: 0;
    gap: 24px;
  }

  .menu-toggle {
    display: none;
  }

  .hero-grid,
  .split,
  .contact-grid {
    flex-direction: row;
  }

  .hero-grid > div,
  .split > div,
  .contact-grid > div {
    flex: 1;
  }

  .card-grid,
  .stats,
  .comparison {
    flex-direction: row;
  }

  .card-grid .card,
  .stats .stat,
  .comparison .card {
    flex: 1;
  }

  .cookie-actions {
    flex-direction: row;
    justify-content: flex-end;
  }
}
