
/* Home page safe UX polish */
.home-quickbar{
  margin-top:-42px;
  position:relative;
  z-index:4;
  margin-bottom:12px;
}
.home-quickgrid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}
.home-quickcard{
  display:block;
  padding:18px;
  border-radius:20px;
  background:rgba(15,23,42,.78);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 10px 40px -10px rgba(0,0,0,.6);
  backdrop-filter:blur(14px);
  transition:transform .25s ease,border-color .25s ease,box-shadow .25s ease,background .25s ease;
}
.home-quickcard:hover{
  transform:translateY(-4px);
  border-color:rgba(99,102,241,.35);
  box-shadow:0 18px 45px -12px rgba(0,0,0,.75),0 0 24px rgba(99,102,241,.14);
  background:rgba(22,31,51,.86);
}
.home-quickcard__icon{
  width:48px;height:48px;border-radius:14px;
  display:grid;place-items:center;
  background:linear-gradient(135deg, rgba(99,102,241,.25), rgba(168,85,247,.25));
  border:1px solid rgba(255,255,255,.08);
  margin-bottom:12px;
  font-size:24px;
}
.home-quickcard__title{
  font-size:16px;
  font-weight:800;
  color:#fff;
  margin-bottom:6px;
}
.home-quickcard__text{
  color:var(--text-muted);
  font-size:14px;
  line-height:1.5;
}
.home-metrics{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
  margin-top:14px;
  margin-bottom:18px;
}
.home-metric{
  background:rgba(15,23,42,.58);
  border:1px solid rgba(255,255,255,.07);
  border-radius:20px;
  padding:18px 20px;
  backdrop-filter:blur(12px);
  box-shadow:0 10px 30px -12px rgba(0,0,0,.58);
}
.home-metric__value{
  font-size:28px;
  font-weight:800;
  color:#fff;
  margin-bottom:6px;
}
.home-metric__label{
  color:var(--text-muted);
  font-size:14px;
}
.services-grid .service-card{
  position:relative;
}
.services-grid .service-card::after{
  content:'';
  position:absolute;
  inset:auto 24px 0 24px;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
}
.services-grid .service-card .btn-main{
  min-width:220px;
}
.faq-section{
  margin-top:20px;
}
@media (max-width: 1100px){
  .home-quickgrid,
  .home-metrics{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media (max-width: 768px){
  .home-quickbar{
    margin-top:-24px;
  }
  .home-quickgrid,
  .home-metrics{
    grid-template-columns:1fr;
  }
  .home-quickcard,
  .home-metric{
    padding:16px;
  }
}
