.stat-tech__mobile-visual { 
  display: none; 
  margin: 0 0 20px; 
  text-align: center;
}
.stat-tech__container {
  max-width: 1120px;
  margin: 0 auto;
  
}

.stat-tech__badge {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  color: #7F4FD3;
  border: 1px solid #FFB92B;
}

.stat-tech__title {
  font-size: clamp(28px, 4.2vw, 40px);
  font-weight: 800;
  color: #5a49d6;
  margin: 0 0 10px;
}

.stat-tech__highlight {
  background: linear-gradient(90deg, var(--accent-from), var(--accent-to));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-tech__subtitle {
  color: #414141;
  font-size: 16px;
  margin: 0 auto 24px;
  max-width: 720px;
}

.stat-tech__logo img {
  height: 56px;
  width: auto;
  margin: 16px auto 24px;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,.05));
}

.stat-tech__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat-card {
  background: transparent;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 18px;
  text-align: left;
  display:flex;
  align-content: center;
  align-items: center;
  gap: 10px;
}

.stat-card__icon {
  height: 40px; width: 40px;
  border : 1px solid #7F4FD31A; 
  color: #260D48;
  border-radius: 12px;
  background: #FFB92B;
  display: grid; place-items: center;
}
.stat-card__icon img,
.stat-card__icon svg { width: 20px; height: 20px; }

.stat-card__title {
  font-weight: 700;
  font-size: 20px;
  color: #FFF;
}

.stat-card__desc {
  font-size: 14px;
  color: #B3B3B3;
}

.stat-tech__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  text-decoration: none;
}
.stat-tech__cta--pill {
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-from), var(--accent-to));
  color: #1c1238;
  box-shadow: var(--shadow);
}
.stat-tech__cta--button {
  padding: 10px 16px;
  border-radius: 10px;
  background: #1c1238;
  color: #fff;
}
.stat-tech__cta--text { color: #1c1238; }

.stat-tech__cta-icon { width: 18px; height: 18px; }

.stat-tech__bg {
  position: absolute;
  inset: -20% -30% auto -30%;
  height: 420px;
  background: radial-gradient(65% 65% at 50% 20%, rgba(109,90,230,.10), transparent 65%),
              radial-gradient(65% 65% at 80% 0%, rgba(255,181,0,.12), transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.stat-tech > * { position: relative; z-index: 1; }

/* Responsive */
@media (max-width: 1024px) {
  .stat-tech__cards { grid-template-columns: repeat(2, 1fr); gap:0; }
}
@media (max-width: 600px) {
  .stat-tech { padding: 48px 18px; background: none; }
  .stat-tech__cards {  margin-top:0;}
  .stat-card { padding: 18px; gap:5px;}
}
.stat-button {
    BACKGROUND-COLOR: #FFB92B;
    border: unset;
    border-radius: 28px;
    color: #260D48;
}
.stat-tech__mobile-visual {
    display: block;
  }
}



