/* ============================================
   StreamVault - HTML/CSS/JS Version
   Modern dark theme with shadcn/ui inspiration
   ============================================ */

/* CSS Variables */
:root {
  /* Colors */
  --bg-primary: #000000;
  --bg-secondary: rgba(255, 255, 255, 0.03);
  --bg-hover: rgba(255, 255, 255, 0.05);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.6);
  --text-muted: rgba(255, 255, 255, 0.4);
  --border-color: rgba(255, 255, 255, 0.1);
  --border-hover: rgba(255, 255, 255, 0.2);
  
  /* Brand Colors */
  --netflix: #E50914;
  --spotify: #1DB954;
  --crunchyroll: #F47521;
  --apple: #FA2D48;
  --whatsapp: #25D366;
  
  /* Animation Easings */
  --ease-expo-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Spacing */
  --container-max: 1280px;
  --section-padding: 6rem;
  
  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 1400px;
  z-index: 1000;
  transition: all 0.4s var(--ease-expo-out);
}

.nav.scrolled {
  top: 0.5rem;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  transition: all 0.4s var(--ease-expo-out);
}

.nav.scrolled .nav-container {
  padding: 0.75rem 1.5rem;
  background: rgba(0, 0, 0, 0.9);
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: letter-spacing 0.3s ease;
}

.nav-logo:hover {
  letter-spacing: 0.02em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links li {
  position: relative;
}

/* Hide inactive language links in nav */
.nav-links .nav-link[data-lang] {
  display: none;
}

.nav-links .nav-link[data-lang].active {
  display: block;
}

/* ============================================
   DROPDOWN MENU
   ============================================ */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

.dropdown-toggle:hover {
  color: var(--text-primary);
}

.dropdown-toggle svg {
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 180px;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease-expo-out);
  z-index: 1001;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}

.dropdown-item .platform-icon {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: white;
}

.dropdown-item.netflix .platform-icon { background: #E50914; }
.dropdown-item.spotify .platform-icon { background: #1DB954; }
.dropdown-item.crunchyroll .platform-icon { background: #F47521; }
.dropdown-item.apple .platform-icon { background: #FA2D48; }

.nav-link {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--text-primary);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: none;
  padding: 0.625rem 1.25rem;
  background: var(--text-primary);
  color: var(--bg-primary);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  transition: transform 0.3s var(--ease-elastic);
}

.nav-cta:hover {
  transform: scale(1.05);
}

/* Hide inactive language CTAs */
.nav-cta[data-lang] {
  display: none;
}

.nav-cta[data-lang].active {
  display: none;
}

@media (min-width: 768px) {
  .nav-cta[data-lang].active {
    display: none;
  }
}

/* Mobile Toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-link {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.mobile-link:hover,
.mobile-link.active {
  color: var(--text-primary);
}

.mobile-cta {
  margin-top: 1rem;
  padding: 1rem 2rem;
  background: var(--text-primary);
  color: var(--bg-primary);
  font-size: 1.125rem;
  font-weight: 500;
  border-radius: var(--radius-full);
}

/*Hide inactive language CTAs in mobile*/
.mobile-cta[data-lang] {
  display: none;
}

.mobile-cta[data-lang].active {
  display: block;
}

/* Hide inactive language links in mobile menu */
.mobile-link[data-lang] {
  display: none;
}

.mobile-link[data-lang].active {
  display: block;
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
}

.lang-btn {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.lang-btn:hover {
  color: var(--text-primary);
  border-color: var(--border-hover);
}

.lang-btn.active {
  color: var(--bg-primary);
  background: var(--text-primary);
  border-color: var(--text-primary);
}

.mobile-lang-switcher {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.mobile-lang-switcher .lang-btn {
  padding: 0.5rem 1rem;
  font-size: 1rem;
}

/* Hide elements based on language */
[data-lang] {
  display: none;
}

[data-lang].active {
  display: block;
}

span[data-lang].active,
strong[data-lang].active,
a[data-lang].active,
li[data-lang].active {
  display: inline;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  animation: heroScale 1.5s var(--ease-expo-out) forwards;
}

@keyframes heroScale {
  from {
    transform: scale(1.1);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

/* Floating Orbs */
.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  filter: blur(40px);
}

.orb-1 { width: 200px; height: 200px; top: 20%; left: 10%; animation: float1 18s ease-in-out infinite; }
.orb-2 { width: 250px; height: 250px; top: 60%; left: 70%; animation: float2 22s ease-in-out infinite; }
.orb-3 { width: 180px; height: 180px; top: 40%; left: 50%; animation: float3 20s ease-in-out infinite; }
.orb-4 { width: 300px; height: 300px; top: 10%; left: 60%; animation: float4 25s ease-in-out infinite; }
.orb-5 { width: 150px; height: 150px; top: 70%; left: 20%; animation: float5 17s ease-in-out infinite; }

@keyframes float1 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(30px, -20px); }
  50% { transform: translate(-20px, 30px); }
  75% { transform: translate(20px, 20px); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-30px, 20px); }
  50% { transform: translate(20px, -30px); }
  75% { transform: translate(-20px, -20px); }
}

@keyframes float3 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(20px, 30px); }
  50% { transform: translate(-30px, -20px); }
  75% { transform: translate(30px, -10px); }
}

@keyframes float4 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-20px, -30px); }
  50% { transform: translate(30px, 20px); }
  75% { transform: translate(-10px, 30px); }
}

@keyframes float5 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(30px, 20px); }
  50% { transform: translate(-20px, -30px); }
  75% { transform: translate(20px, -20px); }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 900px;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.reveal-text {
  display: block;
  clip-path: inset(100% 0 0 0);
  transform: translateY(30px);
  animation: clipReveal 0.8s var(--ease-expo-out) forwards;
}

.reveal-text:nth-child(2) { animation-delay: 0.45s; }
.reveal-text:nth-child(3) { animation-delay: 0.6s; }

@keyframes clipReveal {
  to {
    clip-path: inset(0);
    transform: translateY(0);
  }
}

.gradient-text {
  background: linear-gradient(90deg, #fff, rgba(255,255,255,0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  filter: blur(10px);
  animation: fadeBlurIn 0.6s ease 0.9s forwards;
}

.hero-subtitle strong {
  color: var(--text-primary);
}

@keyframes fadeBlurIn {
  to {
    opacity: 1;
    filter: blur(0);
  }
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  transition: all 0.3s var(--ease-elastic);
  opacity: 0;
  transform: scale(0.8);
  animation: scaleBounce 0.5s var(--ease-elastic) forwards;
}

.btn:nth-child(1) { animation-delay: 1.1s; }
.btn:nth-child(2) { animation-delay: 1.2s; }

@keyframes scaleBounce {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.btn-primary {
  background: var(--text-primary);
  color: var(--bg-primary);
}

.btn-primary:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-hover);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  opacity: 0;
  animation: fadeIn 0.5s ease 1.5s forwards;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-full);
  animation: bounce 1.5s ease-in-out infinite;
}

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

@keyframes fadeIn {
  to { opacity: 1; }
}

/* ============================================
   LOGO STREAM SECTION
   ============================================ */
.logo-stream {
  padding: 5rem 0;
  overflow: hidden;
  transform: rotate(-2deg) scale(1.02);
  opacity: 0;
  transition: opacity 0.8s var(--ease-expo-out);
}

.logo-stream.visible {
  opacity: 1;
}

.logo-stream-text {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.stream-container {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}

.stream-container-2 {
  opacity: 0.4;
}

.gradient-mask-left,
.gradient-mask-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 10;
  pointer-events: none;
}

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

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

.stream {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
}

.stream-1 {
  animation: streamLeft 30s linear infinite;
}

.stream-2 {
  animation: streamRight 35s linear infinite;
}

.stream span {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  cursor: default;
}

.stream span:hover {
  color: var(--text-primary);
}

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

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

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

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

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
  padding: var(--section-padding) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.feature-card {
  padding: 2rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  transition: all 0.4s var(--ease-expo-out);
  opacity: 0;
  transform: perspective(1200px) rotateY(-90deg);
}

.feature-card.visible {
  opacity: 1;
  transform: perspective(1200px) rotateY(0);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(10deg);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  padding: var(--section-padding) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.service-card {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  opacity: 0;
  transform: translateX(100px);
  transition: all 1s var(--ease-expo-out);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-card.visible {
  opacity: 1;
  transform: translateX(0);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Brand color top border */
.service-card.netflix { border-top: 4px solid #E50914; }
.service-card.spotify { border-top: 4px solid #1DB954; }
.service-card.crunchyroll { border-top: 4px solid #F47521; }
.service-card.apple { border-top: 4px solid #FA2D48; }

.service-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.service-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.5rem;
}

.service-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: #000000;
  margin-bottom: 1.25rem;
}

.service-price .period {
  font-size: 1rem;
  font-weight: 500;
  color: #666666;
}

.service-features-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0;
  font-size: 0.9375rem;
  color: #666666;
}

.service-features-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #000000;
  border-radius: 50%;
  flex-shrink: 0;
}

.service-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 1.5rem;
  background: #1a1a1a;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease-expo-out);
  margin-top: auto;
}

.service-cta:hover {
  background: #000000;
  transform: translateY(-2px);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works {
  padding: var(--section-padding) 0;
}

.steps-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.connecting-line {
  display: none;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.step {
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s var(--ease-expo-out);
}

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

.step-orb {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  animation: orbPulse 3s ease-in-out infinite;
}

@keyframes orbPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255,255,255,0.1); }
  50% { box-shadow: 0 0 40px rgba(255,255,255,0.2); }
}

.step-number {
  font-size: 1.5rem;
  font-weight: 700;
}

.step-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  color: var(--text-primary);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  max-width: 300px;
  margin: 0 auto;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
  padding: var(--section-padding) 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.pricing-card {
  padding: 2rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  text-align: center;
  opacity: 0;
  transition: all 0.8s var(--ease-expo-out);
}

.pricing-card.visible {
  opacity: 1;
}

.pricing-card.popular {
  position: relative;
  border: 2px solid var(--border-hover);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 1rem;
  background: linear-gradient(90deg, var(--netflix), var(--spotify), var(--crunchyroll), var(--apple));
  background-size: 300% 100%;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  animation: gradientShift 4s linear infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.pricing-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pricing-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.pricing-amount {
  margin-bottom: 2rem;
}

.price {
  font-size: 3rem;
  font-weight: 700;
}

.period {
  color: var(--text-secondary);
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features svg {
  color: #4ade80;
  flex-shrink: 0;
}

.pricing-cta {
  display: block;
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  font-weight: 500;
  border-radius: var(--radius-full);
  transition: all 0.3s var(--ease-expo-out);
}

.pricing-cta:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.02);
}

.pricing-cta.primary {
  background: var(--text-primary);
  color: var(--bg-primary);
}

.pricing-cta.primary:hover {
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
  padding: var(--section-padding) 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.testimonial-card {
  padding: 1.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  transition: all 0.3s var(--ease-expo-out);
  opacity: 0;
  transform: translateY(60px);
}

.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.stars svg {
  color: #facc15;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  font-size: 0.9375rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
  padding: var(--section-padding) 0;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-30px);
}

.faq-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.faq-item.active {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-hover);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
}

.faq-icon {
  color: var(--text-muted);
  transition: transform 0.3s var(--ease-elastic);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-expo-out), opacity 0.3s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
}

.faq-answer p {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/cta-bg.jpg');
  background-size: cover;
  background-position: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.7) 100%);
}

.cta-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.4) 70%, rgba(0,0,0,0.8) 100%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
}

.cta-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: var(--whatsapp);
  color: white;
  font-size: 1.125rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.3);
  transition: all 0.3s var(--ease-expo-out);
  animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
}

.cta-button:hover {
  transform: scale(1.05);
}

.cta-button svg {
  animation: bounce 1.5s ease-in-out infinite;
}

.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.cta-trust svg {
  color: #facc15;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 300px;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--whatsapp);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.footer-whatsapp:hover {
  opacity: 0.8;
}

.footer-column h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column a,
.footer-column span {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-column a:hover {
  color: var(--text-primary);
  transform: translateX(5px);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.heart {
  color: #ef4444;
}

/* ============================================
   PAGE HERO (About & Contact)
   ============================================ */
.page-hero {
  padding-top: 10rem;
  padding-bottom: 4rem;
  text-align: center;
}

.page-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.page-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   STATS SECTION (About)
   ============================================ */
.stats-section {
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 2rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
}

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

.stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* ============================================
   MISSION SECTION (About)
   ============================================ */
.mission-section {
  padding: var(--section-padding) 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.mission-content h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.mission-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.mission-visual {
  display: flex;
  justify-content: center;
}

.award-icon {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  color: rgba(255, 255, 255, 0.2);
}

/* ============================================
   VALUES SECTION (About)
   ============================================ */
.values-section {
  padding: var(--section-padding) 0;
}

.values-section .section-title {
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.value-card {
  padding: 2rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: var(--border-hover);
}

.value-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.value-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   CONTACT METHODS (Contact)
   ============================================ */
.contact-methods {
  padding: 2rem 0 4rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.contact-card {
  padding: 2rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: var(--border-hover);
}

.contact-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
}

.contact-card.whatsapp .contact-icon {
  background: rgba(37, 211, 102, 0.1);
  color: var(--whatsapp);
}

.contact-card.email .contact-icon {
  background: rgba(234, 67, 53, 0.1);
  color: #ea4335;
}

.contact-card.response .contact-icon {
  background: rgba(250, 204, 21, 0.1);
  color: #facc15;
}

.contact-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.contact-value {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.contact-cta {
  display: inline-block;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 500;
  transition: all 0.3s var(--ease-expo-out);
}

.contact-cta:hover {
  transform: scale(1.05);
}

.whatsapp-cta {
  background: var(--whatsapp);
  color: white;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.email-cta {
  background: #ea4335;
  color: white;
  box-shadow: 0 10px 30px rgba(234, 67, 53, 0.3);
}

/* ============================================
   CONTACT FORM (Contact)
   ============================================ */
.contact-form-section {
  padding: var(--section-padding) 0;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.form-container h2,
.quick-faq h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.form-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--border-hover);
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--text-primary);
  color: var(--bg-primary);
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease-expo-out);
}

.form-submit:hover {
  transform: scale(1.02);
}

/* Quick FAQ */
.quick-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.quick-faq-item {
  padding: 1.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
}

.quick-faq-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.quick-faq-item p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .nav-links,
  .nav-cta {
    display: flex;
  }
  
  .nav-toggle {
    display: none;
  }
  
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .connecting-line {
    display: block;
    position: absolute;
    top: 40px;
    left: 16.67%;
    right: 16.67%;
    height: 2px;
    background: linear-gradient(to right, rgba(255,255,255,0.2), rgba(255,255,255,0.4), rgba(255,255,255,0.2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.5s ease;
  }
  
  .connecting-line.visible {
    transform: scaleX(1);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .mission-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-form-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================
   PLATFORM PAGES - CAROUSELS
   ============================================ */

/* Platform Hero */
.platform-hero {
  padding-top: 10rem;
  padding-bottom: 4rem;
  text-align: center;
}

.platform-hero.netflix { background: linear-gradient(180deg, rgba(229, 9, 20, 0.1) 0%, transparent 100%); }
.platform-hero.spotify { background: linear-gradient(180deg, rgba(29, 185, 84, 0.1) 0%, transparent 100%); }
.platform-hero.crunchyroll { background: linear-gradient(180deg, rgba(244, 117, 33, 0.1) 0%, transparent 100%); }
.platform-hero.apple { background: linear-gradient(180deg, rgba(250, 45, 72, 0.1) 0%, transparent 100%); }

.platform-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: white;
}

.platform-logo.netflix { background: #E50914; }
.platform-logo.spotify { background: #1DB954; }
.platform-logo.crunchyroll { background: #F47521; }
.platform-logo.apple { background: #FA2D48; }

.platform-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.platform-title.netflix { color: #E50914; }
.platform-title.spotify { color: #1DB954; }
.platform-title.crunchyroll { color: #F47521; }
.platform-title.apple { color: #FA2D48; }

.platform-tagline {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Carousel Section */
.carousel-section {
  padding: 3rem 0;
}

.carousel-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 0 1.5rem;
}

.carousel-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

.carousel-header.netflix h3 { color: #E50914; }
.carousel-header.spotify h3 { color: #1DB954; }
.carousel-header.crunchyroll h3 { color: #F47521; }
.carousel-header.apple h3 { color: #FA2D48; }

.carousel-badge {
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.carousel-badge.netflix { background: rgba(229, 9, 20, 0.2); color: #E50914; }
.carousel-badge.spotify { background: rgba(29, 185, 84, 0.2); color: #1DB954; }
.carousel-badge.crunchyroll { background: rgba(244, 117, 33, 0.2); color: #F47521; }
.carousel-badge.apple { background: rgba(250, 45, 72, 0.2); color: #FA2D48; }

/* Carousel Container */
.carousel-container {
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.carousel-mask-left,
.carousel-mask-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 10;
  pointer-events: none;
}

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

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

.carousel-track {
  display: flex;
  gap: 1rem;
  padding: 0.5rem 1.5rem;
}

.carousel-track.left {
  animation: carouselLeft 40s linear infinite;
}

.carousel-track.right {
  animation: carouselRight 40s linear infinite;
}

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

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

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

/* Carousel Item */
.carousel-item {
  flex-shrink: 0;
  width: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  transition: all 0.3s var(--ease-expo-out);
}

.carousel-item:hover {
  transform: scale(1.05);
  border-color: var(--border-hover);
}

.carousel-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.carousel-item.music img {
  height: 200px;
}

.carousel-item-info {
  padding: 1rem;
}

.carousel-item-title {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.carousel-item-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Selection */
::selection {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

/* ============================================
   PLATFORM PAGES - ENHANCED STYLES
   ============================================ */

/* Featured Hero Banner */
.platform-hero-banner {
  position: relative;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, var(--bg-primary) 100%);
  z-index: 1;
}

.platform-hero-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.platform-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.platform-hero-content .platform-logo {
  width: 100px;
  height: 100px;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.platform-hero-content h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.platform-hero-content p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 2rem;
}

.platform-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1.1rem;
  color: white;
  transition: all 0.3s var(--ease-expo-out);
}

.platform-cta-btn.netflix { background: #E50914; }
.platform-cta-btn.spotify { background: #1DB954; }
.platform-cta-btn.crunchyroll { background: #F47521; }
.platform-cta-btn.apple { background: #FA2D48; }

.platform-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Featured Content Grid */
.featured-section {
  padding: 4rem 0;
}

.featured-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding: 0 1.5rem;
}

.featured-section-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.featured-section-title h2 {
  font-size: 1.75rem;
  font-weight: 700;
}

.featured-section-title .section-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.featured-section-title .section-icon.netflix { background: rgba(229, 9, 20, 0.2); color: #E50914; }
.featured-section-title .section-icon.spotify { background: rgba(29, 185, 84, 0.2); color: #1DB954; }
.featured-section-title .section-icon.crunchyroll { background: rgba(244, 117, 33, 0.2); color: #F47521; }
.featured-section-title .section-icon.apple { background: rgba(250, 45, 72, 0.2); color: #FA2D48; }

.view-all-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.3s var(--ease-expo-out);
}

.view-all-btn:hover {
  color: white;
  gap: 0.75rem;
}

/* Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 0 1.5rem;
}

.content-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  transition: all 0.4s var(--ease-expo-out);
  cursor: pointer;
}

.content-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.content-card-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.content-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-expo-out);
}

.content-card:hover .content-card-image img {
  transform: scale(1.1);
}

.content-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s var(--ease-expo-out);
}

.content-card:hover .content-card-overlay {
  opacity: 1;
}

.content-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
}

.content-card-badge.netflix { background: #E50914; }
.content-card-badge.spotify { background: #1DB954; }
.content-card-badge.crunchyroll { background: #F47521; }
.content-card-badge.apple { background: #FA2D48; }

.content-card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s var(--ease-expo-out);
}

.content-card:hover .content-card-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.content-card-play svg {
  width: 24px;
  height: 24px;
  color: #000;
  margin-left: 4px;
}

.content-card-info {
  padding: 1.25rem;
}

.content-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.content-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.content-card-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.content-card-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #FFD700;
}

/* Music Album Card (Square) */
.content-card.music .content-card-image {
  aspect-ratio: 1/1;
}

/* Enhanced Carousel */
.carousel-section-enhanced {
  padding: 4rem 0;
  overflow: hidden;
}

.carousel-header-enhanced {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding: 0 1.5rem;
}

.carousel-header-enhanced .title-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.carousel-header-enhanced h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.carousel-header-enhanced .trending-badge {
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.carousel-header-enhanced .trending-badge.netflix { background: rgba(229, 9, 20, 0.2); color: #E50914; }
.carousel-header-enhanced .trending-badge.spotify { background: rgba(29, 185, 84, 0.2); color: #1DB954; }
.carousel-header-enhanced .trending-badge.crunchyroll { background: rgba(244, 117, 33, 0.2); color: #F47521; }
.carousel-header-enhanced .trending-badge.apple { background: rgba(250, 45, 72, 0.2); color: #FA2D48; }

.carousel-nav {
  display: flex;
  gap: 0.5rem;
}

.carousel-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s var(--ease-expo-out);
}

.carousel-nav-btn:hover {
  background: white;
  color: black;
  border-color: white;
}

/* Stats Bar */
.platform-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 2rem 1.5rem;
  flex-wrap: wrap;
}

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

.platform-stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.platform-stat-value.netflix { color: #E50914; }
.platform-stat-value.spotify { color: #1DB954; }
.platform-stat-value.crunchyroll { color: #F47521; }
.platform-stat-value.apple { color: #FA2D48; }

.platform-stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Pricing Card Enhanced */
.pricing-section-platform {
  padding: 4rem 0;
  text-align: center;
}

.pricing-card-platform {
  max-width: 450px;
  margin: 0 auto;
  padding: 2.5rem;
  border-radius: var(--radius-2xl);
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.pricing-card-platform::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.pricing-card-platform.netflix::before { background: #E50914; }
.pricing-card-platform.spotify::before { background: #1DB954; }
.pricing-card-platform.crunchyroll::before { background: #F47521; }
.pricing-card-platform.apple::before { background: #FA2D48; }

.pricing-card-platform .platform-icon-large {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin: 0 auto 1.5rem;
}

.pricing-card-platform.netflix .platform-icon-large { background: #E50914; }
.pricing-card-platform.spotify .platform-icon-large { background: #1DB954; }
.pricing-card-platform.crunchyroll .platform-icon-large { background: #F47521; }
.pricing-card-platform.apple .platform-icon-large { background: #FA2D48; }

.pricing-card-platform h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-card-platform .price {
  font-size: 3rem;
  font-weight: 800;
  margin: 1.5rem 0;
}

.pricing-card-platform .price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-card-platform .features {
  text-align: left;
  margin: 2rem 0;
}

.pricing-card-platform .features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

.pricing-card-platform .features li:last-child {
  border-bottom: none;
}

.pricing-card-platform .features svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.pricing-card-platform.netflix .features svg { color: #E50914; }
.pricing-card-platform.spotify .features svg { color: #1DB954; }
.pricing-card-platform.crunchyroll .features svg { color: #F47521; }
.pricing-card-platform.apple .features svg { color: #FA2D48; }

.pricing-card-platform .cta-btn {
  width: 100%;
  padding: 1rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1.1rem;
  color: white;
  transition: all 0.3s var(--ease-expo-out);
}

.pricing-card-platform.netflix .cta-btn { background: #E50914; }
.pricing-card-platform.spotify .cta-btn { background: #1DB954; }
.pricing-card-platform.crunchyroll .cta-btn { background: #F47521; }
.pricing-card-platform.apple .cta-btn { background: #FA2D48; }

.pricing-card-platform .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .platform-hero-banner {
    height: 400px;
  }
  
  .content-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .platform-stats {
    gap: 2rem;
  }
  
  .platform-stat-value {
    font-size: 2rem;
  }
}
