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

:root {
  /* Colors */
  --primary: #00d4ff; /* Neon Cyan */
  --primary-glow: rgba(0, 212, 255, 0.4);
  --accent: #00c853; /* Vibrant Green for CTA */
  --accent-hover: #00e676;
  
  --bg-base: #060b19; /* Very deep blue/navy */
  --bg-surface: #0a1329;
  --bg-glass: rgba(10, 19, 41, 0.6);
  --bg-glass-light: rgba(255, 255, 255, 0.03);
  --border-glass: rgba(255, 255, 255, 0.08);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dark: #020617;

  /* Typography */
  --font-main: 'Outfit', sans-serif;

  /* Shadows */
  --shadow-glow: 0 0 20px var(--primary-glow);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-cta: 0 10px 25px rgba(0, 200, 83, 0.4);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-base);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(0, 212, 255, 0.05), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(0, 200, 83, 0.05), transparent 25%);
}

img, video {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-gradient {
  background: linear-gradient(135deg, #fff, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }

.text-center { text-align: center; }

/* Section Spacing */
.section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* Glassmorphism Card */
.glass-card {
  background: var(--bg-glass-light);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 24px;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-card);
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
  outline: none;
}

.btn-accent {
  background-color: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-cta);
  position: relative;
  overflow: hidden;
}

.btn-accent::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
  transform: rotate(45deg) translateX(-100%);
  animation: btnShine 3s infinite;
}

@keyframes btnShine {
  0% { transform: rotate(45deg) translateX(-100%); }
  20%, 100% { transform: rotate(45deg) translateX(100%); }
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 200, 83, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--bg-base);
  box-shadow: var(--shadow-glow);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge-pulse {
  animation: pulsePrimary 2s infinite;
}

@keyframes pulsePrimary {
  0% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(0, 212, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0); }
}

/* Hero Section */
.hero {
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
  z-index: -1;
  border-radius: 50%;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin: 24px 0;
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 30px;
}

.hero .pricing-preview {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 20px;
}

.countdown {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 200, 83, 0.1);
  border: 1px solid rgba(0, 200, 83, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 30px;
  color: var(--accent);
}

.countdown .time {
  display: flex;
  gap: 4px;
  font-family: monospace;
  font-weight: 900;
  font-size: 1.1rem;
}

.countdown .time span {
  background: var(--accent);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
}

/* Video Wrapper */
.video-wrapper {
  max-width: 350px;
  margin: 40px auto;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.video-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, var(--primary), transparent, var(--accent));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.video-wrapper video {
  width: 100%;
  display: block;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: 600px;
  margin: 0 auto 40px;
}

.stat-box {
  background: var(--bg-glass-light);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 15px;
  backdrop-filter: blur(10px);
}

.stat-box .number {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-box .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 600;
}

/* Feature Checklist */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
}

.benefit-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--primary);
  margin-top: 2px;
}

/* Marquee Testimonials */
.marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-top: 40px;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  width: 250px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
}

/* Dynamics Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 11, 25, 0.9) 0%, rgba(6, 11, 25, 0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: background 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  background: linear-gradient(to top, rgba(0, 212, 255, 0.8) 0%, rgba(6, 11, 25, 0.6) 60%, transparent 100%);
}

.gallery-overlay h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.gallery-overlay p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.feature-card {
  padding: 30px;
}

.feature-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
  transition: var(--transition-normal);
}

.feature-card:hover .feature-icon-wrapper {
  transform: scale(1.1) rotate(10deg);
  background: var(--primary);
  color: var(--bg-base);
  box-shadow: var(--shadow-glow);
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Bonus Grid */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.bonus-card {
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.bonus-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.bonus-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bonus-content h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.bonus-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  flex: 1;
}

.bonus-value {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bonus-value .strike {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.bonus-value .free {
  background: var(--accent);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

/* Pricing */
.pricing-section {
  background: var(--bg-surface);
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
  align-items: start;
}

.pricing-card {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.pricing-card.highlight {
  border: 2px solid var(--primary);
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.15);
  z-index: 2;
}

.pricing-header {
  padding: 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border-glass);
}

.pricing-card.highlight .pricing-header {
  background: linear-gradient(to right, rgba(0, 212, 255, 0.1), rgba(0, 212, 255, 0.05));
}

.pricing-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.badge-basic { background: rgba(255,255,255,0.1); }
.badge-popular { background: var(--accent); color: #fff; animation: pulseSoft 2s infinite; }

.pricing-title {
  font-size: 1.5rem;
  font-weight: 800;
}

.pricing-body {
  padding: 30px;
  text-align: center;
}

.price-box {
  margin-bottom: 30px;
}

.price-old {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.price-current {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  margin: 10px 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.price-current span.currency { font-size: 1.5rem; margin-top: 8px; margin-right: 4px; }
.price-current span.cents { font-size: 2rem; margin-top: 8px; }

.pricing-list {
  text-align: left;
  margin-bottom: 30px;
}

.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.pricing-list li svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.bonus-box {
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 12px;
  padding: 15px;
  text-align: left;
  margin-bottom: 30px;
}

.bonus-box h4 {
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.bonus-box ul li {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.bonus-box ul li svg {
  color: var(--accent);
  width: 14px;
  height: 14px;
}

/* Testimonials Standard */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.testimonial-card {
  padding: 24px;
}

.test-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.test-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.test-info h4 {
  font-size: 1rem;
  font-weight: 700;
}

.test-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.stars {
  display: flex;
  gap: 2px;
  color: #fbbf24;
  margin-bottom: 10px;
}

.stars svg { width: 14px; height: 14px; fill: currentColor; }

.test-text {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-main);
}

/* Author Section */
.author-box {
  background: var(--bg-surface);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  border: 1px solid var(--border-glass);
}

.author-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--bg-base);
  box-shadow: 0 0 0 2px var(--primary);
  flex-shrink: 0;
}

.author-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.author-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.author-badge {
  background: var(--bg-base);
  border: 1px solid var(--border-glass);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.author-badge svg { color: var(--primary); width: 16px; height: 16px; }

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: var(--bg-glass-light);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.05);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 20px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}

.faq-question svg {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  padding-bottom: 20px;
}

/* Footer */
footer {
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid var(--border-glass);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin-inline: auto; }
  .pricing-card.highlight { transform: scale(1); }
  .author-box { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
  .section-title { font-size: 2rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .author-badges { justify-content: center; }
}

/* Custom Video Player */
.custom-video-player {
  max-width: 350px;
  margin: 40px auto;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: #000;
  cursor: pointer;
}

.custom-video-player video {
  width: 100%;
  display: block;
}

.player-center-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 212, 255, 0.8);
  color: #fff;
  border: none;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.2s, opacity 0.3s;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.player-center-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.player-center-btn svg {
  width: 30px;
  height: 30px;
}

#btn-play-center svg {
  margin-left: 4px; /* offset for play icon */
}

.player-controls {
  position: absolute;
  bottom: 15px;
  right: 15px;
  display: flex;
  gap: 10px;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s;
}

.custom-video-player:hover .player-controls,
.custom-video-player.is-playing .player-controls {
  opacity: 1;
}

.player-control-btn {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.player-control-btn:hover {
  background: rgba(0, 212, 255, 0.8);
  border-color: rgba(0, 212, 255, 1);
}

.player-control-btn svg {
  width: 18px;
  height: 18px;
}

.hidden {
  display: none !important;
}

.mute-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
  cursor: pointer;
  transition: opacity 0.3s;
}

.mute-overlay-content {
  background: var(--accent);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 10px 20px rgba(0, 200, 83, 0.4);
  animation: pulseSoft 2s infinite;
  text-align: center;
}

.mute-overlay-content svg {
  width: 20px;
  height: 20px;
}

@keyframes pulseSoft {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.player-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 10;
}

.player-progress-fill {
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width 0.2s linear;
  box-shadow: 0 0 10px var(--accent);
}
