* {
  box-sizing: border-box;
}

:root {
  --ink: #1c2430;
  --muted: #5e6a7a;
  --brand: #0f4c5c;
  --brand-2: #2a9d8f;
  --accent: #f4b63d;
  --bg: #f7f6f2;
  --card: #ffffff;
  --border: #e3e6ea;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--accent);
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 6px;
  z-index: 5;
}

.skip-link:focus {
  left: 20px;
}

header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand img {
  width: 28px;
  height: 28px;
}

.nav-toggle {
  border: 1px solid var(--border);
  background: #fff;
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 600;
}

.nav-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px 0;
}

.nav-menu a {
  padding: 6px 0;
  font-weight: 600;
}

.nav-menu.open {
  display: flex;
}

.hero {
  padding: 56px 0 40px;
  background: linear-gradient(135deg, #ffffff, #eef4f3);
}

.hero .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-card h1 {
  margin: 0;
  font-size: 2rem;
}

.hero-card p {
  margin: 0;
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: none;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: var(--brand);
  border: 1px solid var(--brand);
}

section {
  padding: 48px 0;
}

.section-title {
  margin: 0 0 16px;
  font-size: 1.6rem;
}

.section-subtitle {
  margin: 0 0 24px;
  color: var(--muted);
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .icon {
  width: 40px;
  height: 40px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff7e1;
  color: #6b4a00;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.highlight {
  background: #0f4c5c;
  color: #fff;
  padding: 28px;
  border-radius: 16px;
}

.highlight p {
  margin: 0 0 14px;
  color: #f0f7f8;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.stat strong {
  font-size: 1.4rem;
}

.quote {
  background: #fff;
  border-left: 6px solid var(--brand-2);
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  font-weight: 600;
  padding: 0;
  cursor: pointer;
}

.faq-item .faq-content {
  display: none;
  color: var(--muted);
  margin-top: 12px;
}

.faq-item.open .faq-content {
  display: block;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}

.comparison-row span {
  font-weight: 600;
}

.callout {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer {
  background: #1c2430;
  color: #fff;
  padding: 32px 0;
}

.footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30;
  padding: 20px;
}

.modal.open {
  display: flex;
}

.modal-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.preference-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pref-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
}

.pref-toggle button {
  border: 1px solid var(--border);
  background: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 600;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    display: flex;
    flex-direction: row;
    gap: 18px;
    padding: 0;
  }

  .hero .container {
    flex-direction: row;
    align-items: center;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(33% - 18px);
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .split > * {
    flex: 1;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .comparison-row {
    flex-direction: row;
    justify-content: space-between;
  }

  .contact-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact-grid .card {
    flex: 1 1 calc(50% - 18px);
  }

  .footer .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
  }
}
