:root {
  color-scheme: light;
  --bg: #f7f4f1;
  --surface: #ffffff;
  --ink: #1c1c1e;
  --muted: #5c5f66;
  --accent: #2e5d7d;
  --accent-strong: #1c3a4f;
  --highlight: #e7eef3;
  --warm: #f0e3d5;
  --border: #d9d6d2;
  --radius: 18px;
  --shadow: 0 20px 50px rgba(12, 18, 28, 0.12);
  --shadow-soft: 0 12px 30px rgba(12, 18, 28, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

header {
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: var(--shadow-soft);
}

.nav-bar {
  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: 36px;
  height: 36px;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  position: absolute;
  right: 5%;
  top: 68px;
  min-width: 200px;
}

.nav-links a {
  font-weight: 600;
  color: var(--accent-strong);
}

.nav-toggle {
  background: var(--accent);
  border: none;
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.nav-links.open {
  display: flex;
}

.hero {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero .hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.hero p {
  margin: 0;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-strong);
  border: 2px solid var(--accent-strong);
}

.section {
  padding: 8px 0;
}

.section-title {
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  margin: 0;
}

.section-lead {
  margin: 0;
  color: var(--muted);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--surface);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .meta {
  font-size: 0.95rem;
  color: var(--muted);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight {
  background: var(--warm);
  padding: 24px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-item svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--accent);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: var(--surface);
  padding: 18px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: var(--shadow-soft);
}

.stat strong {
  font-size: 1.6rem;
}

.quote {
  background: var(--accent-strong);
  color: #fff;
  padding: 26px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote span {
  opacity: 0.8;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline-item {
  background: var(--surface);
  padding: 16px;
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-soft);
}

.testimonial {
  background: var(--highlight);
  padding: 20px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-button {
  width: 100%;
  border: none;
  background: transparent;
  padding: 16px;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-content {
  padding: 0 16px 16px;
  display: none;
  color: var(--muted);
}

.faq-item.open .faq-content {
  display: block;
}

.cta {
  background: var(--accent);
  color: #fff;
  padding: 30px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta .btn.secondary {
  border-color: #fff;
  color: #fff;
}

footer {
  background: var(--surface);
  padding: 30px 0;
  margin-top: 40px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
}

.service-price {
  font-weight: 700;
  color: var(--accent-strong);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-item {
  background: var(--surface);
  padding: 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(960px, 92%);
  background: var(--surface);
  padding: 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 16, 24, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 30;
}

.cookie-modal.open {
  display: flex;
}

.cookie-panel {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius);
  width: min(640px, 100%);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.toggle-button {
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--accent-strong);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.toggle-button.active {
  background: var(--accent);
  color: #fff;
}

.map-block {
  background: var(--highlight);
  padding: 18px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 720px) {
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-actions {
    flex-direction: row;
  }

  .cards,
  .stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .stat {
    flex: 1 1 240px;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .split > * {
    flex: 1;
  }

  .feature-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature-item {
    flex: 1 1 240px;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-item {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    box-shadow: none;
    padding: 0;
    background: transparent;
    gap: 20px;
  }

  .cookie-actions {
    flex-direction: row;
    align-items: center;
  }
}
