:root {
  color-scheme: light;
  --brand-700: #0f4c5c;
  --brand-500: #1b6b7d;
  --brand-300: #5aa3b2;
  --accent-500: #f2a541;
  --accent-200: #fde9c9;
  --ink-900: #152126;
  --ink-700: #2c3a3f;
  --ink-500: #506068;
  --ink-200: #d9e2e7;
  --surface-100: #ffffff;
  --surface-200: #f5f7f9;
  --surface-300: #edf1f3;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 10px 30px rgba(15, 76, 92, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink-900);
  background: var(--surface-100);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--surface-200);
}

.section.highlight {
  background: var(--accent-200);
}

.section .eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-500);
  margin-bottom: 8px;
}

.section h2 {
  margin: 0 0 18px;
  font-size: 2rem;
}

.section p {
  margin: 0 0 16px;
  color: var(--ink-700);
}

.site-header {
  position: sticky;
  top: 0;
  background: var(--surface-100);
  z-index: 20;
  border-bottom: 1px solid var(--ink-200);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--brand-700);
  font-size: 1.1rem;
}

.brand-mark {
  width: 36px;
  height: 36px;
}

.menu-toggle {
  border: 1px solid var(--brand-700);
  background: transparent;
  color: var(--brand-700);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.site-nav {
  display: none;
  gap: 18px;
  align-items: center;
}

.site-nav a {
  font-size: 0.95rem;
  color: var(--ink-700);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: var(--surface-100);
  border-top: 1px solid var(--ink-200);
}

.mobile-nav.open {
  display: flex;
}

.hero {
  padding: 72px 0 64px;
}

.hero-card {
  background: var(--surface-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-soft);
}

.hero h1 {
  margin: 0;
  font-size: 2.4rem;
}

.hero-actions {
  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 transparent;
  font-weight: 600;
  cursor: pointer;
}

.btn.primary {
  background: var(--brand-700);
  color: #fff;
}

.btn.outline {
  border-color: var(--brand-700);
  color: var(--brand-700);
  background: transparent;
}

.btn.light {
  background: #fff;
  color: var(--brand-700);
  border-color: #fff;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--surface-100);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--ink-200);
}

.card h3 {
  margin: 0 0 10px;
}

.card .price {
  font-weight: 600;
  color: var(--brand-700);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--surface-300);
  border-radius: var(--radius-md);
  padding: 16px;
}

.feature svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: var(--surface-100);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  border: 1px solid var(--ink-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat strong {
  font-size: 1.5rem;
  color: var(--brand-700);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote {
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--surface-100);
  border-left: 4px solid var(--accent-500);
}

.quote p {
  margin: 0 0 12px;
}

.quote span {
  color: var(--ink-500);
  font-size: 0.95rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  background: var(--surface-100);
  border-radius: var(--radius-sm);
  border: 1px solid var(--ink-200);
}

.step strong {
  color: var(--brand-700);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  background: var(--surface-100);
  border-radius: var(--radius-sm);
  border: 1px solid var(--ink-200);
}

.comparison-row span {
  color: var(--ink-500);
  font-size: 0.95rem;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: var(--surface-100);
  padding: 14px 16px;
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-answer {
  padding: 14px 16px;
  background: var(--surface-200);
  color: var(--ink-700);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 14px;
  background: var(--surface-100);
  border-radius: 999px;
  border: 1px solid var(--ink-200);
  font-size: 0.9rem;
}

.cta-box {
  background: var(--brand-700);
  color: #fff;
  padding: 28px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.85);
}

.footer {
  background: var(--ink-900);
  color: #fff;
  padding: 42px 0;
}

.footer a {
  color: #fff;
}

.footer-columns {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer small {
  color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--surface-100);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 40;
  border: 1px solid var(--ink-200);
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(21, 33, 38, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 60;
}

.cookie-modal.visible {
  display: flex;
}

.cookie-modal-content {
  background: var(--surface-100);
  border-radius: var(--radius-md);
  padding: 22px;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--surface-200);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
}

.toggle {
  border: 1px solid var(--brand-500);
  background: transparent;
  color: var(--brand-500);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.toggle[aria-pressed="true"] {
  background: var(--brand-500);
  color: #fff;
}

@media (min-width: 760px) {
  .cards,
  .feature-list,
  .stats,
  .testimonials,
  .process-steps,
  .comparison,
  .footer-columns {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .feature,
  .stat,
  .quote,
  .step,
  .comparison-row {
    flex: 1 1 260px;
  }

  .footer-columns > div {
    flex: 1 1 240px;
  }
}

@media (min-width: 960px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
  }

  .mobile-nav {
    display: none !important;
  }

  .hero {
    padding: 90px 0 80px;
  }

  .hero-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-card .hero-copy {
    flex: 1 1 60%;
  }

  .hero-card .hero-visual {
    flex: 1 1 40%;
    display: flex;
    justify-content: flex-end;
  }
}
