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

:root {
  --bg-primary: #080808;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --bg-glass: rgba(255, 255, 255, 0.04);
  --border-glass: rgba(255, 255, 255, 0.08);
  --text-primary: #f0f0f0;
  --text-secondary: #8a8a8a;
  --text-muted: #555555;
  --accent: #3b82f6;
  --accent-glow: rgba(59, 130, 246, 0.3);
  --accent-dark: #1e40af;
  --gradient-accent: linear-gradient(135deg, #2563eb, #60a5fa);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ==================== GRAIN OVERLAY ==================== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ==================== NAVBAR ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
}

.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-primary);
  text-decoration: none;
}

.nav-logo span { color: var(--accent); }

.nav-cta {
  padding: 10px 22px;
  background: var(--gradient-accent);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 25px var(--accent-glow);
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 24px 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/hero-bg.png') center center / cover no-repeat;
  filter: brightness(0.35);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(8,8,8,0.3) 0%, 
    rgba(8,8,8,0.1) 40%,
    rgba(8,8,8,0.6) 80%,
    rgba(8,8,8,1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--accent-glow); }
  50% { opacity: 0.6; box-shadow: 0 0 0 8px transparent; }
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3rem, 12vw, 5.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title .line { display: block; }
.hero-title .accent { color: var(--accent); }
.hero-title .outline {
  -webkit-text-stroke: 1.5px var(--text-primary);
  color: transparent;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 400px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--gradient-accent);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px var(--accent-glow);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: transparent;
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
  border: 1px solid var(--border-glass);
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--bg-glass);
  border-color: var(--accent);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
}

.hero-scroll .line-scroll {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

@keyframes scroll-line {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ==================== SECTION BASE ==================== */
.section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ==================== DECK CAROUSEL ==================== */
.decks-section {
  padding: 80px 0;
}

.decks-section .section-header {
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.carousel-container {
  position: relative;
  margin-top: 16px;
}

.carousel-container.dual-carousel {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.carousel-container.dual-carousel::before,
.carousel-container.dual-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.carousel-container.dual-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-primary), transparent);
}

.carousel-container.dual-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-primary), transparent);
}

.carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 10px 20px 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel.marquee-left, .carousel.marquee-right {
  overflow: visible;
  padding: 0;
  width: max-content;
}

.carousel.marquee-left {
  animation: marqueeLeft 40s linear infinite;
}

.carousel.marquee-right {
  animation: marqueeRight 40s linear infinite;
}

.carousel.marquee-left:hover, .carousel.marquee-right:hover {
  animation-play-state: paused;
}

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

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

.carousel::-webkit-scrollbar { display: none; }

.deck-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}

.deck-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--accent-glow);
}

.deck-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #0d0d0d;
}

.deck-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.deck-card:hover .deck-card-image img {
  transform: scale(1.08);
}

.deck-card-image.original-design {
  background: #f0f0f0;
  padding: 20px;
}

.deck-card-image.original-design img {
  object-fit: contain;
  mix-blend-mode: multiply;
}

.deck-card-image .tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  background: rgba(59, 130, 246, 0.9);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.deck-card-image .tag.complete-tag {
  background: rgba(34, 197, 94, 0.9); /* Vibrant green for Setup Pro */
}

.deck-card-info {
  padding: 18px;
}

.deck-card-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 6px;
  line-height: 1.3;
}

.deck-card-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.price-current {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--accent);
}

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

.deck-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 12px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
}

.deck-card:hover .deck-card-btn {
  background: var(--gradient-accent);
  border-color: transparent;
}

/* Carousel dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 10px 0 0;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.carousel-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* ==================== BRAND STORY ==================== */
.story-section {
  position: relative;
  overflow: hidden;
}

.story-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  opacity: 0.15;
  filter: blur(80px);
  pointer-events: none;
}

.story-grid {
  display: grid;
  gap: 40px;
}

.story-text p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 20px;
}

.story-text p:first-child::first-letter {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  float: left;
  line-height: 1;
  margin-right: 12px;
  color: var(--accent);
}

.story-rider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  text-align: left;
}

.rider-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent);
  flex-shrink: 0;
}

.rider-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rider-info p {
  margin-bottom: 2px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.rider-info p strong {
  color: var(--text-primary);
  font-size: 1rem;
}

.rider-info a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 6px;
}

.rider-info a:hover {
  text-decoration: underline;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.stat {
  text-align: center;
  padding: 24px 12px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.story-quote {
  margin-top: 30px;
  padding: 28px;
  background: var(--bg-glass);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.story-quote p {
  font-style: italic;
  color: var(--text-secondary) !important;
  font-size: 1.05rem !important;
  margin-bottom: 8px !important;
}

.story-quote cite {
  font-style: normal;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==================== VIDEOS CAROUSEL ==================== */
.videos-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.videos-section .section-header {
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.video-carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 20px 20px 30px;
  scrollbar-width: none;
}

.video-carousel::-webkit-scrollbar { display: none; }

.video-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  transition: var(--transition);
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #0d0d0d;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-card:hover .video-thumb img {
  transform: scale(1.05);
}

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: var(--transition);
}

.video-card:hover .video-play { opacity: 1; }

.video-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px var(--accent-glow);
  transition: var(--transition);
}

.video-play-btn svg {
  width: 22px;
  height: 22px;
  fill: white;
  margin-left: 3px;
}

.video-card:hover .video-play-btn {
  transform: scale(1.1);
}

.video-info {
  padding: 16px;
}

.video-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 6px;
}

.video-channel {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* ==================== CTA BANNER ==================== */
.cta-section {
  padding: 60px 20px;
  text-align: center;
}

.cta-box {
  max-width: 600px;
  margin: 0 auto;
  padding: 50px 30px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(96, 165, 250, 0.06));
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, var(--accent-glow) 0%, transparent 50%);
  opacity: 0.3;
  animation: rotate-glow 10s linear infinite;
}

@keyframes rotate-glow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cta-box > * { position: relative; z-index: 1; }

.cta-box .section-title { margin-bottom: 12px; }

.cta-box .section-desc {
  margin: 0 auto 28px;
  max-width: 420px;
}

/* ==================== FOOTER ==================== */
.footer {
  padding: 40px 20px;
  border-top: 1px solid var(--border-glass);
  text-align: center;
}

.footer-instagram {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-glass);
}

.ig-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.ig-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ig-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  color: var(--text-primary);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  transition: var(--transition);
}

.ig-card svg {
  color: var(--accent);
  transition: var(--transition);
}

.ig-card:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.ig-card:hover svg {
  color: white;
}

.footer-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-brand span { color: var(--accent); }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.8rem;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.footer-links a:hover { color: var(--accent); }

.footer-copy {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.footer-copy a {
  color: var(--accent);
  text-decoration: none;
}

/* ==================== ANIMATIONS ==================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Hero specific animations */
.hero-content .hero-badge { animation: fadeUp 0.8s ease 0.2s both; }
.hero-content .hero-title { animation: fadeUp 0.8s ease 0.4s both; }
.hero-content .hero-subtitle { animation: fadeUp 0.8s ease 0.6s both; }
.hero-content .hero-buttons { animation: fadeUp 0.8s ease 0.8s both; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==================== VIDEO MODAL ==================== */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(8px);
}

.video-modal.active {
  opacity: 1;
  pointer-events: all;
}

.video-modal-content {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
}

.video-modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ==================== REVIEWS ==================== */
.reviews-section {
  padding: 80px 24px;
  background-color: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.reviews-marquee-container {
  margin-top: 40px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.reviews-marquee-container::before,
.reviews-marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.reviews-marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-dark), transparent);
}

.reviews-marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-dark), transparent);
}

.reviews-marquee {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scrollReviews 40s linear infinite;
}

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

@keyframes scrollReviews {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 12px)); }
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  width: 350px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-blue);
}

.review-stars {
  display: flex;
  gap: 4px;
}

.review-stars svg {
  width: 18px;
  height: 18px;
  fill: #FBBF24; /* Yellow star */
}

.review-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  font-style: italic;
  flex-grow: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  font-family: var(--font-display);
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name {
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1rem;
}

.author-tag {
  font-size: 0.8rem;
  color: #22c55e;
  display: flex;
  align-items: center;
  gap: 4px;
}

.author-tag::before {
  content: '✓';
  font-weight: bold;
}

@media (max-width: 768px) {
  .review-card {
    width: 280px;
    padding: 24px;
  }
}

/* ==================== RESPONSIVE ==================== */
@media (min-width: 768px) {
  .section { padding: 120px 40px; }
  .decks-section, .videos-section { padding: 120px 0; }
  .decks-section .section-header, .videos-section .section-header { padding: 0 40px; }
  .carousel, .video-carousel { padding: 20px 40px 30px; }
  .deck-card { flex: 0 0 300px; }
  .video-card { flex: 0 0 340px; }
  .story-stats { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .stat-number { font-size: 2.2rem; }
  .cta-box { padding: 70px 50px; }
}

@media (min-width: 1024px) {
  .story-grid { grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
}
