/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: #0a0a0f; color: #fff; overflow-x: hidden; }

/* ===== NAVBAR ===== */
#navbar {
  background: transparent;
  transition: all 0.4s ease;
}
#navbar.scrolled {
  background: rgba(10, 10, 20, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  color: #fff;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 24px rgba(124,58,237,0.4);
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-size: 16px;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(124,58,237,0.6);
}
.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer;
  text-decoration: none;
  font-size: 16px;
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}
.btn-nav {
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  color: #fff;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 14px;
  transition: all 0.3s;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(124,58,237,0.35);
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(124,58,237,0.5); }

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: linear-gradient(135deg, #a78bfa, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-gold {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-glow-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.25) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}
.hero-glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.2) 0%, transparent 70%);
  bottom: -50px;
  right: 10%;
  pointer-events: none;
  animation: glowPulse 8s ease-in-out infinite reverse;
}
@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.35);
  font-size: 13px;
  font-weight: 600;
  color: #a78bfa;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #a78bfa;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* Floating mockup */
.hero-mockup-wrap {
  position: relative;
  animation: floatY 7s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
}
.mockup-browser {
  background: #1a1a2e;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.08), 0 0 60px rgba(124,58,237,0.15);
}
.mockup-bar {
  background: #111128;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span {
  width: 11px; height: 11px; border-radius: 50%;
}
.mockup-dots span:nth-child(1) { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #febc2e; }
.mockup-dots span:nth-child(3) { background: #28c840; }
.mockup-url-bar {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-family: monospace;
}
.mockup-screen {
  height: 340px;
  overflow: hidden;
}
.mockup-screen iframe {
  width: 100%;
  height: 100%;
  border: none;
  transform: scale(0.85);
  transform-origin: top left;
  width: 117.6%;
  height: 117.6%;
  pointer-events: none;
}

/* ===== TRUST BADGES ===== */
.trust-bar {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.trust-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(124,58,237,0.25), rgba(37,99,235,0.25));
  border: 1px solid rgba(124,58,237,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

/* ===== LOGO STRIP ===== */
.logo-strip-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}
.logo-strip-track {
  display: flex;
  gap: 48px;
  align-items: center;
  animation: stripScroll 28s linear infinite;
  width: max-content;
}
.logo-strip-track:hover { animation-play-state: paused; }
.logo-strip-track img {
  height: 48px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  background: rgba(255,255,255,0.95);
  border-radius: 10px;
  padding: 6px 14px;
  opacity: 0.85;
  transition: all 0.35s;
  flex-shrink: 0;
}
.logo-strip-track img:hover { opacity: 1; transform: scale(1.08); box-shadow: 0 4px 20px rgba(124,58,237,0.25); }
@keyframes stripScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== SECTIONS ===== */
.section-light { background: #ffffff; color: #0f172a; }
.section-dark { background: #0a0a0f; color: #fff; }
.section-mid { background: #0f0f1a; color: #fff; }
.section-pad { padding: 100px 0; }

/* Section label */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.label-purple { background: rgba(124,58,237,0.15); border: 1px solid rgba(124,58,237,0.3); color: #a78bfa; }
.label-blue   { background: rgba(37,99,235,0.15);  border: 1px solid rgba(37,99,235,0.3);  color: #60a5fa; }
.label-green  { background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.25); color: #34d399; }
.label-dark   { background: rgba(0,0,0,0.06);       border: 1px solid rgba(0,0,0,0.1);       color: #475569; }

/* ===== PAIN CARDS ===== */
.pain-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.pain-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,0.05), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}
.pain-card:hover { border-color: rgba(124,58,237,0.35); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(124,58,237,0.12); }
.pain-card:hover::before { opacity: 1; }
.pain-emoji { font-size: 42px; margin-bottom: 18px; display: block; }
.pain-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; color: #fff; }
.pain-card p { color: rgba(255,255,255,0.55); line-height: 1.75; font-size: 15px; }

/* ===== COMPARISON TABLE ===== */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 20px;
  overflow: hidden;
}
.compare-table th {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
}
.compare-table th:first-child { text-align: left; }
.compare-table th.col-us {
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  color: #fff;
  position: relative;
}
.compare-table th.col-them { background: #1a1a2e; color: rgba(255,255,255,0.5); }
.compare-table td {
  padding: 16px 24px;
  font-size: 14px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.compare-table td:first-child { text-align: left; color: rgba(255,255,255,0.7); font-weight: 500; }
.compare-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.compare-table td.col-us { color: #a78bfa; font-weight: 700; background: rgba(124,58,237,0.06); }
.compare-table td.col-them { color: rgba(255,255,255,0.3); }
.check-yes { color: #34d399; font-weight: 700; font-size: 16px; }
.check-no  { color: rgba(255,255,255,0.2); font-size: 18px; }

/* ===== FEATURE LIST ===== */
.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 15px;
  font-weight: 500;
  color: #1e293b;
}
.feature-item:last-child { border-bottom: none; }
.feature-check {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Stat cards (light section) */
.stat-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.stat-card:hover { box-shadow: 0 16px 48px rgba(124,58,237,0.1); transform: translateY(-4px); border-color: #c4b5fd; }
.stat-num { font-size: 38px; font-weight: 900; }
.stat-lbl { font-size: 14px; font-weight: 600; color: #475569; margin-top: 4px; }
.stat-sub { font-size: 12px; color: #94a3b8; margin-top: 2px; }

/* ===== DEMO BROWSER ===== */
.demo-browser-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 60px 120px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.07), 0 0 80px rgba(124,58,237,0.1);
}
.demo-browser-bar {
  background: #111128;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.demo-url {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 7px;
  padding: 5px 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  font-family: monospace;
  display: flex;
  align-items: center;
  gap: 6px;
}
.demo-screen { height: 500px; background: #fff; }
.demo-screen iframe { width: 100%; height: 100%; border: none; }

/* ===== HOW IT WORKS ===== */
.step-wrap { display: flex; align-items: flex-start; gap: 0; }
@media(max-width:768px) { .step-wrap { flex-direction: column; } .step-line { width: 2px; height: 32px; margin: 0 0 0 24px; } }
.step-box { flex: 1; }
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(124,58,237,0.4);
  margin-bottom: 16px;
}
.step-line { flex-shrink: 0; width: 60px; height: 2px; background: linear-gradient(90deg, #7c3aed, #2563eb); margin-top: 26px; opacity: 0.4; }
.step-box h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.step-box p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ===== PRICING CARD ===== */
.pricing-card {
  background: #0f0f1a;
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 28px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(124,58,237,0.1), inset 0 1px 0 rgba(255,255,255,0.05);
  max-width: 560px;
  margin: 0 auto;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 300px; height: 200px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.2), transparent 70%);
  pointer-events: none;
}
.pricing-popular-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 20px;
  border-radius: 0 0 12px 12px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  justify-content: center;
  margin: 24px 0 8px;
}
.price-dollar { font-size: 28px; font-weight: 700; color: rgba(255,255,255,0.7); }
.price-amount { font-size: 80px; font-weight: 900; line-height: 1; color: #fff; }
.price-term { font-size: 18px; color: rgba(255,255,255,0.4); }
.pricing-features { display: flex; flex-direction: column; gap: 10px; margin: 28px 0; }
.pricing-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
}
.pf-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(52,211,153,0.15);
  border: 1px solid rgba(52,211,153,0.3);
  color: #34d399;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.money-back-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(52,211,153,0.08);
  border: 1px solid rgba(52,211,153,0.2);
  border-radius: 12px;
  padding: 12px 16px;
  margin-top: 20px;
  font-size: 13px;
  color: #34d399;
  font-weight: 600;
}

/* PayPal / Razorpay buttons */
.payment-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
}
.payment-divider span { font-size: 12px; color: rgba(255,255,255,0.25); white-space: nowrap; }
.payment-divider::before, .payment-divider::after {
  content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.08);
}
#paypal-button-container .paypal-buttons { border-radius: 12px !important; overflow: hidden; }
#razorpay-btn {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
}
#razorpay-btn:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.22); }

/* ===== FAQ ===== */
.faq-item {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s;
  background: rgba(255,255,255,0.02);
}
.faq-item:hover { border-color: rgba(124,58,237,0.3); }
.faq-item.open { border-color: rgba(124,58,237,0.35); background: rgba(124,58,237,0.04); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
}
.faq-arrow {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.2);
  color: #a78bfa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
  font-size: 16px;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); background: rgba(124,58,237,0.25); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 24px;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1.8;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }

/* ===== VIDEO CARDS ===== */
.video-card {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  transition: border-color 0.3s, transform 0.3s;
}
.video-card:hover { border-color: rgba(124,58,237,0.3); transform: translateY(-4px); }
.video-embed {
  position: relative;
  padding-top: 56.25%;
  background: #000;
}
.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-info {
  padding: 20px;
}
.video-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 6px;
}
.video-info p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* ===== CONTACT FORM ===== */
.contact-form-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s, background 0.3s;
  outline: none;
  box-sizing: border-box;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.2);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(124,58,237,0.5);
  background: rgba(124,58,237,0.05);
}
.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* ===== FINAL CTA ===== */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: #0a0a0f;
}
.cta-glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.2) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-border-box {
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 32px;
  padding: 80px 48px;
  background: rgba(124,58,237,0.04);
  backdrop-filter: blur(10px);
  position: relative;
  text-align: center;
}

/* ===== FOOTER ===== */
footer {
  background: #060609;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 32px;
}
footer a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 14px; transition: color 0.2s; }
footer a:hover { color: rgba(255,255,255,0.9); }

/* ===== VIDEO FACADE (click-to-play YouTube) ===== */
.video-facade { cursor: pointer; position: relative; }
.video-facade img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: none; border: none; cursor: pointer; padding: 0;
  opacity: 0.85; transition: opacity 0.2s, transform 0.2s;
}
.video-facade:hover .video-play-btn { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }

/* ===== ANIMATIONS (fade-up for GSAP) ===== */
.fade-up { opacity: 0; transform: translateY(40px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-headline { font-size: 38px !important; }
  .pricing-card { padding: 32px 24px; }
  .cta-border-box { padding: 48px 24px; }
  .compare-table { font-size: 12px; }
  .compare-table th, .compare-table td { padding: 12px 10px; }
}
