* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b2326;
  --muted: #566268;
  --brand: #1f5c6b;
  --brand-dark: #174450;
  --accent: #f2b94b;
  --accent-dark: #d79f2f;
  --surface: #f6f7f9;
  --surface-alt: #eef2f4;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(23, 68, 80, 0.08);
  --radius: 16px;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--surface-alt);
  position: sticky;
  top: 0;
  z-index: 30;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand svg {
  width: 36px;
  height: 36px;
}

.nav-toggle {
  background: var(--surface-alt);
  border: none;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 600;
  cursor: pointer;
}

.site-nav {
  position: fixed;
  inset: 0;
  background: rgba(27, 35, 38, 0.6);
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.site-nav.open {
  opacity: 1;
  pointer-events: auto;
}

.nav-panel {
  width: min(320px, 80%);
  background: var(--white);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow);
}

.nav-panel a {
  font-weight: 600;
  color: var(--brand-dark);
}

.nav-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.hero {
  padding: 56px 0 40px;
  background: var(--surface);
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.2;
}

.hero p {
  color: var(--muted);
  margin-top: 16px;
}

.hero-cta {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.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;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: var(--brand);
  color: var(--white);
}

.btn.secondary {
  background: var(--white);
  color: var(--brand-dark);
  border-color: var(--brand-dark);
}

.btn:hover {
  transform: translateY(-1px);
}

section {
  padding: 48px 0;
}

.section-title {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--muted);
  margin-bottom: 28px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.light {
  background: var(--surface);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--brand);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: var(--surface-alt);
  padding: 18px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.quote {
  background: var(--brand);
  color: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.list-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: var(--surface-alt);
  border-radius: 999px;
  font-size: 14px;
  color: var(--brand-dark);
}

.highlight {
  background: var(--accent);
  color: #3a2c05;
  padding: 18px;
  border-radius: 14px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--surface-alt);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: var(--white);
  border: none;
  padding: 16px;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  padding: 0 16px 16px;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  border-radius: var(--radius);
  border: 1px solid var(--surface-alt);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-price {
  font-weight: 700;
  color: var(--brand-dark);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-row {
  background: var(--surface);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cta-panel {
  background: var(--brand-dark);
  color: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-box {
  background: var(--surface);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer {
  background: var(--surface-alt);
  padding: 28px 0;
  margin-top: 40px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 40;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27, 35, 38, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 50;
}

.modal-overlay.show {
  display: flex;
}

.modal {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  width: min(520px, 95%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--surface-alt);
}

.toggle-row:last-child {
  border-bottom: none;
}

.toggle-btn {
  background: var(--surface-alt);
  border: none;
  border-radius: 999px;
  padding: 6px 14px;
  font-weight: 600;
  cursor: pointer;
}

.pill {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--surface-alt);
  font-size: 13px;
  color: var(--muted);
}

@media (min-width: 860px) {
  .hero-grid {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-cta {
    justify-content: flex-start;
  }

  .card-grid,
  .stats-bar,
  .services-grid,
  .comparison,
  .split {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .service-card,
  .comparison-row,
  .stat {
    flex: 1 1 240px;
  }

  .feature-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature-item {
    flex: 1 1 240px;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
}
