*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f7f6f2;
  --text: #1b1f22;
  --muted: #5a636a;
  --brand: #0f5e6b;
  --brand-dark: #0b404a;
  --accent: #f0b429;
  --panel: #ffffff;
  --border: #e3e0d8;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--brand);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
}

header {
  background: var(--panel);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 0;
}

.nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand__mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
}

.menu-toggle {
  border: 1px solid var(--border);
  background: var(--panel);
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  font-weight: 600;
}

.nav__links {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 0.5rem;
}

.nav__links a {
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
}

.nav__links a:hover,
.nav__links a:focus {
  background: var(--bg);
}

.nav__links--open {
  display: flex;
}

.nav__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.button--ghost {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

.hero {
  padding: 4rem 0 3rem;
  background: linear-gradient(120deg, #e5f2f3 0%, #f7f6f2 60%);
}

.hero__grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero__panel {
  background: var(--panel);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 12px 30px rgba(15, 94, 107, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section {
  padding: 3.5rem 0;
}

.section--alt {
  background: var(--panel);
}

.section__title {
  font-size: 2rem;
  margin: 0 0 1rem;
}

.section__lead {
  color: var(--muted);
  max-width: 700px;
  margin-bottom: 2rem;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card {
  background: var(--panel);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card--accent {
  border-color: rgba(15, 94, 107, 0.2);
  background: #eef6f7;
}

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 1rem;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  padding: 1.2rem;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid var(--border);
}

.stat__value {
  font-size: 1.75rem;
  font-weight: 700;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.badge {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--panel);
  font-size: 0.9rem;
}

.testimonial {
  background: var(--panel);
  border-left: 4px solid var(--brand);
  padding: 1.5rem;
  border-radius: 14px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timeline__item {
  background: #f1f4f4;
  border-radius: 12px;
  padding: 1rem;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison__plan {
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 16px;
  padding: 1.2rem;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--panel);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  padding: 1rem;
  background: transparent;
  border: none;
  font-weight: 600;
}

.faq-content {
  padding: 0 1rem 1rem;
  color: var(--muted);
  display: none;
}

.faq-item--open .faq-content {
  display: block;
}

.footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  background: #f1f0ea;
}

.footer__grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 200;
}

.cookie-banner--show {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: 1.5rem;
}

.modal--open {
  display: flex;
}

.modal__content {
  background: var(--panel);
  border-radius: 20px;
  padding: 1.5rem;
  max-width: 520px;
  width: 100%;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
}

.toggle:last-child {
  border-bottom: none;
}

.chip {
  background: #e7f0f1;
  color: var(--brand-dark);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.8rem;
}

@media (min-width: 768px) {
  .nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .nav__links {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    padding-bottom: 0;
  }

  .menu-toggle {
    display: none;
  }

  .hero__grid {
    flex-direction: row;
    align-items: center;
  }

  .hero__panel {
    flex: 1;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 250px;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .split > * {
    flex: 1;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison__plan {
    flex: 1;
  }

  .footer__grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
