:root{
  --primary:#4F46E5;
  --primary-soft:#EEF2FF;
  --bg:#F9FAFB;
  --card:#ffffff;
  --text:#0F172A;
  --muted:#6B7280;
}

*{box-sizing:border-box}

body{
  margin:0;
  background:var(--bg);
  font-family:Inter,system-ui,-apple-system;
  color:var(--text);
}

.app{
  max-width:1200px;
  margin:auto;
  padding:32px 20px 90px;
}

/* ================= HERO ================= */
.hero-advanced{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:40px;
  padding:72px 48px;
  border-radius:30px;
  background:linear-gradient(135deg,#EEF2FF,#ffffff);
  align-items:center;
  overflow:hidden;
}

/* MOBILE */
@media(max-width:768px){
  .hero-advanced{
    grid-template-columns:1fr;
    padding:48px 22px;
  }
}

.badge{
  display:inline-block;
  background:var(--primary-soft);
  color:var(--primary);
  padding:8px 14px;
  border-radius:999px;
  font-weight:600;
}

.hero-left h1{
  font-size:clamp(34px,5vw,54px);
  line-height:1.1;
  margin:14px 0;
}

.hero-left h1 span{color:var(--primary)}

.hero-left p{
  max-width:480px;
  color:var(--muted);
  font-size:16px;
}

.hero-btns{
  display:flex;
  gap:14px;
  margin-top:26px;
}

.btn{
  position:relative;
  padding:14px 26px;
  border-radius:14px;
  font-weight:600;
  text-decoration:none;
  transition:.2s ease;
}

.btn.primary{background:var(--primary);color:#fff}
.btn.ghost{border:2px solid var(--primary);color:var(--primary)}

.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 28px rgba(79,70,229,.25);
}
.btn:active{transform:scale(.97)}


/* ===== HERO RIGHT STEPS CARD ===== */

.hero-right{
  display:flex;
  justify-content:center;
}

.hero-steps-card{
  width:100%;
  max-width:360px;
  padding:26px;
  border-radius:24px;
  backdrop-filter:blur(18px);
  box-shadow:
    0 30px 60px rgba(79,70,229,.12),
    inset 0 0 0 1px rgba(255,255,255,.5);
  display:grid;
  gap:14px;
}

/* STEP ITEM */
.hero-step{
  display:flex;
  align-items:flex-start;
  gap:16px;
  padding:16px 18px;
  border-radius:16px;
  background:linear-gradient(135deg,#EEF2FF,#ffffff);
  transition:.3s ease;
}

.hero-step:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 30px rgba(79,70,229,.18);
}

/* ACTIVE STEP */
.hero-step.active{
  background:linear-gradient(135deg,#4F46E5,#6366F1);
  color:#fff;
}

/* STEP NUMBER */
.hero-step-no{
  min-width:42px;
  height:42px;
  border-radius:14px;
  background:#fff;
  color:#4F46E5;
  font-weight:800;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}


/* TEXT STACK */
.hero-step-text{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.hero-step-text b{
  font-size:15px;
  font-weight:700;
  line-height:1.3;
}

.hero-step-text small{
  font-size:13px;
  color:#6B7280;
  line-height:1.4;
}

.hero-step.active small{
  color:#E0E7FF;
}

/* MOBILE */
@media (max-width: 768px){

  .hero-right{
    width:100%;
    padding: 20px 0px;
    box-sizing:border-box;
  }

  .hero-steps-card{
    max-width:100%;
    width:100%;
    padding:22px;          /* thoda compact */
    border-radius:20px;
  }

  .hero-step{
    padding:14px 16px;     /* steps bhi compact */
    gap:14px;
  }

  .hero-step-no{
    min-width:36px;
    height:36px;
    font-size:14px;
  }

  .hero-step-text b{
    font-size:14px;
  }

  .hero-step-text small{
    font-size:12px;
  }
}


/* ================= STATS ================= */

.stats{
  margin-top:70px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}

/* Mobile */
@media(max-width:900px){
  .stats{
    grid-template-columns:1fr;
  }
}

.stat{
  background:#ffffff;
  border-radius:22px;
  padding:26px 28px;

  display:flex;
  align-items:center;
  gap:20px;

  box-shadow:0 12px 30px rgba(0,0,0,.06);
  transition:transform .25s ease, box-shadow .25s ease;
}

.stat:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 45px rgba(79,70,229,.18);
}

/* ICON */
.stat i{
  width:64px;
  height:64px;
  min-width:64px;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:30px;
  border-radius:18px;
  background:#EEF2FF;
  color:#4F46E5;
}

/* TEXT */
.stat b{
  display:block;
  font-size:28px;
  font-weight:800;
  line-height:1.1;
}

.stat small{
  display:block;
  font-size:15px;
  color:#6B7280;
}


/* ================= SECTION ================= */
.section{
  margin-top:100px;
  text-align:center;
}

.section h2{
  font-size:clamp(26px,3.5vw,38px);
}
.section small{
  color:var(--muted);
  letter-spacing:3px;
}

/* ================= PAYMENTS ================= */
.payments{
  margin:36px auto 0;
  max-width:720px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
  gap:16px;
}

.pay{
  background:var(--card);
  padding:16px;
  border-radius:16px;
  font-weight:600;
  color:var(--primary);
  box-shadow:0 6px 20px rgba(0,0,0,.05);
}


/* ================= FEATURES ================= */

.features{
  margin-top:50px;
  display:grid;
  grid-template-columns:repeat(3, 1fr); /* ✅ desktop = 3 */
  gap:26px;
}

.feature{
  background:#fff;
  border-radius:22px;
  padding:34px 30px;
  text-align:center;
  box-shadow:0 14px 40px rgba(0,0,0,.06);
  transition:transform .25s ease, box-shadow .25s ease;
}

.feature:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 55px rgba(79,70,229,.18);
}

/* ICON */
.feature .icon{
  width:64px;
  height:64px;
  margin:0 auto 14px;
  border-radius:18px;
  background:var(--primary-soft);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
}

/* TITLE */
.feature b{
  display:block;
  font-size:17px;
  margin-bottom:8px;
}

/* TEXT */
.feature p{
  font-size:14px;
  color:var(--muted);
  line-height:1.7;
  margin:0;
}

/* ===== RESPONSIVE ===== */

/* Laptop / Tablet */
@media(max-width:1100px){
  .features{
    grid-template-columns:repeat(2, 1fr); /* ✅ 2 per row */
  }
}

/* Mobile */
@media(max-width:640px){
  .features{
    grid-template-columns:1fr; /* ✅ 1 per row */
  }

  .feature{
    padding:26px;
  }

  .feature .icon{
    width:56px;
    height:56px;
    font-size:26px;
  }
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media(max-width:1024px){
  .features{
    grid-template-columns:repeat(2, 1fr);
  }
}

/* Mobile */
@media(max-width:600px){
  .features{
    grid-template-columns:1fr;
  }

  .feature{
    padding:22px;
  }

  .feature .icon{
    width:50px;
    height:50px;
    font-size:26px;
  }
}



/* ================= ADVANCED FAQ ================= */
.faq-advanced{
  max-width:960px;
  margin:120px auto 0;
}

.faq-title{
  text-align:center;
  font-size:clamp(28px,4vw,38px);
}
.faq-sub{
  text-align:center;
  color:var(--muted);
  margin-bottom:42px;
}

.faq-list{display:grid;gap:18px}

.faq-card{
  background:#fff;
  border-radius:22px;
  box-shadow:0 14px 40px rgba(0,0,0,.08);
  overflow:hidden;
}

.faq-head{
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:14px;
  padding:24px;
  cursor:pointer;
  font-weight:700;
}

.faq-icon{
  width:42px;height:42px;
  border-radius:12px;
  background:var(--primary-soft);
  color:var(--primary);
  display:flex;align-items:center;justify-content:center;
}

.faq-arrow{
  transition:.3s ease;
}

.faq-card.active .faq-arrow{
  transform:rotate(180deg);
}

.faq-body{
  max-height:0;
  overflow:hidden;
  padding:0 24px;
  transition:max-height .45s ease,padding .45s ease;
  color:var(--muted);
  line-height:1.7;
}

.faq-card.active .faq-body{
  max-height:320px;
  padding:0 24px 22px;
}



/* ================= TRUST ================= */
.trust-toast{
  position:fixed;
  bottom:24px;
  left:50%;
  transform:translateX(-50%);
  background:#fff;
  padding:14px 18px;
  border-radius:14px;
  box-shadow:0 18px 40px rgba(0,0,0,.15);
  font-weight:600;
  opacity:0;
  transition:.4s ease;
  z-index:9999;
}

.trust-toast.show{
  opacity:1;
  transform:translateX(-50%) translateY(-10px);
}


/* PAYMENT LOGOS */
.pay{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:70px;
}

.pay img{
  max-height:38px;
  max-width:100%;
  object-fit:contain;
  filter:grayscale(10%);
  transition:.25s ease;
}

/* hover effect */
.pay:hover img{
  filter:none;
  transform:scale(1.08);
}

/* text-only fallback */
.pay.text-only{
  font-weight:700;
  color:var(--primary);
}

@media(max-width:600px){
  .pay img{
    max-height:32px;
  }
}