*{box-sizing:border-box}
body{
  margin:0;
  font-family:system-ui,-apple-system;
  background:#0b1020;
  color:#e5e7eb;
  line-height:1.7;
}
.wrap{
  max-width:1100px;
  margin:auto;
  padding:0 24px;
}
.site-header{
  position:sticky;
  top:0;
  background:#020617;
  border-bottom:1px solid #1e293b;
  z-index:10;
}
.site-header .wrap{
  display:flex;
  justify-content:space-between;
  align-items:center;
  height:64px;
}
.logo{
  font-weight:700;
  font-size:18px;
}
.price-tag{
  color:#22c55e;
  font-weight:600;
}

.hero{
  padding:90px 0;
}
.hero h1{
  font-size:42px;
  margin-bottom:16px;
}
.section{
  padding:80px 0;
}
.section.alt{
  background:#020617;
}
.grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}
@media(max-width:900px){
  .grid{grid-template-columns:1fr}
}
.list li{
  margin-bottom:10px;
}

.center{text-align:center}

.btn{
  padding:16px 26px;
  font-size:18px;
  border-radius:10px;
  border:none;
  cursor:pointer;
}
.btn.primary{
  background:#22c55e;
  color:#022c22;
}
.btn.secondary{
  background:#2563eb;      
  color:#ffffff;           
  border:1px solid #1d4ed8;
}

.btn.secondary:hover{
  background:#1d4ed8;
}

.order-form{
  max-width:520px;
}
.order-form input{
  width:100%;
  padding:14px;
  border-radius:8px;
  border:none;
  margin-bottom:14px;
  font-size:16px;
}

.site-footer{
  padding:40px 0;
  background:#020617;
  text-align:center;
  color:#94a3b8;
}

.floating-pay{
  position:fixed;
  left:20px;
  bottom:20px;
  padding:16px 22px;
  border-radius:12px;
  background:#22c55e;
  color:#022c22;
  border:none;
  font-size:16px;
  cursor:pointer;
  box-shadow:0 0 0 rgba(34,197,94,.7);
}
.floating-pay:hover{
  box-shadow:0 0 25px rgba(34,197,94,.8);
}

.modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.85);
  display:none;
  align-items:center;
  justify-content:center;
}
.modal-box{
  width:90%;
  max-width:800px;
  background:#000;
  border-radius:12px;
  position:relative;
}
.modal iframe{
  width:100%;
  height:450px;
}
.close{
  position:absolute;
  top:-14px;
  right:-14px;
  width:34px;
  height:34px;
  border-radius:50%;
  border:none;
  background:#ef4444;
  color:#fff;
  font-size:18px;
  cursor:pointer;
}

.header-right{
  display:flex;
  align-items:center;
  gap:12px;
}

.lang-btn{
  padding:6px 12px;
  font-size:12px;
  border-radius:8px;
  cursor:pointer;

  background:#0f172a;
  border:1px solid #334155;
  color:#e5e7eb;

  transition:all .2s ease;
}

.lang-btn:hover{
  background:#1e293b;
  border-color:#64748b;
}

.lang-btn{
  font-size:11px;
  padding:5px 10px;
  opacity:.9;
}
.lang-btn:hover{
  opacity:1;
}

.top-offer-marquee{
  background:#c62828;
  color:#fff;
  overflow:hidden;
  white-space:nowrap;
  width:100%;
}

.marquee-track{
  display:inline-flex;
  align-items:center;
  gap:40px;
  padding:8px 0;
  animation: scroll-left 20s linear infinite;
  font-size:14px;
  font-weight:600;
}

@keyframes scroll-left{
  0%   { transform: translateX(30%); }
  100% { transform: translateX(-100%); }
}

.top-offer-marquee{
  background:#c62828;
  color:#fff;
  overflow:hidden;
  white-space:nowrap;
  width:100%;
  position:fixed;
  top:0;
  left:0;
  z-index:1001;
}
.site-header{
  top:34px;
}

.top-offer-marquee{
  background:#c62828;
  color:#fff;
  overflow:hidden;
  white-space:nowrap;
}

.policy-links a:hover {
    text-decoration: underline !important;
    opacity: 1;
  }
  
  .site-footer {
    padding-bottom: 80px; 
    text-align: center;
    line-height: 1.6;
  }

.floating-pay {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sample-report-buttons{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
}

@media (max-width: 600px) {
  .sample-report-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .sample-report-buttons .btn {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
    padding: 14px 16px;
  }
}

.section-demo .wrap{
  border:1px solid #22c55e;
  border-radius:14px;
  padding:40px 24px;
}

.section-sample .wrap{
  border:1px solid #2563eb;
  border-radius:14px;
  padding:40px 24px;
}

/* ==== SAMPLE REPORT BUTTONS (OVERRIDE SAFE) ==== */

.sample-report-buttons a.btn{
  display:block;
  background:#2563eb !important;
  color:#ffffff !important;
  border:2px solid #1d4ed8 !important;
  text-align:center;
}

/* Mobile only */
@media (max-width: 640px){
  .sample-report-buttons{
    display:flex;
    flex-direction:column;
    gap:14px;
  }

  .sample-report-buttons a.btn{
    width:100%;
    max-width:100%;
    box-sizing:border-box;
    font-size:16px;
    padding:14px 16px;
  }
}

.btn{
  max-width:100%;
}

.section-demo .wrap,
.section-sample .wrap{
  border-radius:14px;
  padding:32px 20px;
}

.section-demo .wrap{
  border:2px solid #22c55e;
}

.section-sample .wrap{
  border:2px solid #2563eb;
}




.purchase-popup.show{
  opacity: 1;
  transform: translateY(0) scale(1);
  box-shadow:
    0 12px 30px rgba(0,0,0,.6),
    0 0 0 1px rgba(34,197,94,.15);
}


.lang-btn.small{
  background: #0f172a;
  border: 1px solid #334155;
  color: #e5e7eb;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
  opacity: .9;
  transition: all .2s ease;
}

.lang-btn.small:hover{
  opacity: 1;
  background: #1e293b;
  border-color: #64748b;
}


.bottom-lang-wrap{
  position:fixed;
  right:20px;
  bottom:20px;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:6px;
  z-index:9999;
}

.purchase-popup{
background:#020617;
color:#e5e7eb;
font-size:13px;
padding:10px 14px;
border-radius:10px;
border:1px solid #1e293b;
opacity:0;
transform:translateY(12px);
box-shadow:none;
margin-bottom:4px;
transition:opacity .35s ease,transform .35s ease,box-shadow .35s ease;
}

.purchase-popup.show{
opacity:1;
transform:translateY(0);
box-shadow:0 12px 30px rgba(0,0,0,.6),0 0 0 1px rgba(34,197,94,.2);
}

#popupName{
  color:#22c55e;
  font-weight:600;
}

@media (max-width:640px){
  .purchase-popup{
    font-size:12px;
    padding:9px 12px;
  }
}

.email-note {
  background: linear-gradient(135deg, #f8f9ff, #eef1ff);
  border-left: 5px solid #4f46e5;
  padding: 16px 18px;
  border-radius: 10px;
  margin-bottom: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.email-note h3 {
  margin: 0 0 6px 0;
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
}

.email-note p {
  margin: 4px 0;
  font-size: 14px;
  color: #374151;
  line-height: 1.5;
}

.email-note p.hindi {
  font-size: 14px;
  color: #111827;
}

.training-note{
  font-size:13px;
  color:#666;
  margin:6px 0 14px;
}

.laptop-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.55);
  backdrop-filter:blur(6px);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
  animation:fadeIn 0.3s ease;
}

.laptop-box{
  background:#ffffff;
  width:90%;
  max-width:460px;
  padding:35px 30px;
  border-radius:18px;
  box-shadow:0 25px 60px rgba(0,0,0,0.2);
  text-align:center;
  animation:slideUp 0.35s ease;
}

.laptop-box h3{
  margin-bottom:15px;
  font-size:22px;
  font-weight:600;
}

.laptop-box p{
  font-size:15px;
  line-height:1.7;
  color:#444;
  margin-bottom:25px;
}

.popup-actions{
  display:flex;
  gap:12px;
  justify-content:center;
}

.popup-btn{
  padding:10px 22px;
  border-radius:8px;
  border:none;
  font-size:14px;
  cursor:pointer;
  transition:0.2s ease;
}

.popup-btn.primary{
  background:#111;
  color:#fff;
}

.popup-btn.primary:hover{
  background:#333;
}

.popup-btn.secondary{
  background:#eee;
}

.popup-btn.secondary:hover{
  background:#ddd;
}

@keyframes fadeIn{
  from{opacity:0;}
  to{opacity:1;}
}

@keyframes slideUp{
  from{transform:translateY(20px);opacity:0;}
  to{transform:translateY(0);opacity:1;}
}
