#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;
  top: -20%;
  right: -20%;
  bottom: -20%;
  left: -20%;
  pointer-events: none;
  filter: blur(80px);
  opacity: .65;
  z-index: 0;
}

#section-3::before {
  background: radial-gradient(circle at 30% 40%, rgba(56,189,248,.55) 0%, transparent 50%);
  animation: section-3-bg-1 22s ease-in-out infinite alternate;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

#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;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@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: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 1.6vw, 32px);
  flex-wrap: nowrap;
  max-width: 1280px;
  min-height: clamp(220px, 22vw, 320px);
  padding: clamp(40px, 5vw, 80px) clamp(20px, 3vw, 40px);
  margin: 0 auto clamp(80px, 8vw, 140px);
}

.section-3__top-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, .8vw, 14px);
  width: clamp(96px, 10vw, 160px);
  aspect-ratio: 1;
  padding: clamp(14px, 1.4vw, 22px);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: clamp(14px, 1.2vw, 22px);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition:
    transform .55s var(--ease),
    background .55s var(--ease),
    border-color .55s var(--ease),
    box-shadow .55s var(--ease);
  flex-shrink: 0;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.section-3__top-card:nth-child(1) {
  transform: translate3d(0, 20px, 0);
}

.section-3__top-card:nth-child(2) {
  transform: translate3d(0, -24px, 0);
}

.section-3__top-card:nth-child(3) {
  transform: translate3d(0, 8px, 0);
}

.section-3__top-card:nth-child(4) {
  transform: translate3d(0, -32px, 0) scale(1.08);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
}

.section-3__top-card:nth-child(5) {
  transform: translate3d(0, 8px, 0);
}

.section-3__top-card:nth-child(6) {
  transform: translate3d(0, -24px, 0);
}

.section-3__top-card:nth-child(7) {
  transform: translate3d(0, 20px, 0);
}

.section-3__top-cards.is-in .section-3__top-card:nth-child(1) {
  transform: translate3d(0, 20px, 0);
}

.section-3__top-cards.is-in .section-3__top-card:nth-child(2) {
  transform: translate3d(0, -24px, 0);
}

.section-3__top-cards.is-in .section-3__top-card:nth-child(3) {
  transform: translate3d(0, 8px, 0);
}

.section-3__top-cards.is-in .section-3__top-card:nth-child(4) {
  transform: translate3d(0, -32px, 0) scale(1.08);
}

.section-3__top-cards.is-in .section-3__top-card:nth-child(5) {
  transform: translate3d(0, 8px, 0);
}

.section-3__top-cards.is-in .section-3__top-card:nth-child(6) {
  transform: translate3d(0, -24px, 0);
}

.section-3__top-cards.is-in .section-3__top-card:nth-child(7) {
  transform: translate3d(0, 20px, 0);
}

@media (hover: hover) {
  .section-3__top-card:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(56,189,248,.35);
    box-shadow: 0 12px 32px rgba(56,189,248,.15);
  }

  .section-3__top-cards.is-in .section-3__top-card:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(56,189,248,.35);
    box-shadow: 0 12px 32px rgba(56,189,248,.15);
  }

  .section-3__top-card:nth-child(1):hover {
    transform: translate3d(0, 14px, 0);
  }

  .section-3__top-cards.is-in .section-3__top-card:nth-child(1):hover {
    transform: translate3d(0, 14px, 0);
  }

  .section-3__top-card:nth-child(2):hover {
    transform: translate3d(0, -30px, 0);
  }

  .section-3__top-cards.is-in .section-3__top-card:nth-child(2):hover {
    transform: translate3d(0, -30px, 0);
  }

  .section-3__top-card:nth-child(3):hover {
    transform: translate3d(0, 2px, 0);
  }

  .section-3__top-cards.is-in .section-3__top-card:nth-child(3):hover {
    transform: translate3d(0, 2px, 0);
  }

  .section-3__top-card:nth-child(4):hover {
    transform: translate3d(0, -38px, 0) scale(1.08);
  }

  .section-3__top-cards.is-in .section-3__top-card:nth-child(4):hover {
    transform: translate3d(0, -38px, 0) scale(1.08);
  }

  .section-3__top-card:nth-child(5):hover {
    transform: translate3d(0, 2px, 0);
  }

  .section-3__top-cards.is-in .section-3__top-card:nth-child(5):hover {
    transform: translate3d(0, 2px, 0);
  }

  .section-3__top-card:nth-child(6):hover {
    transform: translate3d(0, -30px, 0);
  }

  .section-3__top-cards.is-in .section-3__top-card:nth-child(6):hover {
    transform: translate3d(0, -30px, 0);
  }

  .section-3__top-card:nth-child(7):hover {
    transform: translate3d(0, 14px, 0);
  }

  .section-3__top-cards.is-in .section-3__top-card:nth-child(7):hover {
    transform: translate3d(0, 14px, 0);
  }
}

@supports not ((backdrop-filter: blur(12px)) or (-webkit-backdrop-filter: blur(12px))) {
  .section-3__top-card {
    background: rgba(255,255,255,.12);
  }
}

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

.section-3__top-card-name {
  color: rgba(255,255,255,.85);
  font-size: clamp(12px, .9vw, 16px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
  white-space: nowrap;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.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(4, 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);
}

@media (hover: hover) {
  .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: 100%;
    min-height: clamp(180px, 26vw, 260px);
    padding: clamp(32px, 6vw, 56px) clamp(8px, 2vw, 20px);
    gap: clamp(8px, 1.4vw, 16px);
    margin-bottom: clamp(60px, 12vw, 96px);
  }

  .section-3__top-card {
    width: clamp(72px, 10vw, 120px);
    padding: clamp(12px, 2vw, 18px);
  }

  .section-3__top-card-logo {
    width: clamp(36px, 5vw, 54px);
    height: clamp(36px, 5vw, 54px);
  }

  .section-3__top-card-name {
    font-size: clamp(11px, 1.5vw, 14px);
  }

  .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: 767px) {
  .section-3__top-cards {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    min-height: auto;
    padding: 32px 16px;
  }

  .section-3__top-card {
    width: calc(33.333% - 8px);
    aspect-ratio: 1;
  }

  .section-3__top-card:nth-child(n) {
    transform: translate3d(0, 0, 0);
  }

  .section-3__top-cards.is-in .section-3__top-card:nth-child(n) {
    transform: translate3d(0, 0, 0);
  }

  .section-3__top-card:active {
    transform: translate3d(0, 0, 0) scale(1.04);
  }

  .section-3__top-cards.is-in .section-3__top-card:active {
    transform: translate3d(0, 0, 0) scale(1.04);
  }

  .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;
  }
}
