/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0a0a0f;
  color: #e2e8f0;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* === Utilities === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-dark { background: #0f0f18; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-header h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 16px; color: #fff; }
.section-header p { font-size: 1.125rem; color: #94a3b8; }
.badge {
  display: inline-block; padding: 6px 16px; border-radius: 999px;
  background: rgba(139, 92, 246, 0.15); color: #a78bfa;
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.05em; margin-bottom: 16px;
}
.gradient-text {
  background: linear-gradient(135deg, #a78bfa, #f472b6, #fb923c);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px; border-radius: 10px; font-weight: 600;
  font-size: 0.95rem; transition: transform 0.4s cubic-bezier(0.22, 1.8, 0.36, 1), box-shadow 0.4s ease, background 0.2s ease; cursor: pointer; border: none;
}
.btn-primary { background: linear-gradient(135deg, #7c3aed, #a855f7); color: #fff; }
.btn-primary:hover { background: linear-gradient(135deg, #6d28d9, #9333ea); transform: scale(1.06); box-shadow: 0 14px 36px rgba(124, 58, 237, 0.45); }
.btn-outline { border: 2px solid #334155; color: #e2e8f0; background: transparent; }
.btn-outline:hover { border-color: #7c3aed; color: #a78bfa; transform: scale(1.06); box-shadow: 0 12px 30px rgba(124, 58, 237, 0.18); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* === Navigation === */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10, 10, 15, 0.85); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(51, 65, 85, 0.3);
  transition: all 0.3s;
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.2rem; color: #fff; }
.nav-logo-img { width: 40px; height: 40px; border-radius: 8px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: #94a3b8; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.mobile-menu-btn {
  display: none; flex-direction: column; gap: 5px; background: none;
  border: none; cursor: pointer; padding: 4px;
}
.mobile-menu-btn span { display: block; width: 24px; height: 2px; background: #e2e8f0; border-radius: 2px; transition: all 0.3s; }

/* === Hero === */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding-top: 72px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(124, 58, 237, 0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(244, 114, 182, 0.08) 0%, transparent 50%);
}
.hero-content { display: flex; align-items: center; gap: 60px; position: relative; z-index: 1; }
.hero-text { flex: 1; }
.hero-text h1 { font-size: 3.5rem; font-weight: 900; line-height: 1.1; margin-bottom: 24px; color: #fff; }
.hero-subtitle { font-size: 1.2rem; color: #94a3b8; max-width: 560px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 48px; }
.stat { display: flex; flex-direction: column; }
.stat-number { font-size: 2rem; font-weight: 800; color: #a78bfa; }
.stat-label { font-size: 0.85rem; color: #64748b; font-weight: 500; }
.hero-image { flex: 0 0 400px; display: flex; justify-content: center; }
.hero-mascot {
  width: 380px; height: 380px; object-fit: contain;
  filter: drop-shadow(0 0 60px rgba(124, 58, 237, 0.3));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* === Features Grid === */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card {
  background: #12121c; border: 1px solid #1e1e2e; border-radius: 16px;
  padding: 32px; transition: transform 0.5s cubic-bezier(0.22, 1.8, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1.8, 0.36, 1), border-color 0.3s ease;
}
.feature-card:hover { border-color: #7c3aed; transform: scale(1.05); box-shadow: 0 24px 50px rgba(124, 58, 237, 0.2), 0 0 0 1px rgba(124, 58, 237, 0.15); }
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px; display: flex;
  align-items: center; justify-content: center; margin-bottom: 20px;
}
.feature-icon svg { width: 24px; height: 24px; }
.icon-purple { background: rgba(139, 92, 246, 0.15); color: #a78bfa; }
.icon-red { background: rgba(239, 68, 68, 0.15); color: #f87171; }
.icon-orange { background: rgba(249, 115, 22, 0.15); color: #fb923c; }
.icon-green { background: rgba(34, 197, 94, 0.15); color: #4ade80; }
.icon-blue { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }
.icon-cyan { background: rgba(6, 182, 212, 0.15); color: #22d3ee; }
.icon-yellow { background: rgba(234, 179, 8, 0.15); color: #facc15; }
.icon-pink { background: rgba(236, 72, 153, 0.15); color: #f472b6; }
.feature-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: #fff; }
.feature-card p { font-size: 0.9rem; color: #94a3b8; line-height: 1.6; }

/* === Integrations Grid === */
.integrations-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.integration-card {
  background: #12121c; border: 1px solid #1e1e2e; border-radius: 16px;
  padding: 32px 24px; text-align: center; transition: transform 0.5s cubic-bezier(0.22, 1.8, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1.8, 0.36, 1), border-color 0.3s ease;
}
.integration-card:hover { border-color: #7c3aed; transform: scale(1.06); box-shadow: 0 24px 50px rgba(124, 58, 237, 0.2), 0 0 0 1px rgba(124, 58, 237, 0.15); }
.integration-logo { width: 64px; height: 64px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; }
.integration-logo svg { width: 100%; height: 100%; }
.integration-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: #fff; }
.integration-card p { font-size: 0.85rem; color: #94a3b8; line-height: 1.6; }

/* === Steps === */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.step { text-align: center; cursor: pointer; }
.step-number {
  width: 56px; height: 56px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; margin: 0 auto 20px;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  font-size: 1.4rem; font-weight: 800; color: #fff;
}
.step h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: #fff; }
.step p { font-size: 0.9rem; color: #94a3b8; }

/* === Admin Grid === */
.admin-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.admin-card {
  background: #12121c; border: 1px solid #1e1e2e; border-radius: 16px;
  padding: 28px; transition: transform 0.5s cubic-bezier(0.22, 1.8, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1.8, 0.36, 1), border-color 0.3s ease;
}
.admin-card:hover { border-color: #7c3aed; transform: scale(1.05); box-shadow: 0 20px 45px rgba(124, 58, 237, 0.18), 0 0 0 1px rgba(124, 58, 237, 0.12); }
.admin-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: #fff; }
.admin-card p { font-size: 0.9rem; color: #94a3b8; }

/* === Tech Grid === */
.tech-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.tech-card {
  background: #12121c; border: 1px solid #1e1e2e; border-radius: 16px; padding: 32px; cursor: pointer;
}
.tech-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 16px; color: #a78bfa; }
.tech-card ul { display: flex; flex-direction: column; gap: 10px; }
.tech-card li { font-size: 0.9rem; color: #94a3b8; padding-left: 20px; position: relative; }
.tech-card li::before { content: '→'; position: absolute; left: 0; color: #7c3aed; }

/* === Pricing === */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }
.pricing-card {
  background: #12121c; border: 1px solid #1e1e2e; border-radius: 20px;
  padding: 40px 32px; text-align: center; position: relative; transition: transform 0.5s cubic-bezier(0.22, 1.8, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1.8, 0.36, 1), border-color 0.3s ease;
}
.pricing-card.featured { border-color: #7c3aed; transform: scale(1.05); }
.pricing-card:hover { transform: scale(1.05); box-shadow: 0 24px 60px rgba(124, 58, 237, 0.25); border-color: #7c3aed; }
.pricing-card.featured:hover { transform: scale(1.1); }
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #7c3aed, #a855f7); color: #fff;
  padding: 6px 20px; border-radius: 999px; font-size: 0.8rem; font-weight: 600;
}
.pricing-card h3 { font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.price { font-size: 3rem; font-weight: 900; color: #fff; margin-bottom: 8px; }
.price span { font-size: 1rem; font-weight: 500; color: #64748b; }
.deployment-fee {
  font-size: 0.9rem; color: #a78bfa; font-weight: 600;
  margin-bottom: 12px; padding: 8px 16px;
  background: rgba(139, 92, 246, 0.1); border-radius: 8px;
  display: inline-block;
}
.pricing-desc { font-size: 0.9rem; color: #94a3b8; margin-bottom: 28px; }
.pricing-card ul { text-align: left; margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.pricing-card li { font-size: 0.9rem; color: #cbd5e1; padding-left: 24px; position: relative; }
.pricing-card li::before { content: '✓'; position: absolute; left: 0; color: #a78bfa; font-weight: 700; }

/* === CTA === */
.cta-block { text-align: center; max-width: 600px; margin: 0 auto; }
.cta-logo { width: 100px; height: 100px; border-radius: 20px; margin: 0 auto 24px; }
.cta-block h2 { font-size: 2.5rem; font-weight: 800; color: #fff; margin-bottom: 16px; }
.cta-block p { font-size: 1.1rem; color: #94a3b8; margin-bottom: 32px; }
.cta-actions { margin-bottom: 24px; }
.cta-note { font-size: 0.85rem; color: #64748b; }
.cta-note strong { color: #a78bfa; }

/* === Footer === */
footer { background: #080810; border-top: 1px solid #1e1e2e; padding: 48px 0 32px; }
.footer-content { text-align: center; }
.footer-brand { margin-bottom: 24px; }
.footer-logo { width: 48px; height: 48px; border-radius: 10px; margin: 0 auto 12px; }
.footer-brand p { font-size: 0.9rem; color: #64748b; }
.footer-links { display: flex; justify-content: center; gap: 32px; margin-bottom: 32px; }
.footer-links a { font-size: 0.9rem; color: #94a3b8; transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); }
.footer-links a:hover { color: #a78bfa; transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid #1e1e2e; padding-top: 24px; }
.footer-bottom p { font-size: 0.8rem; color: #475569; }

/* === Responsive === */
@media (max-width: 1024px) {
  .features-grid, .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .integrations-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .hero-text h1 { font-size: 2.8rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; background: #0a0a0f; border-bottom: 1px solid #1e1e2e; flex-direction: column; padding: 24px; gap: 16px; }
  .nav-links.active { display: flex; }
  .mobile-menu-btn { display: flex; }
  .hero-content { flex-direction: column; text-align: center; padding-top: 40px; }
  .hero-text h1 { font-size: 2.2rem; }
  .hero-subtitle { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { flex: none; }
  .hero-mascot { width: 260px; height: 260px; }
  .features-grid, .admin-grid, .tech-grid, .pricing-grid, .integrations-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .section { padding: 60px 0; }
  .section-header h2 { font-size: 1.8rem; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
}

/* Scroll to Top Button */
.scroll-top-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #7c3aed;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(80px) scale(0.6);
  transition: background 0.2s;
  z-index: 1000;
}
.scroll-top-btn.visible {
  pointer-events: auto;
  animation: scrollBtnIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.scroll-top-btn.hiding {
  animation: scrollBtnOut 0.4s cubic-bezier(0.55, 0, 1, 0.45) forwards;
}
.scroll-top-btn:hover {
  background: #6d28d9;
  transform: scale(1.15);
  box-shadow: 0 10px 36px rgba(124, 58, 237, 0.65);
}
@keyframes scrollBtnIn {
  0%   { opacity: 0; transform: translateY(80px) scale(0.6); }
  50%  { opacity: 1; transform: translateY(-8px) scale(1.05); }
  70%  { transform: translateY(4px) scale(0.98); }
  85%  { transform: translateY(-2px) scale(1.01); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes scrollBtnOut {
  0%   { opacity: 1; transform: translateY(0) scale(1); }
  30%  { opacity: 1; transform: translateY(-10px) scale(1.05); }
  100% { opacity: 0; transform: translateY(80px) scale(0.6); }
}

/* Demo Form */
.demo-form { max-width: 600px; margin: 30px auto 0; text-align: left; }
.demo-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.demo-field label { display: block; font-size: 0.8rem; color: #94a3b8; margin-bottom: 6px; }
.demo-field input, .demo-field select, .demo-field textarea {
  width: 100%; background: rgba(15, 23, 42, 0.8); border: 1px solid #334155; border-radius: 8px;
  padding: 10px 14px; color: #fff; font-size: 0.9rem; font-family: inherit;
  transition: border-color 0.2s;
}
.demo-field input:focus, .demo-field select:focus, .demo-field textarea:focus { outline: none; border-color: #7c3aed; }
.demo-field.full-width { grid-column: 1 / -1; }
.demo-form .btn { margin-top: 10px; display: block; margin-left: auto; margin-right: auto; }
.demo-status { text-align: center; padding: 12px; border-radius: 8px; margin-bottom: 16px; font-size: 0.9rem; }
.demo-status.success { background: rgba(34, 197, 94, 0.15); color: #4ade80; border: 1px solid rgba(34, 197, 94, 0.3); }
.demo-status.error { background: rgba(239, 68, 68, 0.15); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.3); }
@media (max-width: 600px) { .demo-form-grid { grid-template-columns: 1fr; } }

/* Scroll reveal - uses classes so hover transforms aren't overridden */
.scroll-reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.scroll-reveal.visible { opacity: 1; transform: none; }
.scroll-reveal.visible:hover { transition: transform 0.5s cubic-bezier(0.22, 1.8, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1.8, 0.36, 1), border-color 0.3s ease; }
.feature-card.scroll-reveal.visible:hover { transform: scale(1.05); border-color: #7c3aed; box-shadow: 0 24px 50px rgba(124, 58, 237, 0.2), 0 0 0 1px rgba(124, 58, 237, 0.15); }
.integration-card.scroll-reveal.visible:hover { transform: scale(1.06); border-color: #7c3aed; box-shadow: 0 24px 50px rgba(124, 58, 237, 0.2), 0 0 0 1px rgba(124, 58, 237, 0.15); }
.admin-card.scroll-reveal.visible:hover { transform: scale(1.05); border-color: #7c3aed; box-shadow: 0 20px 45px rgba(124, 58, 237, 0.18), 0 0 0 1px rgba(124, 58, 237, 0.12); }
.tech-card.scroll-reveal.visible:hover { transform: scale(1.05); border-color: #7c3aed; box-shadow: 0 20px 45px rgba(124, 58, 237, 0.18), 0 0 0 1px rgba(124, 58, 237, 0.12); }
.pricing-card.scroll-reveal.visible:hover { transform: scale(1.05); border-color: #7c3aed; box-shadow: 0 24px 60px rgba(124, 58, 237, 0.25); }
.pricing-card.featured.scroll-reveal.visible:hover { transform: scale(1.1); }
.step.scroll-reveal.visible:hover { transform: scale(1.04); }

/* Ambient backgrounds */
.hero-ambient {
  position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(124, 58, 237, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(168, 85, 247, 0.08) 0%, transparent 50%);
  animation: ambientShift 12s ease-in-out infinite alternate;
}
.section-ambient {
  position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 30% 70%, rgba(124, 58, 237, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 70% 30%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
  animation: ambientShift 15s ease-in-out infinite alternate;
}
.video-ambient {
  position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none;
  background:
    radial-gradient(ellipse 90% 70% at 50% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(168, 85, 247, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(99, 102, 241, 0.06) 0%, transparent 50%);
  animation: ambientShift 10s ease-in-out infinite alternate;
}
.section-dark, .video-section { position: relative; overflow: hidden; }
@keyframes ambientShift {
  0% { opacity: 0.7; transform: scale(1) translateX(0); }
  50% { opacity: 1; transform: scale(1.05) translateX(10px); }
  100% { opacity: 0.8; transform: scale(1.02) translateX(-10px); }
}

/* Video section */
.video-wrapper { max-width: 900px; margin: 0 auto; }
.video-container {
  position: relative; width: 100%; padding-bottom: 56.25%; /* 16:9 */
  border-radius: 16px; overflow: hidden;
  border: 1px solid #1e1e2e;
  background: #0a0a0f;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(124, 58, 237, 0.1);
}
.video-container iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.video-placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; cursor: pointer;
  background: linear-gradient(135deg, rgba(12, 12, 20, 0.95), rgba(20, 15, 35, 0.95));
  transition: all 0.4s ease;
}
.video-placeholder:hover { background: linear-gradient(135deg, rgba(20, 15, 35, 0.95), rgba(30, 20, 50, 0.95)); }
.video-play-btn {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4);
  transition: transform 0.5s cubic-bezier(0.22, 1.8, 0.36, 1), box-shadow 0.4s ease;
}
.video-placeholder:hover .video-play-btn {
  transform: scale(1.12);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.6);
}
.video-cta { color: #94a3b8; font-size: 0.9rem; margin-top: 16px; }

/* Parallax Video Gallery */
.video-parallax {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a0a12;
}
.video-parallax::before,
.video-parallax::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  pointer-events: none;
}
.video-parallax::before {
  width: 60%;
  height: 60%;
  top: -10%;
  left: -10%;
}
.video-parallax::after {
  width: 50%;
  height: 50%;
  bottom: -10%;
  right: -10%;
}
/* All sections use the same purple palette */
.video-parallax::before {
  background: #7c3aed;
  animation: orb-drift-1 6s ease-in-out infinite alternate;
}
.video-parallax::after {
  background: #a855f7;
  animation: orb-drift-2 8s ease-in-out infinite alternate;
}
@keyframes orb-drift-1 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  100% { transform: translate(30%, 20%) scale(1.3); opacity: 0.5; }
}
@keyframes orb-drift-2 {
  0% { transform: translate(0, 0) scale(1.2); opacity: 0.35; }
  100% { transform: translate(-25%, -15%) scale(0.9); opacity: 0.5; }
}
.video-parallax-content {
  position: relative;
  text-align: center;
  max-width: 900px;
  padding: 60px 24px;
  width: 100%;
}
.video-parallax-content h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 32px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.video-parallax-content .video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(124, 58, 237, 0.2);
  transition: transform 0.5s cubic-bezier(0.22, 1.8, 0.36, 1), box-shadow 0.5s ease;
}
.video-parallax-content .video-embed:hover {
  transform: scale(1.02);
  box-shadow: 0 40px 100px rgba(124, 58, 237, 0.3), 0 0 0 1px rgba(124, 58, 237, 0.4);
}
.video-parallax-content .video-embed video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  cursor: pointer;
}
.video-parallax-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.3), transparent);
}
@media (max-width: 768px) {
  .video-parallax { min-height: 60vh; }
  .video-parallax-content h2 { font-size: 1.6rem; }
  .video-parallax-bg { background-attachment: scroll; }
}

/* Video mute toggle */
.video-mute-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 3;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}
.video-mute-btn:hover {
  background: rgba(124, 58, 237, 0.6);
  border-color: rgba(124, 58, 237, 0.5);
  transform: scale(1.1);
}
