*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f7fbfb;
  --surface: #ffffff;
  --ink: #102a32;
  --muted: #5b6d73;
  --primary: #1a8f94;
  --primary-dark: #146b70;
  --accent: #e6f3f3;
  --sand: #f2efe9;
  --sun: #ffe08a;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(16, 42, 50, 0.12);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

header {
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 1px 0 rgba(16, 42, 50, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand svg {
  width: 28px;
  height: 28px;
  fill: var(--primary);
}

.nav-links {
  display: none;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--primary-dark);
}

.nav-toggle {
  background: var(--accent);
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--primary-dark);
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(16, 42, 50, 0.6);
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-panel {
  background: var(--surface);
  width: min(320px, 85%);
  height: 100%;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-panel a {
  font-weight: 600;
  color: var(--ink);
}

.hero {
  padding: 64px 0 48px;
}

.hero-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.eyebrow {
  font-weight: 700;
  color: var(--primary-dark);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.6px;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(32px, 6vw, 48px);
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.hero-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

section {
  padding: 56px 0;
}

.section-muted {
  background: var(--accent);
}

.section-sand {
  background: var(--sand);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--surface);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: 0 8px 18px rgba(16, 42, 50, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin-bottom: 4px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--primary-dark);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.stat strong {
  font-size: 24px;
  color: var(--primary-dark);
}

.testimonial {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.testimonial span {
  color: var(--primary-dark);
  font-weight: 600;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  background: var(--surface);
  border-left: 4px solid var(--primary);
  padding: 16px 20px;
  border-radius: 12px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 16px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  margin-top: 12px;
  display: none;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  background: var(--surface);
  border-radius: var(--radius);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-price {
  font-weight: 700;
  color: var(--primary-dark);
}

.cta-panel {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-panel p {
  color: #e6f3f3;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

footer {
  background: #0f2a31;
  color: #d6e5e7;
  padding: 40px 0;
}

footer a {
  color: #d6e5e7;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(16, 42, 50, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  width: min(520px, 90%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.preference-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(16, 42, 50, 0.08);
}

.preference-row:last-child {
  border-bottom: none;
}

.toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: var(--accent);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-dark);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .hero-wrap {
    flex-direction: row;
    align-items: stretch;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card-grid .card {
    flex: 1 1 calc(33% - 16px);
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1 1 0;
  }

  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-list .card {
    flex: 1 1 calc(50% - 16px);
  }

  .info-grid {
    flex-direction: row;
  }

  .info-grid .card {
    flex: 1 1 calc(33% - 16px);
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
