/* ==========================================================================
   Pentesting — estilos locales (matching ASM/Argus/CISO/Leaks)
   ========================================================================== */

/* ------------------------------ Hero ------------------------------------ */
.hero--pentest{
  background:
    radial-gradient(600px 400px at 90% -10%,
      color-mix(in oklab, var(--primary, #2563eb), #ffffff 90%) 10%,
      transparent 60%),
    linear-gradient(180deg, #f6f9fc, #ffffff);
  border: 1px solid #e6ecf3;
  border-radius: 16px;
  padding: clamp(18px, 4vw, 28px);
  box-shadow: 0 10px 30px rgba(46,74,117,.06);
  margin-top: 10px;
}
.hero--pentest h1{
  letter-spacing: -0.015em;
  color: #23324a;
}
.hero--pentest .hero-kicker{
  margin: .35rem 0 0;
  color: #46566f;
  max-width: 76ch;
}

/* -------------------------- Tipografía base ----------------------------- */
.prose p{ color:#46566f; }
.pentest-split .prose h2,
.pentest-split .prose h3{ color:#23324a; }
.pentest-split .prose ul li,
.pentest-split .prose ol li{ color:#2f3a4f; }

/* ---------------------------- Tarjetas ---------------------------------- */
.card{
  background: linear-gradient(180deg, #ffffff, #f9fbff);
  border: 1px solid #e6ecf3;
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 10px 30px rgba(46,74,117,.08);
}
.card figcaption{ color:#6f7d95; }

/* Imagen principal */
.shot img{
  display:block; width:100%; height:auto;
  border-radius: 10px; border: 1px solid #e9edf5;
}

/* ---------------------- Lista de proceso -------------------------------- */
.pentest-split .prose ol.list{
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: grid;
  gap: 12px;
  counter-reset: step;
}
.pentest-split .prose ol.list > li{
  background: #ffffff;
  color: #2a3448;
  border: 1px solid #e6ecf3;
  border-radius: 12px;
  padding: 14px 16px 14px 46px;
  box-shadow: 0 4px 12px rgba(46,74,117,.05);
  position: relative;
  line-height: 1.45;
  font-weight: 500;
}
.pentest-split .prose ol.list > li *{ color: inherit; }
.pentest-split .prose ol.list > li::marker{ content:""; }
.pentest-split .prose ol.list > li::before{
  content: counter(step);
  counter-increment: step;
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary, #2563eb);
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(37,99,235,.25);
}
.pentest-split .prose ol.list > li:hover{
  border-color: #d8e3f2;
  box-shadow: 0 6px 16px rgba(46,74,117,.08);
}

/* ------------------------------ CTA ------------------------------------ */
.pentest-cta{
  background: linear-gradient(180deg, #fff, #f6f9ff);
  border: 1px solid #e6ecf3;
  border-radius: 16px;
  padding: 18px 16px;
  box-shadow: 0 10px 26px rgba(46,74,117,.06);
  text-align: center;
}
.pentest-cta h2{ color:#23324a; }
.pentest-cta .actions{ justify-content: center; gap: 10px; }

/* ------------------------------ Botones -------------------------------- */
.btn.btn-primary{
  background: var(--primary, #2563eb);
  border-color: color-mix(in oklab, var(--primary, #2563eb), #0B1220 10%);
  box-shadow: 0 12px 24px rgba(37,99,235,.15);
}
.btn.btn-primary:hover{ background: var(--primary-600, #1D4ED8); text-decoration: none; }
.btn.btn-secondary{
  background: #f8fbff;
  border-color: #dce5f3;
}
.btn.btn-secondary:hover{
  border-color: var(--primary, #2563eb);
  color: var(--primary, #2563eb);
  text-decoration: none;
}

/* ---------------------------- Responsive ------------------------------- */
@media (max-width: 720px){
  .hero--pentest{ padding: 16px; }
  .pentest-cta{ padding: 16px; }
}
