* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f6f2;
  --panel: #ffffff;
  --ink: #1e2a2f;
  --muted: #5b6b73;
  --accent: #1f7a6d;
  --accent-dark: #145449;
  --sand: #efe7da;
  --mist: #e6eef0;
  --highlight: #fff5d6;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 8px 12px;
  z-index: 999;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

.site-header {
  background: var(--panel);
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.4px;
}

.menu-toggle {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 12px;
  background: var(--panel);
  padding: 12px 0;
}

.nav-links a {
  padding: 6px 2px;
  color: var(--muted);
  font-weight: 600;
}

.nav-open .nav-links {
  display: flex;
}

main {
  padding: 32px 0 60px;
}

section {
  padding: 36px 0;
}

.hero {
  background: var(--mist);
  padding: 48px 0;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  background: var(--panel);
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.section-title {
  font-size: 1.7rem;
  margin: 0 0 12px;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--panel);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.highlight {
  background: var(--highlight);
  border-radius: 14px;
  padding: 24px;
}

.stat-bar {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stat {
  background: var(--panel);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 6px solid var(--accent);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.quote {
  background: var(--sand);
  padding: 24px;
  border-radius: 16px;
  font-style: italic;
}

.service-card {
  background: var(--panel);
  padding: 20px;
  border-radius: 14px;
  border: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: var(--mist);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--muted);
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--panel);
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  background: transparent;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  padding: 0 18px 16px;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.site-footer {
  background: #0f1e22;
  color: #d7e0e3;
  padding: 36px 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #d7e0e3;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--panel);
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 30, 34, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 120;
}

.cookie-modal.show {
  display: flex;
}

.modal-panel {
  background: var(--panel);
  padding: 24px;
  border-radius: 16px;
  width: min(560px, 92%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  background: var(--mist);
  border-radius: 10px;
}

.toggle {
  background: var(--panel);
  border: 1px solid #c5d3d7;
  border-radius: 999px;
  padding: 6px 12px;
  cursor: pointer;
  font-weight: 600;
}

.page-banner {
  background: var(--mist);
  padding: 36px 0;
}

.muted {
  color: var(--muted);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 18px;
}

.compare-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.compare-card {
  background: var(--panel);
  border-radius: 14px;
  padding: 18px;
  border: 1px solid #e5e5e5;
}

.info-block {
  background: var(--panel);
  padding: 22px;
  border-radius: 14px;
  border: 1px solid #e5e5e5;
}

.inline-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--sand);
  padding: 22px;
  border-radius: 14px;
}

.notice {
  background: var(--highlight);
  padding: 14px;
  border-radius: 10px;
}

.space-top-sm {
  margin-top: 16px;
}

.space-top-md {
  margin-top: 18px;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: row;
    gap: 18px;
  }

  .menu-toggle {
    display: none;
  }

  .hero-grid,
  .card-grid,
  .split,
  .footer-grid,
  .compare-grid {
    flex-direction: row;
  }

  .hero-grid > * {
    flex: 1;
  }

  .card-grid .card,
  .service-card,
  .compare-card,
  .footer-grid > * {
    flex: 1;
  }

  .cookie-actions {
    flex-direction: row;
    justify-content: flex-start;
  }
}
