/* ── About / Trusted section ── */
#about {
  background: var(--color-secondary);
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.about-trusted {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.about-trusted__top {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 1rem;
}

.about-trusted__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
}

.about-trusted__social-nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  overflow: hidden;
}

.about-trusted__social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  border: 2px solid var(--color-accent);
  font-family: var(--font-secondary);
  font-weight: 900;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--color-accent);
  transition: background 0.2s, color 0.2s;
}

.about-trusted__social-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.about-trusted__social-btn:hover {
  background: currentColor;
}

.about-trusted__social-btn:hover span,
.about-trusted__social-btn:hover svg {
  color: var(--color-secondary);
}

@media screen and (min-width: 768px) {
  .about-trusted__top {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 2rem;
  }

  .about-trusted__header {
    align-items: flex-start;
  }

  .about-trusted__social-nav {
    justify-content: start;
    flex-direction: column;
    flex-shrink: 0;
  }

  .about-trusted__social-btn {
    height: fit-content;
  }
}

@media screen and (min-width: 968px) {
  .about-trusted__social-nav {
    flex-direction: row;
    justify-content: start;
    flex-shrink: 0;
  }
}

@media screen and (min-width: 1024px) {
  .about-trusted__top {
    padding: 0 6.25rem;
  }
}

.about-trusted__heading {
  font-family: var(--font-primary);
  text-transform: uppercase;
  color: var(--color-accent);
  text-align: center;
  line-height: 0.95;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 335px;
  overflow: hidden;
}

.about-trusted__heading h2 {
  font-size: 2.75rem;
  font-weight: 900;
  padding-bottom: 1rem;
}

.about-trusted__subheading {
  color: var(--color-accent);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  overflow: hidden;
}

.about-trusted__subheading h3 {
  font-weight: 800;
  font-style: italic;
}

.about-trusted__subheading p {
  font-weight: 700;
  text-align: center;
  color: rgba(0, 0, 0, 0.8);
  max-width: 360px;
}

.about-trusted__slider {
  width: 100%;
  overflow: hidden;
}

.about-trusted__track {
  display: flex;
  gap: 12px;
  padding: 0.75rem 1rem 1rem;
  overflow-x: auto;
  scroll-padding-left: 1.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-y;
}

.about-trusted__track::-webkit-scrollbar { display: none; }

.trusted-card {
  position: relative;
  flex-shrink: 0;
  width: clamp(230px, 74vw, 340px);
  aspect-ratio: 9 / 13;
  border-radius: 18px;
  overflow: hidden;
  background: #1e1e1e;
  scroll-snap-align: start;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
}

.trusted-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trusted-card__header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
  z-index: 1;
}

.trusted-card__platform {
  flex-shrink: 0;
  margin-left: auto;
  width: 22px;
  height: 22px;
  color: #fff;
  opacity: 0.9;
}

.trusted-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #000000;
  border: 2px solid rgba(255, 255, 255, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
}

.trusted-card__avatar img {
  width: 100%;
  height: 50%;
  object-fit: cover;
}

.trusted-card__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trusted-card__handle {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  line-height: 1;
}

.trusted-card__check {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.trusted-card__followers {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1;
}

.about-trusted__progress-wrap {
  position: relative;
  width: 120px;
  height: 4px;
  background: rgba(0, 0, 0, 0.12);
  border-radius: 2px;
  margin: 0 auto;
  overflow: hidden;
}

.about-trusted__progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 25%;
  background: #111;
  border-radius: 2px;
  transition: left 0.1s ease, width 0.1s ease;
}

@media screen and (min-width: 768px) {
  #about { padding: 6rem 0 5rem; }

  .about-trusted__header {
    align-items: start;
  }

  .about-trusted__heading {
    max-width: unset;
  }

  .about-trusted__heading h2 {
    font-size: 4rem;
    text-align: start;
  }

  .about-trusted__subheading {
    align-items: start;
  }

  .about-trusted__subheading h3 {
    font-size: 2rem;
  }

  .about-trusted__subheading p {
    text-align: start;
    font-size: 20px;
    max-width: 450px;
  }

  .about-trusted { gap: 3rem; }

  .about-trusted__track {
    gap: 16px;
    padding: 0.75rem 2rem 1rem;
    scroll-padding-left: 2.5rem;
  }
}

@media screen and (min-width: 1024px) {
  #about { padding: 6.25rem 0 6rem; }

  .about-trusted__track {
    padding: 0.75rem 6.25rem 1rem;
    scroll-padding-left: 6.25rem;
  }

  .trusted-card {
    width: clamp(280px, 22vw, 340px);
  }
}
