/* ===== SECTION ===== */
.lennant-services{
  position:relative;
  padding:70px 0;
  background:#00011F;
  overflow:hidden;
}

.lennant-services::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at left top,rgba(0,180,255,.12)),
    radial-gradient(circle at right top,rgba(180,0,255,.12));
}

/* ===== HEADER ===== */
.services-header{
  max-width:900px;
  margin:0 auto 60px;
  text-align:center;
  position:relative;
  z-index:2;
}

.services-header h2{
  font-size:2rem;
  font-weight:600;
  margin-bottom:10px;
  background:linear-gradient(90deg,#fff,#00ccff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.services-header p{
  max-width:760px;
  margin:auto;
  font-size:1rem;
  line-height:1.6;
  color:rgba(255,255,255,.75);
}

/* ===== CAROUSEL ===== */
.services-wrapper{
  max-width:1200px;
  height:420px;
  margin:auto;
  perspective:1200px;
  pointer-events:none;
  transform: translateY(-60px);
}

.carousel{
  position:relative;
  width:100%;
  height:100%;
  transform-style:preserve-3d;
  pointer-events:auto;
  touch-action:pan-y;
  cursor:grab;
}

.carousel:active{
  cursor:grabbing;
}

/* ===== CARD ===== */
.card{
  position:absolute;
  width:280px;
  height:260px;
  left:50%;
  top:50%;
  margin:-130px 0 0 -140px;
  background:linear-gradient(160deg,#0b1530,#0e0e1f);
  border-radius:18px;
  border:1px solid rgba(0,200,255,.3);
  padding:20px;
  display:flex;
  flex-direction:column;
  gap:10px;
  box-shadow:0 0 18px rgba(0,200,255,.25);
  user-select:none;
  will-change:transform;
}

/* ===== CONTENT ===== */
.icon{
  font-size:1.4rem;
  color:#00ccff;
  text-shadow:0 0 6px rgba(0,204,255,.7);
}

.card h3{
  font-size:1rem;
  margin:0;
}

.card p{
  font-size:.78rem;
  opacity:.85;
  line-height:1.4;
}

.points{
  list-style:none;
  padding:0;
  margin:4px 0 0;
}

.points li{
  font-size:.7rem;
  opacity:.75;
  display:flex;
  gap:8px;
}

.points li::before{
  content:"▸";
  color:#00ccff;
}

/* ===== MOBILE ===== */
@media(max-width:480px){
  .lennant-services{padding:50px 0;}
  
  .services-header{
  max-width:900px;
  margin:0 auto 60px;
  text-align:center;
  position:relative;
  z-index:2;
}

.services-header h2{
  font-size:22px;
}

.services-header p{
  max-width:330px;
  font-size:14px;
}

  .services-wrapper{
    height:380px;
    perspective:2200px;
  }

  .card{
    width:250px;
    height:260px;
    margin:-120px 0 0 -125px;
  }

  .icon{font-size:0.9rem;}
}