#cqsrv{
      --bg: #191919;
    --panel: #232323;
    --ink: #ffffff;
    --muted: #919191;
  --r:16px; --shadow:0 8px 20px rgba(0,0,0,.15);
  font-family:-apple-system,BlinkMacSystemFont,"SF Pro Text",Inter,system-ui;
  background:var(--bg); color:var(--ink);
  padding:clamp(28px,4vw,64px) 12px;
}
#cqsrv .cqsrv-shell{ max-width:1180px; margin:0 auto; }

/* Header */
#cqsrv .cqsrv-head{ margin:0 0 24px; text-align:center; }
#cqsrv .cqsrv-title{ font-weight:900; font-size:clamp(22px,2.5vw,30px); margin:0; }
#cqsrv .cqsrv-sub{ margin:6px 0 0; color:var(--muted); font-size:15px; }

/* Grid desktop */
#cqsrv .cqsrv-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

/* Card */
#cqsrv .cqsrv-card{
  background:var(--panel);
  border-radius:var(--r);
  padding:24px 20px 28px;
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:flex-start;
  text-align:left;
  transition:transform .25s ease, box-shadow .25s ease;
      box-shadow: 0px 0 16px #0000001a;
}
#cqsrv .cqsrv-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(0,0,0,.25);
}

/* Icono */
#cqsrv .cqsrv-icon{
  width:48px; height:48px;
  display:grid; place-items:center;
  border-radius:14px;
  background:rgba(234,238,252,.08);
  font-size:22px;
}

/* Texto */
#cqsrv .cqsrv-name{ margin:0; font-weight:800; font-size:18px; color:var(--ink); }
#cqsrv .cqsrv-desc{ margin:0; color:var(--muted); font-size:14.5px; line-height:1.6; }

/* Tablet */
@media (max-width:980px){
  #cqsrv .cqsrv-grid{
    grid-template-columns:repeat(2,1fr);
    gap:18px;
  }
}

/* Mobile: UNA COLUMNA */
@media (max-width:700px){
  #cqsrv{ padding:32px 10px; }
  #cqsrv .cqsrv-head{ text-align:center; margin-bottom:18px; }
  #cqsrv .cqsrv-grid{
    grid-template-columns:1fr !important;
    gap:14px;
  }

  #cqsrv .cqsrv-card{
    flex-direction:row;
    align-items:center;
    text-align:left;
    padding:16px 14px;
    gap:14px;
  }
  #cqsrv .cqsrv-icon{
    flex-shrink:0;
    width:44px; height:44px;
    font-size:20px;
  }
  #cqsrv .cqsrv-name{ font-size:16.5px; line-height:1.3; }
  #cqsrv .cqsrv-desc{ font-size:13.5px; line-height:1.5; }
}

/* Ultra compacto */
@media (max-width:380px){
  #cqsrv .cqsrv-icon{ width:40px; height:40px; font-size:18px; }
  #cqsrv .cqsrv-name{ font-size:15.5px; }
  #cqsrv .cqsrv-desc{ font-size:13px; }
}