:root {
  --bg: #f6f9fd;
  --bg-soft: #eef4fb;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --text: #12233d;
  --text-soft: #56657c;
  --line: rgba(18, 35, 61, 0.11);
  --brand: #163f7a;
  --brand-2: #2d6fd6;
  --accent: #f07a22;
  --accent-soft: #fff2e8;
  --shadow-soft: 0 16px 40px rgba(17, 35, 61, 0.07);
  --shadow-strong: 0 28px 70px rgba(17, 35, 61, 0.14);
  --gradient-brand: linear-gradient(135deg, #163f7a, #2d6fd6);
  --gradient-accent: linear-gradient(135deg, #f07a22, #ef5c17);
  --hero-bg:
    radial-gradient(circle at 0% 0%, rgba(45, 111, 214, 0.15), transparent 36%),
    radial-gradient(circle at 100% 10%, rgba(240, 122, 34, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff, #f5f8fd);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
  --transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 104px 0;
}

.section--tinted {
  background: linear-gradient(180deg, rgba(238, 244, 251, 0.95), rgba(246, 249, 253, 0.95));
}

.section--dark {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(45, 111, 214, 0.42), transparent 30%),
    radial-gradient(circle at 100% 100%, rgba(240, 122, 34, 0.25), transparent 30%),
    #0f2d59;
  color: #fff;
}

.section--cta {
  padding-top: 72px;
  padding-bottom: 104px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(246, 249, 253, 0.82);
  border-bottom: 1px solid rgba(18, 35, 61, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 84px;
}

.brand img,
.footer__logo {
  width: auto;
  height: 52px;
}

.site-nav,
.header__actions,
.hero__actions,
.hero__badges,
.logo-strip__items,
.footer__bottom {
  display: flex;
  align-items: center;
}

.site-nav {
  gap: 8px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.site-nav a:hover,
.site-nav a.is-active {
  background: rgba(22, 63, 122, 0.08);
  color: var(--brand);
}

.header__actions {
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: var(--transition);
  cursor: pointer;
}

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

.btn-primary {
  color: #fff;
  background: var(--gradient-accent);
  box-shadow: 0 18px 40px rgba(240, 122, 34, 0.28);
}

.btn-secondary,
.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(22, 63, 122, 0.12);
  color: var(--brand);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--brand);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--hero-bg);
  padding-top: 64px;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 35, 61, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 35, 61, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 500px);
  gap: 64px;
  align-items: center;
}

.eyebrow-pill,
.pill-note,
.outcome-banner span,
.section-eyebrow,
.mini-label,
.case-scale {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 700;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(18, 35, 61, 0.08);
  box-shadow: var(--shadow-soft);
}

.hero h1,
.section-heading h2,
.service-card h3,
.pillar-card h3,
.step-card h3,
.mini-card h3,
.case-card h3,
.dark-card h3,
.site-footer h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.03em;
}

.hero h1 {
  margin-top: 24px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.03;
  max-width: 12ch;
}

.text-gradient {
  background: linear-gradient(135deg, #163f7a, #2d6fd6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead,
.section-copy,
.pillar-card p,
.step-card p,
.info-card p,
.service-card li,
.mini-card p,
.case-card li,
.case-card p,
.dark-card p,
.site-footer p {
  color: var(--text-soft);
  line-height: 1.8;
}

.hero__lead {
  margin: 24px 0 0;
  max-width: 620px;
  font-size: 18px;
}

.hero__actions {
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero__badges {
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero__badges span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 35, 61, 0.08);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
}

.hero__visual {
  position: relative;
}

.hero__image-card {
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(18, 35, 61, 0.08);
  box-shadow: var(--shadow-strong);
  background: var(--surface-strong);
}

.hero__image-card img {
  width: 100%;
  height: auto;
}

.floating-card {
  position: absolute;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(18, 35, 61, 0.08);
  box-shadow: var(--shadow-strong);
}

.floating-card--scan {
  top: 42px;
  left: -48px;
  width: 250px;
  padding: 18px;
}

.floating-card--fix {
  right: -28px;
  bottom: 34px;
  width: 250px;
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.floating-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-card__meta strong {
  color: var(--accent);
}

.floating-card__score {
  margin-top: 14px;
  font-family: "Sora", sans-serif;
  font-size: 38px;
  color: var(--brand);
}

.floating-card__label,
.floating-card p,
.contact-form__footer p {
  color: var(--text-soft);
  font-size: 13px;
}

.progress {
  height: 8px;
  margin: 14px 0 12px;
  border-radius: 999px;
  background: rgba(18, 35, 61, 0.08);
  overflow: hidden;
}

.progress span {
  display: block;
  width: 94%;
  height: 100%;
  background: var(--gradient-brand);
}

.pulse-dot {
  width: 12px;
  height: 12px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(240, 122, 34, 0.5);
  animation: pulse 2s infinite;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading--dark .section-eyebrow,
.section-eyebrow--light {
  color: rgba(255, 255, 255, 0.72);
}

.section-eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
}

.section-heading h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
}

.section-copy {
  margin: 18px 0 0;
  max-width: 620px;
  font-size: 17px;
}

.logo-strip {
  border-top: 1px solid rgba(18, 35, 61, 0.06);
  border-bottom: 1px solid rgba(18, 35, 61, 0.06);
  background: rgba(238, 244, 251, 0.5);
  padding: 36px 0;
}

.logo-strip__items {
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.logo-strip__items img {
  height: 42px;
  width: auto;
  opacity: 0.86;
}

.stats-grid,
.card-grid,
.steps-grid,
.footer__grid,
.form-grid,
.global-grid,
.split-grid,
.cta-shell {
  display: grid;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stat-card,
.info-card,
.pillar-card,
.step-card,
.service-card,
.mini-card,
.case-card,
.dark-card,
.contact-form,
.stacked-cards .mini-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.stat-card,
.info-card,
.pillar-card,
.step-card,
.service-card,
.mini-card,
.case-card,
.dark-card {
  padding: 28px;
}

.stat-card {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--gradient-accent);
}

.stat-card strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  color: var(--brand);
}

.stat-card span {
  display: block;
  margin-top: 10px;
  color: var(--text-soft);
}

.quote {
  max-width: 880px;
  margin: 44px auto 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.5;
  text-align: center;
  color: var(--brand);
}

.card-grid {
  gap: 20px;
}

.card-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.pill-note,
.outcome-banner {
  margin-top: 28px;
}

.pill-note {
  display: inline-flex;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--gradient-brand);
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 800;
  color: var(--accent);
  background: var(--accent-soft);
}

.icon-badge--brand {
  color: #fff;
  background: var(--gradient-brand);
}

.icon-badge--accent {
  color: #fff;
  background: var(--gradient-accent);
}

.info-card h3,
.service-card h3,
.case-card h3,
.dark-card h3,
.mini-card h3 {
  margin-top: 18px;
  font-size: 22px;
}

.pillar-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mini-label {
  margin: 0 0 6px;
  color: rgba(22, 63, 122, 0.58);
}

.mini-label--accent {
  color: rgba(240, 122, 34, 0.85);
}

.pillar-card p {
  margin: 18px 0 0;
}

.pillar-card ul,
.service-card ul,
.case-card ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.pillar-card li,
.service-card li,
.case-card li {
  position: relative;
  padding-left: 18px;
  margin-top: 10px;
  color: var(--text-soft);
}

.pillar-card li::before,
.service-card li::before,
.case-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.split-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.outcome-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 28px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.outcome-banner strong {
  font-family: "Sora", sans-serif;
  font-size: 22px;
}

.outcome-banner em {
  color: var(--accent);
  font-style: normal;
  font-weight: 800;
}

.steps-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  list-style: none;
}

.step-card span {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 34px;
  color: rgba(240, 122, 34, 0.78);
}

.step-card h3 {
  margin-top: 14px;
  font-size: 22px;
}

.service-card,
.case-card {
  background: rgba(255, 255, 255, 0.94);
}

.case-scale {
  color: var(--accent);
}

.case-card p {
  margin: 18px 0 0;
}

.dark-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.dark-card h3,
.section-heading--dark h2 {
  color: #fff;
}

.dark-card p {
  color: rgba(255, 255, 255, 0.74);
}

.global-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 26px 48px;
  align-items: start;
}

.stacked-cards {
  display: grid;
  gap: 18px;
}

.cta-shell {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr) minmax(280px, 340px);
  gap: 22px;
  align-items: start;
}

.cta-copy {
  padding: 38px;
  border-radius: 32px;
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: var(--shadow-strong);
}

.cta-copy h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.08;
}

.cta-copy p:last-child {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.contact-form {
  padding: 28px;
  background: rgba(255, 255, 255, 0.94);
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: block;
  color: var(--brand);
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(18, 35, 61, 0.12);
  background: #fff;
  color: var(--text);
}

.contact-form textarea {
  resize: vertical;
  min-height: 148px;
}

.contact-form label + label,
.contact-form .form-grid + label {
  margin-top: 16px;
}

.contact-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
}

.contact-cards {
  display: grid;
  gap: 16px;
}

.contact-cards .mini-card h3 {
  margin-top: 0;
}

.contact-cards .mini-card a {
  color: var(--brand);
}

.site-footer {
  background: #0c1f3d;
  color: rgba(255, 255, 255, 0.8);
  padding-top: 72px;
}

.footer__grid {
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 42px;
}

.site-footer h3 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 18px;
}

.site-footer a {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.74);
}

.footer__bottom {
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(240, 122, 34, 0.5);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(240, 122, 34, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(240, 122, 34, 0);
  }
}

@media (max-width: 1180px) {
  .hero__inner,
  .global-grid,
  .cta-shell {
    grid-template-columns: 1fr;
  }

  .floating-card--scan {
    left: 18px;
  }

  .floating-card--fix {
    right: 18px;
  }

  .card-grid--five,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .site-nav,
  .header__actions {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-header.is-open .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 8px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-strong);
  }

  .stats-grid,
  .card-grid--three,
  .card-grid--two,
  .footer__grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .contact-form__footer,
  .outcome-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 78px 0;
  }

  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .hero {
    padding-top: 42px;
  }

  .hero__inner {
    gap: 34px;
  }

  .floating-card {
    position: static;
    width: auto;
    margin-top: 16px;
  }

  .form-grid,
  .steps-grid,
  .card-grid--five {
    grid-template-columns: 1fr;
  }

  .logo-strip__items {
    gap: 24px;
  }

  .logo-strip__items img {
    height: 34px;
  }
}
