*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1f2430;
  --muted: #5a6472;
  --surface: #ffffff;
  --surface-alt: #f3f5f7;
  --accent: #1d6fb8;
  --accent-strong: #16548a;
  --accent-soft: #d9ebfb;
  --success: #1c8f5c;
  --warning: #c0711c;
  --border: #d7dce2;
  --shadow: 0 18px 45px rgba(31, 36, 48, 0.12);
  --radius: 18px;
  --radius-sm: 12px;
  --max-width: 1120px;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--surface);
  color: var(--ink);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 32px 0 72px;
}

section {
  padding: 0 20px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 600;
}

.section-title {
  font-size: 2rem;
  margin: 0;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0;
}

.pill {
  background: var(--accent-soft);
  color: var(--accent-strong);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  align-self: flex-start;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

.btn-ghost {
  border-color: var(--border);
  color: var(--ink);
  background: #fff;
}

.btn-ghost:hover,
.btn-ghost:focus {
  border-color: var(--accent);
  color: var(--accent-strong);
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.05rem;
}

.brand svg {
  width: 36px;
  height: 36px;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  position: absolute;
  top: 66px;
  right: 20px;
  min-width: 210px;
  box-shadow: var(--shadow);
}

.nav-links a {
  font-weight: 600;
  color: var(--ink);
}

.nav-links.open {
  display: flex;
}

.nav-toggle {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 12px;
  padding: 8px 12px;
  font-weight: 600;
}

.hero {
  padding: 48px 20px 0;
}

.hero .container {
  gap: 28px;
}

.hero-card {
  background: var(--surface-alt);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-metrics {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.metric {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.metric strong {
  font-size: 1.2rem;
}

.grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 28px rgba(31, 36, 48, 0.08);
}

.card .icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.highlight-panel {
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.highlight-panel .btn {
  align-self: flex-start;
}

.quote {
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stats-bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 16px;
  border: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.stat span {
  color: var(--muted);
}

.testimonial {
  background: var(--surface-alt);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial strong {
  font-size: 0.95rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  background: #fff;
  border: 1px dashed var(--border);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--muted);
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: #fff;
  border: none;
  padding: 16px 20px;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-answer {
  padding: 0 20px 18px;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.service-table {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.service-row:last-child {
  border-bottom: none;
}

.price {
  font-weight: 700;
  color: var(--accent-strong);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-item {
  border-radius: var(--radius-sm);
  padding: 16px;
  border: 1px solid var(--border);
  background: #fff;
}

.formless-note {
  background: var(--surface-alt);
  border-radius: var(--radius);
  padding: 18px;
}

.site-footer {
  padding: 32px 20px 48px;
  background: var(--surface-alt);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 600;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  border: 1px solid var(--border);
  z-index: 30;
  display: none;
}

.cookie-banner.show {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(31, 36, 48, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 40;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--border);
}

.preferences-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.preferences-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.preferences-item input {
  margin-top: 3px;
}

@media (min-width: 768px) {
  main {
    gap: 72px;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    min-width: auto;
  }

  .nav-toggle {
    display: none;
  }

  .hero .container {
    flex-direction: row;
    align-items: center;
  }

  .hero-card,
  .hero-copy {
    flex: 1;
  }

  .grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .grid > * {
    flex: 1 1 260px;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .stats-bar {
    flex-direction: row;
  }

  .stats-bar .stat {
    flex: 1;
  }

  .service-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-item {
    flex: 1;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .cookie-banner {
    left: auto;
    right: 24px;
    max-width: 360px;
  }
}
