* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #0f1b2d;
  --midnight: #13233d;
  --steel: #4a5b78;
  --mist: #f2f4f7;
  --sand: #f7f1e8;
  --teal: #2e7d7a;
  --amber: #e1a948;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--mist);
}

.section.sand {
  background: var(--sand);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--steel);
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

h2 {
  font-size: 1.7rem;
  margin-bottom: 12px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

p {
  margin-bottom: 14px;
  color: var(--steel);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(46, 125, 122, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 1px solid var(--teal);
}

.btn-ghost {
  background: transparent;
  color: var(--steel);
  border: 1px solid transparent;
}

.btn-ghost:hover {
  border-color: var(--steel);
}

.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid #e5e9f0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--midnight);
}

.site-nav {
  display: none;
  flex-direction: column;
  gap: 14px;
  position: absolute;
  top: 64px;
  right: 20px;
  background: var(--white);
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(15, 27, 45, 0.1);
}

.site-nav a {
  font-weight: 600;
  color: var(--midnight);
}

.site-nav.is-open {
  display: flex;
}

.menu-toggle {
  background: transparent;
  border: 1px solid #d6dce7;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 27, 45, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.nav-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.hero {
  background: linear-gradient(135deg, #e7f2f1 0%, #fef6eb 100%);
  padding: 72px 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 6px 12px;
  background: var(--white);
  border-radius: 999px;
  border: 1px solid #dde5ee;
  font-size: 0.85rem;
  color: var(--steel);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--white);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(15, 27, 45, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-panel {
  background: var(--midnight);
  color: var(--white);
  padding: 24px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight-panel p {
  color: #d7e2f0;
}

.stats-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  padding: 16px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid #e3e8f0;
}

.stat strong {
  font-size: 1.6rem;
  color: var(--midnight);
  display: block;
  margin-bottom: 6px;
}

.quote {
  background: var(--teal);
  color: var(--white);
  padding: 32px;
  border-radius: 24px;
  font-size: 1.1rem;
}

.quote span {
  display: block;
  margin-top: 12px;
  font-weight: 600;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.list li {
  list-style: none;
  padding-left: 22px;
  position: relative;
  color: var(--steel);
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.service-card {
  border: 1px solid #e1e6f0;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--white);
}

.service-card strong {
  font-size: 1.1rem;
}

.price {
  font-weight: 700;
  color: var(--teal);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #e1e6f0;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border-radius: 16px;
  border: 1px solid #e1e6f0;
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px;
  background: transparent;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  padding: 0 16px 16px;
  display: none;
  color: var(--steel);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.cta-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--sand);
  border-radius: 24px;
  padding: 28px;
}

.site-footer {
  background: var(--midnight);
  color: var(--white);
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #d7e2f0;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(15, 27, 45, 0.18);
  display: none;
  flex-direction: column;
  gap: 14px;
  z-index: 50;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
}

.cookie-modal.is-open {
  display: flex;
}

.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 27, 45, 0.45);
}

.cookie-modal__content {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  width: min(520px, 90vw);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #eef1f6;
}

.toggle-btn {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #d6dce7;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
}

.toggle-btn[aria-pressed="true"] {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.icon-btn {
  background: transparent;
  border: 1px solid #d6dce7;
  padding: 6px 12px;
  border-radius: 10px;
  cursor: pointer;
  align-self: flex-start;
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.7rem;
  }

  .site-nav {
    display: flex;
    flex-direction: row;
    position: static;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .menu-toggle,
  .nav-overlay {
    display: none;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-actions {
    flex-direction: row;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 250px;
  }

  .stats-row {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-links {
    flex-direction: row;
    gap: 18px;
    flex-wrap: wrap;
  }

  .cookie-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
