:root {
  color-scheme: light;
  --bg: #f6f1eb;
  --ink: #0f2d3f;
  --muted: #4a5b64;
  --brand: #1f8a8a;
  --accent: #e1a857;
  --panel: #ffffff;
  --soft: #eef3f2;
  --shadow: 0 10px 30px rgba(15, 45, 63, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--soft);
}

.section.tight {
  padding: 40px 0;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 12px;
  color: var(--brand);
  font-weight: 700;
}

h1, h2, h3 {
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-outline {
  border-color: var(--brand);
  color: var(--brand);
  background: transparent;
}

.btn-ghost {
  border-color: transparent;
  color: var(--ink);
  background: rgba(15, 45, 63, 0.08);
}

.site-header {
  background: var(--panel);
  border-bottom: 1px solid rgba(15, 45, 63, 0.08);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}

.main-nav {
  display: none;
  gap: 20px;
}

.main-nav a {
  color: var(--muted);
  font-weight: 600;
}

.menu-toggle {
  background: var(--brand);
  border: none;
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 16px 0 24px;
}

.mobile-menu a {
  padding: 8px 0;
  color: var(--ink);
  font-weight: 600;
}

.mobile-menu.active {
  display: flex;
}

.hero {
  padding: 72px 0;
  background: linear-gradient(135deg, rgba(31, 138, 138, 0.12), rgba(225, 168, 87, 0.14));
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.badge {
  background: var(--panel);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  color: var(--muted);
  border: 1px solid rgba(15, 45, 63, 0.08);
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--panel);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.highlight {
  border: 1px solid rgba(31, 138, 138, 0.3);
  background: rgba(31, 138, 138, 0.08);
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(31, 138, 138, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stat-bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--panel);
  padding: 14px 16px;
  border-radius: 12px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  padding: 16px;
  border-left: 3px solid var(--accent);
  background: var(--panel);
  border-radius: 10px;
}

.quote {
  background: var(--panel);
  border-radius: 18px;
  padding: 22px;
  border-left: 4px solid var(--brand);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: rgba(15, 45, 63, 0.08);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  background: var(--panel);
  padding: 18px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  border-radius: 12px;
  background: var(--panel);
}

.comparison-row strong {
  color: var(--ink);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--panel);
  border-radius: 12px;
  padding: 16px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  color: var(--ink);
}

.faq-answer {
  margin-top: 12px;
  display: none;
  color: var(--muted);
}

.faq-item.active .faq-answer {
  display: block;
}

.testimonial {
  background: var(--panel);
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.banner {
  background: var(--brand);
  color: #fff;
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.banner p {
  color: rgba(255, 255, 255, 0.88);
}

.site-footer {
  background: #0b2230;
  color: rgba(255, 255, 255, 0.86);
  padding: 48px 0 32px;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 16px;
  border-radius: 16px;
  width: min(960px, 92%);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 45, 63, 0.4);
  display: none;
  z-index: 19;
}

.modal-overlay.visible {
  display: block;
}

.cookie-modal {
  position: fixed;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  background: var(--panel);
  width: min(640px, 92%);
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 16px;
  z-index: 20;
}

.cookie-modal.visible {
  display: flex;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cookie-option {
  background: var(--soft);
  padding: 14px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cookie-toggle {
  align-self: flex-start;
  border-radius: 999px;
  border: 1px solid rgba(15, 45, 63, 0.2);
  padding: 6px 14px;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
}

.cookie-toggle.active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

@media (min-width: 768px) {
  .main-nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(50% - 16px);
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .split > * {
    flex: 1;
  }

  .steps {
    flex-direction: row;
  }

  .step {
    flex: 1;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    flex-direction: row;
    align-items: center;
  }

  .hero-text {
    flex: 1.2;
  }

  .hero-panel {
    flex: 1;
  }
}
