/* =========================================
   SAVLIFE THANKYOU PAGE STYLES — css/thankyou.css
========================================= */

.thankyou-section{
  padding:70px 0 90px;
  background:linear-gradient(135deg,#eaf4ff,#f8fbff);
  min-height:80vh;
}

/* STEP PROGRESS */
.steps-progress{
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:40px;
  flex-wrap:wrap;
  gap:0;
}

.sp-step{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  font-weight:700;
  color:#94a3b8;
}

.sp-step span{
  width:34px;
  height:34px;
  border-radius:50%;
  background:#e2e8f0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  font-weight:800;
  font-family:'Sora',sans-serif;
}

.sp-step.done{
  color:var(--green);
}

.sp-step.done span{
  background:var(--green);
  color:#fff;
}

.sp-step.active{
  color:var(--blue);
}

.sp-step.active span{
  background:var(--blue);
  color:#fff;
}

.sp-line{
  flex:0 0 50px;
  height:3px;
  background:#e2e8f0;
  margin:0 8px;
}

.sp-line.done{
  background:var(--green);
}

/* MAIN CARD */
.ty-card{
  background:#fff;
  border-radius:28px;
  padding:56px 50px;
  max-width:740px;
  margin:0 auto;
  text-align:center;
  box-shadow:0 30px 80px rgba(11,124,255,0.1);
  border:1px solid rgba(11,124,255,0.08);
  position:relative;
  overflow:hidden;
}

.ty-icon{
  font-size:72px;
  margin-bottom:18px;
  animation:bounce 0.8s ease;
}

@keyframes bounce{
  0%,100%{ transform:translateY(0); }
  40%{ transform:translateY(-18px); }
  60%{ transform:translateY(-10px); }
}

.ty-card h1{
  font-size:34px;
  color:var(--dark);
  margin-bottom:12px;
}

.ty-sub{
  color:var(--text);
  font-size:16px;
  max-width:500px;
  margin:0 auto 30px;
  line-height:1.7;
}

/* INFO BOX */
.ty-info-box{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  background:#f8fbff;
  border-radius:16px;
  padding:20px;
  margin-bottom:28px;
  border:1px solid rgba(11,124,255,0.08);
}

.ty-info-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  text-align:center;
}

.ty-info-item i{
  font-size:26px;
  color:var(--blue);
}

.ty-info-item strong{
  display:block;
  font-size:13px;
  color:var(--dark);
  font-weight:700;
}

.ty-info-item span{
  font-size:12px;
  color:var(--text);
}

/* WHAT HAPPENS NEXT */
.ty-steps-box{
  background:#f0f7ff;
  border-radius:16px;
  padding:24px;
  margin-bottom:24px;
  text-align:left;
  border:1px solid rgba(11,124,255,0.1);
}

.ty-steps-box h3{
  font-size:16px;
  margin-bottom:16px;
  color:var(--dark);
  text-align:center;
}

.ty-next-steps{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.ty-step{
  display:flex;
  align-items:flex-start;
  gap:14px;
}

.ty-step-num{
  width:30px;
  height:30px;
  border-radius:50%;
  background:var(--blue);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  font-weight:800;
  font-family:'Sora',sans-serif;
  flex-shrink:0;
}

.ty-step p{
  font-size:14px;
  color:var(--text);
  line-height:1.6;
  padding-top:4px;
}

/* REMINDER */
.ty-reminder{
  background:#fff7ed;
  border:1px solid #fed7aa;
  border-radius:12px;
  padding:16px 20px;
  margin-bottom:24px;
  display:flex;
  align-items:flex-start;
  gap:14px;
  text-align:left;
}

.ty-reminder i{
  color:#f59e0b;
  font-size:20px;
  flex-shrink:0;
  margin-top:2px;
}

.ty-reminder strong{
  display:block;
  color:var(--dark);
  margin-bottom:4px;
  font-size:14px;
}

.ty-reminder p{
  font-size:13px;
  color:#92400e;
  line-height:1.6;
}

/* ACTIONS */
.ty-actions{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
  margin-bottom:22px;
}

.ty-back-links{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
}

@media(max-width:700px){
  .ty-card{ padding:32px 20px; }
  .ty-card h1{ font-size:26px; }
  .ty-info-box{ grid-template-columns:1fr; }
  .steps-progress{ gap:4px; }
  .sp-line{ flex:0 0 24px; }
  .ty-actions{ flex-direction:column; }
}
