/* Global typography and helpers */
body{
  font-family: "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #1d2330;
}

.bg-body{
  background-color: #f5f7fb !important;
}

.glass-nav{
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.navbar .dropdown-menu{
  border: none;
  border-radius: 1.25rem;
  padding: 0.75rem;
  background: rgba(15, 47, 121, 0.85);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: dropdownFade 0.18s ease;
}

.navbar .dropdown-menu::before{
  content: "";
  position: absolute;
  top: -10px;
  right: 24px;
  width: 18px;
  height: 18px;
  background: rgba(15, 23, 42, 0.95);
  transform: rotate(45deg);
  border-radius: 4px;
}

.dropdown-item{
  border-radius: 0.75rem;
  padding: 0.6rem 1rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.dropdown-item + .dropdown-item{
  margin-top: 0.25rem;
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item:active{
  background: rgba(171, 59, 246, 0.18);
  color: #fff;
  transform: translateX(4px);
}

.dropdown-item.active,
.dropdown-item.active:hover{
  background: linear-gradient(120deg, rgba(59, 130, 246, 0.25), rgba(99, 102, 241, 0.35));
  color: #fff;
  transform: translateX(4px);
}

.navbar .dropdown-menu-end::before{
  right: 24px;
  left: auto;
}

.dropdown-toggle::after{
  margin-left: 0.4rem;
  transform: translateY(1px);
  border-top-width: 0.35em;
  border-right-width: 0.35em;
  border-left-width: 0.35em;
  vertical-align: middle;
}

.navbar-nav .nav-link.dropdown-toggle{
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

@keyframes dropdownFade{
  from{
    opacity: 0;
    transform: translateY(4px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar-dark .navbar-nav .nav-link{
  color: rgba(255,255,255,0.8);
  transition: color 0.2s ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus{
  color: #fff;
}

.navbar-brand{
  letter-spacing: 0.04em;
}

.hero{
  position: relative;
  padding: 8.5rem 0 5.5rem;
  background: radial-gradient(circle at top left, #4169e1 0%, #1a2b50 50%, #101927 100%);
  overflow: hidden;
}

.hero.hero-immersive{
  padding: 11rem 0 7rem;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 5% 20%, rgba(99, 102, 241, 0.28) 0%, rgba(6, 10, 26, 0) 35%),
    radial-gradient(circle at 85% 8%, rgba(14, 165, 233, 0.26) 0%, rgba(6, 12, 31, 0) 45%),
    radial-gradient(circle at 40% 80%, rgba(56, 189, 248, 0.12) 0%, rgba(3, 7, 18, 0.05) 32%),
    #060915;
}

.hero .container{
  position: relative;
  z-index: 2;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(87, 101, 242, 0.6) 0%, rgba(24, 43, 78, 0.95) 55%, rgba(16, 25, 39, 1) 100%);
  mix-blend-mode: screen;
  opacity: 0.85;
  z-index: 1;
}

.hero-immersive .hero-overlay{
  background: linear-gradient(120deg, rgba(7, 17, 40, 0.88) 0%, rgba(10, 27, 63, 0.78) 50%, rgba(6, 11, 30, 0.94) 100%);
  opacity: 0.92;
  mix-blend-mode: normal;
}

.hero-media{
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-media::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(40, 71, 150, 0.22) 0%, rgba(10, 19, 41, 0.8) 65%);
  mix-blend-mode: screen;
}

.hero-media video,
.hero-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.12) contrast(1.05) brightness(0.92);
}

.hero-media video{
  display: block;
}

.hero-glow{
  position: absolute;
  width: 48rem;
  height: 48rem;
  top: -12rem;
  right: -16rem;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.55) 0%, rgba(59, 130, 246, 0) 65%);
  opacity: 0.8;
  z-index: 1;
  pointer-events: none;
}

.hero.hero-insights{
  padding: 9.5rem 0 6.5rem;
  background:
    radial-gradient(circle at 10% 10%, rgba(99, 102, 241, 0.35) 0%, rgba(15, 23, 42, 0) 40%),
    radial-gradient(circle at 90% 6%, rgba(56, 189, 248, 0.35) 0%, rgba(15, 23, 42, 0) 55%),
    radial-gradient(circle at 50% 100%, rgba(59, 130, 246, 0.25) 0%, rgba(15, 23, 42, 0.05) 55%),
    #040616;
}

.hero-insights__media{
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-insights__gradient{
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12, 25, 58, 0.9) 0%, rgba(38, 15, 70, 0.75) 45%, rgba(10, 21, 45, 0.9) 100%);
  mix-blend-mode: screen;
}

.hero-insights__poster{
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero.hero-insights .hero-overlay{
  background: linear-gradient(160deg, rgba(0, 6, 23, 0.85) 0%, rgba(7, 20, 52, 0.75) 60%, rgba(4, 10, 29, 0.92) 100%);
  opacity: 1;
  mix-blend-mode: normal;
}

.hero-ai{
  background: radial-gradient(circle at 20% 20%, #4c1d95 0%, #1e1b4b 45%, #0f172a 100%);
}

.hero-ai .hero-overlay{
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.65) 0%, rgba(49, 46, 129, 0.92) 55%, rgba(15, 23, 42, 0.98) 100%);
}

.hero-cloud{
  background: radial-gradient(circle at 15% 25%, #0ea5e9 0%, #0f3c81 45%, #0b172f 100%);
}

.hero-cloud .hero-overlay{
  background: linear-gradient(140deg, rgba(59, 130, 246, 0.6) 0%, rgba(14, 165, 233, 0.88) 50%, rgba(11, 23, 47, 0.98) 100%);
}

.hero-devops{
  background: radial-gradient(circle at 25% 20%, #16a34a 0%, #1f2937 45%, #0f172a 100%);
}

.hero-devops .hero-overlay{
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.6) 0%, rgba(17, 94, 89, 0.9) 45%, rgba(15, 23, 42, 0.98) 100%);
}

.hero-about{
  background: radial-gradient(circle at 30% 20%, #7c3aed 0%, #312e81 45%, #0f172a 100%);
}

.hero-about .hero-overlay{
  background: linear-gradient(140deg, rgba(124, 58, 237, 0.6) 0%, rgba(30, 64, 175, 0.9) 50%, rgba(15, 23, 42, 0.98) 100%);
}

.hero-ml{
  background: radial-gradient(circle at 20% 20%, #0ea5e9 0%, #0369a1 45%, #0f172a 100%);
}

.hero-ml .hero-overlay{
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.6) 0%, rgba(30, 64, 175, 0.9) 55%, rgba(15, 23, 42, 0.98) 100%);
}

.hero-manufacturing{
  background: radial-gradient(circle at 25% 15%, #f97316 0%, #c2410c 45%, #0f172a 100%);
}

.hero-manufacturing .hero-overlay{
  background: linear-gradient(130deg, rgba(249, 115, 22, 0.6) 0%, rgba(234, 88, 12, 0.88) 50%, rgba(15, 23, 42, 0.96) 100%);
}

.hero-web{
  background: radial-gradient(circle at 25% 15%, #6366f1 0%, #312e81 45%, #111827 100%);
}

.hero-web .hero-overlay{
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.6) 0%, rgba(168, 85, 247, 0.85) 50%, rgba(17, 24, 39, 0.98) 100%);
}

.hero-digital{
  background: radial-gradient(circle at 20% 15%, #ec4899 0%, #be185d 45%, #111827 100%);
}

.hero-digital .hero-overlay{
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.6) 0%, rgba(249, 115, 22, 0.8) 55%, rgba(17, 24, 39, 0.96) 100%);
}

.hero-automation{
  background: radial-gradient(circle at 20% 15%, #22d3ee 0%, #0f766e 45%, #0f172a 100%);
}

.hero-automation .hero-overlay{
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.6) 0%, rgba(14, 116, 144, 0.9) 55%, rgba(15, 23, 42, 0.98) 100%);
}

.hero-loyalty{
  background: radial-gradient(circle at 20% 15%, #facc15 0%, #a16207 45%, #0f172a 100%);
}

.hero-loyalty .hero-overlay{
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.55) 0%, rgba(217, 119, 6, 0.85) 55%, rgba(15, 23, 42, 0.98) 100%);
}

.hero h1{
  line-height: 1.1;
}

.eyebrow{
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
}

.hero-points li{
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(226, 232, 240, 0.85);
}

.hero-points li:last-child{
  margin-bottom: 0;
}

.hero-pulse{
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #818cf8 0%, #38bdf8 100%);
  box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.45);
  flex-shrink: 0;
  animation: heroPulse 2.4s ease-out infinite;
}

.hero-metric-group{
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
}

.hero-card{
  position: relative;
  z-index: 1;
  background: rgba(15, 23, 42, 0.86);
  border-radius: 1.5rem;
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,0.08);
}

.hero-card img{
  max-height: 260px;
}

.hero-metric{
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 110px;
}

.metric-value{
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.metric-label{
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
}

.hero-pillset{
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-pill{
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 1.05rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 255, 0.25);
  font-size: 0.85rem;
  color: rgba(226, 232, 240, 0.85);
  box-shadow: 0 12px 24px rgba(8, 19, 44, 0.35);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-pill::before{
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.95), rgba(59, 130, 246, 0.35));
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.8);
}

.hero-pill:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(8, 19, 44, 0.45);
}

*** End Patch

.hero-service-card:hover .hero-service-card__icon{
  transform: scale(1.05);
}

@keyframes heroTileFloat{
  0%, 100%{
    transform: translateY(0);
  }
  50%{
    transform: translateY(-10px);
  }
}



@keyframes heroTileScan{
  0%{
    transform: translateX(0);
    opacity: 0.0;
  }
  50%{
    opacity: 0.6;
  }
  100%{
    transform: translateX(-40%);
    opacity: 0.0;
  }
}


@keyframes heroTileParticles{
  0%{
    transform: translate3d(0, 0, 0) rotate(0deg);
    opacity: 0;
  }
  30%{
    opacity: 0.8;
  }
  100%{
    transform: translate3d(-60px, -40px, 0) rotate(2deg);
    opacity: 0;
  }
}

.hero-service-card::before,
.hero-service-card::after,
.hero-service-card span.hero-service-card__spark{
  pointer-events: none;
}

.hero-service-card__spark{
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 22% 28%, var(--hero-card-highlight, rgba(148, 163, 255, 0.24)), transparent 60%),
    radial-gradient(circle at 78% 72%, var(--hero-card-accent-soft, rgba(148, 163, 255, 0.28)), transparent 60%),
    radial-gradient(circle at 48% 6%, rgba(255, 255, 255, 0.12), transparent 55%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: heroTileParticles 12s linear infinite;
  animation-delay: calc(var(--i) * 0.5s);
}

.hero-service-card:hover .hero-service-card__spark{
  opacity: 0.65;
}

.loyalty-showcase{
  position: relative;
  color: #f8fafc;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(4, 7, 20, 0.9), rgba(6, 20, 45, 0.9)),
    url("assets/img/Home Page/2.webp") center/cover no-repeat;
}

.loyalty-showcase__eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(148, 163, 255, 0.16);
  border: 1px solid rgba(148, 163, 255, 0.35);
  color: rgba(226, 232, 255, 0.85);
  margin-bottom: 1rem;
}

.loyalty-showcase__lead{
  font-size: 1.01rem;
  line-height: 1.65;
  color: rgba(226, 232, 255, 0.82);
  margin-bottom: 1.4rem;
}

.loyalty-showcase__list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.loyalty-showcase__list li{
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(226, 232, 255, 0.9);
}

.loyalty-showcase__list li::before{
  content: '';
  position: absolute;
  top: 0.65rem;
  left: 0.5rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.85);
  box-shadow: 0 0 0 0.35rem rgba(34, 197, 94, 0.18);
}

.loyalty-dashboard{
  position: relative;
  border-radius: 2rem;
  padding: clamp(2rem, 4vw, 2.8rem);
  background: linear-gradient(160deg, rgba(5, 12, 30, 0.85), rgba(17, 24, 39, 0.75));
  border: 1px solid rgba(59, 130, 246, 0.35);
  box-shadow: 0 36px 68px rgba(5, 12, 28, 0.6);
  overflow: hidden;
  margin-top: 1.2rem;
}

.loyalty-dashboard__halo{
  position: absolute;
  inset: -40% -10% auto -30%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.45), transparent 65%);
  opacity: 0.75;
  pointer-events: none;
}

.loyalty-dashboard__panel{
  position: relative;
  border-radius: 1.6rem;
  overflow: hidden;
  box-shadow: 0 32px 58px rgba(5, 12, 28, 0.55);
}

.loyalty-dashboard__panel img{
  width: 108%;
  display: block;
  height: auto;
  transform: translateX(-4%);
}

.loyalty-dashboard__stat{
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.2rem;
  border-radius: 1rem;
  color: #040712;
  background: rgba(248, 250, 252, 0.92);
  box-shadow: 0 18px 32px rgba(8, 15, 36, 0.35);
  min-width: 160px;
}

.loyalty-dashboard__stat--primary{
  top: 1.5rem;
  right: 1.5rem;
}

.loyalty-dashboard__stat--secondary{
  bottom: 1.8rem;
  left: 1.3rem;
}

.loyalty-dashboard__label{
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(4, 7, 18, 0.65);
}

.loyalty-dashboard__value{
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.loyalty-dashboard__delta{
  font-size: 0.85rem;
  color: rgba(14, 165, 233, 0.8);
}

.loyalty-dashboard__progress{
  margin-top: 0.4rem;
  height: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.loyalty-dashboard__bar{
  display: block;
  width: 68%;
  height: 100%;
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.95), rgba(56, 189, 248, 0.95));
  border-radius: inherit;
}

.loyalty-dashboard__spark{
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 70% 10%, rgba(148, 163, 255, 0.28), transparent 55%), radial-gradient(circle at 10% 80%, rgba(45, 212, 191, 0.25), transparent 60%);
  mix-blend-mode: screen;
  opacity: 0.45;
  animation: heroTileParticles 18s linear infinite;
}

.loyalty-showcase__content{
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  color: rgba(226, 232, 240, 0.85);
  max-width: 520px;
  margin-bottom: 1.8rem;
}

.loyalty-showcase__tag{
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.18);
  border: 1px solid rgba(148, 163, 255, 0.25);
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(224, 231, 255, 0.9);
}

.loyalty-showcase__title{
  font-size: clamp(1.95rem, 3.3vw, 2.45rem);
  letter-spacing: -0.018em;
  color: #f8fafc;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.loyalty-showcase__lede{
  font-size: 1rem;
  line-height: 1.7;
}

.loyalty-showcase__chips{
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.loyalty-chip{
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: 0.9rem;
  font-size: 0.88rem;
  font-weight: 600;
  background: rgba(244, 247, 254, 0.95);
  color: #0b1326;
  border: 1px solid rgba(148, 163, 255, 0.4);
  box-shadow: 0 16px 30px rgba(8, 15, 36, 0.25);
}

.loyalty-showcase__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.loyalty-showcase__persona{
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.3rem;
  border-radius: 1.3rem;
  background: rgba(8, 18, 36, 0.65);
  border: 1px solid rgba(148, 163, 255, 0.2);
  box-shadow: 0 20px 40px rgba(5, 12, 28, 0.45);
}

.loyalty-showcase__avatar{
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 1.1rem;
  overflow: hidden;
  border: 2px solid rgba(148, 163, 255, 0.45);
}

.loyalty-showcase__avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991.98px){
  .loyalty-dashboard{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .loyalty-dashboard__stat{
    position: static;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 0.9rem;
  }
  .loyalty-dashboard__spark{
    opacity: 0.45;
  }
  .loyalty-dashboard__panel{
    margin-bottom: 0.8rem;
  }
  .loyalty-showcase__actions{
    justify-content: flex-start;
  }
  .loyalty-showcase__visual{
    min-height: 320px;
  }
  .loyalty-visual-note--bottom{
    bottom: 1.2rem;
    left: 1.5rem;
  }
}

@media (max-width: 575.98px){
  .loyalty-showcase{
    border-radius: 1.8rem;
  }
  .loyalty-dashboard{
    margin-top: 1.2rem;
    padding: 1.8rem;
  }
  .loyalty-dashboard__stat{
    width: 100%;
  }
  .loyalty-showcase__chips{
    flex-direction: column;
  }
  .loyalty-showcase__persona{
    flex-direction: column;
    align-items: flex-start;
  }
  .loyalty-showcase__visual{
    border-radius: 1.6rem;
  }
  .loyalty-visual-ring{
    position: static;
    margin: 1.2rem auto 0;
    width: 95px;
    height: 95px;
  
  }
  .loyalty-visual-note{
    position: static;
    margin-top: 1rem;
    max-width: 100%;
  }
  .loyalty-visual-note--middle{
    transform: none;
  }
}

.loyalty-showcase__visual{
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  min-height: clamp(360px, 42vw, 460px);
  box-shadow: 0 34px 60px rgba(4, 7, 18, 0.6);
}

.loyalty-showcase__visual img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.loyalty-visual-ring{
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  width: 110px;
  height: 150px;
  padding: 10px;
  padding-bottom: 50px;
  display: grid;
  place-items: center;
  border-radius: 1.1rem;
  background: rgba(245, 250, 255, 0.96);
  border: 2px solid rgba(4, 150, 58, 0.75);
  box-shadow: 0 18px 32px rgba(4, 12, 26, 0.4);
  color: #0a2b54;
  overflow: hidden;
  font-weight: 500;
  text-align: center;
  padding-bottom: 40px;
  
  
}

.loyalty-visual-ring__chart svg{
  /* margin: bottom 100px; ; */
  width: 100%;
  height: 100%;
}

.loyalty-visual-ring__track{
  fill: none;
  stroke: rgba(14, 165, 233, 0.12);
  stroke-width: 6;
  stroke-linecap: round;
}

.loyalty-visual-ring__progress{
  fill: none;
  stroke: #22c55e;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 339.29;
  stroke-dashoffset: 339.29;
  transform-origin: 50% 50%;
  transform: rotate(-90deg);
}

.loyalty-visual-ring__check{
  fill: none;
  stroke: #16a34a;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 90;
  stroke-dashoffset: 90;
  opacity: 0;
}

.loyalty-visual-ring__chart.is-active .loyalty-visual-ring__progress{
  animation: loyaltyRingSweep 1.6s ease-out forwards;
}

.loyalty-visual-ring__chart.is-active .loyalty-visual-ring__check{
  animation: loyaltyRingCheck 0.8s ease-out 0.65s forwards;
}

.loyalty-visual-ring__value{
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  fill: #041121;
}

.loyalty-visual-ring__label{
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  fill: rgba(4, 17, 33, 0.55);
}

.loyalty-visual-note{
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.85rem 1rem;
  border-radius: 1.1rem;
  background: rgba(4, 10, 24, 0.82);
  border: 1px solid rgba(99, 102, 241, 0.35);
  box-shadow: 0 18px 32px rgba(4, 12, 26, 0.4);
  color: rgba(236, 245, 255, 0.92);
  max-width: 220px;
  backdrop-filter: blur(18px);
}

.loyalty-visual-note--top{
  top: 1.8rem;
  left: 1.6rem;
  background: rgba(59, 130, 246, 0.18);
  border-color: rgba(59, 130, 246, 0.45);
}

.loyalty-visual-note--bottom{
  bottom: 1.8rem;
  left: 2rem;
  background: rgba(168, 85, 247, 0.16);
  border-color: rgba(168, 85, 247, 0.45);
}

.loyalty-visual-note--middle{
  top: 50%;
  right: 1.8rem;
  transform: translateY(-50%);
  background: rgba(234, 179, 8, 0.18);
  border-color: rgba(251, 191, 36, 0.45);
}

.loyalty-visual-note__label{
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.loyalty-visual-note__value{
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
}

.loyalty-visual-note__metric{
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
}

.loyalty-visual-note__suffix{
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

@keyframes loyaltyRingSweep{
  0%{
    stroke-dashoffset: 339.29;
  }
  100%{
    stroke-dashoffset: 0;
  }
}

@keyframes loyaltyRingCheck{
  0%{
    stroke-dashoffset: 90;
    opacity: 0;
  }
  40%{
    opacity: 1;
  }
  100%{
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes heroPulse{
  0%{
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.45);
    transform: scale(1);
  }
  60%{
    box-shadow: 0 0 0 12px rgba(99, 102, 241, 0);
  }
  100%{
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
    transform: scale(0.95);
  }
}

.letter-spacing{
  letter-spacing: 0.18em;
}

.partner-strip{
  background: #fff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.partner-logos span{
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.section-padding{
  padding: 4.5rem 0;
}

.section-heading{
  font-size: 2.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.insights-section{
  background: #f8fafc;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.tracking-wide{
  letter-spacing: 0.18em;
}

.insight-card{
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 1.75rem;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.insight-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.14);
  border-color: rgba(37, 99, 235, 0.28);
}

.insight-card__media{
  position: relative;
  min-height: 180px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  overflow: hidden;
}

.insight-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.insight-card:hover .insight-card__media img{
  transform: scale(1.05);
}

.insight-card__media .badge{
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.insight-card__body{
  padding: 1.75rem 1.75rem 1.5rem;
  flex: 1 1 auto;
}

.insight-card__eyebrow{
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.insight-card__title{
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.insight-card__summary{
  color: #475569;
  font-size: 0.94rem;
  margin-bottom: 0;
}

.insight-card__footer{
  padding: 0 1.75rem 1.75rem;
}

.insight-card__footer a{
  color: #1d4ed8;
  text-decoration: none;
}

.insight-card__footer a:hover{
  color: #1e3a8a;
  text-decoration: underline;
}

.insights-featured{
  background: linear-gradient(135deg, rgba(4, 10, 26, 0.9) 0%, rgba(9, 16, 40, 0.82) 55%, rgba(9, 23, 61, 0.75) 100%);
  color: #e2e8f0;
  position: relative;
  overflow: hidden;
}

.insights-featured::before{
  content: "";
  position: absolute;
  width: 36rem;
  height: 36rem;
  top: -12rem;
  left: -10rem;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.45) 0%, rgba(14, 21, 56, 0) 70%);
  opacity: 0.9;
}

.insights-featured::after{
  content: "";
  position: absolute;
  width: 28rem;
  height: 28rem;
  bottom: -14rem;
  right: -8rem;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.45) 0%, rgba(3, 7, 18, 0) 70%);
}

.insights-featured.section-padding{
  padding: 4.5rem 0;
}

.insights-featured__wrapper{
  position: relative;
  z-index: 1;
}

.featured-article{
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(14px);
  border-radius: 1.75rem;
  padding: 2.5rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.featured-article .badge{
  letter-spacing: 0.08em;
  font-weight: 600;
  padding: 0.45rem 1.1rem;
}

.featured-meta li{
  font-size: 0.95rem;
}

.featured-visual{
  border-radius: 1.75rem;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.6);
}

.featured-visual__media{
  width: 100%;
  height: 280px;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  overflow: hidden;
}

.featured-visual__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insights-filter__chips{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}

.chip{
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: #fff;
  color: #0f172a;
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.chip:hover{
  border-color: rgba(37, 99, 235, 0.45);
  color: #1d4ed8;
  box-shadow: 0 10px 24px rgba(59, 130, 246, 0.18);
}

.chip--active{
  background: #1d4ed8;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 18px 30px rgba(29, 78, 216, 0.3);
}

.insight-tile{
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.18);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.insight-tile:hover{
  transform: translateY(-8px);
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.12);
  border-color: rgba(37, 99, 235, 0.25);
}

.insight-tile__media{
  height: 160px;
  overflow: hidden;
}

.insight-tile__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.insight-tile:hover .insight-tile__media img{
  transform: scale(1.05);
}

.insight-tile__body{
  padding: 1.75rem;
  flex: 1 1 auto;
}

.insight-tile__tag{
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: #f97316;
  margin-bottom: 0.75rem;
}

.insight-tile__title{
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.65rem;
}

.insight-tile__summary{
  color: #475569;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.insight-tile__meta{
  padding: 1.2rem 1.75rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #475569;
}

.insight-tile__meta a{
  text-decoration: none;
  font-weight: 600;
  color: #1d4ed8;
}

.insight-tile__meta a:hover{
  color: #1e3a8a;
  text-decoration: underline;
}

.gradient-a{
  background: radial-gradient(circle at 20% 20%, rgba(148, 163, 255, 0.8) 0%, rgba(99, 102, 241, 0.65) 45%, rgba(30, 27, 75, 0.95) 100%);
}

.gradient-b{
  background: radial-gradient(circle at 80% 25%, rgba(74, 222, 128, 0.75) 0%, rgba(34, 197, 94, 0.55) 45%, rgba(10, 18, 33, 0.9) 100%);
}

.gradient-c{
  background: radial-gradient(circle at 15% 15%, rgba(251, 191, 36, 0.8) 0%, rgba(250, 204, 21, 0.55) 38%, rgba(30, 64, 175, 0.85) 100%);
}

.gradient-d{
  background: radial-gradient(circle at 10% 15%, rgba(248, 113, 113, 0.85) 0%, rgba(248, 150, 121, 0.6) 45%, rgba(37, 99, 235, 0.85) 100%);
}

.gradient-e{
  background: radial-gradient(circle at 85% 20%, rgba(96, 165, 250, 0.8) 0%, rgba(56, 189, 248, 0.55) 45%, rgba(15, 118, 110, 0.9) 100%);
}

.gradient-f{
  background: radial-gradient(circle at 20% 20%, rgba(244, 114, 182, 0.8) 0%, rgba(236, 72, 153, 0.55) 40%, rgba(67, 56, 202, 0.9) 100%);
}

.insights-series{
  background: linear-gradient(135deg, rgba(241, 245, 249, 0.8) 0%, rgba(226, 232, 240, 0.65) 100%);
}

.series-card{
  background: #fff;
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(148, 163, 184, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
}

.series-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.12);
  border-color: rgba(37, 99, 235, 0.24);
}

.series-card__header{
  padding: 1.75rem;
  color: #0f172a;
}

.series-card__header .badge{
  padding: 0.45rem 1rem;
  letter-spacing: 0.08em;
}

.series-card__body{
  padding: 1.75rem;
  flex: 1 1 auto;
  color: #475569;
}

.series-card__body ul{
  padding-left: 1.1rem;
  margin-top: 1rem;
  margin-bottom: 0;
  color: #1f2937;
}

.series-card__body li{
  margin-bottom: 0.5rem;
}

.series-card__footer{
  padding: 1.5rem 1.75rem;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.series-card__footer a{
  text-decoration: none;
  color: #1d4ed8;
  font-weight: 600;
}

.series-card__footer a:hover{
  color: #1e3a8a;
  text-decoration: underline;
}

.gradient-series-a{
  background: radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.85) 0%, rgba(30, 64, 175, 0.75) 50%, rgba(17, 24, 39, 0.9) 100%);
  color: #f8fafc;
}

.gradient-series-b{
  background: radial-gradient(circle at 85% 20%, rgba(45, 212, 191, 0.85) 0%, rgba(14, 116, 144, 0.75) 50%, rgba(17, 24, 39, 0.9) 100%);
  color: #f8fafc;
}

.gradient-series-c{
  background: radial-gradient(circle at 25% 10%, rgba(250, 204, 21, 0.85) 0%, rgba(217, 119, 6, 0.75) 45%, rgba(17, 24, 39, 0.9) 100%);
  color: #f8fafc;
}

.insights-cta{
  background: linear-gradient(135deg, rgba(14, 20, 45, 0.92) 0%, rgba(23, 34, 64, 0.88) 65%, rgba(56, 26, 87, 0.9) 100%);
  color: #e2e8f0;
}

.cta-card{
  background: rgba(15, 23, 42, 0.65);
  border-radius: 2rem;
  padding: 2.75rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.18);
}

.cta-card .form-control{
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: #f8fafc;
}

.cta-card .form-control::placeholder{
  color: rgba(226, 232, 240, 0.6);
}

.cta-card .form-control:focus{
  border-color: rgba(59, 130, 246, 0.7);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}

.insight-logos{
  background: rgba(15, 23, 42, 0.6);
  border-radius: 1.75rem;
  color: rgba(226, 232, 240, 0.85);
}

.insight-logo{
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.site-footer{
  background: radial-gradient(circle at top left, rgba(13, 19, 44, 0.9), rgba(6, 10, 28, 0.98));
  padding: 4.5rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}

.site-footer::before{
  content: "";
  position: absolute;
  width: 28rem;
  height: 28rem;
  top: -10rem;
  right: -8rem;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.35) 0%, rgba(6, 10, 28, 0) 70%);
  opacity: 0.8;
  pointer-events: none;
}

.site-footer::after{
  content: "";
  position: absolute;
  width: 24rem;
  height: 24rem;
  bottom: -12rem;
  left: -8rem;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.28) 0%, rgba(6, 10, 28, 0) 70%);
  opacity: 0.7;
  pointer-events: none;
}

.site-footer .container{
  position: relative;
  z-index: 1;
}

.text-white-70{
  color: rgba(226, 232, 240, 0.7) !important;
}

.footer-subscribe{
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  margin-bottom: 2.5rem;
}

.footer-subscribe__form .form-control{
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: #f8fafc;
}

.footer-subscribe__form .form-control::placeholder{
  color: rgba(226, 232, 240, 0.6);
}

.footer-subscribe__form .form-control:focus{
  border-color: rgba(59, 130, 246, 0.6);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}

.footer-heading{
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.1rem;
  color: rgba(248, 250, 252, 0.85);
}

.footer-list{
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-list a{
  color: rgba(226, 232, 240, 0.75);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-list a:hover{
  color: #f8fafc;
  transform: translateX(4px);
}

.footer-logo__mark{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.35), rgba(99, 102, 241, 0.45));
  font-weight: 700;
  letter-spacing: 0.08em;
}

.footer-bottom{
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.footer-bottom a:hover{
  color: #f8fafc !important;
}

.footer-links{
  padding-bottom: 1.5rem;
}

.footer-brand p{
  font-size: 0.95rem;
}

.footer-contact a:hover{
  color: #fff;
}

.card-gradient{
  border: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, #ffffff 70%);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border-radius: 1.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.card-gradient:hover,
.card-gradient:focus-within{
  transform: translateY(-8px);
  box-shadow: 0 28px 55px rgba(15, 23, 42, 0.14);
  background: linear-gradient(180deg, rgba(238, 245, 255, 0.95) 0%, #ffffff 72%);
}

.card-gradient .card-body{
  padding: 2.25rem 2rem 1.5rem;
}

.card-gradient .card-footer{
  padding: 0 2rem 2rem;
}

@media (prefers-reduced-motion: reduce){
  .card-gradient{
    transition: none;
    transform: none;
  }

  .card-gradient:hover,
  .card-gradient:focus-within{
    transform: none;
  }

  .hero-pulse{
    animation: none;
    box-shadow: none;
  }

  .insight-card{
    transition: none;
  }

  .insight-card:hover{
    transform: none;
  }
}

.service-card .badge{
  font-weight: 600;
  letter-spacing: 0.06em;
}

.service-card .card-footer{
  color: rgba(15, 23, 42, 0.55);
}

.service-card--featured{
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
}

.service-card-media{
  position: relative;
  height: 210px;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  overflow: hidden;
}

.service-card-media__image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.5s ease;
  flex-shrink: 0;
}

.service-card--featured:hover .service-card-media__image{
  transform: scale(1.06);
}

.service-card-media__overlay{
  position: absolute;
  inset: 0;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.75rem;
  background: linear-gradient(180deg, rgba(7, 12, 24, 0.05) 0%, rgba(7, 12, 24, 0.78) 65%, rgba(7, 12, 24, 0.92) 100%);
  color: #f8fafc;
}

.service-card-media__overlay .badge{
  align-self: flex-start;
  background: rgba(15, 23, 42, 0.55) !important;
  color: #f8fafc !important;
  border: 1px solid rgba(148, 163, 184, 0.4);
  letter-spacing: 0.08em;
  font-weight: 600;
}

.service-card-media__title{
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

.service-card-media__description{
  margin: 0;
  font-size: 0.95rem;
  color: rgba(226, 232, 240, 0.85);
}

.service-card--featured .card-body{
  padding: 1.75rem 1.75rem 1.25rem;
  flex: 1 1 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 0.65rem;
}

.service-card-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: #475569;
}

.service-card-list li{
  position: relative;
  padding-left: 1.15rem;
}

.service-card-list li::before{
  content: "•";
  position: absolute;
  left: 0;
  color: rgba(59, 130, 246, 0.75);
}

.service-card--featured .card-footer{
  padding: 0 1.75rem 1.75rem;
  flex: 0 0 auto;
}

.service-card--featured .card-footer a{
  color: #1d4ed8;
}

.service-card--featured .card-footer a:hover{
  color: #1e3a8a;
  text-decoration: underline;
}

.about-tile{
  padding: 2.5rem;
  border-radius: 1.5rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.06);
}

.team-card{
  padding: 2.25rem 2rem;
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.07);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.team-card__meta{
  display: flex;
  justify-content: flex-start;
}

.solution-card{
  padding: 2.25rem 2rem;
  border-radius: 1.5rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.solution-icon{
  font-size: 1.75rem;
  line-height: 1;
}

.service-pills{
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.service-pill{
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.95rem;
  width: 100%;
  padding: 1rem 1.1rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
  text-align: left;
  cursor: pointer;
}

.service-pill span{
  display: inline-flex;
  flex-direction: column;
}

.service-pill__icon{
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.9rem;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  background: rgba(26, 61, 235, 0.08);
}

.service-pill__icon img{
  width: 2rem;
  height: 2rem;
}

.service-pill__label{
  font-weight: 600;
  color: #111827;
}

.service-pill__sub{
  font-size: 0.82rem;
  color: rgba(17, 24, 39, 0.7);
}

.service-pill__arrow{
  margin-left: auto;
  font-size: 1.15rem;
  color: rgba(17, 24, 39, 0.3);
  transition: transform 0.18s ease, color 0.18s ease;
}

.service-pill::after{
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 1.3rem;
  background: linear-gradient(120deg, rgba(26, 61, 235, 0.35), rgba(107, 33, 243, 0.28));
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: -1;
}

.service-pill:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
  border-color: rgba(26, 61, 235, 0.25);
  background: rgba(255,255,255,0.9);
}

.service-pill:hover .service-pill__arrow{
  color: rgba(26, 61, 235, 0.7);
  transform: translateX(4px);
}

.service-pill.active{
  border-color: rgba(26, 61, 235, 0.5);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 18px 36px rgba(26, 61, 235, 0.18), inset 0 0 0 1px rgba(26, 61, 235, 0.15);
}

.service-pill.active::after{
  opacity: 1;
}

.service-pill:focus-visible{
  outline: none;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.9), 0 0 0 5px rgba(26, 61, 235, 0.5);
}

.bg-gradient-expertise{
  background:
    radial-gradient(circle at 12% 8%, rgba(59, 130, 246, 0.25) 0%, rgba(59, 130, 246, 0) 45%),
    radial-gradient(circle at 85% 15%, rgba(99, 102, 241, 0.18) 0%, rgba(99, 102, 241, 0) 50%),
    linear-gradient(135deg, rgba(244, 248, 255, 0.98), rgba(230, 242, 255, 0.92));
}

.expertise-highlights{
  margin: 1.75rem 0 0;
}

.expertise-highlights li + li{
  margin-top: 0.5rem;
}

.expertise-grid .col-sm-6{
  display: flex;
}

.expertise-card{
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  width: 100%;
  border-radius: 1.4rem;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.expertise-card:hover,
.expertise-card:focus{
  transform: translateY(-4px);
  box-shadow: 0 24px 46px rgba(37, 99, 235, 0.16);
  border-color: rgba(37, 99, 235, 0.22);
  background: #fff;
  color: inherit;
}

.expertise-card:focus{
  outline: none;
}

.expertise-card:focus-visible{
  outline: 2px solid rgba(26, 61, 235, 0.45);
  outline-offset: 4px;
}

.expertise-card__icon{
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.16), rgba(14, 165, 233, 0.08));
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.expertise-card__icon img{
  width: 1.9rem;
  height: 1.9rem;
  object-fit: contain;
}

.expertise-card__body{
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.expertise-card__title{
  font-weight: 600;
  color: #0f172a;
}

.expertise-card__subtitle{
  font-size: 0.85rem;
  color: #475467;
}

.expertise-card__arrow{
  margin-left: auto;
  font-weight: 600;
  color: #1a3deb;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.expertise-card:hover .expertise-card__arrow,
.expertise-card:focus .expertise-card__arrow{
  opacity: 1;
  transform: translateX(0);
}

.expertise-orbit-wrapper{
  position: relative;
  display: flex;
  justify-content: center;
  margin-inline: auto;
  max-width: 420px;
  padding: 1.5rem;
}

.expertise-orbit{
  position: relative;
  width: min(380px, 75vw);
  aspect-ratio: 1 / 1;
}

.expertise-orbit__ring{
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  border: 1px solid rgba(26, 61, 235, 0.12);
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: orbit var(--rotation-duration, 48s) linear infinite;
  animation-direction: var(--rotation-direction, normal);
}

.expertise-orbit__ring::after{
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08), transparent 70%);
}

.expertise-orbit__ring--outer{
  --size: 100%;
  --rotation-duration: 60s;
  --rotation-direction: normal;
}

.expertise-orbit__ring--middle{
  --size: 72%;
  border-style: dashed;
  border-color: rgba(59, 130, 246, 0.08);
}

.expertise-orbit__ring--inner{
  --size: 46%;
  border-style: dashed;
  border-color: rgba(59, 130, 246, 0.08);
}

.expertise-orbit__ring--middle,
.expertise-orbit__ring--inner{
  animation: none;
}

.expertise-orbit__item{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5.25rem;
  transform: rotate(var(--angle)) translateY(calc(var(--size) / -2)) translate(-50%, -50%);
}

.expertise-orbit__item-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  transform: rotate(var(--inverse-angle, 0deg));
  text-align: center;
}

.expertise-orbit__icon{
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 22px rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(26, 61, 235, 0.15);
}

.expertise-orbit__icon img{
  width: 1.7rem;
  height: 1.7rem;
  object-fit: contain;
}

.expertise-orbit__caption{
  font-size: 0.78rem;
  font-weight: 600;
  color: #0f172a;
  text-align: center;
  line-height: 1.1;
}

.expertise-orbit__core{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8.25rem;
  height: 8.25rem;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.35), rgba(30, 64, 175, 0.9));
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.18);
}

.expertise-orbit__core img{
  width: 2.6rem;
  height: 2.6rem;
  filter: brightness(0) invert(1);
}

.expertise-intro .badge{
  font-weight: 600;
}

@keyframes orbit{
  from{
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to{
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (max-width: 991.98px){
  .expertise-intro{
    text-align: center;
  }

  .expertise-intro .d-flex{
    justify-content: center;
  }

  .expertise-orbit-wrapper{
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 575.98px){
  .expertise-card{
    padding: 1.1rem 1.25rem;
    border-radius: 1.1rem;
    gap: 0.85rem;
  }

  .expertise-card__icon{
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.9rem;
  }

  .expertise-card__icon img{
    width: 1.6rem;
    height: 1.6rem;
  }

  .expertise-orbit{
    width: min(320px, 88vw);
  }

  .expertise-orbit__item{
    width: 4.6rem;
  }

  .expertise-orbit__icon{
    width: 2.9rem;
    height: 2.9rem;
  }

  .expertise-orbit__caption{
    font-size: 0.72rem;
  }

}

.service-detail{
  --detail-bg: linear-gradient(140deg, #080d1b 0%, #071226 45%, #0b1d3d 100%);
  --detail-border: rgba(96, 165, 250, 0.42);
  --detail-glow: radial-gradient(circle at 10% 10%, rgba(59, 130, 246, 0.45), rgba(59, 130, 246, 0));
  --detail-metric-bg: rgba(8, 47, 73, 0.55);
  --detail-metric-border: rgba(45, 212, 191, 0.25);
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  padding: clamp(2.6rem, 4.2vw, 3.2rem);
  background: var(--detail-bg);
  border: 1px solid var(--detail-border);
  color: #f8fafc;
  box-shadow: 0 32px 70px rgba(6, 12, 28, 0.55);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.service-detail::before,
.service-detail::after{
  content: "";
  position: absolute;
  inset: -40%;
  z-index: 0;
  pointer-events: none;
}

.service-detail::before{
  background:
    radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.35), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(56, 189, 248, 0.25), transparent 65%);
  filter: blur(0px);
}

.service-detail::after{
  background: repeating-linear-gradient(120deg, rgba(148, 163, 255, 0.08) 0 26px, transparent 26px 52px);
  opacity: 0.45;
  animation: serviceDetailSweep 18s linear infinite;
}

@keyframes serviceDetailSweep{
  0%{
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  100%{
    transform: translate3d(-80px, -60px, 0) rotate(2deg);
  }
}

.service-detail:hover{
  transform: translateY(-4px);
  box-shadow: 0 40px 82px rgba(6, 12, 28, 0.65);
  border-color: rgba(148, 163, 255, 0.55);
}

.service-detail__glow{
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.35), transparent 60%);
  z-index: 0;
  opacity: 0.85;
  pointer-events: none;
  transform: translate(-35%, -35%) scale(1.4);
  transition: opacity 0.4s ease;
}

.service-detail:hover .service-detail__glow{
  opacity: 1;
}
.service-detail__inner{
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: clamp(2rem, 4vw, 3.2rem);
}

.service-detail__copy{
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: clamp(1.2rem, 2vw, 1.75rem);
  color: #f8fafc;
}

.service-detail__head{
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-detail__badge{
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 1.2rem;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, rgba(59, 130, 246, 0.35), rgba(29, 78, 216, 0.6));
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.45), inset 0 0 0 1px rgba(148, 163, 255, 0.25);
}

.service-detail__badge img{
  width: 1.8rem;
  height: 1.8rem;
}

.service-detail__pill{
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: rgba(224, 231, 255, 0.9);
  background: rgba(45, 212, 191, 0.18);
  border: 1px solid rgba(56, 189, 248, 0.25);
}

.service-detail__title{
  font-size: clamp(1.9rem, 2.2vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}

.service-detail__description{
  margin: 0;
  color: rgba(226, 232, 240, 0.78);
  font-size: 1rem;
  line-height: 1.7;
}

.service-detail__metrics{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.service-detail__metrics .detail-metric{
  flex: 1 1 160px;
  background: var(--detail-metric-bg);
  border: 1px solid var(--detail-metric-border);
  box-shadow: 0 16px 28px rgba(8, 47, 73, 0.38);
}

.service-detail__metrics .detail-metric__value{
  color: #f8fafc;
}

.service-detail__metrics .detail-metric__label{
  color: rgba(191, 219, 254, 0.75);
  letter-spacing: 0.08em;
}

.service-detail__list{
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}


.service-detail__list span:hover{
  background: rgba(59, 130, 246, 0.28);
  transform: translateY(-2px);
}

.service-detail__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.service-detail__actions .btn-primary{
  box-shadow: 0 18px 36px rgba(59, 130, 246, 0.35);
}

.service-detail__actions .btn-outline-primary{
  border-color: rgba(248, 250, 252, 0.35);
  color: #f8fafc;
}

.service-detail__actions .btn-outline-primary:hover{
  background: rgba(248, 250, 252, 0.15);
  border-color: rgba(248, 250, 252, 0.45);
}

.service-detail__media{
  position: relative;
  flex: 0 1 clamp(260px, 32vw, 360px);
  min-height: 240px;
  border-radius: 1.6rem;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(14, 116, 144, 0.35), rgba(37, 99, 235, 0.35));
  box-shadow: 0 26px 46px rgba(15, 23, 42, 0.4), inset 0 0 0 1px rgba(148, 163, 255, 0.18);
}

.service-detail__media-glow{
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, rgba(59, 130, 246, 0) 65%);
  z-index: 0;
}

.service-detail__media img{
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.service-detail:hover .service-detail__media img{
  transform: scale(1.05);
}

.detail-metric{
  padding: 1rem 1.1rem;
  border-radius: 1.1rem;
  background: var(--detail-metric-bg);
  border: 1px solid var(--detail-metric-border);
  box-shadow: inset 0 0 0 1px rgba(248, 250, 252, 0.05);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.4s ease, border-color 0.4s ease;
}

.detail-metric__value{
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
}

.detail-metric__label{
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.7);
}

.service-detail--ready .detail-metric{
  opacity: 1;
  transform: translateY(0);
}

.service-detail--changing{
  animation: detailPulse 0.55s ease;
}

@keyframes detailPulse{
  0%{
    transform: scale(1);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2);
  }
  45%{
    transform: scale(1.02);
    box-shadow: 0 32px 70px rgba(15, 23, 42, 0.28);
  }
  100%{
    transform: scale(1);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
  }
}

@media (max-width: 991.98px){
  .service-detail__inner{
    flex-direction: column;
  }
  .service-detail__media{
    width: 100%;
    flex: 1 1 auto;
    min-height: 220px;
  }
  .service-detail__actions{
    justify-content: flex-start;
  }
  .service-detail__metrics{
    gap: 0.75rem;
  }
  .service-detail__glow{
    transform: translate(-50%, -40%) scale(1.6);
  }
}

@media (max-width: 575.98px){
  .service-detail{
    padding: 2rem;
  }
  .service-detail__glow{
    top: -42%;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 140%;
  }
  .service-detail__pill{
    font-size: 0.65rem;
    letter-spacing: 0.18em;
  }
  .service-detail__badge{
    width: 3rem;
    height: 3rem;
  }
  .service-detail__title{
    font-size: 1.7rem;
  }
  .service-detail__metrics .detail-metric{
    flex: 1 1 100%;
  }
  .service-detail__list span{
    width: 100%;
  }
}

.service-summary{
  padding: 2.25rem;
  border-radius: 1.6rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.service-summary p{
  color: #4b5563;
}

.service-summary ul{
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.service-summary ul li{
  font-size: 0.88rem;
}

.service-summary ul li a{
  color: #1a3deb;
  text-decoration: none;
  font-weight: 600;
}

.service-summary ul li a:hover{
  text-decoration: underline;
}

.service-process{
  position: relative;
  color: #f8f9ff;
  overflow: hidden;
}

.service-process__background{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(29, 10, 60, 0.92) 0%, rgba(10, 13, 42, 0.9) 45%, rgba(10, 11, 33, 0.88) 100%),
    url("../img/Home Page/1.jpg") center/cover no-repeat;
  opacity: 1;
  z-index: 0;
}

.service-process::after{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 10%, rgba(236, 72, 153, 0.38), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.service-process .container{
  position: relative;
  z-index: 1;
}

.service-process__intro{
  color: inherit;
  padding-right: 1rem;
}

.service-process__eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(236, 72, 153, 0.18);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  margin-bottom: 1.5rem;
  box-shadow: inset 0 0 0 1px rgba(236, 72, 153, 0.35);
}

.service-process__heading{
  font-size: clamp(2rem, 2.5vw + 1rem, 2.9rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.service-process__text{
  color: rgba(248, 250, 252, 0.8);
  margin-bottom: 1.75rem;
}

.service-process__cta .btn{
  box-shadow: 0 18px 32px rgba(236, 72, 153, 0.35);
  border: none;
}

.service-process__fluid{
  position: absolute;
  width: 18rem;
  height: 18rem;
  top: -3rem;
  left: -4rem;
  background: radial-gradient(circle at 35% 30%, rgba(244, 114, 182, 0.6), rgba(59, 130, 246, 0.38) 50%, rgba(59, 130, 246, 0) 70%);
  filter: blur(0px);
  opacity: 0.85;
  z-index: -1;
}

.service-process__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
}

.service-process-card{
  position: relative;
  padding: 2.25rem 2.1rem 2rem;
  border-radius: 1.75rem;
  background: rgba(6, 10, 36, 0.82);
  border: 1px solid rgba(236, 72, 153, 0.18);
  box-shadow: 0 24px 40px rgba(8, 8, 35, 0.42);
  backdrop-filter: blur(16px);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.service-process-card::before{
  content: "";
  position: absolute;
  inset: -40% auto auto -40%;
  width: 65%;
  height: 65%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.28), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-process-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 32px 50px rgba(8, 8, 35, 0.55);
  border-color: rgba(236, 72, 153, 0.4);
}

.service-process-card:hover::before{
  opacity: 1;
}

.service-process-card__step{
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: linear-gradient(120deg, #ec4899, #fb7185);
  color: #fff;
  box-shadow: 0 10px 20px rgba(236, 72, 153, 0.4);
}

.service-process-card__icon{
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 1.2rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.45), rgba(10, 13, 80, 0.65));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.service-process-card__icon img{
  width: 2rem;
  height: 2rem;
}

.service-process-card__title{
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
}

.service-process-card__body{
  color: rgba(226, 232, 240, 0.78);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.service-process-card__links{
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.service-process-card__links a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: rgba(59, 130, 246, 0.22);
  border: 1px solid rgba(59, 130, 246, 0.35);
  transition: background 0.3s ease, transform 0.3s ease;
}

.service-process-card__links a:hover{
  background: rgba(59, 130, 246, 0.45);
  transform: translateY(-2px);
}

@media (max-width: 991.98px){
  .service-process__grid{
    grid-template-columns: 1fr;
  }
  .service-process__intro{
    padding-right: 0;
  }
  .service-process__fluid{
    top: -6rem;
    left: -8rem;
    width: 22rem;
    height: 22rem;
  }
  .service-process-card{
    padding: 2.1rem 1.85rem 1.9rem;
  }
}

@media (max-width: 575.98px){
  .service-process-card__step{
    top: 1rem;
    right: 1rem;
  }
  .service-process-card__icon{
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
  }
  .service-process-card__title{
    font-size: 1.15rem;
  }
}

.capability-tile{
  padding: 1.75rem;
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
}

.outcome-card{
  padding: 2rem;
  border-radius: 1.5rem;
  background: #0f172a;
  color: #f8fafc;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
}

.outcome-card.alt{
  background: #1d2f5d;
}

.outcome-value{
  margin-bottom: 0.75rem;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.outcome-card p,
.outcome-card .small,
.outcome-card .text-muted{
  color: rgba(248, 250, 252, 0.9) !important;
}

.process-steps{
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.process-step{
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.75rem 1.5rem;
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.06);
}

.step-index{
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(65, 105, 225, 0.12);
  color: #2f54eb;
  display: grid;
  place-items: center;
  font-weight: 600;
}

.stack-grid .stack-tile{
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  text-align: center;
  font-weight: 600;
  color: #1f2937;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
}

.service-highlight{
  padding: 2.5rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(226, 232, 240, 0.6) 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.timeline{
  position: relative;
  --timeline-gap: 3rem;
  --marker-size: 1.05rem;
  padding-left: var(--timeline-gap);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  border-left: 1px solid rgba(15, 23, 42, 0.15);
}

.timeline-item{
  position: relative;
  padding-left: 1.75rem;
  transition: transform 0.25s ease;
  cursor: pointer;
}

.timeline-item:hover{
  transform: translateX(6px);
}

.timeline-marker{
  position: absolute;
  left: calc(-1 * var(--timeline-gap) - var(--marker-size) / 2);
  top: 1.2rem;
  width: var(--marker-size);
  height: var(--marker-size);
  border-radius: 50%;
  background: #1a3deb;
  box-shadow: 0 0 0 6px rgba(26, 61, 235, 0.12);
  transform: translateY(-50%);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  z-index: 1;
}

.timeline-item:hover .timeline-marker{
  transform: translateY(-50%) scale(1.14);
  box-shadow: 0 0 0 8px rgba(99, 102, 241, 0.25);
  background: #6366f1;
}

.timeline-content{
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.05);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.timeline-item:hover .timeline-content{
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
  transform: translateX(4px);
}

.cta-section{
  background: linear-gradient(100deg, #1a3deb 0%, #6b21f3 100%);
  border-radius: 2.5rem;
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.text-white-75{
  color: rgba(255,255,255,0.78) !important;
}

footer{
  margin-top: 5rem;
}

@media (max-width: 991.98px){
  .hero{
    padding-top: 7.5rem;
  }

  .hero.hero-immersive{
    padding: 9.5rem 0 5.5rem;
    min-height: auto;
    align-items: flex-start;
  }

  .hero-card{
    padding: 2rem;
  }

  .hero-services{
    margin-top: 2.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-metric-group{
    gap: 1.25rem;
  }

  .section-heading{
    font-size: 1.9rem;
  }

  .insight-card{
    border-radius: 1.5rem;
  }

  .insight-card__media{
    min-height: 160px;
  }

  .insight-card__title{
    font-size: 1.05rem;
  }

  .featured-article{
    padding: 2rem;
  }

  .insights-filter__chips{
    justify-content: flex-start;
  }

  .series-card{
    border-radius: 1.5rem;
  }

  .footer-subscribe{
    margin-bottom: 2rem;
  }

  .footer-subscribe__form .form-control{
    height: calc(3rem + 2px);
  }

  .service-card-media{
    height: 200px;
  }

  .about-tile{
    padding: 2rem;
  }

  .service-highlight{
    padding: 2rem;
  }

  .solution-card{
    padding: 2rem;
  }

  .service-pills{
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .service-pill{
    flex: 1 1 calc(50% - 0.75rem);
  }

  .service-pill__sub{
    font-size: 0.76rem;
  }

  .service-detail{
    margin-top: 2.25rem;
    padding: 2.25rem;
  }

  .timeline{
    --timeline-gap: 2.5rem;
    padding-left: var(--timeline-gap);
  }

  .timeline-item{
    padding-left: 1.5rem;
  }
}

@media (max-width: 575.98px){
  .hero{
    padding-top: 7rem;
    padding-bottom: 4rem;
  }

  .hero.hero-immersive{
    padding-top: 7.5rem;
    padding-bottom: 4.5rem;
  }

  .hero.hero-insights{
    padding-top: 8rem;
    padding-bottom: 4.25rem;
  }

  .hero h1{
    font-size: 2.1rem;
  }

  .hero-metric{
    width: 45%;
  }

  .hero-metric-group{
    gap: 1rem;
  }

  .metric-value{
    font-size: 1.5rem;
  }

  .hero-services{
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .hero-service-card{
    padding: 1.15rem;
  }
  .hero-pillset{
    gap: 0.5rem;
  }
  .hero-pill{
    width: 100%;
    justify-content: flex-start;
  }

  .hero-points li{
    align-items: flex-start;
  }

  .insights-header{
    align-items: flex-start;
  }

  .insight-card__media{
    min-height: 150px;
  }

  .insight-card__body{
    padding: 1.5rem 1.5rem 1.25rem;
  }

  .insight-card__title{
    font-size: 1.02rem;
  }

  .cta-section{
    margin-left: 0;
    margin-right: 0;
  }

  .about-tile{
    padding: 1.75rem;
  }

  .featured-article{
    padding: 1.75rem;
  }

  .featured-visual{
    border-radius: 1.5rem;
  }

  .insight-tile__body{
    padding: 1.5rem;
  }

  .insight-tile__meta{
    padding: 1.2rem 1.5rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .chip{
    padding: 0.5rem 1.05rem;
  }

  .cta-card{
    padding: 2.25rem;
  }

  .insight-logo{
    font-size: 0.85rem;
  }

  .service-card-media{
    height: 190px;
  }

  .footer-subscribe{
    text-align: left;
    padding-bottom: 1.75rem;
  }

  .footer-subscribe__form .col-md-8,
  .footer-subscribe__form .col-md-4{
    flex: 0 0 100%;
    max-width: 100%;
  }

  .footer-subscribe__form .btn{
    margin-top: 0.5rem;
  }

  .footer-bottom{
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .service-highlight{
    padding: 1.75rem;
  }

  .solution-card{
    padding: 1.85rem;
  }

  .service-pills{
    flex-direction: column;
    gap: 0.85rem;
  }

  .service-pill{
    flex: none;
    padding: 0.95rem 1rem;
  }

  .timeline{
    --timeline-gap: 2rem;
    padding-left: var(--timeline-gap);
  }

  .timeline-item{
    padding-left: 1.25rem;
  }

  .service-detail{
    padding: 2rem;
  }

  .timeline{
    padding-left: 1.5rem;
  }

  .timeline-marker{
    top: 1.15rem;
  }
}
.expertise-orbit__ring--middle::after,
.expertise-orbit__ring--inner::after{
  display: none;
}
.hero-services{
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.hero-service-card{
  position: relative;
  border-radius: 1.4rem;
  overflow: hidden;
  padding: 1.4rem 1.6rem;
  isolation: isolate;
  background: linear-gradient(150deg, rgba(6, 13, 32, 0.94), rgba(11, 25, 52, 0.94));
  border: 1px solid rgba(148, 163, 255, 0.28);
  box-shadow: 0 26px 58px rgba(5, 15, 38, 0.48), inset 0 0 0 1px rgba(59, 130, 246, 0.18);
  backdrop-filter: blur(16px);
  animation: heroTileFloat 7s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.3s);
}

.hero-service-card::before{
  content: none;
}

.hero-service-card__spark{
  display: none;
}

.hero-service-card__body{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  z-index: 1;
}

.hero-service-card__title{
  font-weight: 600;
  color: #f8fafc;
  letter-spacing: 0.02em;
}

.hero-service-card__meta{
  font-size: 0.78rem;
  color: rgba(224, 231, 255, 0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-service-card:hover{
  border-color: rgba(148, 163, 255, 0.55);
    box-shadow: 0 32px 50px rgba(8, 8, 35, 0.8);
  border-color: rgba(236, 72, 153, 0.8);
}

.green-circle-label{

position: absolute;

  font-size: 8px;
  color: rgba(255, 255, 255, 0.75);

 
 


}