*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --navy: #0f1d52;
  --blue: #243c8f;
  --teal: #70c3c5;
  --teal-dark: #243c8f;
  --teal-light: #e8f5f4;
  --heading: #202323;
  --muted: #7a8db5;
  --gray-50: #f7f8fc;
  --gray-100: #f0f2f8;
  --gray-200: #dee2ee;
  --gray-400: #9299b5;
  --gray-600: #555f80;
  --grad: linear-gradient(135deg, #243c8f 0%, #70c3c5 100%);
  --r-btn: 999px;
  --r-card: 24px;
  --r-container: 32px;
  --r-sm: 8px;
  --r-lg: 16px;
  --shadow-card: 0 20px 50px rgba(0, 0, 0, 0.08);
  --font: "Inter", "InterFallback", -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}
body {
  font-family: var(--font) !important;
  color: var(--navy);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
* {
  font-family: var(--font) !important;
}
a {
  text-decoration: none;
  color: inherit;
}
html,
body {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
}
body {
  position: relative;
  background-color: #ffffff;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(
      rgba(112, 195, 197, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(112, 195, 197, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 0;
}
body > * {
  position: relative;
  z-index: 1;
}
section,
.elementor-section,
.elementor-container,
.elementor-widget-wrap,
.wp-block-group,
.wp-site-blocks,
main,
.site-main,
.content-area {
  background-color: transparent !important;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(14, 181, 160, 0.08),
      transparent 40%
    ),
    radial-gradient(circle at 80% 80%, rgba(26, 47, 110, 0.08), transparent 40%);
}
header,
main,
footer,
section,
.elementor-location-header,
.elementor-location-footer {
  position: relative;
  z-index: 2;
}
.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: #0f1d52;
}
.hero-wrapper::before {
  content: "";
  position: absolute;
  top: -220px;
  left: -180px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(15, 29, 82, 0.85) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.hero-wrapper::after {
  content: "";
  position: absolute;
  bottom: -200px;
  right: -160px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(112, 195, 197, 0.25) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.hero-wrapper .hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-wrapper .hero-mid-orb {
  position: absolute;
  top: 35%;
  right: 20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(36, 60, 143, 0.2) 0%,
    transparent 65%
  );
  pointer-events: none;
  animation: heroOrb 14s ease-in-out infinite alternate;
}
@-webkit-keyframes heroOrb {
}
@keyframes heroOrb {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, -40px);
  }
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: -10px 6%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  padding: 7px 18px 7px 12px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 36px;
  backdrop-filter: blur(8px);
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #70c3c5;
  box-shadow: 0 0 0 3px rgba(112, 195, 197, 0.3);
  flex-shrink: 0;
  animation: badgePulse 2.4s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(112, 195, 197, 0.25);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(112, 195, 197, 0.1);
  }
}
.hero-inner h1 {
  font-size: clamp(44px, 6.5vw, 84px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.055em;
  color: #fff;
  margin-bottom: 28px;
}
.hero-line-1 {
  display: block;
}
.hero-line-2 {
  display: block;
}
.hero-cycling-word {
  display: inline-block;
  min-width: 160px;
  color: #70c3c5;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.hero-cycling-word.out {
  opacity: 0;
  transform: translateY(-8px);
}
.hero-sub {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 44px;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #243c8f, #70c3c5);
  color: white;
  padding: 15px 36px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 24px rgba(36, 60, 143, 0.5);
}
.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(36, 60, 143, 0.6);
}
.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.85);
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  transition: background 0.18s, border-color 0.18s, transform 0.15s;
}
.btn-hero-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.trusted {
  background: var(--navy);
  padding: 52px 6%;
  overflow: hidden;
}
.trusted.trusted-visible .trusted-inner {
  opacity: 1;
  transform: translateY(0);
}
.trusted-stat {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
  letter-spacing: 0.2px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s 0.15s ease,
    transform 0.6s 0.15s cubic-bezier(0.22, 1, 0.36, 1);
}
.trusted.trusted-visible .trusted-stat {
  opacity: 1;
  transform: translateY(0);
}
.trusted-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.trusted-logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 32px;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.trusted-logo-sep {
  width: 1px;
  height: 26px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.4s 0.4s ease;
}
.trusted.trusted-visible .trusted-logo-sep {
  opacity: 1;
}
.trusted-logo-text {
  font-size: 20px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.trusted.trusted-visible .trusted-logo-item:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}
.trusted.trusted-visible .trusted-logo-item:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.26s;
}
.trusted.trusted-visible .trusted-logo-item:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.32s;
}
.trusted.trusted-visible .trusted-logo-item:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.38s;
}
.trusted.trusted-visible .trusted-logo-item:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.44s;
}
.trusted.trusted-visible .trusted-logo-item:nth-child(6) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}
.trusted.trusted-visible .trusted-logo-item:nth-child(7) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.56s;
}
.trusted.trusted-visible .trusted-logo-item:nth-child(8) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.62s;
}
.trusted.trusted-visible .trusted-logo-item:nth-child(9) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.68s;
}
.trusted.trusted-visible .trusted-logo-item:nth-child(10) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.74s;
}
.trusted.trusted-visible .trusted-logo-item:nth-child(11) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}
.trusted.trusted-visible .trusted-logo-item:nth-child(12) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.86s;
}
.trusted.trusted-visible .trusted-logo-item:nth-child(13) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.92s;
}
.trusted-logos-viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 6%,
    #000 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 6%,
    #000 94%,
    transparent 100%
  );
}
.trusted-logos {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 24px;
  width: max-content;
  -webkit-animation: trustedScroll 28s linear infinite;
  animation: trustedScroll 28s linear infinite;
}
.trusted-logos:hover {
  animation-play-state: paused;
}
.trusted-logos::-webkit-scrollbar {
  display: none;
}
@keyframes trustedScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .trusted-logos {
    animation: none;
  }
}
.trusted-stat {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #333;
  letter-spacing: 0.3px;
  margin-bottom: 20px;
  line-height: 1.6;
  -webkit-animation: fadeUp 0.6s ease both;
  animation: fadeUp 0.6s ease both;
}
.trusted-item {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  padding: 0 20px;
  flex-shrink: 0;
  -webkit-animation: fadeUp 0.6s ease both;
  animation: fadeUp 0.6s ease both;
}
.trusted-item:nth-child(1) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.trusted-item:nth-child(2) {
  -webkit-animation-delay: 0.18s;
  animation-delay: 0.18s;
}
.trusted-item:nth-child(3) {
  -webkit-animation-delay: 0.26s;
  animation-delay: 0.26s;
}
.trusted-item:nth-child(4) {
  -webkit-animation-delay: 0.34s;
  animation-delay: 0.34s;
}
.trusted-item:nth-child(5) {
  -webkit-animation-delay: 0.42s;
  animation-delay: 0.42s;
}
.trusted-item:nth-child(6) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.trusted-item:nth-child(7) {
  -webkit-animation-delay: 0.58s;
  animation-delay: 0.58s;
}
.trusted-item:nth-child(8) {
  -webkit-animation-delay: 0.66s;
  animation-delay: 0.66s;
}
.trusted-item:nth-child(9) {
  -webkit-animation-delay: 0.74s;
  animation-delay: 0.74s;
}
.trusted-item.show {
  opacity: 1;
}
.trusted-item img {
  height: 32px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
}
.trusted-item span {
  font-size: 13px;
  font-weight: 600;
  color: #1a2f6e;
  white-space: nowrap;
  letter-spacing: 0.2px;
}
.trusted-logo-sep {
  width: 1px;
  height: 28px;
  background: rgba(26, 47, 110, 0.12);
  flex-shrink: 0;
  -webkit-animation: fadeIn 0.5s ease 0.3s both;
  animation: fadeIn 0.5s ease 0.3s both;
}
@media (hover: hover) {
  .trusted-item:hover {
    opacity: 0.75;
  }
}
@media (max-width: 900px) {
  .trusted-logos {
    justify-content: flex-start;
  }
  .trusted-item {
    padding: 0 14px;
  }
  .trusted-item img {
    height: 28px;
  }
  .trusted-item span {
    font-size: 12px;
  }
  .trusted-logo-sep {
    height: 22px;
  }
  .trusted-logos {
    flex-wrap: wrap;
  }
}
@media (max-width: 480px) {
  .trusted-logos {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 28px;
  }
  .trusted-item {
    justify-content: center;
  }
  .trusted-item img {
    height: 36px;
    max-width: 110px;
  }
  .trusted-item span {
    font-size: 13px;
  }
  .trusted-logo-sep {
    display: block;
  }
}
.who-section {
  padding: 50px 6%;
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
}
.who-subheading {
  font-size: 30px;
  font-weight: 800;
  color: var(--gray-400);
  margin-bottom: 16px;
  line-height: 1.6;
}
.who-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-top: 48px;
}
.who-left {
  -webkit-animation: slideInLeft 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
  animation: slideInLeft 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}
.who-left.who-left-in {
  opacity: 1;
  transform: translateX(0);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-size: c clamp(26px, 3.2vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 18px;
}
.teal {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.who-body p {
  font-size: 20px;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 16px;
}
.who-checks {
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.who-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-600);
}
.who-check-dot {
  width: 22px;
  height: 22px;
  background: var(--grad);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
  font-weight: 800;
}
.who-right {
  -webkit-animation: slideInRight 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
  animation: slideInRight 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
  position: relative;
}
.who-right.who-right-in {
  opacity: 1;
}
.who-hub {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1;
  margin: 0 auto;
  top: -100px;
}
.who-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1.5px dashed rgba(180, 190, 220, 0.45);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.who-ring-2 {
  width: 80%;
  height: 80%;
}
.who-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 50%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(36, 60, 143, 0.06) 0%,
    transparent 80%
  );
  pointer-events: none;
}
.who-hub-svg {
  display: none;
}
.who-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 40px rgba(15, 29, 82, 0.14),
    0 0 0 14px rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  overflow: hidden;
  -webkit-animation: centerPulse 5s ease-in-out infinite;
  animation: centerPulse 5s ease-in-out infinite;
}
@-webkit-keyframes centerPulse {
}
@keyframes centerPulse {
  0%,
  100% {
    box-shadow: 0 8px 40px rgba(15, 29, 82, 0.14),
      0 0 0 14px rgba(255, 255, 255, 0.9);
  }
  50% {
    box-shadow: 0 14px 56px rgba(15, 29, 82, 0.2),
      0 0 0 18px rgba(255, 255, 255, 0.8);
  }
}
.who-center-svg-wrap {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.who-center-svg-wrap svg {
  width: 100%;
  height: 100%;
}
.who-spoke {
  position: absolute;
  transform: translate(-50%, -50%) scale(0);
  background: white;
  border-radius: 16px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 28px rgba(15, 29, 82, 0.09);
  border: 1px solid rgba(210, 220, 240, 0.9);
  white-space: nowrap;
  z-index: 10;
  cursor: default;
  opacity: 0;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.who-spoke.spoke-zoomed {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.who-spoke.spoke-floating {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.who-spoke[data-p="top"].spoke-floating {
  -webkit-animation: spFloat1;
  animation: spFloat1 5.8s ease-in-out infinite;
}
.who-spoke[data-p="top-right"].spoke-floating {
  -webkit-animation: spFloat2;
  animation: spFloat2 6.2s ease-in-out infinite 0.4s;
}
.who-spoke[data-p="bot-right"].spoke-floating {
  -webkit-animation: spFloat3;
  animation: spFloat3 5.6s ease-in-out infinite 0.8s;
}
.who-spoke[data-p="bottom"].spoke-floating {
  -webkit-animation: spFloat4;
  animation: spFloat4 6.4s ease-in-out infinite 0.2s;
}
.who-spoke[data-p="bot-left"].spoke-floating {
  -webkit-animation: spFloat5;
  animation: spFloat5 5.9s ease-in-out infinite 1s;
}
.who-spoke[data-p="top-left"].spoke-floating {
  -webkit-animation: spFloat6;
  animation: spFloat6 6.1s ease-in-out infinite 0.6s;
}
.who-spoke:hover {
  box-shadow: 0 16px 40px rgba(15, 29, 82, 0.14);
  border-color: var(--teal);
  animation-play-state: paused;
}
.who-spoke-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.who-spoke-name {
  font-size: 14px;
  font-weight: 700;
  color: #202323;
  line-height: 1.2;
}
.who-spoke-sub {
  font-size: 11px;
  color: #7a8db5;
}
.who-spoke[data-p="top"] {
  top: 5%;
  left: 50%;
}
.who-spoke[data-p="top-right"] {
  top: 28%;
  left: 84%;
}
.who-spoke[data-p="bot-right"] {
  top: 72%;
  left: 84%;
}
.who-spoke[data-p="bottom"] {
  top: 95%;
  left: 50%;
}
.who-spoke[data-p="bot-left"] {
  top: 72%;
  left: 16%;
}
.who-spoke[data-p="top-left"] {
  top: 28%;
  left: 16%;
}
@-webkit-keyframes spFloat1 {
}
@keyframes spFloat1 {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-9px);
  }
}
@-webkit-keyframes spFloat2 {
}
@keyframes spFloat2 {
  0%,
  100% {
    transform: translate(-50%, -50%) translate(0, 0);
  }
  50% {
    transform: translate(-50%, -50%) translate(6px, -7px);
  }
}
@-webkit-keyframes spFloat3 {
}
@keyframes spFloat3 {
  0%,
  100% {
    transform: translate(-50%, -50%) translate(0, 0);
  }
  50% {
    transform: translate(-50%, -50%) translate(6px, 7px);
  }
}
@-webkit-keyframes spFloat4 {
}
@keyframes spFloat4 {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(9px);
  }
}
@-webkit-keyframes spFloat5 {
}
@keyframes spFloat5 {
  0%,
  100% {
    transform: translate(-50%, -50%) translate(0, 0);
  }
  50% {
    transform: translate(-50%, -50%) translate(-6px, 7px);
  }
}
@-webkit-keyframes spFloat6 {
}
@keyframes spFloat6 {
  0%,
  100% {
    transform: translate(-50%, -50%) translate(0, 0);
  }
  50% {
    transform: translate(-50%, -50%) translate(-6px, -7px);
  }
}
.who-header,
.who-grid,
.who-body-wrap,
.who-visual,
.who-anim-wrap,
.who-sticky-outer,
.who-sticky-inner {
  display: none !important;
}
@media (max-width: 1024px) {
  .who-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .who-left {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
  }
  .who-hub {
    max-width: 450px;
    top: 0px;
  }
  .who-spoke {
    padding: 10px 12px;
  }
  .who-spoke-name {
    font-size: 13px;
  }
  .who-spoke-sub {
    font-size: 10px;
  }
}
@media (max-width: 768px) {
  .who-section {
    padding: 80px 20px;
  }
  .section-title {
    font-size: 32px;
  }
  .who-layout {
    gap: 50px;
  }
  .who-hub {
    max-width: 360px;
    top: 0px;
  }
  .who-center {
    width: 90px;
    height: 90px;
  }
  .who-spoke {
    padding: 8px 10px;
    border-radius: 14px;
    gap: 8px;
  }
  .who-spoke-icon {
    width: 32px;
    height: 32px;
  }
  .who-spoke-icon svg {
    width: 16px;
    height: 16px;
  }
  .who-spoke-name {
    font-size: 12px;
  }
  .who-spoke-sub {
    display: none;
  }
  .who-spoke[data-p="top"] {
    top: 10%;
    left: 50%;
  }
  .who-spoke[data-p="top-right"] {
    top: 30%;
    left: 78%;
  }
  .who-spoke[data-p="bot-right"] {
    top: 70%;
    left: 78%;
  }
  .who-spoke[data-p="bottom"] {
    top: 90%;
    left: 50%;
  }
  .who-spoke[data-p="bot-left"] {
    top: 70%;
    left: 22%;
  }
  .who-spoke[data-p="top-left"] {
    top: 30%;
    left: 22%;
  }
}
@media (max-width: 480px) {
  .who-hub {
    max-width: 320px;
  }
  .who-center {
    width: 80px;
    height: 80px;
  }
  .who-center-logo {
    width: 65%;
  }
  .who-spoke {
    min-width: 110px;
    padding: 7px 8px;
  }
  .who-spoke-name {
    font-size: 11px;
  }
  .who-spoke-icon {
    width: 28px;
    height: 28px;
  }
  .who-spoke-icon svg {
    width: 14px;
    height: 14px;
  }
  .who-spoke[data-p="top"] {
    top: 12%;
  }
  .who-spoke[data-p="top-right"] {
    left: 76%;
  }
  .who-spoke[data-p="bot-right"] {
    left: 76%;
  }
  .who-spoke[data-p="bot-left"] {
    left: 24%;
  }
  .who-spoke[data-p="top-left"] {
    left: 24%;
  }
}
.caps-section {
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  padding: 48px 8% 48px;
  box-sizing: border-box;
  max-width: 1280px;
  margin: 0 auto;
}
.caps-section-wrap {
  background: linear-gradient(
    135deg,
    #0f1d52 0%,
    #243c8f 50%,
    #70c3c5 100%
  ) !important;
  position: relative;
}
.caps-section-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}
.caps-header-band {
  background: transparent;
  position: relative;
  z-index: 2;
  padding: 0 0 20px 0;
  flex-shrink: 0;
}
.caps-header-band::before {
  display: none;
}
.caps-header-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}
.caps-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #70c3c5;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.caps-header-inner h2 {
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.15;
  color: #fff;
  max-width: 340px;
}
.caps-header-inner h2 em {
  font-style: normal;
  color: #70c3c5;
}
.caps-header-right p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}
.caps-gradient-band {
  background: transparent;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.caps-gradient-band::before {
  display: none;
}
.caps-card-outer {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.caps-viewport {
  border-radius: 20px;
  overflow: hidden;
  background: white;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
  position: relative;
  display: flex;
  flex-direction: column;
}
.cap-card-slide {
  position: absolute;
  inset: 0;
  background: white;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
  pointer-events: none;
}
.cap-card-slide.slide-active {
  position: relative;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cap-card-slide.slide-enter {
  position: absolute;
  transform: translateY(80px);
  opacity: 0;
  pointer-events: none;
}
.cap-card-slide.slide-exit {
  position: absolute;
  transform: translateY(-60px);
  opacity: 0;
  pointer-events: none;
}
.cap-slide-left {
  padding: 44px 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cap-slide-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.cap-slide-eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  flex-shrink: 0;
}
.cap-slide-left h3 {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.cap-slide-left p {
  font-size: 14.5px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 20px;
  flex: 1;
}
.cap-outcomes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cap-outcome {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-600);
  background: white;
  border: 1px solid var(--gray-200);
  padding: 6px 14px;
  border-radius: 999px;
}
.cap-slide-right {
  background: var(--gray-50);
  border-left: 1px solid var(--gray-200);
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cap-quote-bigmark {
  font-size: 64px;
  line-height: 0.65;
  color: var(--gray-200);
  font-family: Georgia, serif;
  display: block;
  margin-bottom: 16px;
}
.cap-quote-body {
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.65;
  letter-spacing: -0.2px;
  margin-bottom: 28px;
}
.cap-quote-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.cap-quote-role {
  font-size: 12.5px;
  color: var(--gray-400);
  margin-bottom: 14px;
}
.cap-quote-co {
  display: flex;
  align-items: center;
  gap: 9px;
}
.cap-quote-co-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
}
.cap-quote-co-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}
.caps-dots-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  position: relative;
  z-index: 2;
}
.caps-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.caps-dot.active {
  background: white;
  transform: scale(1.35);
}
.caps-progress-wrap {
  margin-top: 12px;
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.caps-progress-inner {
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
}
.caps-progress-bar {
  height: 100%;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 2px;
  width: 0%;
  transition: width linear;
}
.compare-section {
  padding: 96px 6%;
  max-width: 1440px;
  margin: 0 auto;
}
.compare-wrap {
  margin-top: 40px;
}
.compare-cols {
  display: grid;
  grid-template-columns: 200px repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 12px;
  padding: 0 4px;
}
.compare-col-head {
  text-align: center;
  padding: 16px 12px;
  border-radius: 14px 14px 0 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.compare-col-head.col-feature {
  background: transparent;
  text-align: left;
  color: transparent;
}
.compare-col-head.col-ainovaq {
  background: linear-gradient(135deg, #0f1d52, #243c8f 60%, #70c3c5);
  color: white;
  box-shadow: 0 8px 28px rgba(36, 60, 143, 0.3);
  position: relative;
}
.compare-col-head.col-ainovaq::after {
  content: "★ Best";
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  background: #70c3c5;
  color: white;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.8px;
  white-space: nowrap;
}
.compare-col-head.col-other {
  background: var(--gray-50);
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
}
.compare-rows {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.compare-row {
  display: grid;
  grid-template-columns: 200px repeat(4, 1fr);
  gap: 12px;
  align-items: stretch;
}
.compare-row:last-child .compare-cell {
  border-radius: 0 0 14px 14px;
}
.compare-cell {
  padding: 18px 20px;
  font-size: 13.5px;
  line-height: 1.55;
  transition: transform 0.18s;
}
.compare-cell.cell-feature {
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  padding-left: 4px;
}
.compare-cell.cell-ainovaq {
  background: rgba(36, 60, 143, 0.04);
  border: 1.5px solid rgba(36, 60, 143, 0.18);
  color: var(--navy);
  font-weight: 600;
  border-radius: 6px;
  position: relative;
}
.compare-cell.cell-ainovaq::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #243c8f, #70c3c5);
  border-radius: 3px 0 0 3px;
}
.compare-cell.cell-other {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  color: var(--gray-600);
  border-radius: 6px;
}
.compare-row {
  cursor: default;
  border-radius: 8px;
  transition: background 0.18s;
}
.compare-row:hover .compare-cell.cell-ainovaq {
  background: rgba(36, 60, 143, 0.1);
  border-color: rgba(36, 60, 143, 0.35);
}
.compare-row:hover .compare-cell.cell-other {
  background: rgba(112, 195, 197, 0.1);
}
.compare-row:hover .compare-cell.cell-feature {
  color: #0f1d52;
  font-weight: 800;
}
.compare-cell {
  cursor: default;
  transition: background 0.18s, transform 0.15s;
}
.compare-cell.cell-ainovaq:hover {
  background: rgba(36, 60, 143, 0.18) !important;
  transform: scale(1.02);
  border-color: #243c8f !important;
  box-shadow: 0 4px 20px rgba(36, 60, 143, 0.15);
  z-index: 2;
  position: relative;
}
.compare-cell.cell-other:hover {
  background: rgba(112, 195, 197, 0.18) !important;
  transform: scale(1.02);
  border-color: #70c3c5 !important;
  box-shadow: 0 4px 16px rgba(112, 195, 197, 0.2);
  z-index: 2;
  position: relative;
}
.compare-cell.cell-feature:hover {
  color: #243c8f;
  background: rgba(36, 60, 143, 0.05) !important;
  border-radius: 8px;
}
.compare-col-head.col-other:hover {
  background: rgba(112, 195, 197, 0.15);
  border-color: #70c3c5;
  color: #0f1d52;
  cursor: default;
}
@media (max-width: 900px) {
  .compare-cols,
  .compare-row {
    grid-template-columns: 140px repeat(4, 1fr);
    gap: 8px;
  }
  .compare-cell {
    padding: 14px 12px;
    font-size: 12px;
  }
}
@media (max-width: 640px) {
  .compare-wrap {
    overflow-x: auto;
  }
  .compare-cols,
  .compare-row {
    min-width: 700px;
  }
}
.cap-showcase {
  width: 100%;
  display: grid;
  grid-template-columns: 280px 1fr;
  background: #fff;
  border-radius: 0;
  border: none;
  overflow: visible;
  box-shadow: none;
  position: relative;
  z-index: 2;
  align-items: stretch;
}
.cap-sidebar {
  background: var(--gray-50);
  border-right: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
}
.cap-sidebar button {
  border: none;
  background: none;
  text-align: left;
  padding: 16px 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--gray-600);
  transition: 0.25s;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--gray-200);
  font-size: 13px;
  letter-spacing: 0.3px;
  flex: 1;
}
.cap-sidebar button:last-child {
  border-bottom: none;
}
.cap-sidebar button.active {
  background: linear-gradient(135deg, #0f1d52 0%, #243c8f 50%, #70c3c5 100%);
  color: #fff;
  border-bottom-color: transparent;
}
.cap-content {
  padding: 32px 36px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.cap-badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(36, 60, 143, 0.08);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
}
.cap-content h3 {
  margin: 16px 0 12px;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  line-height: 1.15;
  max-width: 650px;
}
.cap-content p {
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.7;
  max-width: 700px;
}
.cap-chart-row {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 220px 220px 1fr;
  gap: 20px;
}
.stat-card {
  background: var(--gray-50);
  border-radius: 20px;
  padding: 22px;
}
.stat-card span {
  display: block;
  color: var(--gray-600);
}
.stat-card strong {
  display: block;
  margin-top: 10px;
  font-size: 2rem;
}
.pie-chart {
  min-height: 180px;
  border-radius: 20px;
  background: conic-gradient(#0f1d52 0 45%, #243c8f 45% 70%, #70c3c5 70% 100%);
}
@media (max-width: 991px) {
  .cap-showcase {
    grid-template-columns: 1fr;
  }
  .cap-sidebar {
    overflow: auto;
    flex-direction: row;
  }
  .cap-sidebar button {
    white-space: nowrap;
  }
  .cap-content {
    padding: 30px;
  }
  .cap-chart-row {
    grid-template-columns: 1fr;
  }
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
  -webkit-animation: fadeUp 0.4s ease;
  animation: fadeUp 0.4s ease;
}
@-webkit-keyframes fadeUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(15px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.work-section {
  padding: 96px 6%;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}
.work-header {
  margin-bottom: 40px;
}
.work-carousel-outer {
  overflow: hidden;
  position: relative;
  border-radius: var(--r-lg);
}
.work-carousel-track {
  display: flex;
  flex-direction: column;
  -webkit-transition: -webkit-transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.work-page {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  flex-shrink: 0;
  padding: 4px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.work-card-item {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(11, 23, 48, 0.04);
  transition: box-shadow 0.25s, transform 0.25s;
  -webkit-animation: fadeUp 0.5s ease both;
  animation: fadeUp 0.5s ease both;
}
.work-card-item:hover {
  box-shadow: 0 12px 36px rgba(11, 23, 48, 0.1);
  transform: translateY(-4px);
}
.wv-modern {
  height: 120px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px 18px 0;
  position: relative;
  overflow: hidden;
}
.wv-modern .wv-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
}
.wv-modern .wv-metric {
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
}
.wv-modern .wv-sub {
  font-size: 10px;
  font-weight: 600;
  opacity: 0.6;
  margin-top: 2px;
}
.wv-modern .wv-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 50px;
}
.wv-modern .wv-bar {
  width: 8px;
  border-radius: 3px 3px 0 0;
}
.wv-modern .wv-dots {
  display: grid;
  grid-template-columns: repeat(4, 10px);
  gap: 5px;
  padding-top: 4px;
}
.wv-modern .wv-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.wv-modern .wv-line-chart {
  width: 80px;
  height: 50px;
}
.wv-modern .wv-arc {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 6px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}
.wv-teal {
  background: linear-gradient(135deg, #e8f5f4, #cceee9);
}
.wv-blue {
  background: linear-gradient(135deg, #eef2ff, #dde5ff);
}
.wv-navy {
  background: linear-gradient(135deg, #f0f2f8, #e0e5f0);
}
.wv-soft {
  background: linear-gradient(135deg, #f9f0ff, #ece0ff);
}
.work-card-visual {
  height: 120px;
  position: relative;
  overflow: hidden;
}
.vis-full-1 {
  background: linear-gradient(135deg, #e8f5f4, #d4f0f0);
}
.vis-full-2 {
  background: linear-gradient(135deg, #eef2ff, #dde5ff);
}
.vis-full-3 {
  background: linear-gradient(135deg, #f0f2f8, #e0e5f0);
}
.vis-gtm-1 {
  background: linear-gradient(135deg, #e8f5f4, #cceee9);
}
.vis-gtm-2 {
  background: linear-gradient(135deg, #eef2ff, #dde5ff);
}
.vis-gtm-3 {
  background: linear-gradient(135deg, #e8f5f4, #d4f0f0);
}
.vis-exp {
  background: linear-gradient(135deg, #eef2ff, #dde5ff);
}
.vis-chan {
  background: linear-gradient(135deg, #f0f2f8, #e0e5f0);
}
.work-card-num {
  position: absolute;
  top: 10px;
  left: 12px;
  font-size: 11px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.22);
  letter-spacing: 1px;
}
.work-card-body {
  padding: 18px 18px 20px;
}
.work-card-name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}
.work-card-sector {
  font-size: 11.5px;
  color: var(--gray-400);
  margin-bottom: 9px;
}
.work-card-desc {
  font-size: 12.5px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 12px;
}
.work-card-mode {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.mode-full {
  background: rgba(36, 60, 143, 0.08);
  color: var(--blue);
}
.mode-gtm {
  background: var(--teal-light);
  color: var(--teal-dark);
}
.mode-expand {
  background: rgba(112, 195, 197, 0.15);
  color: var(--navy);
}
.mode-channel {
  background: var(--gray-100);
  color: var(--gray-600);
}
.cap-sidebar button {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cap-sb-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.cap-sidebar button.active .cap-sb-icon {
  background: rgba(255, 255, 255, 0.22);
}
.cap-sb-icon svg {
  display: block;
}
.work-mobile-pager {
  display: none;
}
.work-mobile-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-200);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  border: none;
  padding: 0;
}
.work-mobile-dot.active {
  background: var(--navy);
  transform: scale(1.4);
}
.work-mobile-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--navy);
  transition: border-color 0.18s, background 0.18s, color 0.18s;
}
.work-mobile-arrow:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: white;
}
.cap-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cap-badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(36, 60, 143, 0.08);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
}
.work-pager-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-200);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  border: none;
  padding: 0;
}
.work-pager-dot.active {
  background: var(--navy);
  transform: scale(1.4);
}
@media (max-width: 1100px) {
  .work-carousel-outer {
    overflow: hidden;
  }
  .work-page {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .work-pager {
    display: none;
  }
  .work-mobile-pager {
    display: none !important;
  }
}
@media (max-width: 1100px) and (min-width: 601px) {
  .work-card-item {
    flex: 0 0 50%;
    width: 50%;
    min-width: 0;
  }
}
@media (max-width: 600px) {
  .work-card-item {
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
  }
}
@media (min-width: 1101px) {
  .work-mobile-pager {
    display: none;
  }
}
.cap-what-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 20px;
}
.cap-what-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 14px;
}
.cap-what-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.cap-what-list li {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 9px;
}
.cap-what-list li::before {
  content: "→";
  color: var(--teal);
  font-weight: 700;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}
.cap-outcomes-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cap-out-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 14px;
  background: var(--gray-50);
  border-radius: 10px;
  border-left: 3px solid;
  border-image: linear-gradient(135deg, #243c8f, #70c3c5) 1;
}
.cap-out-num {
  font-size: 15px;
  font-weight: 900;
  background: linear-gradient(135deg, #243c8f 0%, #70c3c5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  flex-shrink: 0;
}
.cap-out-lbl {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.4;
}
@media (max-width: 768px) {
  .cap-what-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.test-section {
  padding: 30px 6%;
  background: #f8f9fc;
}
.test-section-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.test-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}
.test-header-right p {
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.75;
}
.test-viewport {
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  position: relative;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.test-track {
  display: flex;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.test-slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 4px;
  box-sizing: border-box;
}
.test-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 36px 32px 32px;
  box-shadow: 0 2px 16px rgba(15, 29, 82, 0.05);
  transition: box-shadow 0.2s;
}
.test-card:hover {
  box-shadow: 0 8px 32px rgba(15, 29, 82, 0.09);
}
.test-quote {
  font-size: 36px;
  color: #c8d4f0;
  font-family: Georgia, serif;
  line-height: 0.8;
  margin-bottom: 18px;
  display: block;
}
.test-text {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 22px;
}
.test-stars {
  color: #f5a623;
  font-size: 15px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.test-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.test-role {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 2px;
}
@media (min-width: 1024px) {
  .test-slide {
    flex: 0 0 50%;
    width: 50%;
  }
}
.test-controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}
.test-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 16px;
  transition: border-color 0.18s, background 0.18s, color 0.18s;
  flex-shrink: 0;
}
.test-arrow:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: white;
}
.test-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.test-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-200);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}
.test-dot.active {
  background: var(--navy);
  transform: scale(1.4);
}
@media (max-width: 768px) {
  .test-section {
    padding: 30px 5%;
  }
  .test-header {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .test-text {
    font-size: 15px;
  }
  .test-card {
    padding: 20px 22px 24px;
  }
}
/* Footer layout/accordion styling (.site-footer, .sf-*) lives solely in
   footer.php's own inline <style> now — that block is printed on every
   page after this stylesheet loads, so a second copy here was stale dead
   weight that could drift out of sync (it still had the pre-fix tablet
   grid and mobile accordion sizing). */
.vertical-work-carousel {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  padding: 60px 20px;
}
.carousel-wrapper {
  position: relative;
  height: 320px;
  overflow: hidden;
}
.carousel-track {
  position: relative;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.work-card {
  height: 320px;
  background: #fff;
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.number {
  font-size: 14px;
  font-weight: 700;
  color: #70c3c5;
  margin-bottom: 15px;
}
.work-card h3 {
  font-size: 42px;
  line-height: 1.15;
  background: linear-gradient(135deg, #243c8f 0%, #243c8f 50%, #70c3c5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
  font-weight: 800;
}
.work-card p {
  font-size: 18px;
  color: var(--gray-600);
  margin-bottom: 20px;
}
.badge {
  display: inline-flex;
  width: max-content;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(white, white) padding-box,
    linear-gradient(135deg, #243c8f 0%, #70c3c5 100%) border-box;
  border: 1.5px solid transparent;
  font-size: 13px;
  font-weight: 700;
  background-clip: padding-box;
  color: #243c8f;
  position: relative;
}
.badge::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  padding: 1.5px;
  background: linear-gradient(135deg, #0f1d52 0%, #243c8f 50%, #70c3c5 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}
.carousel-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-200);
  cursor: pointer;
  transition: 0.3s;
}
.carousel-dots span.active {
  background: #70c3c5;
  transform: scale(1.3);
}
@media (max-width: 1024px) {
  .work-card h3 {
    font-size: 34px;
  }
}
@media (max-width: 768px) {
  .carousel-wrapper {
    height: 260px;
  }
  .work-card {
    height: 260px;
    padding: 25px;
  }
  .work-card h3 {
    font-size: 24px;
  }
  .work-card p {
    font-size: 15px;
  }
  .badge {
    font-size: 11px;
    padding: 8px 14px;
  }
}
.cta-section {
  position: relative;
  padding: 50px 6%;
  background: #0b1f4d !important;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 0;
}
.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(14, 181, 160, 0.18),
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(14, 181, 160, 0.12),
      transparent 40%
    );
  z-index: 0;
}
.cta-section * {
  position: relative;
  z-index: 2;
}
.cta-section h2 {
  color: #ffffff;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  margin-bottom: 20px;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 32px;
}
.cta-section .cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0eb5a0, #4ad9c6);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.cta-section .cta-btn:hover {
  transform: translateY(-3px);
}
.cta-section {
  padding: 50px 6%;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(112, 195, 197, 0.2) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.cta-section h2 {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 700;
  color: white;
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin-bottom: 16px;
  position: relative;
}
.cta-section p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.75;
  position: relative;
}
.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.btn-white-cta {
  background: white;
  color: var(--navy);
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 700;
  display: inline-block;
  transition: transform 0.14s;
}
.btn-white-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.btn-outline-w {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  padding: 13px 28px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  font-size: 14.5px;
  font-weight: 600;
  display: inline-block;
  transition: border-color 0.18s;
}
.btn-outline-w:hover {
  border-color: rgba(255, 255, 255, 0.65);
  color: white;
}
body {
  background-image: radial-gradient(
    circle,
    rgba(36, 60, 143, 0.045) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
}
.hero-wrapper,
.trusted,
.cta-section,
.site-footer {
  background-image: none;
}
.work-section,
.test-section {
  background-image: radial-gradient(
    circle,
    rgba(36, 60, 143, 0.04) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
}
.who-section,
.compare-section {
  background-image: radial-gradient(
    circle,
    rgba(36, 60, 143, 0.035) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
}
.fade-in {
  -webkit-animation: fadeUp 0.7s ease both;
  animation: fadeUp 0.7s ease both;
}
.section-sub-dark {
  font-size: 20px;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
}
@media (max-width: 1100px) {
  .who-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .caps-header-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .cap-card-slide {
    grid-template-columns: 1fr;
  }
  .cap-slide-right {
    border-left: none;
    border-top: 1px solid var(--gray-200);
  }
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .test-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .who-section,
  .compare-section,
  .work-section,
  .test-section,
  .cta-section {
    padding: 64px 5%;
  }
  .caps-header-band {
    padding: 60px 5% 0;
  }
  .caps-gradient-band {
    padding: 48px 5% 60px;
  }
  .work-grid {
    grid-template-columns: 1fr 1fr;
  }
  .compare-wrap {
    overflow-x: auto;
  }
  .compare-table {
    min-width: 640px;
  }
  .who-orbit-wrap {
    display: none;
  }
  .trusted-logos-row {
    flex-wrap: wrap;
    gap: 8px 0;
  }
  .trusted-logo-item {
    padding: 0 18px;
  }
}
@media (max-width: 480px) {
  .work-grid {
    grid-template-columns: 1fr;
  }
  .caps-gradient-band {
    padding: 40px 4% 52px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .who-orbit-arrow-ring {
    animation: none;
  }
  .hero-cycling-word {
    transition: none;
  }
  .fade-in,
  .fade-in.visible,
  .who-header,
  .who-body-wrap,
  .who-visual,
  .who-check {
    opacity: 1 !important;
    -webkit-transform: none !important;
    transform: none !important;
    transition: none !important;
  }
  .who-header {
    opacity: 1;
    transform: none;
  }
  .who-body-wrap {
    opacity: 1;
    transform: none;
  }
  .who-visual {
    opacity: 1;
    transform: none;
  }
  .cap-card-slide {
    transition: none;
  }
  .work-card {
    opacity: 1;
    transform: none;
  }
  .trusted-inner,
  .trusted-stat,
  .trusted-logo-item,
  .trusted-logo-sep,
  .trusted-item,
  .trusted-item.show {
    opacity: 1 !important;
    -webkit-transform: none !important;
    transform: none !important;
    transition: none !important;
  }
  .who-spoke {
    opacity: 1 !important;
    -webkit-transform: translate(-50%, -50%) scale(1) !important;
    transform: translate(-50%, -50%) scale(1) !important;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --navy: #0f1d52;
  --blue: #243c8f;
  --teal: #70c3c5;
  --teal-dark: #243c8f;
  --teal-light: #e8f5f4;
  --heading: #202323;
  --muted: #7a8db5;
  --gray-50: #f7f8fc;
  --gray-100: #f0f2f8;
  --gray-200: #dee2ee;
  --gray-400: #9299b5;
  --gray-600: #555f80;
  --grad: linear-gradient(135deg, #243c8f 0%, #70c3c5 100%);
  --r-btn: 999px;
  --r-card: 24px;
  --r-container: 32px;
  --r-sm: 8px;
  --r-lg: 16px;
  --shadow-card: 0 20px 50px rgba(0, 0, 0, 0.08);
  --font: "Inter", "InterFallback", -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}
html,
body {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
}
body {
  position: relative;
  background-color: #ffffff;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(
      rgba(112, 195, 197, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(112, 195, 197, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 0;
}
body > * {
  position: relative;
  z-index: 1;
}
section,
.elementor-section,
.elementor-container,
.elementor-widget-wrap,
.wp-block-group,
.wp-site-blocks,
main,
.site-main,
.content-area {
  background-color: transparent !important;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(14, 181, 160, 0.08),
      transparent 40%
    ),
    radial-gradient(circle at 80% 80%, rgba(26, 47, 110, 0.08), transparent 40%);
}
header,
main,
footer,
section,
.elementor-location-header,
.elementor-location-footer {
  position: relative;
  z-index: 2;
}
body {
  font-family: var(--font-body);
  color: var(--navy);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
nav {
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--gray-200);
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-logo-icon-wrap {
  display: none;
}
.nav-logo-name {
  display: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--gray-600);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.18s;
}
.nav-links a:hover {
  color: var(--navy);
}
.nav-dropdown-wrap {
  position: relative;
}
.nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  color: var(--gray-600);
  font-size: 14px;
  font-weight: 500;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font) !important;
  transition: color 0.18s;
}
.nav-dropdown-btn:hover {
  color: var(--navy);
}
.nav-dropdown-btn svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
  display: inline-block;
  flex-shrink: 0;
}
.nav-dropdown-wrap.open .nav-dropdown-btn svg {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(15, 29, 82, 0.12);
  padding: 10px;
  min-width: 200px;
  z-index: 200;
}
.nav-dropdown-wrap.open .nav-dropdown-menu {
  display: block;
}
.nav-dropdown-menu a {
  display: block;
  padding: 9px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-menu a:hover {
  background: var(--gray-50);
  color: var(--navy);
}
.nav-blogs-wrap {
  position: relative;
}
.nav-blogs-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  color: var(--gray-600);
  font-size: 14px;
  font-weight: 500;
}
.nav-blogs-btn svg {
  width: 12px;
  height: 12px;
  transition: transform 0.18s;
}
.nav-cta {
  background: var(--grad) !important;
  color: white !important;
  padding: 9px 22px;
  border-radius: 999px;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: opacity 0.18s, transform 0.15s;
  box-shadow: 0 2px 12px rgba(36, 60, 143, 0.32);
}
.nav-cta:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  display: block;
}
.nav-logo-img {
  height: 50px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-logo-svg {
  height: 38px;
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--gray-200);
    padding: 16px 6%;
    gap: 6px;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }
  .hamburger {
    display: flex;
  }
}
.hero {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 80px 5%;
}
.hero-beam {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 46%;
  background: linear-gradient(
    160deg,
    rgba(112, 195, 197, 0.07) 0%,
    rgba(36, 60, 143, 0.3) 100%
  );
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}
.hero-beam-inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 46%;
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 12% 100%);
  background: linear-gradient(
    160deg,
    rgba(112, 195, 197, 0.05) 0%,
    transparent 70%
  );
  border-left: 1px solid rgba(112, 195, 197, 0.15);
  pointer-events: none;
}
.hero-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(
    rgba(112, 195, 197, 0.18) 1px,
    transparent 1px
  );
  background-size: 40px 40px;
  mask-image: radial-gradient(
    ellipse 80% 70% at 50% 50%,
    black 40%,
    transparent 100%
  );
}
.hero-orb {
  position: absolute;
  top: 10%;
  right: 12%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 40% 40%,
    rgba(112, 195, 197, 0.2) 0%,
    transparent 65%
  );
  animation: pulse 8s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes pulse {
  from {
    transform: scale(1);
    opacity: 0.6;
  }
  to {
    transform: scale(1.08);
    opacity: 1;
  }
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(112, 195, 197, 0.12);
  border: 1px solid rgba(112, 195, 197, 0.25);
  border-radius: var(--r-pill);
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 28px;
}
.hero-eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255, 255, 255, 0.65);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 300;
}
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--grad);
  color: white;
  padding: 14px 32px;
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(36, 60, 143, 0.4);
  transition: opacity 0.18s, transform 0.15s;
  font-family: var(--font-body);
}
.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  padding: 13px 28px;
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, transform 0.15s;
  font-family: var(--font-body);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}
.svc-h1 {
  margin: 0;
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -0.055em;
  color: #fff !important;
}
.hero-rotate-wrap {
  position: relative;
  height: 1.15em;
  overflow: hidden;
}
#rotatingWord {
  display: block;
  color: #fff;
  white-space: nowrap;
  transition: all 0.5s ease;
}
.fixed-text {
  display: block;
  margin-top: 10px;
  color: #70c3c5;
}
.svc-h1 {
  font-size: clamp(44px, 6.5vw, 50px) !important;
  width: 1200px !important;
}
@media (max-width: 1023px) {
  .svc-h1 {
    font-size: clamp(44px, 6.5vw, 84px) !important;
    width: auto !important;
  }
}
@media (max-width: 768px) {
  .svc-h1 {
    font-size: clamp(44px, 6.5vw, 84px) !important;
    line-height: 1.06;
    width: auto !important;
  }
  .hero-rotate-wrap {
    height: 1.2em;
  }
}
@media (max-width: 480px) {
  .svc-h1 {
    font-size: clamp(44px, 6.5vw, 84px) !important;
    letter-spacing: -0.055em;
    width: auto !important;
  }
}
.stat-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
}
.stat-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--border);
}
.stat-item {
  padding: 28px 32px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1;
}
.stat-num span {
  color: var(--teal);
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.4;
}
section {
  padding: 50px 5%;
}
.container {
  max-width: 1180px;
  margin: 0 auto;
}
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  position: relative;
  padding-left: 20px;
}
.section-eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 18px;
}
.section-title em {
  font-style: normal;
  color: var(--blue);
}
.section-sub {
  font-size: 18px;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 1200px;
  margin-top: 14px;
}
.problem-section {
  background: var(--off-white);
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
  margin-top: 56px;
}
.problem-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-height: 480px;
  justify-content: center;
}
.problem-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: flex-start;
}
.problem-num {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: rgba(36, 60, 143, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
}
.problem-item h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.problem-item p {
  font-size: 18px;
  color: var(--text-body);
  line-height: 1.6;
}
.problem-visual {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow-float);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}
.problem-visual .problem-terminal {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.problem-visual .prob-term-body {
  flex: 1;
  min-height: 200px;
}
.problem-visual-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.problem-bar {
  margin-bottom: 18px;
}
.problem-bar-label {
  font-size: 13px;
  color: var(--text-body);
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
}
.problem-bar-track {
  height: 8px;
  background: var(--surface);
  border-radius: var(--r-pill);
  overflow: hidden;
}
.problem-bar-fill {
  height: 100%;
  border-radius: var(--r-pill);
  background: var(--grad);
  animation: barGrow 1.2s ease-out forwards;
  transform-origin: left;
  transform: scaleX(0);
}
@keyframes barGrow {
  to {
    transform: scaleX(1);
  }
}
.problem-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(112, 195, 197, 0.1);
  border: 1px solid rgba(112, 195, 197, 0.3);
  border-radius: var(--r-md);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 20px;
}
.problem-badge svg {
  color: var(--teal);
}
.tracks-section {
  background: var(--white);
}
.tracks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.track-card {
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.track-card:hover {
  box-shadow: var(--shadow-float);
  transform: translateY(-4px);
  border-color: rgba(112, 195, 197, 0.4);
}
.track-card.featured {
  background: var(--white);
  border-color: var(--border);
  color: inherit;
}
.track-card.featured::before {
  display: none;
}
.track-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 20px;
}
.track-tag.fast {
  background: rgba(91, 109, 171, 0.14);
  color: #4a5a9e;
}
.track-tag.dedicated {
  background: rgba(15, 29, 82, 0.08);
  color: var(--navy);
}
.track-tag.scaled {
  background: rgba(15, 29, 82, 0.1);
  color: #0f1d52;
}
.track-card.featured .track-tag.dedicated {
  background: rgba(36, 60, 143, 0.1);
  color: var(--blue);
}
.track-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.track-icon.fast {
  background: linear-gradient(
    135deg,
    rgba(91, 109, 171, 0.18),
    rgba(91, 109, 171, 0.06)
  );
  border: 1px solid rgba(91, 109, 171, 0.32);
  box-shadow: 0 4px 16px rgba(91, 109, 171, 0.14);
}
.track-icon.dedicated {
  background: linear-gradient(
    135deg,
    rgba(36, 60, 143, 0.14),
    rgba(36, 60, 143, 0.05)
  );
  border: 1px solid rgba(36, 60, 143, 0.22);
  box-shadow: 0 4px 16px rgba(36, 60, 143, 0.1);
}
.track-icon.scaled {
  background: linear-gradient(
    135deg,
    rgba(15, 29, 82, 0.14),
    rgba(15, 29, 82, 0.05)
  );
  border: 1px solid rgba(15, 29, 82, 0.25);
  box-shadow: 0 4px 16px rgba(15, 29, 82, 0.1);
}
.track-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  color: inherit;
}
.track-card.featured h3 {
  color: var(--navy);
}
.track-timeline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.track-card.featured .track-timeline {
  color: var(--teal);
}
.track-desc {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-body);
  margin-bottom: 24px;
}
.track-card.featured .track-desc {
  color: var(--text-body);
}
.track-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.track-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.4;
}
.track-card.featured .track-features li {
  color: var(--text-body);
}
.track-features li::before {
  content: "✓";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(112, 195, 197, 0.15);
  color: var(--teal);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.track-card.featured .track-features li::before {
  background: rgba(112, 195, 197, 0.15);
  color: var(--teal);
}
.process-section {
  background: var(--off-white);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 60px;
  right: 60px;
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--teal) 0%,
    rgba(112, 195, 197, 0.2) 100%
  );
  z-index: 0;
}
.process-step {
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.process-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  box-shadow: 0 0 0 6px var(--off-white);
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.process-step p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}
.compare-section {
  background: var(--white);
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.compare-card {
  border-radius: var(--r-xl);
  padding: 36px 32px;
}
.compare-card.them {
  background: var(--off-white);
  border: 1px solid var(--border);
}
.compare-card.us {
  background: var(--navy);
}
.compare-card-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.2px;
}
.compare-card.them .compare-card-title {
  color: var(--text-muted);
}
.compare-card.us .compare-card-title {
  color: var(--teal);
}
.compare-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  font-size: 14.5px;
  line-height: 1.5;
}
.compare-card.them .compare-row {
  border-color: rgba(0, 0, 0, 0.06);
  color: var(--text-body);
}
.compare-card.us .compare-row {
  border-color: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.8);
}
.compare-row:last-child {
  border-bottom: none;
}
.compare-icon-no {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(200, 50, 50, 0.1);
  color: #cc4040;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}
.compare-icon-yes {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(112, 195, 197, 0.2);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.outcomes-section {
  background: #0f1d52 !important;
  overflow: hidden;
  position: relative;
  background-image: none !important;
}
.outcomes-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}
.outcomes-section::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(112, 195, 197, 0.15) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}
.outcomes-section > * {
  position: relative;
  z-index: 1;
}
.outcomes-section .container {
  position: relative;
  z-index: 1;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.outcome-card {
  padding: 48px 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.outcome-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -3px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}
.outcome-title {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}
.outcome-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.55;
}
.outcomes-section .section-title {
  color: white;
}
.outcomes-section .section-title em {
  -webkit-text-fill-color: transparent;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  font-style: normal;
}
.testimonial-section {
  background: var(--off-white);
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 56px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  max-width: 800px;
  margin: 56px auto 0;
  text-align: center;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 24px;
  left: 40px;
  font-family: Georgia, serif;
  font-size: 120px;
  line-height: 1;
  color: var(--teal);
  opacity: 0.15;
}
.testimonial-stars {
  color: var(--teal);
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.testimonial-quote {
  font-size: 19px;
  line-height: 1.7;
  color: var(--navy);
  font-weight: 400;
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
  font-family: var(--font-display);
}
.testimonial-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
}
.testimonial-role {
  font-size: 13px;
  color: var(--text-muted);
}
.test-viewport {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.test-track {
  display: flex;
  width: 200%;
  transition: transform 0.8s ease-in-out;
}
.test-slide {
  flex: 0 0 25%;
  padding: 12px;
  box-sizing: border-box;
}
.test-card {
  height: 100%;
}
@media (max-width: 1023px) {
  .test-slide {
    flex: 0 0 50%;
  }
}
@media (max-width: 768px) {
  .test-track {
    width: 100%;
  }
  .test-slide {
    flex: 0 0 100%;
  }
}
.trust-section {
  background: var(--white);
}
.trust-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.trust-badge {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
}
.trust-badge-icon {
  font-size: 24px;
  margin-bottom: 10px;
}
.trust-badge-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.trust-badge-sub {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}
.faq-section {
  background: var(--off-white);
}
.faq-list {
  max-width: 760px;
  margin: 56px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  gap: 20px;
  transition: color 0.18s;
}
.faq-q:hover {
  color: var(--blue);
}
.faq-q svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--teal);
  transition: transform 0.25s;
}
.faq-item.open .faq-q svg {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 18px;
  color: var(--text-body);
  line-height: 1.7;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 22px;
}
.cta-section {
  background: var(--navy);
  padding: 50px 5%;
  position: relative;
  overflow: hidden;
}
.cta-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(112, 195, 197, 0.12) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-inner .section-title {
  color: white;
  font-size: clamp(34px, 4.5vw, 52px);
}
.cta-inner p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  max-width: 500px;
  margin: 0 auto 36px;
  position: relative;
}
.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary-dark {
  background: var(--grad);
  color: white;
  padding: 15px 36px;
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  box-shadow: 0 8px 24px rgba(36, 60, 143, 0.5);
  transition: opacity 0.18s, transform 0.15s;
}
.btn-primary-dark:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  padding: 14px 32px;
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.18s, transform 0.15s;
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}
footer {
  background: #080f2e;
  padding: 40px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.18s;
}
.footer-links a:hover {
  color: var(--teal);
}
.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}
@media (max-width: 900px) {
  .stat-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .tracks-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
  .process-steps::before {
    display: none;
  }
  .compare-grid {
    grid-template-columns: 1fr;
  }
  .outcomes-grid {
    grid-template-columns: 1fr;
  }
  .trust-inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .tracks-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--border);
    padding: 20px 5%;
    gap: 4px;
    z-index: 199;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }
  .hamburger {
    display: flex;
  }
  .stat-bar-inner {
    grid-template-columns: 1fr 1fr;
  }
  .trust-badges {
    grid-template-columns: 1fr;
  }
  .testimonial-card {
    padding: 36px 28px;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .hero-beam,
  .hero-beam-inner {
    display: none;
  }
  section {
    padding: 72px 5%;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
.trusted-section-new {
  background: var(--off-white);
  padding: 52px 6%;
  overflow: hidden;
}
.trusted-logo-item-new img {
  height: 32px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
}
.trusted-section-new .trusted-stat {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #333;
  letter-spacing: 0.3px;
  margin-bottom: 20px;
  line-height: 1.6;
  -webkit-animation: fadeUp 0.6s ease both;
  animation: fadeUp 0.6s ease both;
}
.trusted-section-new.visible .trusted-stat {
  opacity: 1;
  transform: translateY(0);
}
.trusted-logos-row-new {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.trusted-logo-item-new {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 20px;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.trusted-logo-sep-new {
  width: 1px;
  height: 30px;
  background: var(--border);
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.4s 0.4s ease;
}
.trusted-section-new.visible .trusted-logo-sep-new {
  opacity: 1;
}
.trusted-logo-text-new {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.trusted-section-new.visible .trusted-logo-item-new:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}
.trusted-section-new.visible .trusted-logo-item-new:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.26s;
}
.trusted-section-new.visible .trusted-logo-item-new:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.32s;
}
.trusted-section-new.visible .trusted-logo-item-new:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.38s;
}
.trusted-section-new.visible .trusted-logo-item-new:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.44s;
}
.trusted-section-new.visible .trusted-logo-item-new:nth-child(6) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}
.trusted-section-new.visible .trusted-logo-item-new:nth-child(7) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.56s;
}
.trusted-section-new.visible .trusted-logo-item-new:nth-child(8) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.62s;
}
.trusted-section-new.visible .trusted-logo-item-new:nth-child(9) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.68s;
}
.trusted-section-new.visible .trusted-logo-item-new:nth-child(10) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.74s;
}
.trusted-section-new.visible .trusted-logo-item-new:nth-child(11) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}
.trusted-section-new.visible .trusted-logo-item-new:nth-child(12) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.86s;
}
.trusted-section-new.visible .trusted-logo-item-new:nth-child(13) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.92s;
}
@media (max-width: 900px) {
  .trusted-logos-row-new {
    justify-content: flex-start;
  }
  .trusted-logo-item-new {
    padding: 0 14px;
  }
  .trusted-logo-item-new img {
    height: 28px;
    width: auto;
  }
  .trusted-logo-text-new {
    font-size: 12px;
  }
  .trusted-logo-sep-new {
    height: 22px;
  }
}
@media (max-width: 480px) {
  .trusted-logos-row-new {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .trusted-logo-item-new {
    width: calc(30% - 10px);
    justify-content: center;
    padding: 0;
  }
  .trusted-logo-item-new img {
    height: 40px;
    max-width: 50px;
    width: auto;
  }
  .trusted-logo-text-new {
    font-size: 13px;
  }
  .trusted-logo-sep-new {
    display: block;
  }
}
.process-section-new {
  padding: 30px 6%;
  background: #f7f8fc;
}
.process-timeline-inner {
  max-width: 900px;
  margin: 0 auto;
}
.process-tl-header {
  text-align: center;
  margin-bottom: 60px;
}
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.process-timeline::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, var(--blue), var(--teal));
  opacity: 0.25;
}
.process-tl-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(15, 29, 82, 0.06);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.process-tl-item.revealed {
  opacity: 1;
  transform: translateY(0);
}
.process-tl-item:nth-child(1) {
  transition-delay: 0.1s;
}
.process-tl-item:nth-child(2) {
  transition-delay: 0.2s;
}
.process-tl-item:nth-child(3) {
  transition-delay: 0.3s;
}
.process-tl-item:nth-child(4) {
  transition-delay: 0.4s;
}
.process-tl-item:last-child {
  border-bottom: none;
}
.process-tl-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(36, 60, 143, 0.28);
  position: relative;
  z-index: 1;
}
.process-tl-body h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.process-tl-body p {
  font-size: 18px;
  color: #5a6177;
  line-height: 1.8;
}
.problem-terminal {
  background: #0d1326;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
}
.prob-term-bar {
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.prob-term-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.prob-term-dot:nth-child(1) {
  background: #ff5f57;
}
.prob-term-dot:nth-child(2) {
  background: #febc2e;
}
.prob-term-dot:nth-child(3) {
  background: #28c840;
}
.prob-term-title {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  font-family: "SF Mono", "Fira Code", monospace;
  margin-left: 8px;
}
.prob-term-body {
  padding: 20px 20px;
  font-family: "SF Mono", "Fira Code", "Courier New", monospace;
  font-size: 12px;
  line-height: 1.9;
  min-height: 260px;
}
.t-line {
  display: block;
}
.t-prompt {
  color: rgba(255, 255, 255, 0.2);
}
.t-cmd {
  color: var(--teal);
}
.t-comment {
  color: rgba(255, 255, 255, 0.2);
  font-style: italic;
}
.t-key {
  color: #7ba4f7;
}
.t-val {
  color: var(--teal);
}
.t-str {
  color: #a8d8a8;
}
.t-num {
  color: #f0a070;
}
.t-ok {
  color: #28c840;
}
.t-cursor {
  display: inline-block;
  width: 7px;
  height: 13px;
  background: var(--teal);
  vertical-align: middle;
  animation: blink 0.9s step-end infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.problem-funnel {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.funnel-icons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 6px;
}
.funnel-icons .fi {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.funnel-icons .fi.c1,
.funnel-icons .fi.c3 {
  background: rgba(112, 195, 197, 0.14);
  border: 1px solid rgba(112, 195, 197, 0.35);
}
.funnel-icons .fi.c2,
.funnel-icons .fi.c4 {
  background: rgba(36, 60, 143, 0.1);
  border: 1px solid rgba(36, 60, 143, 0.25);
}
.funnel-icons .fi svg {
  width: 24px;
  height: 24px;
}
.funnel-icons .fi.c1 svg,
.funnel-icons .fi.c3 svg {
  stroke: var(--teal-dark);
}
.funnel-icons .fi.c2 svg,
.funnel-icons .fi.c4 svg {
  stroke: var(--blue);
}
.funnel-labels {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
}
.funnel-labels span {
  width: 52px;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.funnel-pipeline {
  display: flex;
  justify-content: center;
  margin: 4px 0 22px;
}
.funnel-pipeline-box {
  background: var(--grad);
  border-radius: 16px;
  padding: 18px 32px;
  text-align: center;
  box-shadow: 0 16px 36px rgba(36, 60, 143, 0.28);
}
.funnel-pipeline-box .num {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.funnel-pipeline-box .lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}
.funnel-caption {
  text-align: center;
  font-size: 14px;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.6;
}
.problem-bento {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bento-row {
  display: flex;
  gap: 14px;
}
.bento-row .bento-card {
  flex: 1;
  min-width: 0;
}
.bento-card {
  background: linear-gradient(160deg, #f3f8f9 0%, #eaf2f3 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.bento-card--lg {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.bento-icon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  flex-shrink: 0;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(36, 60, 143, 0.22);
}
.bento-icon svg {
  width: 21px;
  height: 21px;
}
.bento-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.bento-num {
  font-size: 27px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.5px;
}
.bento-label {
  font-size: 12px;
  color: #5a6177;
  font-weight: 600;
  line-height: 1.4;
}
.bento-spark {
  width: 130px;
  height: 52px;
  flex-shrink: 0;
}
.problem-dash {
  background: radial-gradient(
      120% 90% at 100% 0%,
      rgba(112, 195, 197, 0.16) 0%,
      rgba(112, 195, 197, 0) 55%
    ),
    #0d1326;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  position: relative;
}
.problem-dash::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 75%);
  pointer-events: none;
}
.problem-dash-body {
  position: relative;
  z-index: 1;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  padding: 30px 26px;
}
.problem-dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.problem-dash-stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.problem-dash-num {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.5px;
}
.problem-dash-trend {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--teal);
  background: rgba(112, 195, 197, 0.12);
  border: 1px solid rgba(112, 195, 197, 0.3);
  border-radius: 999px;
  padding: 4px 10px 4px 8px;
}
.problem-dash-live {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(112, 195, 197, 0.6);
  animation: livePulse 1.8s ease-out infinite;
}
@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(112, 195, 197, 0.55);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(112, 195, 197, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(112, 195, 197, 0);
  }
}
.problem-dash-label {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: -10px;
}
.problem-dash-chart-wrap {
  position: relative;
}
.problem-dash-chart {
  width: 100%;
  height: 150px;
  display: block;
  position: relative;
  z-index: 1;
}
.problem-dash-dot {
  animation: dotFloat 2.6s ease-in-out infinite;
}
@keyframes dotFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}
.problem-dash-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.problem-dash-tags span {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 6px 13px;
}
.problem-visual--photo {
  padding: 0;
  overflow: hidden;
}
.problem-photo {
  flex: 1;
  min-height: 320px;
  position: relative;
  display: flex;
  align-items: flex-end;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.problem-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.problem-photo-caption {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 26px 28px 24px;
  background: linear-gradient(
    0deg,
    rgba(15, 29, 82, 0.94) 0%,
    rgba(15, 29, 82, 0.6) 50%,
    rgba(15, 29, 82, 0) 100%
  );
}
.problem-photo-caption .problem-illu-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 7px 16px;
}
.problem-photo-caption p {
  font-size: 15px;
  color: #fff;
  font-weight: 600;
  line-height: 1.6;
  margin-top: 10px;
  max-width: 380px;
}
.svc-hero {
  background: linear-gradient(160deg, #07102a 0%, #0f1d52 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}
.svc-hero-blob1 {
  position: absolute;
  top: -180px;
  left: -180px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(36, 60, 143, 0.35) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.svc-hero-blob2 {
  position: absolute;
  bottom: -200px;
  right: -160px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(112, 195, 197, 0.18) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 90px 90px;
}
.hero-glow-left {
  position: absolute;
  width: 800px;
  height: 800px;
  top: -250px;
  left: -300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(92, 169, 255, 0.18) 0%,
    rgba(92, 169, 255, 0.08) 40%,
    transparent 75%
  );
  z-index: 0;
  pointer-events: none;
}
.hero-glow-right {
  position: absolute;
  width: 700px;
  height: 700px;
  right: -250px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(116, 215, 215, 0.18) 0%,
    rgba(116, 215, 215, 0.08) 40%,
    transparent 75%
  );
  z-index: 0;
  pointer-events: none;
}
.svc-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 6%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}
.svc-hero-left {
  padding: 88px 0 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.svc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  padding: 7px 18px 7px 12px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 36px;
  backdrop-filter: blur(8px);
}
.svc-h1 {
  font-size: clamp(44px, 6.5vw, 67.5px) !important;
  font-weight: 700 !important;
  color: #fff !important;
  line-height: 1.06 !important;
  letter-spacing: --0.055em !important;
  margin-bottom: 28px;
}
.svc-h1 em {
  color: #70c3c5;
  font-style: normal;
}
.svc-hero-sub {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  max-width: 773px;
  margin: 0 auto 44px;
}
.svc-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  transition: all 0.18s;
  white-space: nowrap;
  font-family: var(--font-body);
}
.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.svc-hero-panel {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 28px;
  backdrop-filter: blur(12px);
}
.svc-panel-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(112, 195, 197, 0.7);
  margin-bottom: 18px;
}
.svc-panel-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}
.svc-panel-stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 18px 14px;
}
.svc-panel-num {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1;
}
.svc-panel-num em {
  color: #70c3c5;
  font-style: normal;
}
.svc-panel-desc {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 5px;
}
.svc-panel-checks {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.svc-panel-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.45;
}
.svc-panel-check::before {
  content: "";
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 1px;
  border-radius: 50%;
  border: 1.5px solid rgba(112, 195, 197, 0.5);
  background: rgba(112, 195, 197, 0.15)
    url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8l3 3 5-5' stroke='%2370C3C5' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E")
    center/13px no-repeat;
}
.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-word.visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-word-static {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  font-size: clamp(28px, 3.5vw, 48px);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  margin-top: 4px;
}
.hero-word-static.visible {
  opacity: 1;
  transform: translateY(0);
}
.svc-hero-sub,
.svc-hero-actions {
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.svc-hero-sub.visible,
.svc-hero-actions.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1024px) {
  .svc-hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 36px;
  }
  .svc-hero-panel {
    display: none;
  }
  .svc-hero-left {
    padding: 96px 0 56px;
  }
}
.site-footer-simple {
  background: #fff;
  border-top: 1px solid var(--gray-200);
  padding: 24px 6%;
}
.site-footer-simple__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.sf-copy {
  font-size: 13px;
  color: var(--gray-400);
}
.sf-simple-links {
  display: flex;
  gap: 24px;
}
.sf-simple-links a {
  font-size: 13px;
  color: var(--gray-400);
  transition: color 0.15s;
}
.sf-simple-links a:hover {
  color: var(--navy);
}
body {
  background-image: radial-gradient(
    circle,
    rgba(36, 60, 143, 0.045) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
}
.problem-section,
.tracks-section,
.process-section,
.process-section-new,
.compare-section,
.testimonial-section,
.trust-section,
.faq-section {
  background: transparent !important;
}
.problem-section,
.testimonial-section,
.faq-section,
.process-section,
.process-section-new {
  background: rgba(247, 248, 252, 0.3) !important;
}
.stat-bar {
  background: #fff;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: #0f1d52 !important;
  background-image: none !important;
}
.hero::before {
  content: "";
  position: absolute;
  top: -220px;
  left: -180px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(15, 29, 82, 0.85) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -200px;
  right: -160px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(112, 195, 197, 0.25) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.hero .hero-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
}
.cta-section {
  position: relative;
  background: #0b1f4d !important;
  background-image: none !important;
  color: #fff;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 0;
}
.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(112, 195, 197, 0.18),
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(112, 195, 197, 0.12),
      transparent 40%
    );
  z-index: 0;
}
.cta-section > * {
  position: relative;
  z-index: 2;
}
.cta-section .container {
  position: relative;
  z-index: 2;
}
.site-footer {
  background: #fff !important;
  background-image: none !important;
}
nav {
  background: #fff !important;
  background-image: none !important;
}
footer.site-footer {
  display: block !important;
  height: auto !important;
  padding: 60px 6% 0 !important;
  align-items: unset !important;
  justify-content: unset !important;
}
.site-footer__bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 0 24px;
  border-top: 1px solid var(--gray-200);
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  height: auto !important;
}
.site-footer__bottom span {
  font-size: 13px;
  color: var(--gray-400);
}
.site-footer__bottom a {
  font-size: 13px;
  color: var(--gray-400);
  transition: color 0.15s;
}
.site-footer__bottom a:hover {
  color: var(--navy);
}
.problem-section .section-eyebrow,
.problem-section .section-title,
.problem-section .section-sub,
.tracks-section .section-eyebrow,
.tracks-section .section-title,
.tracks-section .section-sub,
.test-section .eyebrow,
.test-section .section-title {
  display: block;
  text-align: center;
}
