/* ========================================
   COME CON PEPE - Premium Design System
   ======================================== */

/* Premium Typography - DM Serif Display + Inter */
/* Font loaded in HTML: DM Serif Display for display, Inter for body */

/* CSS Variables - Premium Nature Theme */
:root {
  /* Typography System */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Type Scale - Perfect Fourth (1.333) */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.333rem;
  --text-2xl: 1.777rem;
  --text-3xl: 2.369rem;
  --text-4xl: 3.157rem;
  --text-5xl: 4.209rem;

  /* Colors */
  --primary: #1EAA8A;
  --primary-dark: #158a6e;
  --primary-light: #7FD9C4;
  --secondary: #EF6351;
  --secondary-dark: #d94d3b;
  --accent: #1EAA8A;
  --dark: #1a2e28;
  --dark-light: #243d35;
  --nature-sage: #9ABF9A;
  --nature-cream: #FDFBEE;
  --nature-teal: #004D4D;
  --nature-accent: #FF6B6B;
  --gray-900: #1e293b;
  --gray-800: #334155;
  --gray-700: #475569;
  --gray-600: #64748b;
  --gray-500: #94a3b8;
  --gray-400: #cbd5e1;
  --gray-300: #e2e8f0;
  --gray-200: #e8f0ec;
  --gray-100: #f1f5f9;
  --gray-50: #f8fafc;
  --white: #ffffff;
  --text-dark: #0f172a;
  --text-body: #334155;
  --text-light: #64748b;
  --bg-light: #F8FBF9;
  /* Sophisticated Sage White */
  --bg-cream: #FCFDFD;
  /* Ultra clean white */
  --bg-section: #F2F7F5;
  /* Soft Minty Gray (Harmonized) */

  /* Glass Effects - Optimized */
  --glass-bg: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(255, 255, 255, 0.8);
  --glass-shadow: 0 8px 32px -8px rgba(30, 170, 138, 0.05);

  /* Shadows - Performance Optimized */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px -2px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 24px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 40px -8px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 8px 30px -4px rgba(30, 170, 138, 0.3);

  /* Transitions - Smooth */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  --gradient-hero: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);

  --navbar-height: 80px;
}

/* Premium Noise Texture */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3%3Ffilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 9999;
}

/* Reset & Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-light);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

/* Typography - Premium System */
h1,
h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

h3,
h4,
h5,
h6 {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

h1 {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
}

p {
  margin-bottom: 1rem;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 70ch;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Utility Classes */
.text-gradient {
  background: linear-gradient(135deg, var(--nature-teal) 0%, var(--primary) 60%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  /* Ensure bold weight for better visibility */
}

.text-center {
  text-align: center;
}

.text-white {
  color: var(--white);
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-dark {
  background: var(--bg-section);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background: var(--white);
  color: var(--text-dark);
  border: 1px solid var(--gray-300);
}

.btn-secondary:hover {
  background: var(--bg-section);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  z-index: 1000;
  padding: 0.75rem 1.5rem;
  transition: var(--transition);
  background: var(--glass-bg);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 100px;
}

.header.scrolled {
  top: 1rem;
  width: 95%;
  padding: 0.6rem 2rem;
  background: rgba(255, 255, 255, 0.9);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-icon {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  min-height: 40px !important;
  flex: 0 0 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  overflow: hidden !important;
}

.logo-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

.logo span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo:hover .logo-icon {
  transform: rotate(15deg) scale(1.1);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--text-body);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  margin-left: 1rem;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    font-size: 1.25rem;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 1rem;
  }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
  background: var(--gradient-hero);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 80%, rgba(30, 170, 138, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(30, 170, 138, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(127, 217, 196, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(30, 170, 138, 0.1);
  border: 1px solid rgba(30, 170, 138, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  opacity: 1;
  /* Ensure visibility - GSAP handles animation */
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  opacity: 1;
  color: var(--nature-teal);
  /* Explicit dark color for maximum contrast */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  /* Subtle shadow for crispness */
}

.hero-title .highlight {
  position: relative;
  display: inline-block;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 12px;
  background: var(--primary);
  opacity: 0.3;
  z-index: -1;
  transform: skewX(-5deg);
}

.hero-description {
  font-size: 1.25rem;
  color: var(--gray-700);
  /* Darker color for better contrast */
  margin-bottom: 2rem;
  max-width: 500px;
  opacity: 1;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 1;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(30, 170, 138, 0.2);
  opacity: 1;
  /* Ensure visibility - GSAP handles animation */
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.stat-label {
  color: var(--text-body);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Hero Image */
.hero-image {
  position: relative;
  animation: floatAnimation 6s ease-in-out infinite;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient-primary);
  border-radius: 32px;
  z-index: -1;
  opacity: 0.5;
}

.hero-image img {
  width: 100%;
  border-radius: 30px;
}

/* Floating Elements */
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 1rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.floating-card.card-1 {
  top: 10%;
  right: -30px;
  animation-delay: 0s;
}

.floating-card.card-2 {
  bottom: 20%;
  left: -30px;
  animation-delay: 2s;
}

.floating-card-icon {
  width: 45px;
  height: 45px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--dark);
}

.floating-card-text h4 {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
  /* Dark text for readability on glass background */
}

.floating-card-text p {
  font-size: 0.75rem;
  color: var(--text-body);
  /* Body color for better contrast */
  margin: 0;
}

@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .floating-card {
    display: none;
  }
}

/* ========================================
/* COLABORACIÓN VIT - Styles Removed */

/* ========================================
   SERVICES / FEATURES SECTION
   ======================================== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-label {
  display: inline-block;
  background: rgba(30, 170, 138, 0.1);
  color: var(--primary);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-body);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: var(--gradient-primary);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(30, 170, 138, 0.15);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: rgba(30, 170, 138, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--gradient-primary);
}

.service-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
  transition: color 0.4s ease;
}

.service-card:hover .service-icon svg {
  color: var(--white);
}

/* Featured Card Style (Pack Inicial) */
.service-card.featured {
  background: #f0fdf9;
  /* Very light mint */
  border-color: var(--primary-light);
  box-shadow: 0 15px 35px rgba(30, 170, 138, 0.1);
}

.service-card.featured .service-icon {
  background: var(--gradient-primary);
}

.service-card.featured .service-icon svg {
  color: var(--white);
}

.service-icon svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

.service-card h3 {
  color: var(--text-dark);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.service-card p {
  color: var(--text-body);
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  position: relative;
  z-index: 1;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-body);
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.service-features li svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
  position: relative;
  z-index: 1;
}

.service-price .amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.service-price .period {
  color: var(--text-light);
  font-size: 0.875rem;
}

.service-card.featured {
  background: linear-gradient(135deg, #e8f5f1 0%, #d4f0e7 100%);
  border-color: var(--primary-light);
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured .service-features li {
  color: var(--text-dark);
}

.service-card.featured::after {
  display: none;
}

/* Grid de 4 columnas para servicios */
.services-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1200px) {
  .services-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Badge "Más Popular" */
.popular-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: 0 0 12px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(30, 170, 138, 0.3);
}

/* Badge VIP */
.vip-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: var(--text-dark);
  padding: 0.5rem 1.25rem;
  border-radius: 0 0 12px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Estilo VIP para el card */
.service-card.vip {
  background: linear-gradient(135deg, #fffef5 0%, #fff9e6 100%);
  border-color: rgba(255, 180, 0, 0.4);
}

.service-card.vip:hover {
  border-color: rgba(255, 180, 0, 0.6);
  box-shadow: 0 20px 60px rgba(255, 180, 0, 0.15);
}

.service-card.vip .service-icon {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.service-card.vip .service-price .amount {
  color: #d4a000;
}

.service-card.vip h3,
.service-card.vip p,
.service-card.vip .service-features li {
  color: var(--text-dark);
}

/* =====================================================
   PÁGINA DE AGRADECIMIENTO (GRACIAS)
   ===================================================== */

.thank-you-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
}

.thank-you-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-card);
}

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
}

.success-icon svg {
  color: var(--white);
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(30, 170, 138, 0.4);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 30px 10px rgba(30, 170, 138, 0.2);
  }
}

.thank-you-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.thank-you-message {
  font-size: 1.1rem;
  color: var(--text-body);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.next-steps {
  background: var(--bg-section);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

.next-steps h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.next-steps ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.next-steps li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: var(--text-body);
  border-bottom: 1px solid var(--gray-200);
}

.next-steps li:last-child {
  border-bottom: none;
}

.next-steps li svg {
  color: var(--primary);
  flex-shrink: 0;
}

.thank-you-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.contact-info-box {
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
  color: var(--text-body);
  font-size: 0.9rem;
}

.contact-info-box p {
  margin-bottom: 0.5rem;
}

.contact-info-box a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-box a:hover {
  color: var(--secondary);
}

.contact-info-box span {
  margin: 0 0.75rem;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .thank-you-content {
    padding: 2rem 1.5rem;
  }

  .thank-you-content h1 {
    font-size: 1.8rem;
  }

  .success-icon {
    width: 80px;
    height: 80px;
  }

  .success-icon svg {
    width: 50px;
    height: 50px;
  }
}

/* ========================================
   ABOUT / CONOCE A PEPE SECTION
   ======================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image {
  position: relative;
  transition: var(--transition);
}

.about-image:hover {
  transform: translateY(-10px);
}

.about-image-main {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-main::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient-primary);
  border-radius: 32px;
  z-index: -1;
  opacity: 0.5;
}

.about-image-main img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  border-radius: 30px;
  transition: var(--transition-slow);
}

.about-image:hover .about-image-main img {
  transform: scale(1.05);
}

.about-decoration {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 3px solid var(--primary);
  border-radius: 30px;
  bottom: -20px;
  right: -20px;
  z-index: 0;
  opacity: 0.3;
  pointer-events: none;
}

.about-experience {
  position: absolute;
  bottom: 20px;
  right: 20px;
  left: auto;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 1.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.about-experience .number {
  font-size: 3rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.about-experience .text {
  font-size: 0.875rem;
  font-weight: 600;
}

.about-content h2 {
  color: var(--text-dark);
}

.about-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about-feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(30, 170, 138, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.about-feature h4 {
  color: var(--text-dark);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.about-feature p {
  font-size: 0.875rem;
  margin: 0;
}

@media (max-width: 968px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image {
    max-width: 100%;
    /* Ensure it doesn't overflow small screens */
    width: 450px;
    /* Target width */
    margin: 0 auto 2rem;
    /* Add bottom margin for the absolute badge */
  }

  /* Adjust absolute elements for mobile to prevent overflow */
  .about-experience {
    right: 10px;
    left: auto;
    transform: none;
    bottom: 10px;
    width: max-content;
    padding: 1rem 1.5rem;
  }

  .about-experience .number {
    font-size: 2.5rem;
  }

  .about-decoration {
    right: -10px;
    bottom: -10px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--glass-shadow);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 77, 77, 0.1);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  color: #ffd700;
  fill: #ffd700;
}

.testimonial-text {
  font-size: 1.1rem;
  color: var(--text-body);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}

.testimonial-info h4 {
  color: var(--text-dark);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.testimonial-info p {
  color: var(--primary);
  font-size: 0.875rem;
  margin: 0;
}

.testimonial-quote {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.1;
  font-family: Georgia, serif;
  line-height: 1;
}

/* ========================================
   DIAGNÓSTICO FLASH - Lead Magnet
   ======================================== */
.section-flash {
  background: var(--bg-light);
  border-bottom: 1px solid var(--gray-200);
  padding: 5rem 0;
}

.flash-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  background: var(--gradient-primary);
  background-image:
    radial-gradient(ellipse at 0% 0%, rgba(30, 170, 138, 0.5) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 0%, rgba(0, 77, 77, 0.6) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(127, 217, 196, 0.4) 0%, transparent 50%),
    var(--gradient-primary);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.cta-content p {
  color: var(--white);
  opacity: 0.9;
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--dark-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-white {
  background: var(--white);
  color: var(--text-dark);
}

.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-3px);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--dark);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  margin-top: 1rem;
  color: var(--gray-400);
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 42px;
  height: 42px;
  background: var(--dark-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  color: var(--gray-400);
}

.footer-social a:hover svg {
  color: var(--white);
}

.footer-column h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--gray-400);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--gray-400);
  font-size: 0.875rem;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: var(--gray-400);
  font-size: 0.875rem;
}

.footer-legal a:hover {
  color: var(--primary);
}

@media (max-width: 968px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ========================================
   CONTACT / FORMS
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  padding-right: 2rem;
}

.contact-info h2 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.contact-info>p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.contact-method:hover {
  transform: translateX(10px);
  border-left: 3px solid var(--primary);
}

.contact-method-icon {
  width: 50px;
  height: 50px;
  background: rgba(30, 170, 138, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-method-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.contact-method h4 {
  color: var(--text-dark);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.contact-method p {
  margin: 0;
  font-size: 0.9rem;
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-card);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--bg-light);
  border: 1px solid var(--gray-300);
  border-radius: 12px;
  color: var(--text-dark);
  font-size: 1rem;
  transition: var(--transition);
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 170, 138, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding-right: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   BLOG CARDS
   ======================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.blog-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
}

.blog-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.1);
}

.blog-card-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary);
  color: var(--white);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--gray-400);
}

.blog-card-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.blog-card-meta svg {
  width: 14px;
  height: 14px;
}

.blog-card h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-card h3 a:hover {
  color: var(--primary);
}

.blog-card>p {
  color: var(--gray-400);
  font-size: 0.95rem;
  line-height: 1.6;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: 1rem;
}

.blog-card-link svg {
  width: 18px;
  height: 18px;
  transition: var(--transition);
}

.blog-card-link:hover svg {
  transform: translateX(5px);
}

/* ========================================
   PAGE HEADERS
   ======================================== */
.page-header {
  padding: 10rem 0 5rem;
  text-align: center;
  position: relative;
  background: var(--gradient-hero);
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 30% 70%, rgba(30, 170, 138, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(108, 92, 231, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.page-header h1 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  position: relative;
}

.page-header p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  position: relative;
}

.breadcrumb a {
  color: var(--gray-400);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb span {
  color: var(--gray-600);
}

.breadcrumb .current {
  color: var(--primary);
}

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  color: var(--white);
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-content h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin: 2rem 0 0.75rem;
}

.legal-content p {
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
  color: var(--gray-400);
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.legal-content ul li {
  list-style-type: disc;
}

.legal-content ol li {
  list-style-type: decimal;
}

.legal-content a {
  color: var(--primary);
}

.legal-content a:hover {
  text-decoration: underline;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes floatAnimation {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(2deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(30, 170, 138, 0.3);
  }

  50% {
    box-shadow: 0 0 40px rgba(30, 170, 138, 0.6);
  }
}

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 {
  transition-delay: 0.1s;
}

.animate-on-scroll.delay-2 {
  transition-delay: 0.2s;
}

.animate-on-scroll.delay-3 {
  transition-delay: 0.3s;
}

.animate-on-scroll.delay-4 {
  transition-delay: 0.4s;
}

/* Particle Background */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.3;
  animation: floatParticle 15s infinite;
}

@keyframes floatParticle {

  0%,
  100% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 0.3;
  }

  90% {
    opacity: 0.3;
  }

  100% {
    transform: translateY(-100vh) rotate(720deg);
    opacity: 0;
  }
}

/* Loading Spinner */
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(30, 170, 138, 0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: rotate 1s linear infinite;
}

/* Auth Page Styles */
.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.auth-card {
  background: var(--dark-light);
  border-radius: 24px;
  padding: 3rem;
  width: 100%;
  max-width: 450px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-header .logo {
  justify-content: center;
  margin-bottom: 1.5rem;
}

.auth-header h1 {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.auth-header p {
  color: var(--gray-400);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  color: var(--gray-400);
  font-size: 0.875rem;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.auth-footer {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--gray-400);
  font-size: 0.9rem;
}

.auth-footer a {
  color: var(--primary);
  font-weight: 600;
}

/* Utility Classes */
.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

/* ========================================
   VIDEO SCROLL SECTION
   ======================================== */
.video-scroll-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: var(--dark);
}

.video-scroll-container {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-scroll-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0.2) 50%,
      rgba(0, 0, 0, 0.5) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.video-content {
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 2.5rem 3rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  opacity: 1;
  transform: translateY(0);
}

.video-content.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Background Text */
.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-family: var(--font-heading);
}

.video-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--white);
  text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.4);
}

.video-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.3);
  margin: 0;
}

.video-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .video-scroll-section {
    height: auto;
    min-height: 90vh;
  }

  .video-scroll-container {
    height: auto;
    min-height: 90vh;
  }

  .video-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1rem;
  }

  .video-content {
    padding: 1.5rem;
  }

  .video-title {
    font-size: 1.5rem;
  }
}

.py-1 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-3 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.w-full {
  width: 100%;
}

.text-sm {
  font-size: 0.875rem;
}

.font-bold {
  font-weight: 700;
}