*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1e1e24;
  background: #f7f7fb;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e6e6ee;
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.logo {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
}

.menu-toggle {
  background: #2a2a72;
  color: #ffffff;
  border: none;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  font-size: 0.95rem;
  cursor: pointer;
}

.site-nav {
  display: none;
  gap: 1.2rem;
  font-size: 0.95rem;
}

.mobile-nav {
  display: none;
  background: #ffffff;
  border-top: 1px solid #e6e6ee;
  padding: 1rem 0;
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.75rem 0;
  font-weight: 600;
}

.hero {
  padding: 3.5rem 0 2.5rem;
  background: #f1f1ff;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero h1 {
  font-size: 2.3rem;
  margin-bottom: 1rem;
  color: #16164c;
}

.hero p {
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary {
  background: #2a2a72;
  color: #ffffff;
}

.btn-outline {
  border-color: #2a2a72;
  color: #2a2a72;
  background: transparent;
}

.section {
  padding: 3rem 0;
}

.section.alt {
  background: #ffffff;
}

.section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #16164c;
}

.section p {
  margin: 0 0 1rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 16px 40px rgba(15, 20, 60, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.card.highlight {
  background: #2a2a72;
  color: #ffffff;
}

.card.highlight h3 {
  color: #ffffff;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: #e6e6ff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  border: 1px solid #e6e6ee;
}

.stat strong {
  font-size: 1.6rem;
  color: #2a2a72;
}

.testimonial {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pillar {
  padding: 1.2rem;
  border-radius: 1rem;
  background: #ffffff;
  border: 1px solid #ececf5;
}

.process {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.process-step {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.2rem;
  border-left: 4px solid #2a2a72;
}

.case {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.quote {
  background: #16164c;
  color: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-question {
  background: #ffffff;
  border: 1px solid #e6e6ee;
  border-radius: 0.8rem;
  padding: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  width: 100%;
}

.faq-answer {
  padding: 0 1rem 1rem;
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.service-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #e6e6ee;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.service-card span {
  font-weight: 700;
  color: #2a2a72;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-row {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.3rem;
  border: 1px solid #e6e6ee;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-box {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #e6e6ee;
}

.site-footer {
  background: #141437;
  color: #ffffff;
  padding: 2.5rem 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: #ffffff;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 100;
}

.cookie-banner.is-visible {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 30, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 120;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal-content {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.8rem;
  width: min(520px, 100%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.cookie-option {
  background: #f7f7fb;
  border-radius: 0.8rem;
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hidden {
  display: none;
}

@media (min-width: 768px) {
  .site-nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cards,
  .stats,
  .pillars,
  .process,
  .services-grid,
  .comparison,
  .contact-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .stat,
  .pillar,
  .process-step,
  .service-card,
  .comparison-row,
  .info-box {
    flex: 1 1 calc(50% - 1.5rem);
  }

  .case {
    flex-direction: row;
  }

  .quote {
    flex: 1 1 45%;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .card,
  .stat,
  .pillar,
  .process-step,
  .service-card,
  .comparison-row,
  .info-box {
    flex: 1 1 calc(33.333% - 1.5rem);
  }
}
