.podium-section {
  padding: 36px clamp(28px, 5vw, 64px) 72px;
  max-width: 1280px;
  margin: 0 auto;
}

.podium {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(12px, 2vw, 24px);
  min-height: 340px;
  padding-top: 24px;
}

.podium-section.ios-bubble {
  border-radius: var(--radius-xl);
}

.podium-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s var(--ease-spring);
  flex: 0 1 auto;
  position: relative;
}

.podium-card:hover {
  transform: translateY(-10px);
}

.podium-card.gold {
  z-index: 3;
  max-width: 220px;
}

.podium-card.silver {
  z-index: 2;
  max-width: 170px;
  transform: translateY(28px) scale(0.9);
}

.podium-card.bronze {
  z-index: 2;
  max-width: 170px;
  transform: translateY(28px) scale(0.9);
}

.podium-card.default {
  z-index: 1;
  max-width: 140px;
  transform: translateY(36px) scale(0.82);
}

.podium-card.silver:hover {
  transform: translateY(18px) scale(0.92);
}

.podium-card.bronze:hover {
  transform: translateY(18px) scale(0.92);
}

.podium-card.default:hover {
  transform: translateY(26px) scale(0.86);
}

.podium-card.gold:hover {
  transform: translateY(-12px) scale(1.02);
}

.podium-ring {
  border-radius: 50%;
  padding: 4px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.podium-card.gold .podium-ring {
  width: 140px;
  height: 140px;
  background: linear-gradient(145deg, #fff4a8, #ffd700, #b8860b, #ffe566);
  box-shadow: 0 12px 48px rgba(255, 193, 7, 0.35);
}

.podium-card.silver .podium-ring {
  width: 108px;
  height: 108px;
  background: linear-gradient(145deg, #ffffff, #c0c0c0, #6e6e6e);
  box-shadow: 0 8px 32px rgba(192, 192, 192, 0.2);
}

.podium-card.bronze .podium-ring {
  width: 108px;
  height: 108px;
  background: linear-gradient(145deg, #f0c9a0, #cd7f32, #6b3a12);
  box-shadow: 0 8px 32px rgba(205, 127, 50, 0.25);
}

.podium-card.default .podium-ring {
  width: 88px;
  height: 88px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border);
  box-shadow: none;
}

.podium-ring img,
.podium-ring .podium-ph {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-card);
  border: 2px solid rgba(0, 0, 0, 0.35);
}

.podium-ring .podium-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--text-muted);
}

.podium-card.silver .podium-ring .podium-ph,
.podium-card.bronze .podium-ring .podium-ph,
.podium-card.default .podium-ring .podium-ph {
  font-size: 1.35rem;
}

.podium-card.default .podium-name {
  font-size: 0.95rem;
}

.podium-card.default .podium-subs {
  font-size: 10px;
}

.podium-name {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.podium-card.gold .podium-name {
  font-size: 1.35rem;
}

.podium-subs {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--accent-bright);
  text-transform: uppercase;
}

.podium-subs.loading {
  color: var(--text-faint);
  animation: pulse-dot 1.2s ease-in-out infinite;
}

.podium-pedestal {
  width: calc(100% + 8px);
  margin: 14px -4px 0;
  border-radius: 20px 20px 6px 6px;
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
}

.podium-card.gold .podium-pedestal {
  height: 72px;
  background: linear-gradient(to top, rgba(255, 193, 7, 0.18), rgba(255, 193, 7, 0.04));
}

.podium-card.silver .podium-pedestal {
  height: 48px;
  background: linear-gradient(to top, rgba(192, 192, 192, 0.14), transparent);
}

.podium-card.bronze .podium-pedestal {
  height: 48px;
  background: linear-gradient(to top, rgba(205, 127, 50, 0.14), transparent);
}

.podium-card.default .podium-pedestal {
  height: 32px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.06), transparent);
}

@media (max-width: 900px) {
  .clients-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .podium-section {
    padding: 24px 10px 40px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
  }

  .podium {
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-end;
    gap: clamp(3px, 1.1vw, 8px);
    min-height: 220px;
    padding: 12px 2px 6px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .podium-card {
    flex: 1 1 0;
    min-width: 0;
    max-width: none !important;
    width: auto;
  }

  .podium-card.gold {
    flex: 1.2 1 0;
    transform: translateY(0);
  }

  .podium-card.silver,
  .podium-card.bronze {
    transform: translateY(16px);
  }

  .podium-card.default {
    transform: translateY(22px);
  }

  .podium-card.silver:hover {
    transform: translateY(12px);
  }

  .podium-card.bronze:hover {
    transform: translateY(12px);
  }

  .podium-card.default:hover {
    transform: translateY(18px);
  }

  .podium-card.gold:hover {
    transform: translateY(-4px);
  }

  .podium-card.gold .podium-ring {
    width: min(68px, 17.5vw);
    height: min(68px, 17.5vw);
  }

  .podium-card.silver .podium-ring,
  .podium-card.bronze .podium-ring {
    width: min(54px, 14vw);
    height: min(54px, 14vw);
  }

  .podium-card.default .podium-ring {
    width: min(46px, 12vw);
    height: min(46px, 12vw);
  }

  .podium-card.gold .podium-pedestal {
    height: 38px;
    display: block;
  }

  .podium-card.silver .podium-pedestal,
  .podium-card.bronze .podium-pedestal {
    height: 26px;
  }

  .podium-card.default .podium-pedestal {
    height: 18px;
  }

  .podium-ring {
    margin-bottom: 6px;
  }

  .podium-name {
    font-size: clamp(0.62rem, 2.6vw, 0.8rem);
    margin-bottom: 3px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .podium-card.gold .podium-name {
    font-size: clamp(0.7rem, 2.9vw, 0.88rem);
  }

  .podium-subs {
    font-size: clamp(6px, 1.8vw, 8px);
    letter-spacing: 0.03em;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (max-width: 380px) {
  .podium {
    gap: 2px;
    min-height: 200px;
  }

  .podium-card.gold .podium-ring {
    width: min(58px, 16vw);
    height: min(58px, 16vw);
  }

  .podium-card.silver .podium-ring,
  .podium-card.bronze .podium-ring {
    width: min(48px, 13vw);
    height: min(48px, 13vw);
  }

  .podium-card.default .podium-ring {
    width: min(40px, 11vw);
    height: min(40px, 11vw);
  }

  .podium-card.silver,
  .podium-card.bronze {
    transform: translateY(14px);
  }

  .podium-card.default {
    transform: translateY(18px);
  }
}
