/* ============================================================
   COMPONENT — Services grid
   Six cards: Seller Account Creation, Amazon Account Management,
   A+ Content & Video, Premium Brand Store, Flipkart Seller
   Account, Ongoing Account Handling.
   ============================================================ */
.services{padding:104px 0 96px; background:var(--paper);}

.svc-grid{display:grid; grid-template-columns:repeat(3, 1fr); gap:22px;}

.svc-card{
  background:var(--white); border:1px solid var(--line-light); border-radius:var(--radius);
  padding:28px 26px 26px; display:flex; flex-direction:column; height:100%;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.svc-card:hover{transform:translateY(-5px); box-shadow:var(--shadow-sm); border-color:rgba(240,120,0,0.25);}

.svc-icon{
  width:48px; height:48px; border-radius:13px; background:var(--navy-950); color:var(--orange-300);
  display:flex; align-items:center; justify-content:center; margin-bottom:18px;
}
.svc-icon svg{width:23px; height:23px;}

.svc-card h3{font-size:19.5px; line-height:1.28;}
.svc-card .tag{
  display:inline-block; margin-top:8px; font-family:var(--ff-mono); font-size:11px;
  letter-spacing:0.06em; text-transform:uppercase; color:var(--orange-600); font-weight:600;
}
.svc-card p.desc{margin-top:12px; color:var(--ink-soft); font-size:14.5px; line-height:1.6;}

.svc-list{margin-top:16px; display:flex; flex-direction:column; gap:9px; flex:1;}
.svc-list li{display:flex; align-items:flex-start; gap:9px; font-size:13.8px; color:var(--ink);}
.svc-list svg{width:16px; height:16px; color:var(--green); margin-top:2px; flex:none;}

.svc-card .svc-cta{margin-top:20px; align-self:flex-start;}

/* ---- responsive ---- */
@media (max-width:980px){
  .svc-grid{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:720px){
  .services{padding:72px 0;}
  .svc-grid{grid-template-columns:1fr;}
}
