#section-3.section-3 {
  position: relative;
  display: block;
  width: 100%;
  min-height: auto;
  padding: clamp(80px, 8vw, 160px) clamp(20px, 5vw, 80px);
  overflow: hidden;
  background: linear-gradient(135deg, #08111F 0%, #14233F 50%, #08111F 100%);
  color: #FFFFFF;
  font-size: initial;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  box-sizing: border-box;
}

#section-3::before,
#section-3::after {
  content: '';
  position: absolute;
  inset: -20%;
  pointer-events: none;
  filter: blur(80px);
  opacity: .65;
  z-index: 0;
}

#section-3::before {
  background: radial-gradient(circle at 30% 40%, rgba(47,102,255,.55) 0%, transparent 50%);
  animation: section-3-bg-1 22s ease-in-out infinite alternate;
}

#section-3::after {
  background: radial-gradient(circle at 70% 60%, rgba(91,208,251,.35) 0%, transparent 50%);
  animation: section-3-bg-2 28s ease-in-out infinite alternate;
}

@keyframes section-3-bg-1 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(6%, -4%, 0) scale(1.06);
  }

  100% {
    transform: translate3d(-4%, 5%, 0) scale(.96);
  }
}

@keyframes section-3-bg-2 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-5%, 5%, 0) scale(1.08);
  }

  100% {
    transform: translate3d(4%, -3%, 0) scale(.95);
  }
}

.section-3 > * {
  position: relative;
  z-index: 1;
}

.section-3 h2,
.section-3 h3,
.section-3 p {
  margin: 0;
}

.section-3__inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.section-3__head {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: clamp(48px, 5vw, 96px);
}

.section-3__title {
  color: #FFFFFF;
  font-size: clamp(32px, 3.8vw, 64px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  margin: 0 0 clamp(12px, 1vw, 20px);
}

.section-3 .section-3__subtitle,
.section-3 .section-3__lead {
  color: rgba(255,255,255,.75);
  font-size: clamp(15px, 1.1vw, 22px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  margin: 0;
}

.section-3__top-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: clamp(20px, 1.6vw, 32px);
  max-width: min(1280px, 88vw);
  margin: 0 auto clamp(80px, 8vw, 140px);
}

.section-3__top-card {
  aspect-ratio: 5 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 1.6vw, 32px);
  padding: clamp(24px, 2vw, 40px);
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: clamp(16px, 1.2vw, 24px);
  box-shadow:
    0 1px 2px rgba(0,0,0,.2),
    0 16px 40px rgba(0,0,0,.18);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.section-3__top-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 1px 2px rgba(0,0,0,.2),
    0 28px 56px rgba(47,102,255,.25);
}

.section-3__top-card-logo {
  flex-shrink: 0;
  width: auto;
  max-height: clamp(48px, 4vw, 80px);
  display: block;
  object-fit: contain;
}

.section-3__top-card-name {
  color: var(--text);
  font-size: clamp(20px, 1.8vw, 36px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  white-space: nowrap;
}

.section-3__client-wall-head {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: clamp(40px, 4vw, 72px);
}

.section-3__subhead {
  color: #FFFFFF;
  font-size: clamp(20px, 1.8vw, 32px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: .02em;
  margin: 0;
}

.section-3__client-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: clamp(12px, 1vw, 20px);
  max-width: min(1280px, 92vw);
  margin: 0 auto;
}

.section-3__client-card {
  width: 100%;
  height: clamp(60px, 5vw, 88px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: clamp(8px, .8vw, 14px);
  padding: clamp(12px, 1vw, 20px);
  transition: background-color .35s var(--ease), border-color .35s var(--ease), transform .3s var(--ease);
}

.section-3__client-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  transform: scale(1.05);
}

.section-3__client-card img {
  max-width: 80%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 1023px) {
  #section-3.section-3 {
    padding: clamp(60px, 14vw, 96px) clamp(16px, 5vw, 28px);
  }

  .section-3__title {
    font-size: clamp(26px, 7vw, 36px);
  }

  .section-3 .section-3__subtitle,
  .section-3 .section-3__lead {
    font-size: clamp(13px, 3.6vw, 17px);
  }

  .section-3__top-cards {
    max-width: calc(100% - clamp(24px, 6vw, 40px));
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: clamp(12px, 3vw, 20px);
    margin-bottom: clamp(60px, 12vw, 96px);
  }

  .section-3__top-card {
    aspect-ratio: 5 / 2;
    padding: clamp(16px, 4vw, 28px);
    gap: clamp(12px, 3vw, 24px);
  }

  .section-3__top-card-logo {
    max-height: clamp(36px, 9vw, 56px);
  }

  .section-3__top-card-name {
    font-size: clamp(18px, 5vw, 26px);
  }

  .section-3__subhead {
    font-size: clamp(16px, 4.4vw, 22px);
  }

  .section-3__client-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(8px, 2vw, 14px);
  }

  .section-3__client-card {
    height: clamp(48px, 12vw, 70px);
  }
}

@media (max-width: 639px) {
  .section-3__top-cards {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
  }

  .section-3__client-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  #section-3::before,
  #section-3::after {
    animation: none;
  }

  .section-3__top-card,
  .section-3__client-card {
    transition: none !important;
  }
}
