.models-section{
  padding:80px 0;
  background:#ececec;
}

.models-container{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

/* HEADING */

.models-heading{
  text-align:center;
  margin-bottom:40px;
}

.models-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,0.12);
  background:#ececec;
}

.models-kicker-dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background:#ff5a1f;
}

.models-kicker-text{
  font-size:13px;
  font-weight:600;
  color:#111;
}

.models-title{
  margin-top:16px;
  font-size:46px;
  font-weight:800;
  color:#111;
}

/* GRID */

.models-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 25px 60px rgba(0,0,0,.25);
}

/* CARD */

.model-card{
  position:relative;
  background:linear-gradient(180deg,#0f141d,#0b0f16);
  min-height:560px;
  display:flex;
  flex-direction:column;
  border-right:1px solid rgba(255,255,255,0.06);
}

.model-card:last-child{
  border-right:none;
}

/* DIVISIÓN DIAGONAL */

.model-card:not(:last-child)::after{
  content:"";
  position:absolute;
  top:0;
  right:-40px;
  width:80px;
  height:100%;
  transform:skewX(-15deg);
  background:linear-gradient(
    180deg,
    rgba(255,255,255,.08),
    rgba(0,0,0,.35)
  );
  border-left:1px solid rgba(255,255,255,.10);
  z-index:3;
}

/* IMAGE */

.model-image{
  height:260px;
  overflow:hidden;
}

.model-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* BODY */

.model-body{
  padding:30px;
  color:#fff;
  flex:1;
  display:flex;
  flex-direction:column;
  z-index:4;
  position:relative;
}

.model-title{
  margin-bottom:18px;
  font-size:28px;
  font-weight:800;
}

.model-title span{
  font-weight:500;
  opacity:.6;
  font-size:18px;
}

.model-features{
  list-style:none;
  padding:0;
  margin:0 0 26px 0;
  flex:1;
}

.model-features li{
  position:relative;
  padding-left:24px;
  margin-bottom:12px;
  font-size:15px;
}

.model-features li::before{
  content:"➜";
  position:absolute;
  left:0;
  color:#ff5a1f;
}

/* BOTONES */

.model-buttons{
  display:flex;
  gap:14px;
}

.split-btn{
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:#0f1218;
  border-radius:10px;
  text-decoration:none;
  border:1px solid rgba(255,255,255,0.10);
  height:54px;
  flex:1;
}

.split-btn .btn-text{
  padding-left:18px;
  color:#fff;
  font-weight:700;
  font-size:14px;
}

.split-btn .btn-icon{
  width:54px;
  height:100%;
  background:#ff5a1f;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-weight:900;
}

/* CTA PERFECTAMENTE ALINEADO */

.models-cta{
  max-width:1200px;
  margin:40px auto 0;
  padding:0 20px;
  display:flex;
}

.cta-full-line{
  margin-left:auto;
  display:inline-flex;
  align-items:center;
  gap:18px;
  background:#0f141d;
  color:#fff;
  padding:18px 28px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700;
}

.cta-icon{
  background:#ff5a1f;
  width:46px;
  height:46px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  font-weight:900;
}

/* RESPONSIVE */

@media (max-width:1100px){
  .models-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}

@media (max-width:700px){
  .models-grid{
    grid-template-columns:1fr;
  }

  .model-card{
    border-right:none;
    border-bottom:1px solid rgba(255,255,255,0.06);
  }

  .model-card:not(:last-child)::after{
    display:none;
  }

  .models-cta{
    justify-content:center;
  }
}
