/* =====================================================
   Instituto Politécnico Yunis - Premium Design System
   Domestika-Inspired Dark Premium Theme
   ===================================================== */

/* =====================================================
   1. CSS CUSTOM PROPERTIES
   ===================================================== */
:root {
  /* Brand Colors - Premium Dark */
  --color-primary: #00b4d8;
  --color-primary-dark: #0a1628;
  --color-primary-light: #48cae4;
  --color-accent: #f0a500;
  --color-accent-light: #ffd166;
  --color-black: #000000;
  --color-white: #FFFFFF;

  /* Dark Premium Palette */
  --color-bg-dark: #0c0f1a;
  --color-bg-card: #141829;
  --color-bg-card-hover: #1a1f35;
  --color-bg-section: #101425;
  --color-bg-section-alt: #0e1220;
  --color-bg-light-section: #f8f9fc;

  /* Neutral Colors */
  --color-gray-100: #f0f1f5;
  --color-gray-200: #d8dbe5;
  --color-gray-300: #b0b5c5;
  --color-gray-400: #8890a5;
  --color-gray-500: #6b7394;
  --color-gray-600: #505878;
  --color-gray-700: #363d5a;
  --color-gray-800: #252a42;
  --color-gray-900: #181c30;

  /* Glow colors */
  --glow-primary: transparent;
  --glow-accent: transparent;
  --glow-white: transparent;

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Font Weights */
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Border Radius - NEON System (Large & Consistent) */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 2rem;
  --radius-xl: 2.5rem;
  --radius-2xl: 3rem;
  --radius-full: 9999px;

  /* Shadows - Removed for sharpness */
  --shadow-sm: none;
  --shadow-md: none;
  --shadow-lg: none;
  --shadow-xl: none;
  --shadow-glow: none;
  --shadow-glow-accent: none;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Container */
  --container-max: 1240px;
  --container-padding: var(--space-2);
}

/* =====================================================
   2. CSS RESET & BASE
   ===================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-gray-200);
  background-color: var(--color-bg-dark);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}



/* Mouse cursor glow tracking */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 180, 216, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
  transition: opacity 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-base);
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* =====================================================
   3. TYPOGRAPHY
   ===================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-bold);
  line-height: 1.2;
  color: var(--color-white);
}

h1 {
  font-size: var(--text-5xl);
  font-weight: var(--font-extrabold);
}

h2 {
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
}

h3 {
  font-size: var(--text-2xl);
}

h4 {
  font-size: var(--text-xl);
}

p {
  margin-bottom: var(--space-4);
  color: var(--color-gray-300);
}

.text-accent {
  color: var(--color-accent);
}

.text-primary {
  color: var(--color-primary);
}

.text-white {
  color: var(--color-white);
}

.text-dark {
  color: var(--color-primary-dark);
}

.text-center {
  text-align: center;
}

/* =====================================================
   4. LAYOUT UTILITIES
   ===================================================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--space-20) 0;
  position: relative;
}

.section-sm {
  padding: var(--space-12) 0;
}

.section-lg {
  padding: var(--space-24) 0;
}

/* =====================================================
   5. BUTTONS - Premium Gradient Style
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  border-radius: var(--radius-lg);
  /* Increased for neon system */
  transition: transform cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s, background-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-align: center;
  border: none;
  position: relative;
  overflow: hidden;
  min-width: 220px;
  isolation: isolate;
  /* Create new stacking context for hover effect */
}

.btn-icon {
  font-size: var(--text-lg);
}

.btn-lg {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-lg);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, #0077b6 100%);
  color: var(--color-white);
  box-shadow: 0 4px 20px var(--glow-primary);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-primary:hover {
  transform: scale(1.03) translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 180, 216, 0.4);
}

.btn-accent {
  background: linear-gradient(135deg, var(--color-accent) 0%, #e09200 100%);
  color: var(--color-primary-dark);
  font-weight: var(--font-bold);
  box-shadow: 0 4px 20px var(--glow-accent);
}

.btn-accent:hover {
  transform: scale(1.03) translateY(-2px);
  box-shadow: 0 10px 30px rgba(240, 165, 0, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(0, 180, 216, 0.05);
  transform: scale(1.03) translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: scale(1.03) translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* =====================================================
   6. HEADER - Glassmorphism Style
   ===================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-base);
}

/* Top Bar - Clean & Sharp */
.top-bar {
  background: #0a1628;
  /* Solid color */
  color: var(--color-gray-300);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: var(--text-xs);
  padding: var(--space-2) 0;
  position: relative;
  z-index: 1002;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  gap: var(--space-6);
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-gray-400);
}

.top-bar-item a {
  color: var(--color-gray-400);
}

.top-bar-item a:hover {
  color: var(--color-primary);
}

.top-bar-social {
  display: flex;
  gap: var(--space-4);
}

.top-bar-social a {
  font-size: var(--text-lg);
  opacity: 0.7;
  transition: all var(--transition-base);
}

.top-bar-social a:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Header Main */
.header-main {
  position: relative;
  z-index: 1001;
  background: rgba(12, 15, 26, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: var(--space-2) 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  /* Reduced */
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  /* Removed padding */
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo img {
  height: 65px !important;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo img {
  height: 80px !important;
  /* Slightly reduced from 95px to fit narrower header */
  width: auto;
  display: block;
  object-fit: contain;
  border: none;
  outline: none;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1;
  display: flex;
  flex-direction: column;
}

.logo-text span {
  font-size: 1.1rem;
  letter-spacing: 4px;
}

@media (max-width: 768px) {
  .logo-text {
    font-size: 1.1rem;
  }

  .logo-text span {
    font-size: 0.8rem;
    letter-spacing: 2px;
  }
}

/* Global Header Search */
.header-search-global {
  width: 100%;
  max-width: 500px;
  margin: 0;
}

.header-search-inner {
  display: flex;
  align-items: center;
  background: var(--color-bg-card);
  border: 1px solid var(--color-gray-800);
  border-radius: var(--radius-xl);
  /* Increased radius */
  padding: var(--space-2) var(--space-4);
  gap: var(--space-2);
  transition: all 0.3s ease;
}

.header-search-inner:focus-within {
  background: var(--color-bg-card-hover);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px var(--color-primary);
}

.header-search-inner input {
  background: transparent;
  border: none;
  color: var(--color-white);
  font-size: var(--text-sm);
  outline: none;
  width: 100%;
}

.header-search-inner .search-icon {
  font-size: 1rem;
  opacity: 0.6;
}

/* Navigation - Clean Letters Only */
.nav-pill {
  background: transparent;
  border: none;
  padding: 0;
}

.nav {
  display: flex;
  gap: var(--space-8);
  align-items: center;
}

.nav-link {
  color: var(--color-gray-300);
  font-weight: 500;
  font-size: var(--text-base);
  transition: color 0.3s ease;
  text-decoration: none;
}

.nav-link:hover {
  color: var(--color-primary);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-10);
  /* More spread out */
}

.nav-link {
  padding: var(--space-2);
  font-size: 1.1rem;
  /* Slightly larger text */
  font-weight: 600;
  color: var(--color-gray-300);
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--color-primary);
}

.nav-link.active {
  color: var(--color-white);
}

/* Remove hover backgrounds and borders */
.nav-link:hover,
.nav-link.active {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* Search */
.header-search {
  display: flex;
  align-items: center;
  background: var(--color-bg-card);
  border: 1px solid var(--color-gray-800);
  border-radius: var(--radius-xl);
  /* Increased radius */
  padding: var(--space-2) var(--space-4);
  gap: var(--space-2);
  transition: all var(--transition-base);
}

.header-search:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px var(--color-primary);
}

.header-search input {
  border: none;
  background: transparent;
  color: var(--color-white);
  font-size: var(--text-sm);
  outline: none;
  width: 140px;
}

.header-search input::placeholder {
  color: var(--color-gray-500);
}

.header-search button {
  color: var(--color-primary);
  font-size: var(--text-lg);
}

/* =====================================================
   7. SECTION HEADERS
   ===================================================== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-12);
}

.section-header h2 {
  margin-bottom: var(--space-4);
  font-size: var(--text-4xl);
}

.section-header p {
  font-size: var(--text-lg);
  color: var(--color-gray-400);
}

/* =====================================================
   8. HERO SECTION - Premium 2-Column Layout
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #0c0f1a;
  overflow: hidden;
  padding-top: 180px;
  padding-bottom: 60px;
}

.hero::before,
.hero::after {
  display: none !important;
}

/* Animated glow blobs */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.hero-glow-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.3), transparent 70%);
  top: -10%;
  left: -5%;
  animation: glowFloat 8s ease-in-out infinite;
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(240, 165, 0, 0.2), transparent 70%);
  bottom: -15%;
  right: -5%;
  animation: glowFloat 10s ease-in-out infinite reverse;
}

.hero-glow-3 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.15), transparent 70%);
  top: 30%;
  right: 10%;
  animation: glowFloat 15s ease-in-out infinite;
}

@keyframes glowFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -20px) scale(1.1);
  }

  66% {
    transform: translate(-20px, 15px) scale(0.9);
  }
}

/* Hero Background Image - Parallax Effect */
.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  /* Extra height for parallax */
  background-image: url('../assets/images/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  transform: translateY(0);
  will-change: transform;
}

/* Hero Dark Gradient Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(12, 15, 26, 1) 0%,
      rgba(12, 15, 26, 0.95) 25%,
      rgba(12, 15, 26, 0.6) 50%,
      rgba(12, 15, 26, 0.15) 75%,
      transparent 100%);
  z-index: 2;
}

/* Hero Content Left */
.hero-content-left {
  position: relative;
  z-index: 10;
  max-width: 650px;
  margin-left: -120px;
  /* Increased pull to the left as requested */
}

.hero-content-left .hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-content-left .hero-cta {
  justify-content: flex-start;
}

.hero-content-left .hero-stats {
  justify-content: flex-start;
}

@media (max-width: 900px) {
  .hero-overlay {
    background: linear-gradient(to bottom,
        rgba(12, 15, 26, 0.7) 0%,
        rgba(12, 15, 26, 0.85) 100%);
  }

  .hero-content-left {
    max-width: 100%;
    margin-left: 0;
    text-align: center;
  }

  .hero-content-left .hero-text {
    align-items: center;
    text-align: center;
  }

  .hero-content-left .hero-cta {
    justify-content: center;
  }

  .hero-content-left .hero-stats {
    justify-content: center;
  }
}

/* Hero Center - Single Column Centered (legacy) */
.hero-center {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-center .hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-center .hero-cta {
  justify-content: center;
}

.hero-center .hero-stats {
  justify-content: center;
}

/* Hero Badge Pill */
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.12), rgba(240, 165, 0, 0.08));
  border: 1px solid rgba(0, 180, 216, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary-light);
  margin-bottom: var(--space-6);
  /* animation removed for GSAP */
  letter-spacing: 0.3px;
}

/* Animated gradient text (Fluid color movement) */
.gradient-text-animated {
  background: linear-gradient(to right,
      #00b4d8 20%,
      #f5b800 40%,
      #f5b800 60%,
      #00b4d8 80%);
  background-size: 200% auto;
  color: #000;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 4s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

/* Subtle glow for hero titles (on the parent to not break clipping) */
.hero-title,
.sales-hero h1 {
  animation: titleGlow 5s ease-in-out infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes neonPulse {

  0%,
  100% {
    filter: drop-shadow(0 0 6px rgba(0, 180, 216, 0.25));
  }

  50% {
    filter: drop-shadow(0 0 12px rgba(245, 184, 0, 0.35));
  }
}

@keyframes titleGlow {

  0%,
  100% {
    text-shadow: 0 0 20px rgba(0, 180, 216, 0.06), 0 0 40px rgba(0, 180, 216, 0.03);
  }

  50% {
    text-shadow: 0 0 25px rgba(0, 180, 216, 0.12), 0 0 50px rgba(245, 184, 0, 0.06);
  }
}

/* Glow button */
.btn-glow {
  box-shadow: 0 0 20px rgba(0, 180, 216, 0.3), 0 0 60px rgba(0, 180, 216, 0.1);
}

.btn-glow:hover {
  box-shadow: 0 0 30px rgba(0, 180, 216, 0.5), 0 0 80px rgba(0, 180, 216, 0.2);
}

/* Hero Visual (right column) */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  /* animation removed for GSAP */
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-2xl);
  display: block;
  position: relative;
  z-index: 2;
}

.hero-image-glow {
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent), var(--color-primary-light));
  opacity: 0.5;
  filter: blur(20px);
  z-index: 0;
  animation: glowFloat 6s ease-in-out infinite;
}

/* Floating Badge - Premium Glassmorphism */
.hero-float-badge {
  position: absolute;
  bottom: -20px;
  left: -30px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(20, 24, 41, 0.7);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  /* animation removed for GSAP */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.hero-float-icon {
  font-size: 1.5rem;
}

.hero-float-badge strong {
  display: block;
  color: var(--color-white);
  font-size: 0.9rem;
}

.hero-float-badge span {
  color: var(--color-gray-400);
  font-size: 0.75rem;
}

/* Master Hero for Sales Letters */
.master-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 60px 0 80px;
  background: #0c0f1a;
  overflow: hidden;
}

.master-hero::before,
.master-hero::after {
  display: none !important;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.badge-premium {
  background: rgba(168, 235, 18, 0.1);
  color: #a8eb12;
  border: 1px solid rgba(168, 235, 18, 0.3);
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 24px;
  display: inline-flex;
  width: fit-content;
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(168, 235, 18, 0.1);
}

.master-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--color-white);
}

.master-hero .highlight {
  background: linear-gradient(to right, var(--color-primary), #a8eb12);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.cta-stack {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.cta-stack .btn {
  min-width: 200px;
  flex-shrink: 0;
}

.header .logo:hover .header-logo {
  transform: scale(1.05);
}

/* Hero Text */
.hero-text {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: none;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.08;
  color: var(--color-white);
  margin-bottom: var(--space-6);
  /* animation removed for GSAP */
}

.hero-title .highlight {
  color: var(--color-primary);
}

.hero-subtitle {
  font-size: var(--text-xl);
  color: var(--color-gray-300);
  line-height: 1.7;
  margin-bottom: var(--space-8);
  /* animation removed for GSAP */
}

.hero-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
  /* animation removed for GSAP */
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-10);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  /* animation removed for GSAP */
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-size: var(--text-4xl);
  font-weight: var(--font-extrabold);
  color: var(--color-accent);
  line-height: 1;
}

.hero-stat-label {
  font-size: var(--text-sm);
  color: var(--color-gray-400);
  margin-top: var(--space-2);
}

/* Hero Image */
.hero-image-container {
  position: relative;
  animation: fadeIn 1s ease 0.5s both;
}

.hero-image {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-2xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Floating info card removed to avoid visual clutter */
.hero-floating-card {
  display: none !important;
}

.hero-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-accent) 0%, #e09200 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.hero-card-text h5 {
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--color-white);
}

.hero-card-text span {
  font-size: var(--text-sm);
  color: var(--color-gray-400);
}

/* =====================================================
   9. WHATSAPP FLOAT
   ===================================================== */
.whatsapp-float {
  position: fixed;
  right: var(--space-6);
  bottom: var(--space-6);
  z-index: 999;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
  animation: whatsappEntrance 0.6s ease 1s both;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 3px solid #25D366;
  animation: whatsappPulseRing 2s ease-in-out infinite;
}

@keyframes whatsappPulseRing {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  70% {
    transform: scale(1.35);
    opacity: 0;
  }

  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

@keyframes whatsappEntrance {
  from {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }

  to {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

.whatsapp-float:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.value-section {
  background: #050811;
  padding: 120px 0;
  overflow: hidden;
}

.bento-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 80px;
  padding: 0 15px;
  z-index: 2;
  position: relative;
}

.card-large {
  grid-column: span 2;
  grid-row: span 2;
}

.card-tall {
  grid-column: span 1;
  grid-row: span 2;
}

.card-wide {
  grid-column: span 2;
  grid-row: span 1;
}

.card-standard {
  grid-column: span 1;
  grid-row: span 1;
}

.bento-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 15px 15px;
  text-align: left;
  transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.2s ease-out, background 0.2s;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  overflow: hidden;
  will-change: transform;
}

.bento-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
      rgba(255, 255, 255, 0.08),
      transparent 40%);
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 1;
  pointer-events: none;
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-card>* {
  position: relative;
  z-index: 2;
}

.bento-card .card-icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
  display: block;
}

.bento-card h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  font-weight: 700;
  color: white;
}

.bento-card p {
  color: #a0aec0;
  line-height: 1.4;
  font-size: 0.85rem;
  margin: 0;
}

.bento-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 180, 216, 0.4);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

@media (max-width: 900px) {
  .bento-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .bento-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .card-large,
  .card-tall,
  .card-standard,
  .card-wide {
    grid-column: span 1;
    padding: var(--space-4);
  }

  .bento-card .card-icon {
    font-size: 1.5rem;
  }

  .bento-card h4 {
    font-size: 1rem;
  }
}

/* =====================================================
   11. PROGRAMS CATALOG - Centering Fix & Refresh
   ===================================================== */
/* Search Bar Container */
.catalog-search-wrapper {
  max-width: 600px;
  margin: 0 auto var(--space-12);
  position: relative;
  z-index: 10;
}

.catalog-search-container {
  display: flex;
  align-items: center;
  background: var(--color-bg-card);
  border: 1px solid var(--color-gray-800);
  border-radius: var(--radius-full);
  padding: var(--space-4) var(--space-6);
  gap: var(--space-4);
  transition: all 0.3s ease;
  box-shadow: none;
}

.catalog-search-container:focus-within {
  border-color: var(--color-primary);
  background: var(--color-bg-card-hover);
  box-shadow: 0 0 0 2px var(--color-primary);
}

.catalog-search-container input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--color-white);
  font-size: var(--text-lg);
  outline: none;
}

.catalog-search-container input::placeholder {
  color: var(--color-gray-500);
}

.catalog-search-icon {
  font-size: 1.5rem;
  color: var(--color-primary);
  opacity: 0.7;
}

.catalog-search-container:focus-within .catalog-search-icon {
  opacity: 1;
  transform: scale(1.1);
}

/* Clear filter button (optional) */
.search-results-count {
  text-align: center;
  margin-top: var(--space-4);
  color: var(--color-gray-400);
  font-size: var(--text-sm);
  min-height: 1.5em;
}

.catalog-section {
  background: var(--color-bg-section);
  padding: var(--space-24) 0;
}

.catalog-area {
  margin-bottom: var(--space-12);
}

.catalog-area:last-child {
  margin-bottom: 0;
}

.catalog-area-title {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.catalog-area-icon {
  font-size: var(--text-2xl);
}

.catalog-area-title h3 {
  font-size: var(--text-xl);
  color: var(--color-white);
  font-weight: var(--font-semibold);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.catalog-card {
  position: relative;
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.06);
  height: auto;
}

.catalog-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 180, 216, 0.3);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(0, 180, 216, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.catalog-card-bg {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.catalog-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20, 24, 41, 0.95) 100%);
  z-index: 1;
  pointer-events: none;
}

.catalog-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.catalog-card:hover .catalog-card-bg img {
  transform: scale(1.12);
}

.catalog-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--color-accent) 0%, #e09200 100%);
  color: #000;
  padding: 5px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  z-index: 3;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 12px rgba(240, 165, 0, 0.3);
}

.catalog-card-content {
  padding: var(--space-5) var(--space-6) var(--space-6);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  z-index: 2;
  margin-top: -30px;
}

.catalog-card-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-2);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
}

.catalog-card-subtitle {
  font-size: var(--text-sm);
  color: var(--color-primary-light);
  margin-bottom: var(--space-3);
  font-weight: 500;
}

.catalog-card-desc {
  font-size: var(--text-sm);
  color: var(--color-gray-400);
  margin-bottom: var(--space-5);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  overflow: hidden;
}

.catalog-card-price-container {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.catalog-card-price-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.discount-price {
  color: var(--color-accent);
  font-weight: 800;
  font-size: 1.1rem;
}

.regular-price {
  color: var(--color-gray-600);
  text-decoration: line-through;
  font-size: 0.85rem;
}

.catalog-card-buy-btn {
  background: linear-gradient(135deg, var(--color-primary) 0%, #0077b6 100%);
  color: var(--color-white);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 180, 216, 0.2);
}

.catalog-card:hover .catalog-card-buy-btn {
  background: linear-gradient(135deg, #0096c7 0%, #0077b6 100%);
  box-shadow: 0 6px 25px rgba(0, 180, 216, 0.4);
  transform: translateY(-2px);
}

.catalog-card-arrow {
  display: none;
}

/* Program cards with images */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

.program-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--transition-base);
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 180, 216, 0.15);
}

.program-image {
  position: relative;
  overflow: hidden;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.program-card:hover .program-image img {
  transform: scale(1.1);
}

.program-info {
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.program-tag {
  display: inline-flex;
  align-items: center;
  padding: var(--space-1) var(--space-3);
  background: rgba(0, 180, 216, 0.15);
  border: 1px solid rgba(0, 180, 216, 0.2);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  color: var(--color-primary);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  margin-bottom: var(--space-4);
  width: fit-content;
}

.program-info h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  color: var(--color-white);
}

.program-info p {
  color: var(--color-gray-400);
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
}

/* =====================================================
   12. CTA SECTION - Centered Focus
   ===================================================== */
.cta-section {
  padding: 120px 0;
  background: #050811;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  overflow: hidden;
}

.cta-card {
  width: 100%;
  max-width: 900px;
  margin: 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 20px;
}

.cta-card h2 {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 20px;
}

.cta-card p {
  font-size: 1.25rem;
  color: var(--color-gray-400);
  max-width: 600px;
  margin: 0 auto;
}

/* =====================================================
   13. FOOTER - Dark Premium
   ===================================================== */
.footer {
  background: var(--color-bg-dark);
  padding: var(--space-16) 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--space-10);
  padding-bottom: var(--space-12);
}

.footer-brand .logo-text {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
  display: block;
}

.footer-brand p {
  color: var(--color-gray-500);
  font-size: var(--text-sm);
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.footer-social a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: rgba(0, 180, 216, 0.1);
  border-color: rgba(0, 180, 216, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px var(--glow-primary);
}

.footer-column h4 {
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--color-white);
  margin-bottom: var(--space-5);
  position: relative;
  padding-bottom: var(--space-3);
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  color: var(--color-gray-500);
  font-size: var(--text-sm);
  transition: all var(--transition-base);
  position: relative;
}

.footer-links a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-primary);
  transform: translateX(4px);
}

.footer-links a:hover::before {
  width: 100%;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  color: var(--color-gray-500);
  font-size: var(--text-sm);
}

.footer-contact-item a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-6) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-size: var(--text-sm);
  color: var(--color-gray-600);
}

/* =====================================================
   14. ANIMATIONS & PREMIUM EFFECTS
   ===================================================== */

/* --- Keyframes --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* Animations replaced by GSAP */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes gradientText {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes floatBlob {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(30px, -20px) scale(1.05);
  }

  50% {
    transform: translate(-10px, 20px) scale(0.95);
  }

  75% {
    transform: translate(-30px, -10px) scale(1.02);
  }
}

/* --- Animation Classes --- */
.animate-fadeInUp {
  animation: fadeInUp 0.8s ease forwards;
}

.animate-fadeIn {
  animation: fadeIn 1s ease forwards;
}

.animate-slideInLeft {
  animation: slideInLeft 0.8s ease forwards;
}

.animate-slideInRight {
  animation: slideInRight 0.8s ease forwards;
}

.animate-scaleIn {
  animation: scaleIn 0.6s ease forwards;
}

/* Delay utilities */
.delay-100 {
  animation-delay: 100ms;
}

.delay-200 {
  animation-delay: 200ms;
}

.delay-300 {
  animation-delay: 300ms;
}

.delay-400 {
  animation-delay: 400ms;
}

.delay-500 {
  animation-delay: 500ms;
}

/* --- CTA Section --- */
.cta-section {
  position: relative;
  z-index: 10;
  padding: var(--space-20) 0;
  background: var(--color-bg-section-alt);
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  margin-bottom: var(--space-4);
}

.cta-content p {
  margin-bottom: var(--space-8);
}

.cta-content .btn {
  position: relative;
  z-index: 20;
}

/* --- Scroll Reveal System --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Stagger delays */
.stagger-1 {
  transition-delay: 0.05s;
}

.stagger-2 {
  transition-delay: 0.1s;
}

.stagger-3 {
  transition-delay: 0.15s;
}

.stagger-4 {
  transition-delay: 0.2s;
}

.stagger-5 {
  transition-delay: 0.25s;
}

.stagger-6 {
  transition-delay: 0.3s;
}

.stagger-7 {
  transition-delay: 0.35s;
}

.stagger-8 {
  transition-delay: 0.4s;
}

/* --- Solid Text --- */
.gradient-text {
  color: var(--color-primary);
}

/* --- Floating Blobs/Glass Removed --- */
.hero-blob,
.bg-nebula,
.glow-box,
.glass-effect {
  display: none !important;
  filter: none !important;
  backdrop-filter: none !important;
}

/* =====================================================
   SALES PAGE STYLES - Premium Course Pages
   ===================================================== */
.is-premium {
  background: #0c0f1a;
  color: var(--color-gray-200);
  --page-accent: var(--color-primary);
  --page-accent-glow: rgba(0, 180, 216, 0.3);
}

/* Per-page color themes */
.theme-ingles {
  --page-accent: #3b82f6;
  --page-accent-glow: rgba(59, 130, 246, 0.3);
}

.theme-lesco {
  --page-accent: #8b5cf6;
  --page-accent-glow: rgba(139, 92, 246, 0.3);
}

.theme-salud {
  --page-accent: #ef4444;
  --page-accent-glow: rgba(239, 68, 68, 0.3);
}

.theme-farmacia {
  --page-accent: #10b981;
  --page-accent-glow: rgba(16, 185, 129, 0.3);
}

.theme-contabilidad {
  --page-accent: #f59e0b;
  --page-accent-glow: rgba(245, 158, 11, 0.3);
}

.theme-seguridad {
  --page-accent: #f97316;
  --page-accent-glow: rgba(249, 115, 22, 0.3);
}

.theme-computacion {
  --page-accent: #06b6d4;
  --page-accent-glow: rgba(6, 182, 212, 0.3);
}

.theme-celulares {
  --page-accent: #a855f7;
  --page-accent-glow: rgba(168, 85, 247, 0.3);
}

.theme-consolas {
  --page-accent: #ec4899;
  --page-accent-glow: rgba(236, 72, 153, 0.3);
}

.theme-belleza {
  --page-accent: #f472b6;
  --page-accent-glow: rgba(244, 114, 182, 0.3);
}

.theme-barberia {
  --page-accent: #d97706;
  --page-accent-glow: rgba(217, 119, 6, 0.3);
}

.theme-manicura {
  --page-accent: #e879f9;
  --page-accent-glow: rgba(232, 121, 249, 0.3);
}

.theme-excel {
  --page-accent: #22c55e;
  --page-accent-glow: rgba(34, 197, 94, 0.3);
}

.theme-marketing {
  --page-accent: #f43f5e;
  --page-accent-glow: rgba(244, 63, 94, 0.3);
}

.theme-alimentos {
  --page-accent: #84cc16;
  --page-accent-glow: rgba(132, 204, 22, 0.3);
}

.theme-reparacion-pc {
  --page-accent: #0ea5e9;
  --page-accent-glow: rgba(14, 165, 233, 0.3);
}

.theme-tatuajes {
  --page-accent: #7c3aed;
  --page-accent-glow: rgba(124, 58, 237, 0.3);
}

.theme-perforaciones {
  --page-accent: #9333ea;
  --page-accent-glow: rgba(147, 51, 234, 0.3);
}

.theme-digitacion {
  --page-accent: #0284c7;
  --page-accent-glow: rgba(2, 132, 199, 0.3);
}

.theme-servicio {
  --page-accent: #0d9488;
  --page-accent-glow: rgba(13, 148, 136, 0.3);
}

.theme-desechos {
  --page-accent: #dc2626;
  --page-accent-glow: rgba(220, 38, 38, 0.3);
}

.theme-cisco {
  --page-accent: #2563eb;
  --page-accent-glow: rgba(37, 99, 235, 0.3);
}

.theme-electricidad {
  --page-accent: #eab308;
  --page-accent-glow: rgba(234, 179, 8, 0.3);
}

.theme-electronica {
  --page-accent: #14b8a6;
  --page-accent-glow: rgba(20, 184, 166, 0.3);
}

.theme-estilismo {
  --page-accent: #e11d48;
  --page-accent-glow: rgba(225, 29, 72, 0.3);
}

.theme-colorimetria {
  --page-accent: #c026d3;
  --page-accent-glow: rgba(192, 38, 211, 0.3);
}

.theme-peinados {
  --page-accent: #db2777;
  --page-accent-glow: rgba(219, 39, 119, 0.3);
}

.theme-maquillaje {
  --page-accent: #be185d;
  --page-accent-glow: rgba(190, 24, 93, 0.3);
}

.theme-masaje {
  --page-accent: #7c3aed;
  --page-accent-glow: rgba(124, 58, 237, 0.3);
}

.theme-masajes-corporales {
  --page-accent: #6d28d9;
  --page-accent-glow: rgba(109, 40, 217, 0.3);
}

.theme-auriculoterapia {
  --page-accent: #059669;
  --page-accent-glow: rgba(5, 150, 105, 0.3);
}

.theme-globoflexia {
  --page-accent: #f97316;
  --page-accent-glow: rgba(249, 115, 22, 0.3);
}

.theme-pestanas {
  --page-accent: #a21caf;
  --page-accent-glow: rgba(162, 28, 175, 0.3);
}

.theme-lifting {
  --page-accent: #c026d3;
  --page-accent-glow: rgba(192, 38, 211, 0.3);
}

.theme-depilacion {
  --page-accent: #ea580c;
  --page-accent-glow: rgba(234, 88, 12, 0.3);
}

.theme-gelx {
  --page-accent: #d946ef;
  --page-accent-glow: rgba(217, 70, 239, 0.3);
}

.theme-secretariado {
  --page-accent: #0891b2;
  --page-accent-glow: rgba(8, 145, 178, 0.3);
}

.theme-administracion {
  --page-accent: #1d4ed8;
  --page-accent-glow: rgba(29, 78, 216, 0.3);
}

.theme-rrhh {
  --page-accent: #7c3aed;
  --page-accent-glow: rgba(124, 58, 237, 0.3);
}

/* Apply accent to key elements */
.is-premium .badge-premium {
  background: color-mix(in srgb, var(--page-accent) 15%, transparent);
  color: var(--page-accent);
  border-color: color-mix(in srgb, var(--page-accent) 30%, transparent);
}

.is-premium .btn-primary {
  background: linear-gradient(135deg, var(--page-accent) 0%, color-mix(in srgb, var(--page-accent) 70%, #000) 100%);
}

.is-premium .btn-primary:hover {
  background: linear-gradient(135deg, color-mix(in srgb, var(--page-accent) 85%, #fff) 0%, var(--page-accent) 100%);
}

.is-premium .btn-glow {
  box-shadow: 0 0 20px var(--page-accent-glow), 0 0 60px color-mix(in srgb, var(--page-accent-glow) 30%, transparent);
}

.is-premium .gradient-text-animated {
  background: linear-gradient(to right,
      var(--page-accent) 20%,
      color-mix(in srgb, var(--page-accent) 40%, #fff) 40%,
      color-mix(in srgb, var(--page-accent) 40%, #fff) 60%,
      var(--page-accent) 80%);
  background-size: 200% auto;
  color: #000;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 4s linear infinite;
}

.is-premium .accordion-header .icon {
  color: var(--page-accent);
}

.is-premium .accordion-item:hover {
  border-color: color-mix(in srgb, var(--page-accent) 25%, transparent);
}

.is-premium .transform-card:hover {
  border-color: color-mix(in srgb, var(--page-accent) 25%, transparent);
}

.is-premium .social-counter-item strong {
  color: var(--page-accent);
}

/* Large Hero Icon */
.hero-mega-icon {
  font-size: 4.5rem;
  line-height: 1;
  margin-bottom: var(--space-5);
  position: relative;
  display: inline-block;
  animation: iconPulse 3s ease-in-out infinite;
}

.hero-mega-icon::after {
  content: '';
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  background: var(--page-accent-glow);
  filter: blur(25px);
  z-index: -1;
  opacity: 0.6;
}

@keyframes iconPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

/* Benefit Grid - Visual Benefits with Icons */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-8);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.benefit-item {
  text-align: center;
  padding: var(--space-5) var(--space-3);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  border-color: color-mix(in srgb, var(--page-accent) 30%, transparent);
  background: color-mix(in srgb, var(--page-accent) 5%, transparent);
  transform: translateY(-3px);
}

.benefit-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: var(--space-2);
}

.benefit-label {
  font-size: var(--text-xs);
  color: var(--color-gray-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Sales hero glow uses page accent */
.is-premium .sales-hero .hero-glow-1 {
  background: radial-gradient(circle, var(--page-accent-glow), transparent 70%);
}

.is-premium .sales-hero-bg::after {
  background: linear-gradient(180deg, rgba(12, 15, 26, 0.5) 0%, rgba(12, 15, 26, 0.97) 100%);
}

/* Trust Bar */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  padding: var(--space-4) 0;
  background: rgba(0, 180, 216, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-gray-300);
  font-size: var(--text-sm);
  font-weight: 500;
}

.trust-item span {
  font-size: 1.2rem;
}

/* Sticky Urgency Banner */
.sticky-urgency {
  position: sticky;
  top: 0;
  z-index: 999;
  background: linear-gradient(135deg, var(--color-accent) 0%, #e09200 100%);
  color: #000;
  text-align: center;
  padding: 10px var(--space-4);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.5px;
}

/* Sales Hero */
.sales-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  background: #0c0f1a;
  overflow: hidden;
}

/* Background image with gradient overlay */
.sales-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sales-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  filter: blur(4px);
}

.sales-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 15, 26, 0.6) 0%, rgba(12, 15, 26, 0.95) 100%);
}

/* Mental Trigger Banners */
.trigger-banner {
  text-align: center;
  padding: 10px var(--space-4);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.trigger-banner.urgency {
  background: linear-gradient(135deg, #00b4d8 0%, #0096c7 100%);
  color: #fff;
}

.trigger-banner.scarcity {
  background: linear-gradient(135deg, #f5b800 0%, #e6a800 100%);
  color: #000;
}

.trigger-banner.social-proof {
  background: rgba(0, 180, 216, 0.08);
  border-bottom: 1px solid rgba(0, 180, 216, 0.15);
  color: var(--color-gray-300);
}

/* Social proof counter */
.social-counter {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  padding: var(--space-5) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  flex-wrap: wrap;
}

.social-counter-item {
  text-align: center;
}

.social-counter-item strong {
  display: block;
  font-size: 1.4rem;
  color: var(--color-primary-light);
  font-weight: 800;
}

.social-counter-item span {
  font-size: var(--text-xs);
  color: var(--color-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Guarantee badge */
.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--space-4);
  padding: 8px 16px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: var(--radius-full);
  color: #22c55e;
  font-size: var(--text-sm);
  font-weight: 600;
}

.sales-hero .hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  pointer-events: none;
}

.sales-hero .hero-glow-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.3), transparent 70%);
  top: -10%;
  left: -5%;
  animation: glowFloat 8s ease-in-out infinite;
}

.sales-hero .hero-glow-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(240, 165, 0, 0.2), transparent 70%);
  bottom: -10%;
  right: -5%;
  animation: glowFloat 10s ease-in-out infinite reverse;
}

.hero-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  text-align: center;
}

.hero-container h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: var(--space-6);
}

.hero-container .lead {
  font-size: var(--text-lg);
  color: var(--color-gray-300);
  line-height: 1.7;
  margin-bottom: var(--space-8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Curriculum Accordion */
.curriculum-accordion {
  max-width: 700px;
  margin: var(--space-8) auto 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.accordion-item {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: rgba(0, 180, 216, 0.2);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-5) var(--space-6);
  cursor: pointer;
  color: var(--color-white);
  font-weight: 600;
  font-size: var(--text-base);
  transition: background 0.3s ease;
}

.accordion-header:hover {
  background: rgba(255, 255, 255, 0.03);
}

.accordion-header .icon {
  transition: transform 0.3s ease;
  color: var(--color-primary);
  font-size: 0.8rem;
}

.accordion-item.active .accordion-header .icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  color: var(--color-gray-400);
  font-size: var(--text-sm);
  line-height: 1.7;
  padding: 0 var(--space-6);
}

.accordion-item.active .accordion-content {
  max-height: 300px;
  padding: 0 var(--space-6) var(--space-6);
}

/* Transformation Cards */
.transformation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.transform-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  transition: all 0.4s ease;
}

.transform-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 180, 216, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.transform-card h3 {
  color: var(--color-white);
  margin-bottom: var(--space-3);
  font-size: var(--text-xl);
}

.transform-card p {
  color: var(--color-gray-400);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin: 0;
}

/* Final CTA Section */
.final-cta {
  text-align: center;
  padding: var(--space-20) 0;
  position: relative;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 180, 216, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta h2 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
}

.final-cta p {
  font-size: var(--text-lg);
  color: var(--color-gray-300);
  margin-bottom: var(--space-8);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.disclaimer {
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  color: var(--color-gray-600);
}

/* Sales Footer */
.sales-footer {
  text-align: center;
  padding: var(--space-8) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--color-gray-600);
  font-size: var(--text-sm);
}

.sales-footer img {
  height: 35px;
  margin: 0 auto var(--space-3);
  opacity: 0.6;
}

/* --- Premium Reveal System --- */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.reveal {
  transform: translateY(30px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-scale {
  transform: scale(0.95);
}

.visible.reveal,
.visible.reveal-left,
.visible.reveal-right,
.visible.reveal-scale {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Stagger delays (Standard) */
.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

.stagger-4 {
  transition-delay: 0.4s;
}

/* --- Enhanced Header Scroll --- */
.header.scrolled .header-main {
  padding: var(--space-2) 0;
  background: rgba(12, 15, 26, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled .logo-text {
  font-size: var(--text-lg);
}

/* --- Section Divider --- */
.section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), var(--color-accent), var(--color-primary), transparent);
  border: none;
  margin: 0;
  opacity: 0.3;
}

/* --- Value Icon Hover --- */
.value-card:hover .value-icon {
  border-color: rgba(0, 180, 216, 0.3);
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.2) 0%, rgba(240, 165, 0, 0.15) 100%);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }
}

/* =====================================================
   15. RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-visual {
    order: 2;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-float-badge {
    left: auto;
    right: -10px;
    bottom: -10px;
  }

  .hero-image-container {
    display: flex;
    justify-content: center;
  }

  .hero-image {
    max-width: 400px;
  }

  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .programs-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --text-5xl: 2.5rem;
    --text-4xl: 2rem;
    --text-3xl: 1.5rem;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .hero-visual {
    order: -1;
  }

  .hero-image-wrapper {
    max-width: 350px;
    margin: 0 auto;
  }

  .hero-float-badge {
    display: none;
  }

  .nav-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .header .logo,
  .logo {
    justify-content: flex-start;
    width: auto;
    margin-bottom: 0;
  }

  .header .logo img,
  .header-logo {
    height: 60px;
    width: auto;
  }

  .nav {
    display: none;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-floating-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: var(--space-6);
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
  }

  .hero-stat {
    text-align: center;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .programs-grid {
    grid-template-columns: 1fr;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-column h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }

  /* Sales page responsive */
  .trust-bar {
    gap: var(--space-4);
    padding: var(--space-3) var(--space-4);
  }

  .transformation-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-4);
  }

  .section {
    padding: var(--space-12) 0;
  }

  .btn {
    width: 100%;
  }

  .btn-lg {
    padding: var(--space-4) var(--space-6);
    font-size: var(--text-base);
  }

  .hero-cta {
    flex-direction: column;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   16. UTILITY CLASSES
   ===================================================== */
.mb-0 {
  margin-bottom: 0;
}

.mb-4 {
  margin-bottom: var(--space-4);
}

.mb-6 {
  margin-bottom: var(--space-6);
}

.mb-8 {
  margin-bottom: var(--space-8);
}

.mt-4 {
  margin-top: var(--space-4);
}

.mt-8 {
  margin-top: var(--space-8);
}

.hidden {
  display: none !important;
}

.relative {
  position: relative;
}

.z-10 {
  z-index: 10;
}

/* Course Counter Tracker */
.search-results-count {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-top: 15px;
  font-weight: 500;
}

/* =====================================================
   SALES PAGE V2 - HIGH CONVERTING STYLES
   ===================================================== */

/* Neon Borders & Glows */
.neon-border-yellow {
  border: 2px solid #facc15;
  box-shadow: 0 0 10px rgba(250, 204, 21, 0.4), inset 0 0 5px rgba(250, 204, 21, 0.1);
  border-radius: var(--radius-lg);
}

.neon-border-cyan {
  border: 2px solid #06b6d4;
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.4), inset 0 0 5px rgba(6, 182, 212, 0.1);
  border-radius: var(--radius-lg);
}

.neon-border-magenta {
  border: 2px solid #ec4899;
  box-shadow: 0 0 10px rgba(236, 72, 153, 0.4), inset 0 0 5px rgba(236, 72, 153, 0.1);
  border-radius: var(--radius-lg);
}

.text-highlight-yellow {
  color: #fce72b;
  text-shadow: 0 0 8px rgba(250, 204, 21, 0.4);
  font-weight: 900;
}

/* Scarcity & Urgency */
.scarcity-bar-container {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  height: 12px;
  width: 100%;
  margin: var(--space-2) 0;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

.scarcity-bar-fill {
  background: linear-gradient(90deg, #ef4444, #f87171);
  height: 100%;
  width: 85%;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.6);
}

.scarcity-text {
  font-size: 0.85rem;
  color: #f87171;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Testimonial Cards V2 */
.testimonial-grid-v2 {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 600px;
  margin: 0 auto;
}

.testimonial-card-neon {
  background: linear-gradient(145deg, rgba(20, 20, 30, 0.9) 0%, rgba(10, 10, 15, 0.95) 100%);
  padding: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  border-left: 4px solid var(--page-accent, #facc15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card-neon:hover {
  transform: translateY(-2px);
  border-color: #fff;
}

.testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-gray-600);
}

.testimonial-content h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #fff;
}

.testimonial-stars {
  color: #facc15;
  font-size: 0.9rem;
  margin: 4px 0;
}

.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--color-gray-300);
  margin: 0;
}

/* Comparison Table */
.comparison-section {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-6);
  flex-wrap: wrap;
}

.compare-card {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-bg-card);
}

.compare-card.winner {
  background: linear-gradient(180deg, rgba(20, 30, 40, 1) 0%, rgba(10, 15, 20, 1) 100%);
  border: 2px solid #06b6d4;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
  transform: scale(1.05);
  z-index: 2;
}

.compare-header {
  padding: var(--space-4);
  text-align: center;
  font-weight: 800;
  font-size: 1.2rem;
}

.winner .compare-header {
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  border-bottom: 2px solid rgba(6, 182, 212, 0.3);
}

.loser .compare-header {
  background: rgba(239, 68, 68, 0.1);
  color: #f87171;
  border-bottom: 2px solid rgba(239, 68, 68, 0.3);
}

.compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compare-list li {
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--color-gray-300);
}

.compare-list li i {
  flex-shrink: 0;
}

.winner .compare-list li i {
  color: #22c55e;
}

.loser .compare-list li i {
  color: #ef4444;
}

/* Step by Step */
.step-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 600px;
  margin: var(--space-6) auto 0;
}

.step-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  position: relative;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--page-accent, var(--color-primary));
  border-radius: 4px 0 0 4px;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--color-bg-body);
  border: 2px solid var(--page-accent, var(--color-primary));
  color: var(--page-accent, var(--color-primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* Value Pricing Box */
.pricing-combo-grid {
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  margin-top: var(--space-8);
  flex-wrap: wrap;
}

.pricing-tier-neon {
  background: #0c0f1a;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-5);
  text-align: center;
  position: relative;
  min-width: 280px;
  max-width: 350px;
  transition: transform 0.3s ease;
}

.pricing-tier-neon.best-value {
  border-color: #facc15;
  box-shadow: 0 0 30px rgba(250, 204, 21, 0.2);
  transform: scale(1.05);
  z-index: 2;
}

.pricing-tier-neon.best-value::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, transparent, rgba(250, 204, 21, 0.1));
  pointer-events: none;
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #eab308, #ca8a04);
  color: #000;
  padding: 4px 16px;
  border-radius: 20px;
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(234, 179, 8, 0.4);
}

.strike-price {
  text-decoration: line-through;
  color: var(--color-gray-500);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 5px;
}

.final-price {
  color: var(--color-white);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: var(--space-4);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.final-price small {
  font-size: 1rem;
  color: var(--color-gray-400);
  font-weight: 500;
}