* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f6f3;
  --text: #1f2a2e;
  --muted: #5c6a6f;
  --brand: #2d5b78;
  --brand-dark: #1f3b4d;
  --accent: #d7b87a;
  --card: #ffffff;
  --line: #e2e4e8;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--brand);
  color: #fff;
  padding: 10px 14px;
  z-index: 999;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-wrap {
  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.5px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}

.nav-toggle {
  border: 1px solid var(--line);
  background: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

nav {
  display: none;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 16px 20px;
}

nav.open {
  display: flex;
}

nav a {
  color: var(--text);
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  transition: background 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--brand);
}

.section {
  padding: 48px 0;
}

.section.alt {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  margin-bottom: 24px;
}

.section-head h2 {
  font-size: 28px;
  margin-bottom: 8px;
}

.section-head p {
  color: var(--muted);
}

.hero {
  padding: 60px 0 40px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.pill {
  background: var(--accent);
  color: var(--brand-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--card);
  padding: 20px;
  border-radius: 14px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  font-size: 20px;
}

.icon-badge {
  width: 44px;
  height: 44px;
  background: var(--brand);
  color: #fff;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.highlight {
  background: var(--brand);
  color: #fff;
  padding: 24px;
  border-radius: 16px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat strong {
  font-size: 22px;
}

.testimonial {
  background: #fff;
  padding: 22px;
  border-radius: 14px;
  border-left: 4px solid var(--accent);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote {
  font-style: italic;
}

.cta {
  background: var(--brand-dark);
  color: #fff;
  padding: 32px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  padding: 0 16px 16px;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price {
  font-weight: 700;
  color: var(--brand-dark);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-panel {
  background: #fff;
  border: 1px solid var(--line);
  padding: 20px;
  border-radius: 14px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 14px;
}

footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 32px 0;
}

footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  border: none;
}

.footer-meta {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 120;
}

.modal-backdrop.open {
  display: flex;
}

.modal {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  width: 90%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.modal h3 {
  font-size: 22px;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  background: #fdfdfd;
}

@media (min-width: 768px) {
  nav {
    display: flex;
    flex-direction: row;
    gap: 18px;
    padding: 0;
    border: none;
  }

  .nav-toggle {
    display: none;
  }

  .hero-grid,
  .split,
  .cards,
  .service-grid,
  .stats {
    flex-direction: row;
  }

  .hero-grid > div,
  .split > div,
  .cards > div,
  .service-grid > div,
  .stats > div {
    flex: 1;
  }

  .cookie-actions,
  .modal-actions {
    flex-direction: row;
  }

  footer nav {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
