* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #0f1c2e;
  --muted: #556070;
  --accent: #1c7a8c;
  --accent-dark: #0d4f5f;
  --soft: #f5f7fa;
  --warm: #fff2e2;
  --line: #d8dee8;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background: #ffffff;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  position: sticky;
  top: 0;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  z-index: 50;
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.menu-toggle {
  background: var(--accent);
  color: #ffffff;
  border: none;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.nav {
  position: absolute;
  top: 72px;
  right: 1.5rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 1rem;
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(15, 28, 46, 0.12);
}

.nav.open {
  display: flex;
}

.nav a {
  font-weight: 600;
  color: var(--ink);
}

.container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2.5rem 1.5rem;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section.alt {
  background: var(--soft);
}

.section.warm {
  background: var(--warm);
}

.section .container {
  padding: 2.5rem 1.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: 2.4rem;
}

h2 {
  font-size: 1.85rem;
}

h3 {
  font-size: 1.2rem;
}

p {
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  background: var(--accent);
  color: #ffffff;
  padding: 0.75rem 1.3rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn.outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.5rem;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 220px;
}

.card.highlight {
  background: #ffffff;
  border: 2px solid var(--accent);
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(28, 122, 140, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon svg {
  width: 26px;
  height: 26px;
  fill: var(--accent);
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.stat {
  flex: 1 1 200px;
  padding: 1.5rem;
  border-radius: 1rem;
  background: #ffffff;
  border: 1px solid var(--line);
}

.stat strong {
  font-size: 1.6rem;
  color: var(--ink);
}

.quote {
  padding: 1.8rem;
  border-left: 4px solid var(--accent);
  background: #ffffff;
  border-radius: 0.75rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timeline-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.timeline-item span {
  min-width: 64px;
  font-weight: 700;
  color: var(--accent-dark);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(28, 122, 140, 0.12);
  font-weight: 600;
  color: var(--accent-dark);
  font-size: 0.9rem;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 0;
  cursor: pointer;
  color: var(--ink);
}

.faq-item .answer {
  display: none;
  padding-bottom: 0.5rem;
  color: var(--muted);
}

.faq-item.open .answer {
  display: block;
}

.footer {
  background: #0f1c2e;
  color: #ffffff;
  padding: 2.5rem 1.5rem;
}

.footer .grid {
  gap: 1rem;
}

.footer a {
  color: #ffffff;
  opacity: 0.85;
}

.footer small {
  opacity: 0.7;
}

.service-price {
  font-weight: 700;
  color: var(--accent-dark);
}

.comparison {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.comparison .card {
  flex: 1 1 260px;
}

.banner {
  background: var(--accent-dark);
  color: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.2rem;
  display: none;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 12px 28px rgba(15, 28, 46, 0.18);
  z-index: 60;
}

.cookie-banner.show {
  display: flex;
}

.cookie-banner .button-row {
  justify-content: flex-start;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 28, 46, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 70;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal .modal-content {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}

.toggle {
  background: rgba(28, 122, 140, 0.15);
  color: var(--accent-dark);
  border: none;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.toggle[aria-pressed="true"] {
  background: var(--accent);
  color: #ffffff;
}

@media (min-width: 860px) {
  .menu-toggle {
    display: none;
  }

  .nav {
    position: static;
    display: flex;
    flex-direction: row;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .site-header {
    padding: 1.25rem 3rem;
  }

  .container {
    padding: 3.5rem 3rem;
  }

  .section .container {
    padding: 3.5rem 3rem;
  }

  h1 {
    font-size: 3rem;
  }
}
