:root {
  --primary: #1f3c88;
  --accent: #f7c948;
  --dark: #1b1b1f;
  --muted: #5c5f6b;
  --bg: #f8f8fb;
  --white: #ffffff;
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--bg);
}

.section-head {
  margin-bottom: 32px;
}

.section-head h2 {
  margin-bottom: 8px;
}

.hero {
  padding-top: 96px;
}

.hero.compact {
  padding-top: 72px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-text h1 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 20px 40px rgba(31, 60, 136, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-badge {
  background: var(--accent);
  color: var(--dark);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  align-self: flex-start;
}

.mini-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat-number {
  font-size: 1.6rem;
  font-weight: 700;
  display: block;
}

.stat-label {
  color: var(--muted);
  font-size: 0.95rem;
}

.site-header {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid rgba(31, 60, 136, 0.08);
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-links {
  display: none;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
}

.mobile-toggle {
  border: 1px solid rgba(31, 60, 136, 0.2);
  background: var(--white);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 600;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid rgba(31, 60, 136, 0.08);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(31, 60, 136, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.highlight {
  border-left: 4px solid var(--primary);
}

.service-card .price {
  font-weight: 700;
  color: var(--primary);
}

.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(31, 60, 136, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.process {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.process-step {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(31, 60, 136, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.step-number {
  font-weight: 700;
  color: var(--primary);
}

.stats-bar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: 0 16px 32px rgba(31, 60, 136, 0.1);
}

.testimonial-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(31, 60, 136, 0.08);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag {
  background: rgba(31, 60, 136, 0.08);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}

.value-list,
.clean-list {
  padding-left: 18px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quote-panel,
.cta-panel,
.highlight-panel,
.insight-panel {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(31, 60, 136, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote-panel p {
  font-size: 1.1rem;
}

.info-block {
  background: var(--bg);
  padding: 16px;
  border-radius: 12px;
}

.team-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.team-card {
  background: var(--white);
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(31, 60, 136, 0.08);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comparison-column {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(31, 60, 136, 0.08);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid rgba(31, 60, 136, 0.08);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--white);
}

.faq-item button {
  background: none;
  border: none;
  font-weight: 600;
  width: 100%;
  text-align: left;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item p {
  margin-top: 12px;
  display: none;
  color: var(--muted);
}

.faq-item.open p {
  display: block;
}

.button-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.button {
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button.primary {
  background: var(--primary);
  color: var(--white);
}

.button.ghost {
  background: transparent;
  color: var(--primary);
  border: 1px solid rgba(31, 60, 136, 0.3);
}

.button.link {
  background: none;
  color: var(--primary);
  padding: 0;
}

.site-footer {
  background: #0f1d3d;
  color: var(--white);
  padding: 48px 0 24px;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-grid a {
  color: var(--white);
  opacity: 0.85;
  display: block;
  margin-top: 6px;
}

.footer-bottom {
  text-align: center;
  margin-top: 24px;
  opacity: 0.7;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.show {
  display: flex;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 29, 61, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 30;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  width: min(520px, 100%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.icon-button {
  border: none;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-option {
  border: 1px solid rgba(31, 60, 136, 0.1);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.toggle-button {
  border: 1px solid rgba(31, 60, 136, 0.2);
  background: var(--bg);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 600;
}

.legal h2 {
  margin-top: 32px;
}

@media (min-width: 768px) {
  .hero-text h1 {
    font-size: 2.8rem;
  }

  .hero-inner,
  .split {
    flex-direction: row;
    align-items: center;
  }

  .hero-text,
  .hero-card,
  .split > div {
    flex: 1;
  }

  .card-grid,
  .testimonial-grid,
  .team-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .testimonial,
  .team-card,
  .comparison-column {
    flex: 1 1 calc(33% - 20px);
  }

  .process {
    flex-direction: row;
  }

  .process-step {
    flex: 1;
  }

  .stats-bar {
    flex-direction: row;
  }

  .button-row {
    flex-direction: row;
  }
}

@media (min-width: 960px) {
  .nav-links {
    display: flex;
  }

  .mobile-toggle {
    display: none;
  }

  .mobile-menu {
    display: none;
  }
}
