/* =====================================================
   SERVICES v2 (List style) - sadece .svc2 scope
   ===================================================== */

.svc2{
  padding: 72px 0;
}

.svc2-head{
  max-width: 820px;
  margin-bottom: 18px;
}

.svc2-title{
  margin: 12px 0 10px;
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1.15;
}

.svc2-sub{
  margin: 0;
  opacity: 0.9;
  line-height: 1.6;
}

.svc2-list{
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

/* Row */
.svc2-row{
  text-decoration: none;
  color: inherit;

  display: grid;
  grid-template-columns: 56px 1fr 28px;
  align-items: center;
  gap: 14px;

  padding: 16px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(10, 14, 25, 0.40);
  backdrop-filter: blur(10px);

  position: relative;
  overflow: hidden;

  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

/* sol tarafta gradient çizgi */
.svc2-row::before{
  content:"";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, rgba(72,170,255,0.0), rgba(72,170,255,0.9), rgba(60,255,180,0.9), rgba(60,255,180,0.0));
  opacity: 0.55;
}

/* hover parıltısı */
.svc2-row::after{
  content:"";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(420px 220px at 25% 30%, rgba(72,170,255,0.18), transparent 60%),
    radial-gradient(420px 220px at 85% 70%, rgba(60,255,180,0.14), transparent 60%);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

.svc2-row:hover{
  transform: translateY(-4px);
  border-color: rgba(72,170,255,0.28);
  background: rgba(10, 14, 25, 0.58);
}
.svc2-row:hover::after{
  opacity: 1;
}

/* Icon box */
.svc2-ico{
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  display: grid;
  place-items: center;
}

.svc2-ico svg{
  width: 22px;
  height: 22px;
  stroke-width: 1.7;
  color: #9fdcff;
  filter:
    drop-shadow(0 0 8px rgba(72,170,255,0.35))
    drop-shadow(0 0 16px rgba(60,255,180,0.18));
  transition: transform .25s ease, color .25s ease;
}

.svc2-row:hover .svc2-ico svg{
  transform: scale(1.08);
  color: #ffffff;
}

/* Text */
.svc2-text h3{
  margin: 0 0 6px;
  font-size: 16px;
}

.svc2-text p{
  margin: 0;
  opacity: 0.9;
  line-height: 1.55;
}

/* Arrow */
.svc2-arrow{
  justify-self: end;
  font-size: 18px;
  opacity: 0.8;
  transition: transform .25s ease, opacity .25s ease;
}

.svc2-row:hover .svc2-arrow{
  transform: translateX(4px);
  opacity: 1;
}

/* Responsive */
@media (max-width: 520px){
  .svc2{
    padding: 56px 0;
  }

  .svc2-row{
    grid-template-columns: 54px 1fr;
    grid-template-rows: auto auto;
  }

  .svc2-arrow{
    display: none;
  }
}
