*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --ink: #1b2430;
  --muted: #4b5b6b;
  --surface: #ffffff;
  --soft: #f4f7f9;
  --brand: #1f4e79;
  --brand-dark: #163a5a;
  --accent: #2f8f83;
  --line: #d9e2ea;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 92%;
  max-width: 1120px;
  margin: 0 auto;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: var(--brand-dark);
}

.site-nav {
  display: none;
  gap: 1.5rem;
  align-items: center;
  font-size: 0.95rem;
}

.site-nav a {
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--brand);
}

.menu-toggle {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  border-top: 1px solid var(--line);
  background: var(--soft);
}

.mobile-menu a {
  color: var(--brand-dark);
  font-weight: 600;
}

.hero {
  padding: 3.5rem 0 2.5rem;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.15;
  margin: 0;
}

.hero p {
  margin: 0;
  color: var(--muted);
  max-width: 560px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-outline {
  border-color: var(--brand);
  color: var(--brand);
  background: transparent;
}

.section {
  padding: 2.75rem 0;
}

.section.alt {
  background: var(--soft);
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3.2vw, 2.3rem);
}

.section-title p {
  margin: 0;
  color: var(--muted);
  max-width: 720px;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.feature-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(47, 143, 131, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.highlight-panel {
  padding: 1.75rem;
  border-radius: 18px;
  background: var(--brand-dark);
  color: #fff;
}

.highlight-panel p {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-item {
  padding: 1rem 1.25rem;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.stat-item strong {
  display: block;
  font-size: 1.6rem;
  color: var(--brand-dark);
}

.testimonial {
  border-left: 4px solid var(--accent);
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.testimonial span {
  color: var(--muted);
  font-size: 0.9rem;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-item {
  padding: 1.25rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tag {
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  background: var(--soft);
  border: 1px solid var(--line);
  font-size: 0.85rem;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: none;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.25rem 1rem;
  color: var(--muted);
}

.footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
}

.footer-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--brand-dark);
  color: #fff;
  padding: 1rem;
  display: none;
  z-index: 30;
}

.cookie-banner .container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 40;
}

.modal-content {
  background: var(--surface);
  border-radius: 18px;
  padding: 1.5rem;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.75rem;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: var(--soft);
  font-size: 0.75rem;
}

.service-price {
  font-weight: 700;
  color: var(--brand);
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .site-nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .card-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(33.333% - 1rem);
  }

  .feature-row {
    flex-direction: row;
  }

  .stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 1 1 calc(33.333% - 1rem);
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-item {
    flex: 1 1 0;
  }

  .two-column {
    flex-direction: row;
    align-items: flex-start;
  }

  .footer-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cookie-banner .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
