:root {
  --bg: #f5f7fb;
  --bg-alt: #ffffff;
  --bg-dark: #0b1424;
  --text: #1c2333;
  --text-muted: #566176;
  --brand: #3a5bff;
  --brand-dark: #2639b7;
  --accent: #22c3b5;
  --border: #e1e6f0;
  --shadow: 0 18px 45px rgba(11, 20, 36, 0.08);
  --radius: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  color: var(--text-muted);
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.section.tight {
  padding: 48px 0;
}

.section.dark {
  background: var(--bg-dark);
  color: #f0f4ff;
}

.section.dark p {
  color: #c7d2ff;
}

.section.alt {
  background: var(--bg-alt);
}

.section-header {
  margin-bottom: 36px;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(58, 91, 255, 0.12);
  color: var(--brand-dark);
  font-weight: 600;
  font-size: 0.85rem;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(245, 247, 251, 0.9);
  backdrop-filter: blur(10px);
  z-index: 20;
  border-bottom: 1px solid var(--border);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.logo {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
}

.logo span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.nav-toggle {
  border: 1px solid var(--border);
  background: #fff;
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: 600;
}

.primary-nav {
  position: fixed;
  inset: 70px 16px auto 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}

.primary-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.primary-nav a {
  font-weight: 600;
}

.nav-open .primary-nav {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-cta {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.button.secondary {
  background: #fff;
  color: var(--brand-dark);
  border: 1px solid var(--brand);
}

.button.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.button:hover {
  transform: translateY(-1px);
}

.hero {
  padding: 80px 0 60px;
}

.hero h1 {
  font-size: 2.6rem;
  margin: 18px 0;
}

.hero p {
  font-size: 1.05rem;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.icon-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.highlight-panel {
  background: linear-gradient(135deg, rgba(58, 91, 255, 0.12), rgba(34, 195, 181, 0.12));
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(58, 91, 255, 0.2);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--border);
}

.stat strong {
  font-size: 1.6rem;
  color: var(--brand-dark);
}

.quote {
  font-size: 1.2rem;
  font-weight: 600;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial {
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card .price {
  font-weight: 700;
  color: var(--brand-dark);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comparison-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
}

.process {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-left: 4px solid var(--brand);
  background: #fff;
  border-radius: 12px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 14px 18px;
  font-weight: 600;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 220px;
  padding-bottom: 14px;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer {
  background: #0f1b33;
  color: #d6ddff;
  padding: 40px 0;
}

.footer a {
  color: #d6ddff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.footer-meta {
  margin-top: 24px;
  font-size: 0.85rem;
  color: #9aa6d4;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 18px;
  display: none;
  z-index: 30;
}

.cookie-banner.active {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(11, 20, 36, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 40;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  width: min(560px, 94%);
  max-height: 80vh;
  overflow-y: auto;
}

.preference-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 16px 0;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.preference-row button {
  align-self: flex-start;
}

@media (min-width: 760px) {
  .nav-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
  }

  .primary-nav ul {
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }

  .nav-cta {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }

  .split {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .split > * {
    flex: 1;
  }

  .card-grid,
  .stats,
  .testimonials,
  .comparison,
  .process,
  .info-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card-grid .card,
  .testimonials .testimonial,
  .comparison-item,
  .process-step,
  .info-grid .card {
    flex: 1 1 calc(50% - 12px);
  }

  .stats .stat {
    flex: 1 1 calc(33% - 12px);
  }

  .service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
  }

  .service-card {
    flex: 1 1 calc(33% - 12px);
  }
}

@media (min-width: 1024px) {
  .card-grid .card,
  .comparison-item,
  .process-step {
    flex: 1 1 calc(33% - 12px);
  }

  .info-grid .card {
    flex: 1 1 calc(33% - 12px);
  }
}
