:root {
  --bg: #f7f6f2;
  --surface: #ffffff;
  --primary: #0f4c5c;
  --secondary: #f7b267;
  --accent: #e4f1f6;
  --text: #1d2a32;
  --muted: #556670;
  --radius: 18px;
  --shadow: 0 12px 30px rgba(15, 76, 92, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--primary);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
}

.skip-link:focus {
  left: 12px;
  z-index: 5;
}

header {
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 34px;
  height: 34px;
}

.menu-toggle {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px 0 10px;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--primary);
  font-weight: 600;
}

.nav-panel {
  display: none;
}

.nav-panel.open {
  display: flex;
}

main {
  padding: 28px 0 80px;
}

section {
  padding: 42px 0;
}

.section-alt {
  background: var(--surface);
  border-radius: var(--radius);
  margin: 12px 0;
  box-shadow: var(--shadow);
}

.section-soft {
  background: var(--accent);
  border-radius: var(--radius);
  margin: 12px 0;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 28px 0 10px;
}

.hero-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero h1 {
  font-size: 2.2rem;
  margin: 0 0 12px;
}

.muted {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: var(--secondary);
  color: #2a1f16;
}

.btn.ghost {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

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

.card .icon {
  width: 56px;
  height: 56px;
}

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

.feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--surface);
  padding: 16px;
  border-radius: 14px;
}

.feature span {
  background: var(--secondary);
  color: #2a1f16;
  font-weight: 700;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: 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);
  padding: 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat strong {
  font-size: 1.6rem;
  color: var(--primary);
}

.quote {
  background: var(--primary);
  color: #fff;
  padding: 24px;
  border-radius: var(--radius);
}

.testimonial {
  background: var(--surface);
  border-left: 5px solid var(--secondary);
  padding: 18px;
  border-radius: 12px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  background: var(--accent);
  color: var(--primary);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
}

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

.faq-item {
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.faq-answer {
  padding: 0 16px 16px;
  display: none;
}

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

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

.price-tag {
  font-weight: 700;
  color: var(--primary);
}

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

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--surface);
  padding: 14px;
  border-radius: 12px;
}

.pill {
  background: var(--secondary);
  color: #2a1f16;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
  width: fit-content;
}

.cta-panel {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

footer {
  background: #0c3a46;
  color: #e8f1f4;
  padding: 40px 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #e8f1f4;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  width: min(520px, 92%);
  z-index: 40;
  display: none;
}

.cookie-banner.show {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.modal-overlay.show {
  display: flex;
}

.modal {
  background: var(--surface);
  border-radius: var(--radius);
  width: min(620px, 92%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--accent);
  padding: 12px;
  border-radius: 12px;
}

.toggle-row button {
  border: none;
  background: var(--primary);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.toggle-row button[aria-pressed="false"] {
  background: #c7dce3;
  color: var(--primary);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 0;
  }

  .nav-panel {
    display: flex;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

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

  .split > * {
    flex: 1;
  }

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

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

  .stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

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

  .comparison-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
  }
}

@media (min-width: 1024px) {
  .card {
    flex: 1 1 calc(33% - 18px);
  }

  .stat {
    flex: 1 1 calc(25% - 16px);
  }
}
