/* "Become an Authorized Representative" step cards */
.ap-process{
  position:relative;
  overflow:hidden;
  border-radius:20px;
  padding:56px 24px 48px;
  background:linear-gradient(135deg,#fff5fa 0%,#ffffff 50%,#fff5fa 100%);
  border:1px solid #ffdaee;
}
.ap-process::before{
  content:'';
  position:absolute;
  top:-90px;
  right:-90px;
  width:260px;
  height:260px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(247,14,136,0.10) 0%,rgba(247,14,136,0) 70%);
  pointer-events:none;
}
.ap-process-eyebrow{
  display:inline-block;
  font-size:0.75rem;
  font-weight:600;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:#f70e88;
  background:rgba(247,14,136,0.08);
  border-radius:999px;
  padding:6px 16px;
  margin-bottom:14px;
}
.ap-process-title{
  font-size:calc(1.3rem + 0.6vw);
  font-weight:700;
  color:#2d343e;
  margin-bottom:12px;
}
.ap-process-lead{
  color:#6a747b;
  max-width:620px;
  margin:0 auto 40px;
}

.ap-card{
  position:relative;
  height:100%;
  background:#fff;
  border:1px solid #eef1f4;
  border-radius:16px;
  padding:34px 24px 28px;
  text-align:center;
  overflow:hidden;
  transition:transform 0.3s ease,box-shadow 0.3s ease,border-color 0.3s ease;
}
.ap-card::after{
  content:attr(data-step);
  position:absolute;
  top:2px;
  right:14px;
  font-size:4.25rem;
  font-weight:700;
  line-height:1;
  color:rgba(247,14,136,0.07);
  transition:color 0.3s ease;
  pointer-events:none;
}
.ap-card:hover,
.ap-card:focus-within{
  transform:translateY(-6px);
  border-color:transparent;
  box-shadow:0 14px 28px rgba(247,14,136,0.18),0 6px 12px rgba(247,14,136,0.12),0 0 0 4px rgba(247,14,136,0.08);
}
.ap-card:hover::after,
.ap-card:focus-within::after{color:rgba(247,14,136,0.14)}

.ap-card-icon{
  position:relative;
  width:68px;
  height:68px;
  margin:0 auto 20px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.6rem;
  color:#f70e88;
  background:rgba(247,14,136,0.10);
  transition:background 0.3s ease,color 0.3s ease,transform 0.3s ease;
}
.ap-card:hover .ap-card-icon,
.ap-card:focus-within .ap-card-icon{
  background:linear-gradient(135deg,#f70e88 0%,#ff5fae 100%);
  color:#fff;
  transform:scale(1.06);
}
.ap-card-title{
  position:relative;
  font-size:1.05rem;
  font-weight:700;
  color:#2d343e;
  margin-bottom:8px;
}
.ap-card-text{
  position:relative;
  font-size:0.9rem;
  color:#6a747b;
  margin-bottom:0;
}

@media (max-width:767.98px){
  .ap-process{padding:40px 18px 32px;border-radius:16px}
  .ap-process-lead{margin-bottom:28px}
  .ap-card{padding:28px 20px 24px}
  .ap-card::after{font-size:3.25rem}
  .ap-card-icon{width:58px;height:58px;font-size:1.35rem;margin-bottom:16px}
}
