* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Rajdhani', sans-serif;
  background: #0a0a1a;
  color: #fff;
  height: 100vh;
  overflow: hidden;
}

/* VIDEO BACKGROUND */
.video-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 0;
}

#bgVideo {
  width: 100%; height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.50);
}

/* PAGE LAYOUT */
.page-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  gap: 18px;
  padding: 20px;
}

/* LOGO */
.header { text-align: center; }
.logo { max-height: 80px; object-fit: contain; }

.page-title {
  text-align: center;
  line-height: 1;
}

.title-main {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: #ffffff;
  text-shadow: 0 0 30px rgba(255,106,0,0.8),
               0 0 60px rgba(255,106,0,0.4);
}

.title-sub {
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: #ff6a00;
  text-shadow: 0 0 20px rgba(255,106,0,0.9);
  margin-top: 6px;
}

/* HERO IMAGE */
.hero-img {
  max-height: 42vh;
  max-width: 90vw;
  object-fit: contain;
  border-radius: 8px;
}

/* BENEFITS */
.benefits {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.benefit {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 0 12px rgba(0,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.benefit-icon {
  color: #00ffff;
  font-size: 1.1rem;
  filter: drop-shadow(0 0 6px #00ffff);
}

/* CTA BUTTON */
.cta-wrapper { text-align: center; }

.cta-btn {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #ff6a00, #ee0979);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 18px 60px;
  font-size: 1.3rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 25px rgba(255,106,0,0.5);
  overflow: visible;
}

.cta-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 0 45px rgba(255,106,0,0.85);
}

/* PULSE GLOW RINGS */
.cta-btn::before,
.cta-btn::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: 50px;
  border: 2px solid rgba(255,106,0,0.6);
  animation: pulseRing 1.8s ease-out infinite;
  pointer-events: none;
}

.cta-btn::after {
  animation-delay: 0.6s;
}

@keyframes pulseRing {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* SMALL CTA VARIANT */
.cta-btn--small {
  padding: 12px 40px;
  font-size: 1rem;
  letter-spacing: 2px;
}

/* STICKY BAR */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0;
  width: 100%;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.sticky-bar.visible {
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 768px) {
  body { overflow-y: auto; }
  .hero-img { max-height: 32vh; }
  .benefits { flex-direction: column; gap: 12px; }
  .benefit { font-size: 0.9rem; }
  .cta-btn { font-size: 1rem; padding: 14px 36px; letter-spacing: 1px; }
  .sticky-bar { transform: translateY(0); }
}
