@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root{
  --bg:#f8fafc;
  --bg2:#ffffff;
  --card:#ffffff;
  --stroke:#e2e8f0;
  --text:#0f172a;
  --muted:#64748b;
  --brand:#4f46e5;
  --brand-hover:#4338ca;
  --brand2:#0ea5e9;
  --accent:#f59e0b;
  --fire:#ef4444;
  --green:#10b981;
  --radius:20px;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}

body{
  font-family:"Outfit",system-ui,Arial,sans-serif;
  background:
    radial-gradient(900px 500px at 15% -5%, rgba(79,70,229,.12), transparent 60%),
    radial-gradient(800px 500px at 85% 10%, rgba(14,165,233,.12), transparent 60%),
    linear-gradient(180deg,var(--bg),var(--bg2));
  color:var(--text);
  min-height:100vh;
  overflow-x:hidden;
  line-height:1.5;
}

.wrap{
  max-width:1080px;
  margin:0 auto;
  padding:0 18px;
}

/* 1. Top Offer Banner */
.top-banner{
  background:linear-gradient(90deg, #1e1b4b, #312e81, #4338ca, #1e1b4b);
  background-size:200% 200%;
  animation:gradientMove 6s ease infinite;
  color:#fff;
  padding:10px 0;
  font-size:13.5px;
  border-bottom:1px solid rgba(255,255,255,.1);
}
@keyframes gradientMove{
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}
.banner-inner{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px 20px;
  text-align:center;
}
.banner-badge{
  background:linear-gradient(135deg, #ef4444, #f97316);
  color:#fff;
  font-size:11px;
  font-weight:900;
  padding:3px 10px;
  border-radius:999px;
  letter-spacing:.5px;
  box-shadow:0 2px 8px rgba(239,68,68,.4);
  animation:flamePulse 1.5s ease-in-out infinite alternate;
}
@keyframes flamePulse{
  0%{transform:scale(1)}
  100%{transform:scale(1.05)}
}
.banner-text{
  font-weight:500;
  letter-spacing:.2px;
  text-align:center;
}
.banner-timer{
  background:rgba(0,0,0,.3);
  padding:3px 12px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.15);
  font-size:12.5px;
  font-weight:600;
}
.banner-timer span{
  color:#cbd5e1;
}
.banner-timer strong{
  color:#fef08a;
  font-family:monospace;
  font-size:14px;
}

/* Header */
header{
  padding:15px 0;
  position:sticky;
  top:0;
  z-index:40;
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  background:rgba(255,255,255,.88);
  border-bottom:1px solid var(--stroke);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  font-size:20px;
  letter-spacing:.2px;
  color:var(--text);
}
.nav .price-chip{
  padding:8px 16px;
  border-radius:999px;
  border:1.5px solid rgba(79,70,229,.3);
  background:rgba(79,70,229,.06);
  color:var(--brand);
  font-weight:800;
  font-size:13.5px;
  text-decoration:none;
  transition:.2s ease;
  white-space:nowrap;
  box-shadow:0 2px 8px rgba(79,70,229,.08);
}
.nav .price-chip:hover{
  background:var(--brand);
  color:#fff;
  transform:translateY(-1px);
  box-shadow:0 6px 16px rgba(79,70,229,.25);
}

/* Hero Section: Centered Hierarchy */
.hero{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:34px;
  padding:52px 0 32px;
}
.hero-content{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  max-width:820px;
  margin:0 auto;
  width:100%;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 16px;
  border-radius:999px;
  background:rgba(16,185,129,.1);
  border:1px solid rgba(16,185,129,.25);
  color:#047857;
  font-size:13px;
  font-weight:700;
  margin:0 auto;
}
.live-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--green);
  display:inline-block;
  box-shadow:0 0 0 0 rgba(16,185,129,.7);
  animation:pulseDot 1.8s infinite;
}
@keyframes pulseDot{
  0%{box-shadow:0 0 0 0 rgba(16,185,129,.7)}
  70%{box-shadow:0 0 0 8px rgba(16,185,129,0)}
  100%{box-shadow:0 0 0 0 rgba(16,185,129,0)}
}

/* Badi Line: Headline */
h1.hero-title{
  font-size:clamp(30px, 5.2vw, 50px);
  line-height:1.18;
  margin:18px auto 12px;
  font-weight:900;
  letter-spacing:-0.6px;
  text-align:center;
  max-width:760px;
}
.shimmer-text{
  font-style:normal;
  background:linear-gradient(110deg, #4f46e5 20%, #0ea5e9 40%, #f59e0b 60%, #4f46e5 80%);
  background-size:200% auto;
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  animation:textShine 4s linear infinite;
}
@keyframes textShine{
  to{background-position:200% center}
}

/* Choti Line: Subtitle centered */
.sub{
  color:var(--muted);
  font-size:16.5px;
  line-height:1.6;
  max-width:580px;
  margin:0 auto;
  text-align:center;
}

/* Price Container & Badges Centered */
.price-container{
  margin:22px auto 16px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}
.price-row{
  display:flex;
  align-items:baseline;
  justify-content:center;
  flex-wrap:wrap;
  gap:8px 14px;
}
.price{
  font-size:clamp(46px, 8.5vw, 62px);
  font-weight:900;
  line-height:1;
  color:var(--brand);
  letter-spacing:-1.5px;
}
.price small{
  font-size:26px;
  font-weight:800;
  margin-right:2px;
}
.strike{
  color:var(--muted);
  text-decoration:line-through;
  font-size:21px;
  font-weight:500;
}
.per{
  color:var(--muted);
  font-size:16px;
  font-weight:600;
}
.discount-badge{
  background:linear-gradient(135deg, #ef4444, #f97316);
  color:#fff;
  font-size:12.5px;
  font-weight:800;
  padding:4px 10px;
  border-radius:8px;
  letter-spacing:.3px;
  box-shadow:0 3px 10px rgba(239,68,68,.3);
  animation:wiggle 3s ease-in-out infinite;
}
@keyframes wiggle{
  0%,90%,100%{transform:rotate(0deg)}
  92%{transform:rotate(-4deg)}
  96%{transform:rotate(4deg)}
}

.slots-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#fff7ed;
  border:1px solid #ffedd5;
  color:#c2410c;
  font-size:12.5px;
  font-weight:600;
  padding:5px 14px;
  border-radius:8px;
  margin:10px auto 0;
  text-align:center;
}
.slots-indicator{
  width:7px;
  height:7px;
  border-radius:50%;
  background:#ea580c;
  animation:pulseOrange 1.4s infinite;
}
@keyframes pulseOrange{
  0%{box-shadow:0 0 0 0 rgba(234,88,12,.7)}
  70%{box-shadow:0 0 0 6px rgba(234,88,12,0)}
  100%{box-shadow:0 0 0 0 rgba(234,88,12,0)}
}

/* Buy Now Button centered */
.cta-row{
  display:flex;
  justify-content:center;
  align-items:center;
  margin:20px auto 0;
  width:100%;
}
.btn{
  border:0;
  cursor:pointer;
  font-family:inherit;
  border-radius:16px;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:all .25s ease;
  position:relative;
  overflow:hidden;
}
.btn-primary{
  color:#fff;
  background:linear-gradient(135deg, #4f46e5 0%, #6366f1 50%, #4338ca 100%);
  box-shadow:0 14px 34px rgba(79,70,229,.4), inset 0 1px 1px rgba(255,255,255,.3);
}

.btn-special{
  padding:16px 32px;
  gap:12px;
  border:1.5px solid rgba(255,255,255,.2);
  animation:buttonGlowAura 3s ease-in-out infinite;
}
@keyframes buttonGlowAura{
  0%,100%{box-shadow:0 12px 30px rgba(79,70,229,.4)}
  50%{box-shadow:0 16px 42px rgba(79,70,229,.65), 0 0 20px rgba(14,165,233,.4)}
}

.btn-shine{
  position:absolute;
  top:-50%;
  left:-100%;
  width:60%;
  height:200%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transform:rotate(25deg);
  pointer-events:none;
  animation:btnSweep 3.2s infinite;
}
@keyframes btnSweep{
  0%{left:-100%}
  40%,100%{left:160%}
}

.btn-icon{
  font-size:22px;
  filter:drop-shadow(0 2px 4px rgba(0,0,0,.2));
  animation:iconBounce 2s ease-in-out infinite;
}
@keyframes iconBounce{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-3px)}
}

.btn-content{
  display:flex;
  flex-direction:column;
  text-align:center;
}
.btn-main{
  font-size:17px;
  font-weight:800;
  letter-spacing:.2px;
  line-height:1.2;
}
.btn-sub{
  font-size:11px;
  opacity:.9;
  font-weight:500;
  letter-spacing:.3px;
  margin-top:2px;
}

.btn-special:hover{
  transform:translateY(-3px) scale(1.015);
  box-shadow:0 20px 48px rgba(79,70,229,.55);
}
.btn-special:active{
  transform:translateY(1px);
}

/* Trust points centered */
.trust{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px 26px;
  color:var(--muted);
  font-size:13.5px;
  font-weight:600;
  margin:24px auto 0;
  text-align:center;
}
.trust-item{
  display:flex;
  align-items:center;
  gap:7px;
}
.trust-item .tick{
  color:var(--green);
  font-weight:900;
  background:rgba(16,185,129,.12);
  width:20px;
  height:20px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:11px;
}

/* Hero Art Centered */
.art{
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
  margin:10px auto 0;
  width:100%;
}
.image-wrapper{
  position:relative;
  display:inline-block;
}
.art img{
  width:100%;
  max-width:380px;
  height:auto;
  border-radius:22px;
  box-shadow:0 20px 50px rgba(0,0,0,.1);
  animation:float 6s ease-in-out infinite;
  display:block;
}
.floating-deal-badge{
  position:absolute;
  bottom:-12px;
  right:16px;
  background:linear-gradient(135deg, #1e1b4b, #312e81);
  color:#fef08a;
  padding:7px 15px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  border:1.5px solid rgba(255,255,255,.25);
  box-shadow:0 8px 20px rgba(0,0,0,.15);
  animation:float 6s ease-in-out infinite 0.5s;
}
.glow{
  position:absolute;
  inset:10% 15%;
  background:radial-gradient(circle,rgba(79,70,229,.2),transparent 65%);
  filter:blur(45px);
  z-index:-1;
}
@keyframes float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-10px)}
}

/* Sections: Consistent Badi Line + Choti Line Centering */
section{
  padding:48px 0;
}
.section-badge{
  text-align:center;
  color:var(--brand);
  font-weight:800;
  font-size:12px;
  letter-spacing:1px;
  margin:0 auto 6px;
}
.h2{
  font-size:clamp(25px,4.2vw,36px);
  font-weight:800;
  text-align:center;
  letter-spacing:-0.5px;
  margin:0 auto;
}
.lead{
  text-align:center;
  color:var(--muted);
  margin:10px auto 0;
  max-width:540px;
  font-size:15px;
  line-height:1.55;
}

/* Features Grid */
.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:36px;
}
.card{
  background:var(--card);
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  padding:28px 22px;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  transition:.3s;
  box-shadow:0 6px 20px rgba(0,0,0,.02);
  position:relative;
}
.card:hover{
  transform:translateY(-6px);
  border-color:rgba(79,70,229,.35);
  box-shadow:0 18px 40px rgba(79,70,229,.09);
}
.card-img-wrap{
  height:90px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:10px;
}
.card img{
  max-width:88px;
  max-height:88px;
  height:auto;
  object-fit:scale-down;
  filter:drop-shadow(0 10px 16px rgba(0,0,0,.08));
  animation:float 7s ease-in-out infinite;
}
.card h3{
  margin:12px auto 6px;
  font-size:18px;
  font-weight:700;
  text-align:center;
}
.card p{
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
  text-align:center;
  margin:0 auto;
}

/* Plan Card */
.plan-card{
  max-width:460px;
  margin:32px auto 0;
  background:#ffffff;
  border:2px solid transparent;
  background-image:linear-gradient(#fff, #fff), linear-gradient(135deg, #4f46e5, #0ea5e9, #f59e0b);
  background-origin:border-box;
  background-clip:padding-box, border-box;
  border-radius:26px;
  padding:36px 28px;
  text-align:center;
  box-shadow:0 25px 70px rgba(79,70,229,.12);
  position:relative;
}
.plan-ribbon{
  display:inline-block;
  background:linear-gradient(135deg, #ef4444, #f59e0b);
  color:#fff;
  font-size:11.5px;
  font-weight:900;
  padding:5px 16px;
  border-radius:999px;
  letter-spacing:.5px;
  box-shadow:0 4px 12px rgba(239,68,68,.3);
  margin:0 auto;
}
.plan-saving-callout{
  color:#15803d;
  font-size:13px;
  font-weight:700;
  margin:10px auto 0;
  text-align:center;
}
.amt-box{
  margin:12px auto 4px;
  line-height:1;
  text-align:center;
}
.amt-box .currency{
  font-size:26px;
  font-weight:800;
  color:var(--brand);
  vertical-align:super;
}
.amt-box .amt-val{
  font-size:clamp(52px, 10vw, 68px);
  font-weight:900;
  color:var(--brand);
  letter-spacing:-2px;
}
.amt-box .amt-period{
  font-size:16px;
  color:var(--muted);
  font-weight:600;
  margin-left:4px;
}
.plan-sub-tag{
  color:var(--muted);
  font-size:13px;
  font-weight:500;
  text-align:center;
  margin:0 auto;
}

/* Progress bar inside offer */
.offer-progress-box{
  background:#f8fafc;
  border:1px solid #e2e8f0;
  border-radius:12px;
  padding:12px 14px;
  margin:20px 0 18px;
}
.offer-progress-label{
  display:flex;
  justify-content:space-between;
  font-size:12px;
  margin-bottom:6px;
}
.offer-progress-label span{
  color:var(--muted);
}
.offer-progress-label strong{
  color:#dc2626;
  font-weight:800;
}
.progress-bar-track{
  height:8px;
  background:#e2e8f0;
  border-radius:999px;
  overflow:hidden;
}
.progress-bar-fill{
  width:89%;
  height:100%;
  background:linear-gradient(90deg, #f59e0b, #ef4444);
  border-radius:999px;
  animation:progressPulse 2s ease infinite;
}
@keyframes progressPulse{
  0%,100%{opacity:1}
  50%{opacity:.85}
}

.features-list{
  list-style:none;
  text-align:left;
  margin:20px 0 24px;
  display:grid;
  gap:11px;
}
.features-list li{
  color:var(--text);
  font-size:14.5px;
  display:flex;
  gap:10px;
  align-items:center;
  font-weight:500;
}
.f-check{
  color:var(--green);
  font-weight:900;
  background:rgba(16,185,129,.12);
  width:20px;
  height:20px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:11px;
  flex-shrink:0;
}

.fields{
  display:grid;
  gap:11px;
  margin-bottom:18px;
}
.fields input{
  width:100%;
  padding:14px 16px;
  border-radius:12px;
  border:1.5px solid var(--stroke);
  background:#f8fafc;
  color:var(--text);
  font-size:16px;
  font-family:inherit;
  outline:none;
  transition:.2s;
}
.fields input:focus{
  border-color:var(--brand);
  background:#fff;
  box-shadow:0 0 0 3px rgba(79,70,229,.12);
}
.btn-checkout{
  width:100%;
}
.note{
  color:var(--muted);
  font-size:12px;
  margin-top:12px;
  line-height:1.5;
  text-align:center;
}
.alert{
  max-width:460px;
  margin:0 auto;
  background:rgba(239,68,68,.1);
  border:1px solid rgba(239,68,68,.25);
  color:#b91c1c;
  padding:12px 16px;
  border-radius:12px;
  text-align:center;
  font-weight:600;
  font-size:14px;
}

/* FAQ */
.faq{
  max-width:720px;
  margin:28px auto 0;
  display:grid;
  gap:11px;
}
details{
  background:var(--card);
  border:1px solid var(--stroke);
  border-radius:14px;
  padding:16px 18px;
  box-shadow:0 2px 10px rgba(0,0,0,.02);
  transition:all .2s ease;
}
details:hover{
  border-color:rgba(79,70,229,.3);
}
summary{
  cursor:pointer;
  font-weight:700;
  list-style:none;
  color:var(--text);
  font-size:15px;
}
summary::-webkit-details-marker{display:none}
details p{
  color:var(--muted);
  margin-top:8px;
  line-height:1.55;
  font-size:14px;
}

/* Footer */
footer{
  border-top:1px solid var(--stroke);
  padding:26px 0 32px;
  text-align:center;
  color:var(--muted);
  font-size:13.5px;
  font-weight:500;
}

/* Mobile responsive adjustments */
@media(max-width:850px){
  .wrap{
    padding:0 16px;
  }
  .banner-inner{
    flex-direction:column;
    gap:6px;
  }
  .banner-text{
    font-size:12.5px;
  }
  .hero{
    gap:26px;
    padding:30px 0 20px;
  }
  .art{
    margin:4px auto 0;
    max-width:320px;
  }
  .art img{
    max-width:100%;
  }
  .cta-row .btn{
    width:100%;
    padding:16px 20px;
  }
  .trust{
    gap:10px 16px;
    font-size:13px;
  }
  .grid{
    grid-template-columns:1fr;
    gap:16px;
    margin-top:28px;
  }
  .card{
    padding:22px 18px;
  }
  .plan-card{
    padding:28px 18px;
    margin-top:24px;
  }
  section{
    padding:34px 0;
  }
}

/* ============================================================
   Thank You Page (Full Page Design)
============================================================ */
.ty-full-page{
  background:
    radial-gradient(900px 500px at 50% -5%, rgba(16,185,129,.14), transparent 70%),
    radial-gradient(800px 500px at 15% 30%, rgba(79,70,229,.08), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  min-height:100vh;
}

#confettiCanvas{
  position:fixed;
  top:0;
  left:0;
  width:100vw;
  height:100vh;
  pointer-events:none;
  z-index:9999;
}

.congrats-ribbon{
  background:linear-gradient(135deg, #f59e0b, #ef4444, #ec4899);
  color:#fff;
  font-size:13px;
  font-weight:900;
  letter-spacing:1px;
  text-transform:uppercase;
  padding:7px 22px;
  border-radius:999px;
  box-shadow:0 6px 20px rgba(245,158,11,.4), inset 0 1px 1px rgba(255,255,255,.5);
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin:0 auto 16px;
  animation:ribbonPulse 2s ease-in-out infinite alternate;
}
@keyframes ribbonPulse{
  0%{transform:scale(1)}
  100%{transform:scale(1.05)}
}

.ty-hero-section{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  padding:46px 0 36px;
  max-width:820px;
  margin:0 auto;
}

.ty-hero-image-box{
  margin:8px auto 16px;
}
.ty-success-icon{
  width:105px;
  height:auto;
  filter:drop-shadow(0 14px 28px rgba(16,185,129,.3));
  animation:float 6s ease-in-out infinite;
}

.ty-pid-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#f8fafc;
  border:1.5px dashed #cbd5e1;
  padding:8px 16px;
  border-radius:12px;
  font-size:13.5px;
  margin:18px auto 6px;
  word-break:break-all;
}
.ty-pid-title{
  color:var(--muted);
  font-weight:700;
  text-transform:uppercase;
  font-size:11px;
}
.ty-pid-val{
  font-family:monospace;
  font-weight:800;
  color:var(--text);
}

/* ============================================================
   Ultra-Mast WhatsApp Button Design
============================================================ */
.wa-mast-wrapper{
  width:100%;
  max-width:560px;
  margin:24px auto 8px;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.btn-wa-mast{
  width:100%;
  padding:18px 24px;
  background:linear-gradient(135deg, #25D366 0%, #1db954 45%, #128C7E 100%);
  color:#ffffff;
  border-radius:20px;
  text-decoration:none;
  display:flex;
  align-items:center;
  gap:16px;
  position:relative;
  overflow:hidden;
  border:2px solid rgba(255,255,255,.3);
  box-shadow:
    0 16px 36px rgba(37,211,102,.4),
    0 6px 14px rgba(18,140,126,.25),
    inset 0 1px 2px rgba(255,255,255,.5);
  transition:all .28s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation:waAuraPulse 3s ease-in-out infinite;
}

@keyframes waAuraPulse{
  0%,100%{
    box-shadow:0 14px 34px rgba(37,211,102,.38), 0 0 0 0 rgba(37,211,102,.5);
  }
  50%{
    box-shadow:0 20px 48px rgba(37,211,102,.6), 0 0 24px rgba(37,211,102,.45);
  }
}

/* Diagonal glossy beam of light */
.wa-beam-sweep{
  position:absolute;
  top:-60%;
  left:-100%;
  width:50%;
  height:220%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
  transform:rotate(28deg);
  pointer-events:none;
  animation:waLightSweep 3s infinite;
}
@keyframes waLightSweep{
  0%{left:-100%}
  35%,100%{left:160%}
}

.wa-mast-left{
  flex-shrink:0;
}
.wa-icon-circle{
  width:52px;
  height:52px;
  border-radius:50%;
  background:rgba(255,255,255,.22);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:inset 0 2px 4px rgba(0,0,0,.15);
  border:1px solid rgba(255,255,255,.35);
  animation:waIconPulse 2s ease-in-out infinite alternate;
}
@keyframes waIconPulse{
  0%{transform:scale(1)}
  100%{transform:scale(1.08)}
}
.wa-svg{
  filter:drop-shadow(0 2px 4px rgba(0,0,0,.15));
}

.wa-mast-center{
  display:flex;
  flex-direction:column;
  text-align:left;
  flex:1;
}
.wa-mast-tag{
  font-size:11px;
  font-weight:900;
  letter-spacing:.8px;
  color:#fef08a;
  text-transform:uppercase;
  margin-bottom:3px;
}
.wa-mast-title{
  font-size:17.5px;
  font-weight:900;
  line-height:1.22;
  letter-spacing:-0.2px;
  color:#ffffff;
  text-shadow:0 1px 2px rgba(0,0,0,.15);
}
.wa-mast-desc{
  font-size:12.5px;
  font-weight:500;
  color:rgba(255,255,255,.92);
  margin-top:3px;
  line-height:1.3;
}

.wa-mast-arrow{
  font-size:22px;
  font-weight:900;
  color:#ffffff;
  padding-left:4px;
  flex-shrink:0;
  transition:transform .2s ease;
}

.btn-wa-mast:hover{
  transform:translateY(-4px) scale(1.015);
  box-shadow:0 24px 52px rgba(37,211,102,.55);
}
.btn-wa-mast:hover .wa-mast-arrow{
  transform:translateX(5px);
}
.btn-wa-mast:active{
  transform:translateY(1px) scale(0.99);
}

.wa-live-status{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  color:var(--muted);
  font-weight:600;
  margin-top:12px;
  text-align:center;
}
.pulse-green-radar{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#22c55e;
  box-shadow:0 0 0 0 rgba(34,197,94,.7);
  animation:radarDot 1.6s infinite;
  display:inline-block;
  flex-shrink:0;
}
@keyframes radarDot{
  0%{box-shadow:0 0 0 0 rgba(34,197,94,.7)}
  70%{box-shadow:0 0 0 6px rgba(34,197,94,0)}
  100%{box-shadow:0 0 0 0 rgba(34,197,94,0)}
}

@media(max-width:540px){
  .btn-wa-mast{
    padding:16px 14px;
    gap:12px;
  }
  .wa-icon-circle{
    width:44px;
    height:44px;
  }
  .wa-svg{
    width:28px;
    height:28px;
  }
  .wa-mast-title{
    font-size:15px;
  }
  .wa-mast-desc{
    font-size:11.5px;
  }
}

/* Full Page Summary Grid */
.ty-summary-section{
  padding:36px 0;
  border-top:1px solid var(--stroke);
}
.ty-detail-card{
  padding:28px 20px;
  background:#ffffff;
  border:1.5px solid var(--stroke);
  box-shadow:0 8px 24px rgba(0,0,0,.03);
}
.ty-card-emoji{
  font-size:36px;
  margin-bottom:8px;
  filter:drop-shadow(0 4px 8px rgba(0,0,0,.08));
}

/* Timeline / Steps */
.ty-timeline-section{
  padding:40px 0 50px;
  border-top:1px solid var(--stroke);
}
.ty-steps-wrapper{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
  margin-top:32px;
}
.ty-step-item{
  background:#ffffff;
  border:1.5px solid var(--stroke);
  border-radius:18px;
  padding:24px 20px;
  display:flex;
  gap:16px;
  align-items:flex-start;
  box-shadow:0 4px 16px rgba(0,0,0,.02);
}
.ty-step-num{
  width:36px;
  height:36px;
  border-radius:10px;
  background:linear-gradient(135deg, var(--brand), #6366f1);
  color:#fff;
  font-weight:900;
  font-size:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  box-shadow:0 4px 12px rgba(79,70,229,.25);
}
.ty-step-content h4{
  font-size:16px;
  font-weight:800;
  margin-bottom:6px;
  color:var(--text);
}
.ty-step-content p{
  font-size:13.5px;
  color:var(--muted);
  line-height:1.5;
}

@media(max-width:850px){
  .ty-steps-wrapper{
    grid-template-columns:1fr;
    gap:14px;
  }
  .ty-hero-section{
    padding:30px 0 24px;
  }
}

