/* ===============================
   DESIGN TOKENS
================================ */
:root{
  --primary:#008066;
  --primary-glow:rgba(0,128,102,.35);
  --dark:#0f172a;
  --text:#334155;
  --muted:#64748b;
  --border:rgba(255,255,255,.25);
  --card:rgba(255,255,255,.88);
  --radius:26px;
}

/* ===============================
   PAGE BACKGROUND (PREMIUM)
================================ */
body{
  background:
    radial-gradient(circle at top left,#e9f7f4,transparent 45%),
    radial-gradient(circle at bottom right,#eef2ff,transparent 50%),
    linear-gradient(135deg,#f7fafc,#eef6f3);
  font-family:Inter,system-ui,sans-serif;
}

/* ===============================
   LANDING
================================ */
#swl-landing{
  max-width:1200px;
  margin:10px auto;
  padding:30px 20px;
  background:#ffffff;
  border-radius:32px;
  text-align:center;
  
}

#swl-landing h2{
  font-size:36px;
  font-weight:700;
  color:var(--dark);
  margin-bottom:12px;
}

#swl-landing p{
  font-size:18px;
  color:var(--muted);
  margin-bottom:40px;
}

#swl-start{
  background:linear-gradient(135deg,#008066,#00a884);
  color:#fff;
  font-size:18px;
  padding:5px 44px;
  border-radius:999px;
  box-shadow:0 18px 45px var(--primary-glow);
}

/* ===============================
   FORM (GLASS CARD)
================================ */
#swl-form{
  max-width:680px;
  margin:40px auto;
  padding:30px 28px 38px;
  background:var(--card);
  backdrop-filter:blur(14px);
  border-radius:34px;
  border:1px solid #008066;
  /* box-shadow:
    0 40px 90px rgba(0,0,0,.15),
    inset 0 1px 0 rgba(255,255,255,.6); */
}

/* ===============================
   PROGRESS
================================ */
.swl-progress{
  height:8px;
  background:rgba(0,0,0,.08);
  border-radius:999px;
  margin-bottom:20px;
  overflow:hidden;
}

.swl-progress span{
  height:100%;
  width:0;
  display:block;
  background:linear-gradient(90deg,#008066,#000);
  transition:width .45s cubic-bezier(.4,0,.2,1);
}

/* ===============================
   PROGRESS NUMBERS
================================ */
.swl-progress-numbers{
  display:flex;
  justify-content:space-between;
  margin-bottom:40px;
}

.swl-progress-numbers span{
  width:32px;
  height:32px;
  border-radius:50%;
  background:rgba(0,0,0,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
  color:var(--muted);
  transition:all .3s ease;
}

.swl-progress-numbers span.active{
  background:var(--primary);
  color:#fff;
}

/* ===============================
   STEP TRANSITION
================================ */
.step{
  display:none;
  animation:stepFade .45s ease;
}
.step.active{display:block;}

@keyframes stepFade{
  from{opacity:0;transform:translateY(24px);}
  to{opacity:1;transform:translateY(0);}
}

/* ===============================
   HEADINGS
================================ */
.step h3{
  font-size:27px;
  font-weight:400;
  color:var(--dark);
  margin-bottom:30px;
}
#swl-msg{
display:none !important;
}
/* ===============================
   OPTIONS
================================ */
.step label{
  display:flex;
  align-items:center;
  gap:18px;
  padding:12px 24px;
  margin-bottom:10px;
  border-radius:24px;
  border:1px solid rgba(0,0,0,.08);
  background:linear-gradient(135deg,#ffffff,#f4fbf9);
  cursor:pointer;
  font-size:16px;
  color:var(--text);
  transition:all .25s ease;
}

.step label:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 40px rgba(0,0,0,.12);
  border-color:#008066;
}

/* ===============================
   CUSTOM INPUTS
================================ */
.step input[type="radio"],
.step input[type="checkbox"]{
  appearance:none;
  width:22px;
  height:22px;
  border:2px solid rgba(0,0,0,.25);
  border-radius:50%;
  transition:all .2s ease;
  position:relative;
}

.step input[type="checkbox"]{border-radius:6px;}

.step input:checked{
  background:#008066;
  border-color:#008066;
}

.step input:checked::after{
  content:"✓";
  color:#fff;
  font-size:14px;
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-55%);
}

/* ===============================
   TEXT INPUTS
================================ */
.step input[type="text"],
.step input[type="email"],
.step input[type="tel"],
.step input[type="textarea"]{
  width:100%;
  padding:10px 20px;
  font-size:16px;
  border-radius:18px;
  border:1px solid rgba(0,0,0,.15);
  margin-bottom:10px;
  background:rgba(255,255,255,.9);
}

.step input:focus{
  outline:none;
  border-color:#008066;
}

/* ===============================
   BUTTONS
================================ */
.step .btns{
  margin-top:50px;
  display:flex;
  justify-content:space-between;
}

#swl-form button{
  padding:5px 42px;
  border-radius:999px;
  font-size:16px;
  border:none;
  cursor:pointer;
  transition:all .25s ease;
}

button.next,
button[type="submit"]{
  background:linear-gradient(135deg,#008066,#00a884);
  color:#fff;
  box-shadow:0 20px 45px var(--primary-glow);
}

button.prev{
  background:rgba(0,0,0,.08);
  color:var(--dark);
}

#swl-form button:hover{
  transform:translateY(-3px);
  box-shadow:0 24px 60px rgba(0,0,0,.25);
}

/* ===============================
   SUCCESS
================================ */
#swl-msg{
  max-width:680px;
  margin:35px auto;
  padding:28px;
  background:linear-gradient(135deg,#ecfdf5,#f0fdf9);
  border-radius:26px;
  color:#065f46;
  font-size:18px;
  font-weight:500;
  text-align:center;
}

/* ===============================
   MOBILE
================================ */
@media(max-width:640px){
  #swl-form{
    padding:34px 26px 42px;
    border-radius:26px;
  }
  #swl-landing h2{
    font-size:28px;
  }
  .step h3{
    font-size:22px;
  }
}
.swl-progress-numbers {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.swl-progress-numbers span {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #555;
    font-weight: bold;
    text-align: center;
    position: relative;
}

.swl-progress-numbers span.completed {
    background: #008066;
    color: #fff;
}

.swl-progress-numbers span.active {
    background: #00a884;
    color: #fff;
}

.swl-progress-numbers span:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
   
    width: 120px;
    height: 4px;
    background: #e0e0e0;
    transform: translateY(-50%);
    z-index: -1;
}

.swl-progress-numbers span.completed:not(:last-child)::after {
    background: #008066;
}