/* Home page — matches React Hero, SplitSection, Vision, GlobalPresence */

/* ── Hero ── */
.hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  min-height: calc(100vh - var(--navbar-height));
  padding: 2rem 0 0;
  overflow: hidden;
}

.hero-section > .hero-content.container {
  max-width: var(--layout-max-width, 90rem);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.hero-section .row.align-items-center {
  --bs-gutter-x: 3rem;
  --bs-gutter-y: 3rem;
  width: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(236, 254, 255, 0.85) 0%, #fff 50%, rgba(224, 242, 254, 0.85) 100%);
  animation: heroBgShift 8s ease-in-out infinite;
}

@keyframes heroBgShift {
  0%, 100% { filter: hue-rotate(0deg); }
  50% { filter: hue-rotate(8deg); }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 18rem;
  height: 18rem;
  top: 5rem;
  left: 2rem;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.35), rgba(59, 130, 246, 0.35));
  animation: floatOrb1 20s ease-in-out infinite;
}

.hero-orb-2 {
  width: 24rem;
  height: 24rem;
  bottom: 6rem;
  right: 3rem;
  background: linear-gradient(135deg, rgba(192, 132, 252, 0.3), rgba(236, 72, 153, 0.25));
  animation: floatOrb2 18s ease-in-out infinite;
}

.hero-orb-3 {
  width: 20rem;
  height: 20rem;
  top: 30%;
  right: 25%;
  background: linear-gradient(135deg, rgba(147, 197, 253, 0.25), rgba(34, 211, 238, 0.2));
  animation: floatOrb3 22s ease-in-out infinite;
}

@keyframes floatOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(80px, 40px) scale(1.15); }
}

@keyframes floatOrb2 {
  0%, 100% { transform: translate(0, 0) scale(1.1); }
  50% { transform: translate(-60px, -30px) scale(1); }
}

@keyframes floatOrb3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 50px) scale(1.2); }
}

.hero-dots {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(circle, rgba(6, 182, 212, 0.8) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: dotsPulse 5s ease-in-out infinite;
}

@keyframes dotsPulse {
  0%, 100% { opacity: 0.03; }
  50% { opacity: 0.07; }
}

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

.hero-badge {
  margin-bottom: 2rem !important;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-badge-icon {
  display: inline-flex;
  flex-shrink: 0;
  animation: sparklesPulse 2s ease-in-out infinite;
}

.hero-badge-icon .icon-sparkles {
  transform-origin: center;
  animation: sparklesRotate 3s linear infinite;
}

@keyframes sparklesRotate {
  to { transform: rotate(360deg); }
}

@keyframes sparklesPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.hero-title {
  color: #111827;
  margin-bottom: 1.5rem !important;
  animation: fadeUp 0.8s ease 0.35s both;
}

.hero-line-solid {
  display: inline-block;
  font-weight: 400;
  color: #111827;
}

.hero-line-shimmer {
  display: inline-block;
  font-weight: 400;
  background: linear-gradient(90deg, #007bff 0%, #00c0ff 50%, #007bff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmerText 5s linear infinite;
}

@keyframes shimmerText {
  to { background-position: 200% center; }
}

.hero-line-using {
  position: relative;
  display: inline-block;
}

.hero-using-prefix {
  position: relative;
  z-index: 1;
  color: #111827;
  font-weight: 400;
}

.hero-using-text {
  position: relative;
  z-index: 1;
  color: #111827;
  font-weight: 400;
}

.hero-underline-bar {
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  width: 100%;
  height: 0.75rem;
  /* background: linear-gradient(90deg, rgba(34, 211, 238, 0.4), rgba(96, 165, 250, 0.4)); */
  border-radius: 999px;
  z-index: 0;
  transform-origin: left;
  animation: underlineGrow 0.9s ease 0.8s both;
}

@keyframes underlineGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.hero-line-results {
  display: inline-block;
  font-weight: 400;
  background: linear-gradient(90deg, #0891b2 0%, #2563eb 50%, #9333ea 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: resultsShimmer 4s linear infinite;
}

@keyframes resultsShimmer {
  to { background-position: 200% center; }
}

.hero-desc {
  font-size: 1.125rem;
  font-weight: 400;
  color: #4b5563;
  line-height: 1.625;
  max-width: 36rem;
  margin-bottom: 2rem !important;
  animation: fadeUp 0.8s ease 0.5s both;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s ease 0.6s both;
}

.hero-ctas .btn-hero-primary,
.hero-ctas .btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem !important;
  font-size: 1.125rem !important;
  font-weight: 600 !important;
  border-radius: 9999px !important;
  line-height: 1;
  height: 4.5rem;
  min-height: 3.5rem;
  box-sizing: border-box;
  vertical-align: middle;
}

.hero-ctas .btn-hero-primary {
  background: linear-gradient(90deg, #0891b2, #2563eb) !important;
  border: none !important;
  color: #fff !important;
  box-shadow: 0 10px 25px rgba(6, 182, 212, 0.35);
}

.hero-ctas .btn-hero-primary:hover {
  color: #fff !important;
  box-shadow: 0 14px 32px rgba(6, 182, 212, 0.45);
  transform: translateY(-2px);
}

.hero-ctas .btn-hero-primary span,
.hero-ctas .btn-hero-primary i {
  position: relative;
  z-index: 1;
}

.hero-ctas .btn-hero-secondary {
  background: #fff !important;
  border: 2px solid #d1d5db !important;
  color: #111827 !important;
  padding-left: 1rem !important;
  padding-right: 2rem !important;
}

.hero-ctas .btn-hero-secondary:hover {
  border-color: #0891b2 !important;
  color: #111827 !important;
  transform: translateY(-2px);
}

.hero-ctas .btn-play-icon {
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  margin: 0;
  flex-shrink: 0;
}

.hero-ctas .btn-play-icon .bi-play-fill {
  margin-left: 2px;
  font-size: 1rem;
}

.btn-brand {
  position: relative;
  overflow: hidden;
}

.btn-brand::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateX(-100%);
  animation: btnShimmer 2.5s linear infinite;
}

@keyframes btnShimmer {
  to { transform: translateX(100%); }
}

.btn-play-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hero-stats-row {
  margin-top: 2.75rem;
  padding-top: 0;
}

.hero-stats-row .col-12 {
  text-align: center;
}

.hero-stats-band {
  position: relative;
  z-index: 3;
  width: 100%;
  margin-top: 2.5rem;
  padding: 1.75rem 0 1.85rem;
  background: transparent;
  border-top: 0;
}

.hero-stats-band-inner {
  max-width: var(--layout-max-width, 90rem);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.hero-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
  margin: 0;
  width: 100%;
  padding: 0.35rem 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  animation: fadeUp 0.8s ease 0.75s both;
}

@media (min-width: 991px) {
  .hero-section .row.align-items-center {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
  }

  .hero-section .row.align-items-center > .col-lg-6:last-child {
    margin-top: 0 !important;
  }

  .hero-section .col-lg-6:first-child {
    position: relative;
    z-index: 2;
    padding-right: 0.5rem;
  }

  .hero-section .col-lg-6:last-child {
    position: relative;
    z-index: 1;
    padding-left: 0.5rem;
    overflow: visible;
  }
}

@media (max-width: 990.98px) {
  .hero-section .row.align-items-center > .col-lg-6 + .col-lg-6 {
    margin-top: 1rem;
  }
}

.stat-pulse {
  animation: statPulse 2s ease-in-out infinite;
}

.hero-stat-item {
  --stat-accent: #2563eb;
  --stat-glow: rgba(59, 130, 246, 0.22);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0.55rem 1.25rem;
  text-align: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-stat--blue {
  --stat-accent: #1d4ed8;
  --stat-glow: rgba(59, 130, 246, 0.24);
}

.hero-stat--purple {
  --stat-accent: #6d28d9;
  --stat-glow: rgba(139, 92, 246, 0.24);
}

.hero-stat--cyan {
  --stat-accent: #0e7490;
  --stat-glow: rgba(6, 182, 212, 0.24);
}

.hero-stat--pink {
  --stat-accent: #db2777;
  --stat-glow: rgba(236, 72, 153, 0.24);
}

.hero-stat-sep {
  position: absolute;
  top: 18%;
  bottom: 18%;
  right: 0;
  width: 1px;
  background: #e2e8f0;
  pointer-events: none;
}

.hero-stat-sep::after {
  display: none;
}

.hero-stat-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  text-align: center;
}

.hero-stat-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.15rem;
  height: 3.15rem;
  border-radius: 50%;
  color: var(--stat-accent);
  background: radial-gradient(circle, var(--stat-glow) 0%, rgba(255, 255, 255, 0) 72%);
  box-shadow: none;
}

.hero-stat-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  display: block;
  stroke-width: 1.75;
}

.hero-stat-value {
  display: block;
  width: 100%;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  text-align: center;
  color: var(--stat-accent);
  background: none;
  -webkit-text-fill-color: currentColor;
}

.hero-stat-rule {
  display: none;
}

.hero-stat-headline {
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem;
  line-height: 1.15;
  text-align: center;
}

.hero-stat-headline .hero-stat-value {
  display: inline;
  width: auto;
}

.hero-stat-suffix {
  font-size: 1rem;
  font-weight: 400;
  color: #6b7280;
}

.hero-stat-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #64748b;
  line-height: 1.45;
  letter-spacing: 0.01em;
  text-align: center;
  max-width: 12.5rem;
}

.hero-stat-label.hero-stat-label-single {
  max-width: none;
  white-space: pre-wrap;
}

@media (max-width: 1199.98px) {
  .hero-stat-label.hero-stat-label-single {
    font-size: 0.75rem;
    letter-spacing: 0.01em;
  }
}

.stat-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(90deg, #06b6d4, #2563eb);
  flex-shrink: 0;
  animation: statPulse 2s ease-in-out infinite;
}

@keyframes statPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}

.btn-brand .bi-arrow-right {
  display: inline-block;
  animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

.typewriter-cursor {
  display: inline-block;
  width: 2px;
  height: 0.9em;
  margin-left: 2px;
  background: #0891b2;
  vertical-align: text-bottom;
  animation: cursorBlink 0.8s ease-in-out infinite;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-wave {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 5.5rem;
  margin: 0;
  opacity: 0.45;
  pointer-events: none;
  overflow: hidden;
  background: transparent;
}

.hero-wave svg {
  width: 200%;
  height: 100%;
  opacity: 0.35;
  animation: waveSlide 20s linear infinite;
}

@keyframes waveSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Hero image column — layered 3D media card */
.hero-visual {
  position: relative;
  isolation: isolate;
  overflow: visible;
  padding: 2.35rem 1.75rem 2.6rem 1.4rem;
  animation: fadeUp 1s ease 0.3s both;
}

.hero-visual-stage {
  position: relative;
  z-index: 1;
  width: 100%;
  animation: heroCardFloat 7s ease-in-out infinite;
}

.hero-visual-stage::before {
  content: '';
  position: absolute;
  inset: -22% -16% -26% -14%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 75% 60% at 50% 45%, rgba(56, 189, 248, 0.28), transparent 68%),
    radial-gradient(ellipse 50% 45% at 18% 12%, rgba(125, 211, 252, 0.3), transparent 60%),
    radial-gradient(ellipse 45% 40% at 88% 88%, rgba(167, 139, 250, 0.16), transparent 62%);
  filter: blur(22px);
}

.hero-visual-layers {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: visible;
  pointer-events: none;
}

.hero-visual-panel {
  position: absolute;
  pointer-events: none;
}

.hero-visual-panel--back {
  /* z-index: 0;
  top: 50%;
  left: 50%;
  width: 105%;
  height: 106%;
  border-radius: 2.15rem;
  background: linear-gradient(145deg,
    rgba(165, 243, 252, 0.34) 0%,
    rgba(186, 230, 253, 0.2) 52%,
    rgba(219, 234, 254, 0.16) 100%);
  border: 1px solid rgba(186, 230, 253, 0.32);
  transform: translate(-50%, -50%) rotate(8deg); */
  z-index: 0;
    top: 0%;
    left: 0%;
    border-radius: 2.15rem;
    background: linear-gradient(145deg, rgba(165, 243, 252, 0.34) 0%, rgb(186 230 253 / 53%) 52%, rgba(219, 234, 254, 0.16) 100%);
    border: 1px solid rgba(186, 230, 253, 0.32);
    width: 105%;
    height: 103%;
    transform: skew(-13deg);
}

.hero-visual-panel--accent {
  /* z-index: 1;
  top: 14%;
  left: 26%;
  width: 88%;
  height: 92%;
  border-radius: 2rem;
  background: linear-gradient(165deg,
    #7dd3fc 0%,
    #38bdf8 38%,
    #0ea5e9 72%,
    #6366f1 100%);
  opacity: 0.92;
  transform: rotate(4deg);
  box-shadow: 0 16px 32px rgba(14, 165, 233, 0.22); */
  z-index: 1;
  top: 14%;
  left: 15%;
  width: 90%;
  height: 77%;
  border-radius: 2rem;
  background: linear-gradient(333deg, #7dd3fc 0%, #58a2fd 38%, #5ca0fe 72%, #58a0fd 100%);
  opacity: 0.92;
  box-shadow: 0 16px 32px rgba(14, 165, 233, 0.22);
  transform: skew(-21deg);
}

.hero-carousel {
  /* position: relative;
  z-index: 2;
  isolation: isolate;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 0;
  border-radius: 2rem;
  overflow: hidden;
  background: #e8f6ff;
  border: 0;
  box-shadow:
    inset 0 0 0 1.5px rgba(224, 252, 255, 0.78),
    inset 0 0 18px rgba(165, 243, 252, 0.22),
    0 0 0 1px rgba(125, 211, 252, 0.35),
    0 0 28px rgba(56, 189, 248, 0.42),
    0 0 64px rgba(14, 165, 233, 0.2),
    0 26px 50px rgba(12, 74, 110, 0.16);
  transform: rotate(4deg);
  transform-origin: center center; */
  position: relative;
    z-index: 2;
    isolation: isolate;
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 0;
    border-radius: 2rem;
    overflow: hidden;
    background: #e8f6ff;
    border: 2px solid #67dbfb;
    box-shadow: inset 0 0 0 1.5px rgba(224, 252, 255, 0.78), inset 0 0 18px rgba(165, 243, 252, 0.22), 0 0 0 1px rgba(125, 211, 252, 0.35), 0 0 28px rgba(56, 189, 248, 0.42), 0 0 64px rgba(14, 165, 233, 0.2), 0 26px 50px rgba(12, 74, 110, 0.16);
    transform-origin: center center;
    transform: perspective(1200px) rotateZ(5.8deg) rotateY(-10deg);
}

.hero-carousel::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 7;
  pointer-events: none;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(125, 211, 252, 0.75) 22%,
    rgba(56, 189, 248, 0.45) 50%,
    rgba(165, 243, 252, 0.8) 78%,
    rgba(255, 255, 255, 0.7) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

.hero-carousel::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  border-radius: inherit;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -1px 0 rgba(125, 211, 252, 0.28),
    inset 1px 0 0 rgba(224, 252, 255, 0.35),
    inset -1px 0 0 rgba(125, 211, 252, 0.32);
}

.hero-carousel-inner {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: inherit;
  overflow: hidden;
}

.hero-center-pulse,
.hero-carousel-ring,
.hero-scan-line {
  display: none;
}

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

.hero-carousel-inner > picture {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  pointer-events: none;
}

.hero-carousel-inner .hero-slide {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1s ease, transform 1s ease, filter 0.5s ease;
  filter: brightness(1.02) saturate(1.04);
}

.hero-carousel-inner .hero-slide.active {
  opacity: 1;
  transform: scale(1);
  animation: slideKenBurns 8s ease-in-out infinite;
}

@keyframes slideKenBurns {
  0%, 100% { transform: scale(1); filter: brightness(1.02) saturate(1.04); }
  50% { transform: scale(1.04); filter: brightness(1.06) saturate(1.06); }
}

.hero-carousel-inner .hero-slide.leaving {
  opacity: 0;
  transform: scale(0.97);
}

.hero-carousel-glow {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 42%, rgba(6, 182, 212, 0.08) 100%);
  mix-blend-mode: soft-light;
}

@media (max-width: 1199.98px) {
  .hero-visual {
    padding: 2.25rem 1.6rem 2.5rem 1.2rem;
  }

  .hero-visual-panel--back {
    width: 100%;
    height: 106%;
  }

  .hero-visual-panel--accent {
    left: 13%;
    width: 86%;
  }
}

@media (max-width: 991.98px) {
  .hero-visual {
    max-width: 36rem;
    margin: 0 auto;
    padding: 2rem 1.4rem 2.3rem;
  }

  .hero-carousel {
    transform: perspective(1200px) rotateZ(5.8deg) rotateY(-10deg);
  }

  .hero-visual-panel--back {
    width: 100%;
        height: 99%;
        transform: skew(-21deg);
        top: 0;
        left: 0;
  }

  .hero-visual-panel--accent {
    top: 16%;
    left: 14%;
    width: 84%;
    height: 76%;
    transform: skew(-21deg);
  }
}

@media (max-width: 600px) {
  .hero-section .row.align-items-center {
    --bs-gutter-x: 3rem;
    --bs-gutter-y: 3rem;
    width: initial;
}
}

@media (max-width: 575.98px) {
  .hero-visual {
    max-width: 100%;
    padding: 1.5rem 0.85rem 1.85rem;
  }

  .hero-visual-stage::before {
    inset: -10% -8% -14% -8%;
    filter: blur(14px);
  }

  .hero-carousel {
    border-radius: 1.35rem;
    box-shadow: inset 0 0 0 1.5px rgba(224, 252, 255, 0.72), 0 0 20px rgba(56, 189, 248, 0.32), 0 16px 36px rgba(12, 74, 110, 0.14);
    transform: perspective(1200px) rotateZ(5.8deg) rotateY(-10deg);
}

  .hero-visual-panel--back {
    border-radius: 1.5rem;
    top: 0;
    left: 0;
    width: 98%;
    height: 101%;
    transform: skew(-12deg);
  }

  .hero-visual-panel--accent {
    top: 14%;
    left: 12%;
    width: 84%;
    height: 77%;
    border-radius: 1.4rem;
    transform: skew(-21deg);
  }

  .hero-carousel::after {
    width: auto;
    height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual-stage,
  .hero-carousel {
    animation: none;
  }

  .hero-carousel {
    transform: rotate(3deg);
  }

  .hero-carousel-inner .hero-slide.active {
    animation: none;
  }
}

.hero-float-card {
  position: absolute;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  border: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  z-index: 10;
  animation: floatCard 4s ease-in-out infinite;
}

.hero-badge-float {
  top: 1.5rem;
  left: 1.5rem;
  z-index: 12;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  animation: floatCard 4s ease-in-out infinite, badgePop 0.6s ease 1.2s both;
}

@keyframes badgePop {
  from { opacity: 0; transform: scale(0.6); }
  to { opacity: 1; transform: scale(1); }
}

.hero-float-card.card-left {
  left: -1rem;
  top: 5rem;
  opacity: 0;
  animation: cardFadeIn 0.8s ease 1.6s forwards, floatCard 4s ease-in-out 2.5s infinite;
}

.hero-float-card.card-right {
  right: -1rem;
  bottom: 8rem;
  opacity: 0;
  animation: cardFadeIn 0.8s ease 1.8s forwards, floatCard 4s ease-in-out 2.7s infinite;
}

@keyframes cardFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (min-width: 992px) {
  .hero-float-card.card-left { left: -2rem; }
  .hero-float-card.card-right { right: -2rem; }
}

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

.hero-float-card .icon-box-sm {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
}

/* ── Capabilities (dark) ── */
.section-capabilities {
  background: linear-gradient(160deg, #101f5f 0%, #080d22 40%, #1e073e 100%);
  padding: 5rem 0;
  overflow: hidden;
}

.section-capabilities > .container {
  max-width: var(--layout-max-width, 90rem);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-capabilities .capabilities-grid,
.section-capabilities .row.g-4 {
  --bs-gutter-x: 1.25rem;
  --bs-gutter-y: 1.25rem;
}

.section-capabilities .col-lg-6 {
  display: flex;
}

.section-capabilities .col-lg-6 > .glass-card {
  width: 100%;
}

.glass-card > *:not(.glass-card-glow) {
  position: relative;
  z-index: 2;
}

.section-capabilities .section-title {
  color: #fff;
  margin-bottom: 3rem;
  animation: fadeUp 0.7s ease both;
}

.section-capabilities .section-title .accent {
  color: #22d3ee;
}

.glass-card {
  position: relative;
  border-radius: 1rem;
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
}

.glass-card-services {
  background: linear-gradient(145deg, rgba(14, 38, 90, 0.72) 0%, rgba(8, 22, 60, 0.65) 100%);
  border: 1px solid rgba(56, 189, 248, 0.22);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 24px 60px rgba(0, 20, 80, 0.45);
}

.glass-card-research {
  background: linear-gradient(145deg, rgba(55, 18, 100, 0.72) 0%, rgba(35, 10, 75, 0.65) 100%);
  border: 1px solid rgba(168, 85, 247, 0.25);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 24px 60px rgba(50, 0, 100, 0.45);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 1;
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.6), transparent 60%);
}

.glass-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 50%;
  z-index: 1;
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.5), transparent);
}

.glass-card-research::before {
  background: linear-gradient(90deg, rgba(168, 85, 247, 0.65), transparent 60%);
}

.glass-card-research::after {
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.55), transparent);
}

.glass-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.glass-card-illus {
  flex-shrink: 0;
  opacity: 0.9;
  margin-top: -0.5rem;
  margin-right: -0.5rem;
}

.glass-card-glow {
  position: absolute;
  top: -2.5rem;
  right: -2.5rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}

.glass-card-services .glass-card-glow {
  background: radial-gradient(circle, rgba(37, 99, 235, 0.25), transparent 70%);
}

.glass-card-research .glass-card-glow {
  background: radial-gradient(circle, rgba(109, 40, 217, 0.3), transparent 70%);
}

.glass-card h3 {
  color: #fff;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.glass-card .title-bar {
  width: 2.5rem;
  height: 2px;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.glass-card-services .title-bar { background: rgba(56, 189, 248, 0.8); }
.glass-card-research .title-bar { background: rgba(168, 85, 247, 0.8); }

.glass-card p.desc {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.625;
  /* max-width: 20rem; */
  margin-bottom: 1.25rem;
}

.icon-lucide {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  display: block;
}

.badge-icon .icon-lucide {
  width: 1.25rem;
  height: 1.25rem;
  color: #fff;
}

.feat-icon .icon-lucide {
  width: 1rem;
  height: 1rem;
}

.icon-lucide.icon-xs,
.btn-glass-cta .icon-lucide,
.link-ghost .icon-lucide {
  width: 0.875rem;
  height: 0.875rem;
}

.glass-card-features {
  flex: 1 1 auto;
}

.glass-card-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.feature-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  transition: transform 0.18s ease;
}

a.feature-row:hover,
a.feature-row:focus-visible {
  color: inherit;
  text-decoration: none;
}

.feature-row-main {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.feature-row:hover {
  transform: translateX(4px);
}

.feature-row .feat-arrow-icon {
  width: 1rem;
  height: 1rem;
  color: #4b5563;
  flex-shrink: 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.feature-row.cyan:hover .feat-arrow-icon {
  color: #22d3ee;
  transform: translateX(4px);
}

.feature-row.purple:hover .feat-arrow-icon {
  color: #c084fc;
  transform: translateX(4px);
}

.feature-row .feat-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-row.cyan .feat-icon {
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.18);
  color: #22d3ee;
}

.feature-row.purple .feat-icon {
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.18);
  color: #c084fc;
}

.feature-row .feat-title {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25;
  margin: 0;
}

.feature-row .feat-sub {
  color: #6b7280;
  font-size: 0.75rem;
  line-height: 1.25;
  margin: 0.125rem 0 0;
}

.badge-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.badge-icon.cyan {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.8), rgba(56, 189, 248, 0.6));
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

.badge-icon.purple {
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.9), rgba(168, 85, 247, 0.7));
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.35);
}

.btn-glass-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: #fff;
  color: #111827;
  border: none;
  border-radius: 0.75rem;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25;
  text-decoration: none;
  box-shadow: 0 2px 20px rgba(56, 189, 248, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-glass-cta-cyan .icon-lucide {
  color: #2563eb;
}

.btn-glass-cta-purple .icon-lucide {
  color: #9333ea;
}

.btn-glass-cta:hover {
  color: #111827;
  transform: scale(1.03);
}

.btn-glass-cta-cyan:hover {
  box-shadow: 0 2px 20px rgba(56, 189, 248, 0.35);
}

.btn-glass-cta-purple:hover {
  box-shadow: 0 2px 20px rgba(168, 85, 247, 0.35);
}

.link-ghost-cyan:hover {
  color: #22d3ee;
}

.link-ghost-purple:hover {
  color: #c084fc;
}

.link-ghost {
  color: #9ca3af;
  font-size: 0.875rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s;
}

.link-ghost .icon-lucide {
  color: currentColor;
}

.section-capabilities a.btn-glass-cta,
.section-capabilities a.btn-glass-cta:hover,
.section-capabilities a.btn-glass-cta:focus {
  color: #111827;
  text-decoration: none;
}

.section-capabilities a.link-ghost {
  color: #9ca3af;
  text-decoration: none;
}

.link-ghost:hover { color: #22d3ee; }
.glass-card-research .link-ghost:hover { color: #c084fc; }

/* ── Vision ── */
.section-vision {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
  background: linear-gradient(160deg, #f8faff 0%, #eef5ff 40%, #f0fcff 100%);
}

.section-vision .vision-visual,
.section-vision .col-lg-6.reveal-right {
  overflow: visible;
}

.section-vision .vision-dot-grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image: radial-gradient(circle, #0891b2 1px, transparent 1px);
  background-size: 32px 32px;
}

.section-vision .vision-orb-left {
  position: absolute;
  top: -8rem;
  left: -8rem;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.25), transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}

.section-vision .vision-orb-right {
  position: absolute;
  bottom: -6rem;
  right: -6rem;
  width: 25rem;
  height: 25rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.28), transparent 70%);
  opacity: 0.25;
  pointer-events: none;
}

.section-vision .vision-container {
  position: relative;
  z-index: 2;
  max-width: var(--layout-max-width, 90rem);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-vision .vision-grid {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 2rem;
}

/* Two-column layout (matches React Vision.tsx) — grid avoids flex-col wrap bugs */
@media (min-width: 992px) {
  .section-vision .vision-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 4rem;
    row-gap: 2rem;
    /* Top-align columns so orbit can line up with headline (not vertically centered) */
    align-items: start;
    margin-left: 0;
    margin-right: 0;
    flex-wrap: nowrap;
  }

  .section-vision .vision-grid > .col-lg-6 {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .section-vision .vision-copy {
    justify-self: start;
    text-align: left;
  }

  .section-vision .vision-visual {
    justify-self: stretch;
    display: flex;
    flex-direction: column;
    /*
     * Align orbit graphic with "You Have Ideas" (below pill).
     * Subtract ~1.25rem so the visible orbit top (labels/rings), not the
     * empty top of .vision-orbit, meets the headline — matches React reference.
     */
    --vision-orbit-nudge: 1.25rem;
    padding-top: calc(1.75rem + 0.75rem + 1.125rem - var(--vision-orbit-nudge));
  }

  .section-vision .vision-visual > .vision-orbit {
    margin-left: auto;
    margin-right: auto;
    flex-shrink: 0;
  }
}

.vision-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 999px;
  border: 1px solid #a5f3fc;
  background: #ecfeff;
  margin-bottom: 1.75rem;
}

.vision-pill span {
  color: #0e7490;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.vision-pill-icon {
  width: 0.875rem;
  height: 0.875rem;
  color: #0891b2;
  flex-shrink: 0;
  animation: wiggle 3s ease-in-out infinite;
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(12deg); }
  75% { transform: rotate(-12deg); }
}

.vision-headline {
  color: #111827;
  margin-bottom: 1.5rem;
}

.vision-headline-accent {
  display: inline-block;
  position: relative;
}

.vision-gradient-text {
  background: linear-gradient(90deg, #06b6d4, #2563eb, #9333ea);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.vision-underline {
  position: absolute;
  left: 0;
  bottom: 0.35rem;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  /* background: linear-gradient(90deg, rgba(103, 232, 249, 0.5), rgba(147, 197, 253, 0.5)); */
  z-index: -1;
  transform-origin: left center;
  animation: visionUnderlineGrow 0.9s ease-out 0.35s both;
}

@keyframes visionUnderlineGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.vision-lead {
  color: #6b7280;
  font-size: 1.125rem;
  line-height: 1.625;
  /* max-width: 32rem; */
  margin-bottom: 2rem;
}

.vision-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #374151;
  font-size: 0.875rem;
}

.vision-feature-item .icon-check {
  width: 1.125rem;
  height: 1.125rem;
  color: #06b6d4;
  flex-shrink: 0;
}

.vision-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.btn-vision-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(90deg, #06b6d4, #2563eb);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(6, 182, 212, 0.25);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-vision-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: translateX(-100%);
  animation: visionBtnShimmer 2.2s linear infinite;
}

.btn-vision-primary > * {
  position: relative;
  z-index: 1;
}

@keyframes visionBtnShimmer {
  to { transform: translateX(100%); }
}

.btn-vision-primary:hover {
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 20px 40px rgba(6, 182, 212, 0.35);
}

.btn-vision-primary .icon-xs {
  width: 1rem;
  height: 1rem;
  color: #fff;
}

.vision-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #6b7280;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
}

.vision-cta-secondary:hover {
  color: #0891b2;
  transform: translateX(4px);
}

.vision-cta-secondary .icon-xs {
  width: 0.875rem;
  height: 0.875rem;
}

@media (max-width: 991.98px) {
  .section-vision .vision-visual {
    display: none !important;
  }
  .hero-desc{
    max-width: 100%;
  }
}

.stat-card-vision {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 1rem;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-card-vision:hover {
  transform: translateY(-4px);
  z-index: 5;
}

.stat-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.stat-icon .icon-lucide {
  width: 1rem;
  height: 1rem;
}

.stat-icon-cyan {
  background: rgba(6, 182, 212, 0.08);
  color: #06b6d4;
}

.stat-icon-blue {
  background: rgba(59, 130, 246, 0.08);
  color: #3b82f6;
}

.stat-icon-purple {
  background: rgba(139, 92, 246, 0.08);
  color: #9333ea;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.125rem;
}

.stat-value-cyan { color: #06b6d4; }
.stat-value-blue { color: #3b82f6; }
.stat-value-purple { color: #9333ea; }

.stat-label {
  color: #6b7280;
  font-size: 0.75rem;
  line-height: 1.3;
  margin-top: 0.125rem;
}

.section-vision .trust-strip {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 100%;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 1rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.trust-title {
  color: #111827;
  font-size: 0.875rem;
  margin: 0;
  font-weight: 500;
}

.trust-rating {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-top: 0.125rem;
}

.trust-rating-text {
  color: #6b7280;
  font-size: 0.75rem;
  margin-left: 0.25rem;
}

.avatar-stack {
  display: flex;
  flex-shrink: 0;
}

.avatar-stack span {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 2px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  margin-left: -0.5rem;
}

.avatar-stack span:first-child {
  margin-left: 0;
  z-index: 4;
}

.avatar-stack span:nth-child(2) { z-index: 3; }
.avatar-stack span:nth-child(3) { z-index: 2; }
.avatar-stack span:nth-child(4) { z-index: 1; }

/* ── Partners (from services recognition section) ── */
.home-partners {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  scroll-margin-top: calc(var(--navbar-height, 72px) + 12px);
}

.home-partners-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at top right, rgba(147, 197, 253, 0.35), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(186, 230, 253, 0.3), transparent 60%);
  opacity: 0.6;
  pointer-events: none;
}

.home-partners-glow {
  position: absolute;
  top: -6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 42rem;
  height: 42rem;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.1);
  filter: blur(48px);
  pointer-events: none;
}

.home-partners-inner {
  position: relative;
  z-index: 1;
  max-width: var(--layout-max-width, 90rem);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.home-partners-layout {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .home-partners-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

.home-partners-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  font-weight: 600;
  color: #3b82f6;
  margin-bottom: 1rem;
}

.home-partners-title {
  text-align: left;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin: 0;
  line-height: 1.2;
}

.home-partners-title span {
  background-image: linear-gradient(135deg, #38bdf8, #2563eb);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

@media (min-width: 1024px) {
  .home-partners-title {
    font-size: 3rem;
  }
}

.home-partners-lead {
  text-align: left;
  margin: 1rem 0 0;
  max-width: 36rem;
  color: #64748b;
  line-height: 1.6;
}

.home-partners-kpis {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  width: 100%;
  max-width: 36rem;
}

.home-partners-kpi {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 14px 12px;
  text-align: center;
}

.home-partners-kpi-value {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.home-partners-kpi-label {
  margin-top: 6px;
  font-size: 11px;
  color: rgba(15, 23, 42, 0.55);
  line-height: 1.25;
}

.home-partners-logos-wrap {
  width: 100%;
  min-width: 0;
}

.home-partners-logos {
  position: relative;
  width: 100%;
}

.home-partners-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  height: 420px;
  position: relative;
  z-index: 1;
}

.home-partners-lane {
  position: relative;
  overflow: hidden;
}

.home-partners-track {
  display: flex;
  flex-direction: column;
  gap: 16px;
  will-change: transform;
  animation: homePartnersUp 20s linear infinite;
}

.home-partners-track--down {
  animation-name: homePartnersDown;
}

.home-partners-lane:hover .home-partners-track {
  animation-play-state: paused;
}

@keyframes homePartnersUp {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

@keyframes homePartnersDown {
  from { transform: translateY(-50%); }
  to { transform: translateY(0); }
}

.home-partners-tile {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  padding: 10px;
  display: grid;
  place-items: center;
  min-height: 92px;
  position: relative;
}

.home-partners-tile::before,
.home-partners-tile::after {
  content: "";
  position: absolute;
  width: 56px;
  height: 56px;
  pointer-events: none;
  opacity: 0.95;
}

.home-partners-tile::before {
  top: 10px;
  left: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.65);
  border-left: 1px solid rgba(255, 255, 255, 0.65);
  border-top-left-radius: 14px;
}

.home-partners-tile::after {
  right: 10px;
  bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  border-right: 1px solid rgba(255, 255, 255, 0.65);
  border-bottom-right-radius: 14px;
}

.home-partners-tile__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 72px;
  padding: 6px 10px;
}

.home-partners-tile__logo img {
  max-height: 52px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.home-partners-grid--row {
  display: none;
}
@media (min-width: 1200px) and (max-width: 1550px) {
  .hero-visual-panel--back
  {
    width: 100%;
}
.hero-visual-panel--accent{
  left: 10%;
    width: 88%;
}
}
@media (min-width: 992px) and (max-width: 1125px) {
  .navbar-dcube .navbar-brand img {
    height: 55px;
}
.navbar-nav-dcube {
  gap: 1rem;
  flex-wrap: nowrap;
}
.phone-pill {
  padding: 0.525rem 1.0rem;
}
.navbar-dcube .btn-brand.btn-connect {
  padding: 0.45rem 0.8rem;
}
.navbar-dcube > .container {
  flex-wrap: nowrap;
}

}

@media (min-width: 768px) and (max-width: 991.98px) {
  .home-partners-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .home-partners-title,
  .home-partners-lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .home-partners-kpis {
    margin-left: auto;
    margin-right: auto;
  }

  .home-partners-grid {
    gap: 12px;
    height: 400px;
  }

  .home-partners-track {
    align-items: center;
    gap: 12px;
  }

  .home-partners-tile__logo img {
    max-height: 42px;
  }
}

@media (max-width: 575.98px) {
  .home-partners {
    padding: 3.5rem 0;
  }

  .home-partners-title {
    font-size: 1.875rem;
  }

  .home-partners-kpis {
    gap: 0.5rem;
  }

  .home-partners-grid--lanes {
    display: none;
  }

  .home-partners-grid--row {
    display: block;
    height: 92px;
    overflow: hidden;
  }

  .home-partners-lane--row {
    overflow: hidden;
    width: 100%;
  }

  .home-partners-track--row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 12px;
    width: max-content;
    animation: homePartnersScrollLeft 28s linear infinite;
  }

  .home-partners-track--row .home-partners-tile {
    flex: 0 0 auto;
    width: auto;
    min-width: 5.5rem;
    min-height: 72px;
    padding: 8px 10px;
  }

  .home-partners-tile__logo img {
    max-height: 38px;
  }

  .home-partners-lane--row:hover .home-partners-track--row {
    animation-play-state: paused;
  }
}

@keyframes homePartnersScrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .home-partners-track,
  .home-partners-track--down,
  .home-partners-track--row {
    animation: none;
    transform: none;
  }
}

/* ── Global presence ── */
.section-global {
  position: relative;
  padding: 2.5rem 0 2.75rem;
  background: linear-gradient(135deg, #020617, #0f172a, #020617);
  overflow: hidden;
}

.section-global .global-inner {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0; /* spacing via header/map margins only — avoids double gaps */
}

.section-global .global-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50rem;
  height: 50rem;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1), rgba(59, 130, 246, 0.06), transparent 65%);
  animation: globalGlow 15s ease-in-out infinite;
  pointer-events: none;
}

@keyframes globalGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.12); opacity: 1; }
}

.global-title {
  color: #fff;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.global-header {
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.global-title-accent {
  position: relative;
  display: inline-block;
  vertical-align: baseline;
  white-space: nowrap;
}

.global-title .highlight-global {
  position: relative;
  z-index: 1;
  display: inline-block;
  background: linear-gradient(90deg, #22d3ee 0%, #60a5fa 45%, #c084fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: globalTextPulse 2s ease-in-out infinite;
}

/* Thick highlight bar under “Global Presence” (React banner style) */
.global-title-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.35rem;
  width: 100%;
  height: 0.75rem;
  border-radius: 2px;
  background: linear-gradient(90deg, #22d3ee, #60a5fa);
  opacity: 0.45;
  z-index: 0;
  pointer-events: none;
}

.global-title-bar::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background: linear-gradient(90deg, #22d3ee, #60a5fa);
  filter: blur(8px);
  opacity: 0.35;
  z-index: -1;
}

@keyframes globalTextPulse {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 1; }
}

.global-subtitle {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  max-width: min(42rem, calc(100% - 1.5rem));
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  text-wrap: pretty;
}

.map-wrap {
  position: relative;
  width: 100%;
  max-width: 72rem;
  margin: 0 auto 0.625rem;
  line-height: 0;
}

.global-map-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(31.25rem, 56vh, 100%);
  object-fit: contain;
  object-position: center;
  opacity: 0.92;
  border-radius: 0.5rem;
}

/* Overlay matches image bounds (no extra aspect-ratio box) */
.global-map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.map-wrap .global-map {
  display: block;
  width: 100%;
  height: auto;
  max-height: 500px;
}

.map-wrap > img:not(.global-map-img) {
  display: block;
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
}

/* Global section — animate in once when scrolled into view */
.section-global:not(.is-visible) .global-header.reveal {
  opacity: 0;
  transform: translateY(2rem);
}

.section-global:not(.is-visible) .map-wrap.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
}

.section-global:not(.is-visible) .global-cards .reveal {
  opacity: 0;
  transform: translateY(1.5rem);
}

.section-global.is-visible .global-header.reveal.visible,
.section-global.is-visible .map-wrap.reveal-scale.visible,
.section-global.is-visible .global-cards .reveal.visible {
  opacity: 1;
  transform: none;
}

.map-bg {
  opacity: 0.92;
}

.map-bg-glow {
  opacity: 0;
}

.section-global.is-visible .map-bg-glow,
.map-wrap.reveal-scale.visible .map-bg-glow {
  animation: mapGlowPulse 5s ease-in-out 0.4s infinite;
}

@keyframes mapGlowPulse {
  0%, 100% { opacity: 0.08; }
  50% { opacity: 0.28; }
}

.map-routes .route-glow {
  fill: none;
  stroke-linecap: round;
  opacity: 0.25;
}

.map-routes .route-main {
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
}

.map-routes .route-usa.route-glow {
  stroke: #06b6d4;
  stroke-width: 0.7;
}

.map-routes .route-usa.route-main {
  stroke: url(#routeGradUsa);
  stroke-width: 0.65;
}

.map-routes .route-uk.route-glow,
.map-routes .route-me.route-glow {
  stroke: #06b6d4;
  stroke-width: 0.5;
}

.map-routes .route-uk.route-main {
  stroke: url(#routeGradUk);
  stroke-width: 0.5;
}

.map-routes .route-me.route-main {
  stroke: url(#routeGradMe);
  stroke-width: 0.5;
}

.section-global.is-visible .route-usa.route-main,
.map-wrap.reveal-scale.visible .route-usa.route-main,
.map-wrap.visible .route-usa.route-main {
  animation: drawRoute 2s ease forwards 0.5s;
}

.section-global.is-visible .route-uk.route-main,
.map-wrap.reveal-scale.visible .route-uk.route-main,
.map-wrap.visible .route-uk.route-main {
  animation: drawRoute 2s ease forwards 1s;
}

.section-global.is-visible .route-me.route-main,
.map-wrap.reveal-scale.visible .route-me.route-main,
.map-wrap.visible .route-me.route-main {
  animation: drawRoute 2s ease forwards 1.5s;
}

.section-global.is-visible .map-pins .pin-pulse,
.section-global.is-visible .map-pins .pin-glow {
  animation-play-state: running;
}

.section-global:not(.is-visible) .map-pins .pin-pulse,
.section-global:not(.is-visible) .map-pins .pin-glow {
  animation-play-state: paused;
  opacity: 0;
}

.section-global:not(.is-visible) .map-pins .pin-dot {
  opacity: 0;
}

.section-global.is-visible .map-pins .pin-dot {
  opacity: 1;
  transition: opacity 0.45s ease;
}

@keyframes drawRoute {
  to { stroke-dashoffset: 0; }
}

/* Match React GlobalPresence: 1 expanding ring + solid dot + inner glow */
.map-pins .pin-dot {
  fill: #06b6d4;
}

.map-pins .pin-pulse {
  fill: none;
  stroke: #06b6d4;
  stroke-width: 0.3;
  transform-box: fill-box;
  transform-origin: center;
  animation: pinPulseRing 2s ease-in-out infinite;
}

.map-pins .pin-glow {
  fill: none;
  stroke: #06b6d4;
  stroke-width: 0.2;
  transform-box: fill-box;
  transform-origin: center;
  animation: pinGlowRing 2s ease-in-out infinite;
}

.map-pin[data-loc="usa"] .pin-pulse,
.map-pin[data-loc="usa"] .pin-glow { animation-delay: 0s; }
.map-pin[data-loc="uk"] .pin-pulse,
.map-pin[data-loc="uk"] .pin-glow { animation-delay: 0.3s; }
.map-pin[data-loc="me"] .pin-pulse,
.map-pin[data-loc="me"] .pin-glow { animation-delay: 0.6s; }
.map-pin[data-loc="india"] .pin-pulse,
.map-pin[data-loc="india"] .pin-glow { animation-delay: 0.9s; }

@keyframes pinPulseRing {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(2.5); opacity: 0; }
}

@keyframes pinGlowRing {
  0%, 100% { opacity: 0; }
  50% { opacity: 0.6; }
}

.map-labels .map-label {
  fill: #fff;
  font-size: 2.8px;
  font-weight: 700;
  font-family: var(--font-family, 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
  filter: drop-shadow(0 0 2px rgba(6, 182, 212, 0.85));
}

.map-labels .map-label-india {
  font-size: 2.8px;
}

.section-global .global-cards > [class*="col-"] {
  display: flex;
}

.section-global .global-cards {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
  margin-top: 0;
  padding-top: 0;
  width: 100%;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}

.section-global .location-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 0;
  padding: 1.25rem 1rem;
  text-align: center;
  border-radius: 0.75rem;
  background: linear-gradient(to bottom right, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.8));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(6, 182, 212, 0.2);
  box-shadow: none;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.section-global .location-card:hover {
  border-color: rgba(34, 211, 238, 0.4);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 40px rgba(6, 182, 212, 0.2);
}

.section-global .location-flag {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  min-height: 1.375rem;
}

.section-global .location-flag .flag-icon {
  display: block;
  width: 2rem;
  height: 1.375rem;
  min-width: 2rem;
  min-height: 1.375rem;
  border-radius: 0.25rem;
  object-fit: cover;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.section-global .location-name {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 0.5rem;
}

.section-global .location-address {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 14rem;
  text-align: center;
}

/* Global Presence — responsive (React text-5xl / 6xl / 7xl) */
@media (min-width: 576px) {
  .global-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 768px) {
  .global-header {
    margin-bottom: 1.75rem;
  }

  .map-wrap {
    margin-bottom: 0.75rem;
  }

  .global-title {
    font-size: 3.75rem;
    line-height: 1.08;
    margin-bottom: 1.25rem;
  }

  .global-title-bar {
    bottom: 0.5rem;
    height: 0.75rem;
  }

  .global-subtitle {
    font-size: 1.125rem;
    line-height: 1.65;
    max-width: 42rem;
  }
}

@media (min-width: 1024px) {
  .section-global {
    padding: 3rem 0 3rem;
  }

  .global-title {
    font-size: 4.5rem;
    line-height: 1.08;
  }

  .global-map-img {
    max-height: 31.25rem;
  }
}

@media (min-width: 1280px) {
  .global-subtitle {
    max-width: 42rem;
  }
}

@media (max-width: 767.98px) {
  .section-global {
    padding: 2.25rem 0 2.5rem;
  }

  .global-header {
    margin-bottom: 1rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .global-title {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
    margin-bottom: 0.75rem;
  }

  .global-title-accent {
    display: inline-block;
    white-space: nowrap;
  }

  .global-title-bar {
    bottom: 0.3rem;
    height: 0.5rem;
    opacity: 0.42;
  }

  .global-subtitle {
    font-size: 0.9375rem;
    line-height: 1.55;
    max-width: 100%;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .map-wrap {
    margin-bottom: 0.5rem;
    padding: 0 0.5rem;
    max-width: 100%;
  }

  .global-map-img {
    max-height: min(16rem, 52vw);
  }

  .section-global .global-cards {
    --bs-gutter-x: 0.75rem;
    --bs-gutter-y: 0.75rem;
  }

  .section-global .location-card {
    padding: 1.125rem 1rem;
  }

  .section-global .location-name {
    font-size: 1rem;
  }

  .section-global .location-address {
    font-size: 0.8125rem;
  }
}

@media (max-width: 575.98px) {
  .global-title {
    font-size: 1.75rem;
  }

  .global-title .highlight-global {
    font-size: inherit;
  }
}

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

/* ─── Home: responsive buttons & sections ─── */

@media (max-width: 767.98px) {
  .hero-section {
    padding: 1.5rem 0 0;
    min-height: auto;
  }

  .hero-badge {
    font-size: 0.8125rem;
    margin-bottom: 1rem !important;
  }

  .hero-desc {
    font-size: 1rem;
    margin-bottom: 1.25rem !important;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
  }

  .hero-ctas .btn-hero-primary,
  .hero-ctas .btn-hero-secondary {
    width: auto;
    max-width: 100%;
    min-width: 15.5rem;
    align-self: flex-start;
    font-size: 0.9375rem !important;
    padding: 0.75rem 1.25rem !important;
    height: auto;
    min-height: 2.75rem;
  }

  .hero-stats-band {
    margin-top: 1.75rem;
    padding: 1.15rem 0 1.25rem;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 0.15rem 0;
  }

  .hero-stat-item {
    padding: 0.95rem 0.85rem;
  }

  .hero-stat-item:nth-child(2n) .hero-stat-sep {
    display: none;
  }

  .hero-stat-item:nth-child(-n+2) {
    border-bottom: 0;
  }

  .hero-stat-item:nth-child(-n+2)::before {
    content: '';
    position: absolute;
    left: 18%;
    right: 18%;
    bottom: 0;
    height: 1px;
    background: #e2e8f0;
    pointer-events: none;
  }

  .hero-stat-icon {
    width: 2.75rem;
    height: 2.75rem;
  }

  .hero-stat-label {
    font-size: 0.8125rem;
    max-width: 10rem;
  }

  .hero-wave {
    height: 4rem;
  }

  .btn-glass-cta {
    font-size: 0.8125rem;
    padding: 0.5rem 1rem;
  }

  .vision-cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .btn-vision-primary {
    width: 100%;
    justify-content: center;
    font-size: 0.8125rem;
    padding: 0.75rem 1.25rem;
  }

  .section-capabilities {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .glass-card {
    padding: 1.25rem;
  }
}

@media (max-width: 575.98px) {
  .hero-ctas .btn-hero-primary,
  .hero-ctas .btn-hero-secondary {
    font-size: 0.875rem !important;
    min-height: 2.625rem;
  }

  .hero-stat-value {
    font-size: 1.5rem;
  }
}

@media (max-width: 776.98px) {
  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .hero-stat-item {
    padding: 0.85rem 0.7rem;
  }

  .hero-stat-label {
    text-align: center;
    max-width: 10.5rem;
  }
}

@media (max-width: 450px) {
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    row-gap: 0;
  }

  .hero-stat-item {
    padding: 0.8rem 0.5rem;
  }

  .hero-stat-label {
    text-align: center;
    max-width: none;
  }

  .hero-stats-row .col-12 {
    text-align: center;
  }
}

/* ── Endorsements (aligned with Capabilities palette) ── */
.home-endorsements {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  scroll-margin-top: calc(var(--navbar-height, 72px) + 12px);
  background: linear-gradient(160deg, #101f5f 0%, #080d22 40%, #1e073e 100%);
}

.home-endorsements-inner {
  position: relative;
  z-index: 1;
  max-width: var(--layout-max-width, 90rem);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.home-endorsements-title {
  color: #fff;
  text-align: center;
  margin: 0 0 2.5rem;
}

.home-endorsements-title .accent {
  color: #22d3ee;
}

.home-endorse-panel {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: linear-gradient(145deg, rgba(14, 38, 90, 0.72) 0%, rgba(8, 22, 60, 0.65) 100%);
  backdrop-filter: blur(24px);
  box-shadow: 0 20px 50px rgba(2, 6, 23, 0.35);
}

.home-endorse-panel__glow {
  position: absolute;
  top: -40%;
  right: -10%;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.home-endorse-panel__accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #22d3ee 0%, #2563eb 55%, #a78bfa 100%);
}

.home-endorse-panel__body {
  position: relative;
  z-index: 1;
  padding: 1.75rem 1.75rem 1.5rem 1.9rem;
}

.home-endorse-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.home-endorse-panel__logo {
  height: 2rem;
  width: auto;
  max-width: 10rem;
  object-fit: contain;
  filter: brightness(1.08);
}

.home-endorse-panel__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a5f3fc;
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.28);
}

.home-endorse-panel__quote {
  margin: 0 0 1.5rem;
}

.home-endorse-panel__quote p {
  margin: 0;
  color: rgba(241, 245, 249, 0.92);
  font-size: 1.125rem;
  line-height: 1.7;
  font-weight: 450;
}

.home-endorse-panel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.home-endorse-panel__person {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.home-endorse-panel__initials {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ecfeff;
  background: linear-gradient(135deg, #0891b2, #2563eb);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.35);
}

.home-endorse-panel__name {
  margin: 0;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.home-endorse-panel__role {
  margin: 0.15rem 0 0;
  color: rgba(148, 163, 184, 0.95);
  font-size: 0.875rem;
}

.home-endorse-panel__stars {
  display: inline-flex;
  gap: 0.2rem;
}

.home-endorse-panel__stars svg {
  width: 0.9rem;
  height: 0.9rem;
  fill: #22d3ee;
}

@media (max-width: 767.98px) {
  .home-endorsements {
    padding: 3.5rem 0;
  }

  .home-endorse-panel__body {
    padding: 1.35rem 1.25rem 1.25rem 1.4rem;
  }

  .home-endorse-panel__quote p {
    font-size: 1rem;
  }
}
