:root {
  --navy: #1f2a44;
  --coral: #ff6b5a;
  --peach: #fff1ea;
  --mint: #d9f3ea;
  --sand: #f7f3ef;
  --slate: #5d6473;
  --ink: #121620;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(18, 22, 32, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(18, 22, 32, 0.08);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand span {
  font-size: 1.1rem;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  position: absolute;
  top: 70px;
  right: 5%;
  width: 230px;
}

.nav-links a {
  font-weight: 600;
  color: var(--navy);
}

.nav-toggle {
  border: none;
  background: var(--peach);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.nav-open .nav-links {
  display: flex;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(18, 22, 32, 0.35);
}

.nav-open .nav-overlay {
  display: block;
}

.hero {
  padding: 72px 0 64px;
  background: var(--white);
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-card {
  background: var(--peach);
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: var(--coral);
  color: var(--white);
}

.btn.secondary {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(31, 42, 68, 0.2);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--white);
}

.section-title {
  font-size: 1.9rem;
  margin: 0 0 20px;
  color: var(--navy);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--white);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.card.dark {
  background: var(--navy);
  color: var(--white);
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat {
  background: var(--mint);
  border-radius: 18px;
  padding: 20px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.quote {
  background: var(--white);
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.quote strong {
  display: block;
  margin-top: 12px;
  color: var(--navy);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 18px;
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
}

.timeline-item span {
  font-weight: 700;
  color: var(--coral);
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.service-card .price {
  font-weight: 700;
  color: var(--coral);
  margin-top: 12px;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--white);
  border-radius: 16px;
  padding: 18px;
}

.comparison-row strong {
  color: var(--navy);
}

.process {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process-step {
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
}

.faq-item button {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item p {
  margin: 12px 0 0;
  display: none;
}

.faq-item.open p {
  display: block;
}

.cta-panel {
  background: var(--navy);
  color: var(--white);
  padding: 32px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-block {
  background: var(--white);
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.site-footer {
  background: var(--white);
  padding: 40px 0;
  border-top: 1px solid rgba(18, 22, 32, 0.08);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  width: min(92%, 520px);
  display: none;
  z-index: 20;
}

.cookie-banner.show {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(18, 22, 32, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 30;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  width: min(92%, 520px);
  max-height: 80vh;
  overflow-y: auto;
}

.preferences {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
}

.preferences label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--sand);
  padding: 12px;
  border-radius: 12px;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  background: var(--mint);
  color: var(--navy);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.insight {
  background: var(--white);
  padding: 22px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

@media (min-width: 760px) {
  .nav-links {
    position: static;
    flex-direction: row;
    display: flex;
    box-shadow: none;
    padding: 0;
    width: auto;
    background: transparent;
  }

  .nav-toggle {
    display: none;
  }

  .nav-overlay {
    display: none;
  }

  .hero-grid,
  .split,
  .cards,
  .stats,
  .testimonials,
  .service-grid,
  .process,
  .contact-grid,
  .footer-grid {
    flex-direction: row;
  }

  .hero-grid > * {
    flex: 1;
  }

  .cards > *,
  .stats > *,
  .testimonials > *,
  .service-grid > *,
  .process-step,
  .info-block {
    flex: 1;
  }

  .split > * {
    flex: 1;
  }

  .comparison-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cookie-actions {
    flex-direction: row;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
}
