  body {
  font-family: 'Inter', sans-serif;
  background: #f6f9fc;
}

.enterprise-section {
  padding: 100px 0;
}

.enterprise-badge {
  background: rgba(99,91,255,.1);
  color: #635bff;
  font-weight: 600;
  font-size: 13px;
}

.enterprise-title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  color: #0a2540;
  margin-bottom: 20px;
}

.enterprise-text {
  font-size: 18px;
  color: #425466;
  max-width: 480px;
}

.enterprise-btn {
  margin-top: 20px;
  background: #635bff;
  color: #fff;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 600;
}

.enterprise-btn:hover {
  background: #4b44e0;
  color: #fff;
}

.stats {
  display: flex;
  gap: 40px;
}

.stat h4 {
  font-size: 26px;
  font-weight: 700;
  color: #0a2540;
}

.stat span {
  font-size: 14px;
  color: #6b7c93;
}

/* RIGHT CARD */
.brand-card {
  background: linear-gradient(145deg,#ffffff,#eef2ff);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 30px 80px rgba(50,50,93,.1);
  position: relative;
  overflow: hidden;
}

.brand-card-inner {
  transition: all .6s ease;
}

.brand-logo {
  height: 32px;
  margin-bottom: 30px;
}

.brand-quote {
  font-size: 20px;
  color: #0a2540;
  font-weight: 500;
  margin-bottom: 25px;
}

.brand-name {
  font-size: 14px;
  color: #635bff;
  font-weight: 600;
}

/* LOGOS */
.logo-row {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: .7;
}

.logo-row img {
  height: 28px;
  filter: grayscale(100%);
}

/* TIMER BAR */
.slider-timer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(99,91,255,.15);
  overflow: hidden;
}

.slider-progress {
  height: 100%;
  width: 0%;
  background: #635bff;
  transition: width linear;
}

/* LOGO SLIDER CONTROLS */
.slider-controls {
  margin-top: 70px;
  justify-content: center;
  gap: 60px;
}

.slider-logo {
  height: 28px;
  opacity: .4;
  cursor: pointer;
  transition: all .3s ease;
}

.slider-logo.active {
  opacity: 1;
  filter: none;
  transform: scale(1.05);
}

.slider-logo:hover {
  opacity: .8;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .enterprise-title {
    font-size: 36px;
  }

  .stats {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .enterprise-section {
    padding: 70px 0;
  }

  .logo-row {
    gap: 35px;
  }

  .slider-logo {
    height: 24px;
  }

  .brand-card {
    margin-top: 40px;
  }
}

@media (max-width: 576px) {
  .enterprise-title {
    font-size: 30px;
  }

  .enterprise-text {
    font-size: 16px;
  }

  .stats {
    flex-direction: column;
    gap: 15px;
  }
}

