/* ═══════════════════════════════════════
   SHEO MEDIA — SERVICES SECTION CSS
   File: css/services.css
═══════════════════════════════════════ */

/* ── SECTION ── */
#sheo-services {
  width: 100%;
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
  background-color: #1a1a1a;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.055'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

#sheo-services::before {
  content: '';
  position: absolute;
  top: 0; left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(219,255,73,0.15) 30%,
    rgba(219,255,73,0.15) 70%,
    transparent
  );
}





.sheo-card{
  transition:
    transform .35s ease,
    border-color .35s ease,
    background .35s ease;
}

.sheo-card:hover{
  transform: translateY(-8px);
}

.sheo-card{
  position: relative;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  background: #2b2b2b;
  border: 1px solid rgba(255,255,255,0.02);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.02);
  color: var(--text);
  overflow: hidden;
}

.sheo-card::before{
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.025),
      transparent 30%
    );

  pointer-events: none;
}

.sheo-card--xl{
  width: clamp(220px, 22vw, 340px);
  min-height: clamp(220px, 24vw, 300px);
  padding: 20px;
}

.sheo-card--sm{
  width: clamp(160px, 13vw, 200px);
  min-height: clamp(200px, 20vw, 260px);
  padding: 18px;
}

.sheo-card--right{
  width: clamp(240px, 24vw, 360px);
}

.sheo-card__eyebrow{
  margin:0;
  font-size: clamp(13px, 1.1vw, 16px);
  line-height:1.2;
  color:#d7d7d7;
  letter-spacing:-0.02em;
}

.sheo-card__eyebrow--accent{
  color: var(--lime);
  font-weight: 500;
}

.sheo-card__quote{
  margin: 18px 0 0;
  width: 100%;
  font-size: clamp(13px, 1.2vw, 20px);
  line-height: 1.18;
  letter-spacing: -0.03em;
  color:#d6d6d6;
  text-wrap: balance;
}

.sheo-card__quote--alt{
  width: 100%;
  margin-top: 18px;
  font-size: clamp(13px, 1.1vw, 18px);
  line-height: 1.18;
}

.sheo-card__author{
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
}

.sheo-card__author--compact{
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  margin-top: 18px;
}

.sheo-card__author--bottom{
  bottom: auto;
}

.sheo-card__author img,
.sheo-card__avatarOnly img{
  display: block;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.05);
  background:#111;
}

.sheo-card--sm .sheo-card__avatarOnly{
  margin-top: 22px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
}

.sheo-card--sm .sheo-card__avatarOnly img{
  width: 58px;
  height: 58px;
}

.sheo-card__author h4{
  margin:0;
  color: var(--lime);
  font-size: 14px;
  line-height:1.1;
  font-weight: 600;
  letter-spacing:-0.02em;
}

.sheo-card__author span{
  display:block;
  margin-top:4px;
  color:#bdbdbd;
  font-size: 12px;
  line-height:1.1;
}

@keyframes sheoMarquee{
  from{transform:translate3d(0,0,0)}
  to{transform:translate3d(calc(-50% - 11px),0,0)}
}
/* Responsive */
@media (max-width: 1100px){
  .sheo-testimonials__rail{
    gap: 18px;
  }
  .sheo-card--xl{
    width: clamp(300px, 70vw, 520px);
  }
  .sheo-card--right{
    width: clamp(280px, 62vw, 460px);
  }
}

@media (max-width: 768px){
  .sheo-testimonials{
    padding: 72px 0 100px;
  }
  .sheo-testimonials__map{
    inset: 120px 0 0 0;
    opacity:.15;
  }
  .sheo-testimonials__decor{
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }
  .sheo-testimonials__nav{
    right: 18px;
    bottom: 12px;
  }
  .sheo-card--xl,
  .sheo-card--right,
  .sheo-card--sm{
    width: min(82vw, 420px);
  }
  .sheo-card__quote{
    width: 100%;
        font-size: 18px;
  }
  .sheo-card__author h4{
    font-size: 16px;
  }
  .sheo-card__author span{
    font-size: 13px;
  }
}

@media (max-width: 520px){
  .sheo-testimonials__label{
    font-size: 12px;
  }
  .sheo-card--xl,
  .sheo-card--right,
  .sheo-card--sm{
    width: 74vw;
    min-height: 240px;
  }
  .sheo-card__author img,
  .sheo-card__avatarOnly img{
    width: 64px;
    height: 64px;
  }
}
