* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f6f7fb;
  --text: #1e2235;
  --muted: #5b6278;
  --accent: #3a5bff;
  --accent-dark: #2a3db0;
  --surface: #ffffff;
  --surface-alt: #eef1ff;
  --border: #d9deef;
  --shadow: 0 12px 32px rgba(30, 34, 53, 0.08);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, 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;
  display: block;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.nav-toggle {
  border: 1px solid var(--border);
  background: var(--surface-alt);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.site-nav {
  display: none;
  flex-direction: column;
  gap: 0.7rem;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  position: absolute;
  right: 4%;
  top: 4rem;
  width: min(260px, 90%);
}

.site-nav a {
  font-weight: 600;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--accent-dark);
}

.site-nav.is-open {
  display: flex;
}

main {
  padding: 2rem 0 4rem;
}

section {
  padding: 2.5rem 0;
}

.section-surface {
  background: var(--surface);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.section-alt {
  background: var(--surface-alt);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 3.5vw, 3rem);
  line-height: 1.2;
}

.hero p {
  color: var(--muted);
}

.hero .hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 20px rgba(58, 91, 255, 0.2);
}

.btn-secondary {
  background: var(--surface);
  color: var(--accent-dark);
  border: 1px solid var(--border);
}

.btn:focus-visible,
.btn:hover {
  transform: translateY(-2px);
}

.grid-two {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
}

.feature svg,
.feature img {
  width: 44px;
  height: 44px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-card {
  background: var(--surface);
  border-radius: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--border);
}

.stat-card strong {
  font-size: 1.7rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  border-radius: 1.2rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.quote {
  background: var(--accent-dark);
  color: #fff;
  padding: 2rem;
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote span {
  opacity: 0.8;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.timeline-item {
  background: var(--surface);
  border-radius: 1rem;
  padding: 1.2rem;
  border-left: 4px solid var(--accent);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: var(--surface);
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid var(--border);
}

.service-price {
  font-weight: 700;
  color: var(--accent-dark);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--surface);
  border-radius: 1rem;
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.2rem;
  background: transparent;
  border: none;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-answer {
  display: none;
  padding: 0 1.2rem 1rem;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
}

.footer {
  background: #111529;
  color: #d4d8ea;
  padding: 2.5rem 0;
}

.footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer a {
  color: #d4d8ea;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: var(--surface);
  border-radius: 1.2rem;
  padding: 1.2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: none;
  z-index: 20;
}

.cookie-banner.is-visible {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(17, 21, 41, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30;
  padding: 1.5rem;
}

.modal.is-visible {
  display: flex;
}

.modal-content {
  background: var(--surface);
  border-radius: 1.2rem;
  padding: 1.5rem;
  width: min(540px, 100%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-content label {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag {
  background: var(--surface-alt);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .hero-actions {
    flex-direction: row;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    width: auto;
  }

  .nav-toggle {
    display: none;
  }

  .grid-two {
    flex-direction: row;
  }

  .grid-two > * {
    flex: 1;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(50% - 1.5rem);
  }

  .stats {
    flex-direction: row;
  }

  .stat-card {
    flex: 1;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }

  .footer .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cookie-banner {
    max-width: 560px;
    left: auto;
    right: 2rem;
  }

  .cookie-actions {
    flex-direction: row;
  }
}
