* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f7f6f2;
  --bg-alt: #ffffff;
  --ink: #1f2a2e;
  --muted: #52616b;
  --accent: #1a6b6e;
  --accent-2: #d6b26b;
  --border: #d9e0e4;
  --shadow: 0 16px 40px rgba(31, 42, 46, 0.08);
}

body {
  font-family: "Segoe UI", "Inter", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  z-index: 999;
}

.skip-link:focus {
  left: 16px;
}

.site-header {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.1rem;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #0e4b4d);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 20px;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--accent);
}

.nav-toggle {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 0.9rem;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(15, 22, 26, 0.6);
  display: none;
  align-items: flex-start;
  justify-content: flex-end;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu-panel {
  width: min(280px, 80%);
  background: var(--bg-alt);
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu-panel a {
  color: var(--muted);
  font-weight: 600;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.hero {
  padding: 72px 0 54px;
}

.hero .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 700;
}

h1 {
  font-size: 2.2rem;
  line-height: 1.2;
}

h2 {
  font-size: 1.7rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.4;
}

p {
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.section {
  padding: 54px 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section--accent {
  background: #0e4b4d;
  color: #fff;
}

.section--accent p {
  color: #e5f2f1;
}

.panel {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.panel--soft {
  background: #f1f6f6;
}

.grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.grid.two {
  gap: 24px;
}

.grid.three {
  gap: 20px;
}

.card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card .icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(26, 107, 110, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.list li span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent-2);
  margin-top: 8px;
  flex-shrink: 0;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-radius: 18px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
}

.stat strong {
  font-size: 1.5rem;
  color: var(--accent);
}

.quote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 240px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(26, 107, 110, 0.1);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

.footer {
  background: #111b1f;
  color: #d4dbe0;
  padding: 44px 0;
}

.footer a {
  color: #d4dbe0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 20;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 22, 26, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 30;
}

.cookie-modal.is-open {
  display: flex;
}

.cookie-modal-content {
  background: var(--bg-alt);
  border-radius: 20px;
  padding: 24px;
  width: min(520px, 100%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.toggle-row input {
  width: 18px;
  height: 18px;
}

.section-divider {
  height: 1px;
  background: var(--border);
  margin: 12px 0;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison .card {
  border-left: 4px solid var(--accent);
}

@media (min-width: 760px) {
  .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .hero .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .grid.two {
    flex-direction: row;
  }

  .grid.three {
    flex-direction: row;
  }

  .stats {
    flex-direction: row;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .info-grid {
    flex-direction: row;
  }

  .comparison {
    flex-direction: row;
  }
}
