/* Home Page Specific Styles */

/* Optimizaciones de Diseño */
.hero-slide {
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.join {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
  padding: 80px 0;
}

.join-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.title-with-badges {
  margin-bottom: 40px;
}

.exclusivity-badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.exclusive-badge {
  color: white;
  padding: 5px 15px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.badge-red {
  border-color: rgba(255, 0, 48, 0.3);
  color: #FF0030;
}

.badge-purple {
  border-color: rgba(90, 74, 90, 0.3);
  color: #a58ca5;
}

.badge-black {
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.selection-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px 20px;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.stat-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.stat-card.red,
.stat-card.orange,
.stat-card.purple {
  border-top: none;
}

.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: var(--primary);
  opacity: 0.3;
  transition: width 0.3s ease;
}

.stat-card:hover::after {
  width: 60px;
  opacity: 1;
}

.stat-number-big {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: white;
  /* Default to white for cleaner look */
}

.stat-card.red .stat-number-big {
  color: var(--primary);
}

.stat-card.orange .stat-number-big {
  color: #ff8e53;
}

.stat-card.purple .stat-number-big {
  color: #a58ca5;
}

.stat-label-small {
  color: #e0e0e0;
  font-size: 0.9rem;
}

.join-cta {
  margin-bottom: 40px;
}

.btn-premium {
  background: linear-gradient(135deg, #FF0030, #ff8e53);
  border: none;
  padding: 18px 45px;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(255, 0, 48, 0.4);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin-right: 15px;
  display: inline-block;
  color: white;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  z-index: -1;
}

.btn-premium:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 0, 48, 0.6);
  color: white;
}

.btn-premium:hover::before {
  width: 100%;
}

.btn-outline-premium {
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 18px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.btn-outline-premium:hover {
  background: white;
  color: black;
  border-color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.join-note-box {
  background: rgba(255, 0, 48, 0.1);
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid #FF0030;
}

.marketing-stats-box {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 60px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item-premium .stat-num {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FF0030, #ff8e53);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.stat-item-premium .stat-lab {
  color: #e0e0e0;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Pathway Section Styles */
.pathway {
  padding: 100px 0;
  background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pathway-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin: 50px 0;
}

.pathway-option {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 20px;
  position: relative;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pathway-option:hover {
  transform: translateY(-15px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.pathway-option.recommended {
  border-top: 4px solid #FF0030;
}

.pathway-option.expert {
  border-top: 4px solid #5A4A5A;
}

.pathway-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  padding: 8px 25px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.badge-recommended {
  background: linear-gradient(135deg, #FF0030, #ff8e53);
}

.badge-expert {
  background: linear-gradient(135deg, #5A4A5A, #ff8e53);
}

.pathway-icon {
  font-size: 4rem;
  margin-bottom: 25px;
}

.icon-red {
  color: #FF0030;
}

.icon-purple {
  color: #5A4A5A;
}

.pathway-features,
.pathway-requirements {
  text-align: left;
  margin-bottom: 30px;
}

.feature-item,
.requirement-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.feature-item i,
.requirement-item i {
  margin-right: 12px;
  width: 20px;
  text-align: center;
}

/* Animaciones de Scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: transform, opacity;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.join-content p strong {
  color: var(--primary);
}

.join-note-box p {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.join-note-box p em {
  color: #ff8e53;
}

.services-header {
  text-align: center;
  margin-bottom: 50px;
}

.services-header .exclusivity-badges {
  margin-top: 5px;
}

.about {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
  padding: 150px 0 100px 0;
}

.about .exclusivity-badges {
  justify-content: flex-start;
  margin-bottom: 25px;
}

.badge-gold {
  background: linear-gradient(45deg, #FFD700, #FFA500);
  color: #000;
}

.badge-green {
  background: linear-gradient(45deg, #1DB954, #1ED760);
  color: white;
}

.pathway-content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.pathway-content .section-subtitle strong {
  color: var(--primary);
}

.pathway-option h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.pathway-option p {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 25px;
}

.pathway-option .feature-item i {
  color: var(--primary);
}

.pathway-option .feature-item span {
  color: #e0e0e0;
}

.pathway-option .feature-item i.fa-star,
.pathway-option .feature-item span.highlight {
  color: #ff8e53;
  font-weight: bold;
}

.pathway-option.expert .requirement-item i {
  color: #5A4A5A;
}

.pathway-option.expert .requirement-item span {
  color: #e0e0e0;
}

.pathway-option.expert .requirement-item i.fa-trophy,
.pathway-option.expert .requirement-item span.highlight {
  color: #ff8e53;
  font-weight: bold;
}

.pathway-option .btn-premium,
.pathway-option .btn-outline-premium {
  width: 100%;
  text-align: center;
  padding: 15px 0;
}

.pathway .join-note-box {
  text-align: center;
}

.pathway .join-note-box h4 {
  color: var(--primary);
  margin-bottom: 15px;
}

.pathway .join-note-box p {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.pathway .join-note-box p em {
  color: #ff8e53;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(3.8rem, 10vw, 4.8rem) !important;
    line-height: 1.05 !important;
    margin-bottom: 1rem !important;
    letter-spacing: -0.5px !important;
    font-weight: 900 !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6) !important;
    text-transform: uppercase;
    width: 100%;
    display: block;
  }

  .hero-subtitle {
    font-size: 1.05rem !important;
    padding: 0 20px;
    margin-bottom: 2.2rem !important;
    line-height: 1.4 !important;
    font-weight: 400 !important;
    color: #ffffff !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8) !important;
    opacity: 0.9 !important;
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-content {
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 310px;
    margin: 0 auto;
  }

  .hero-btn-primary,
  .hero-btn-outline {
    width: 100% !important;
    margin: 0 !important;
    padding: 12px 20px !important;
    font-size: 0.85rem !important;
    border-radius: 50px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
  }

  /* Ajuste para pantallas extra pequeñas (iPhone SE, etc) */
  @media (max-width: 380px) {
    .hero-title {
      font-size: 2.8rem !important;
      letter-spacing: -0.5px !important;
    }

    .hero-subtitle {
      font-size: 0.95rem !important;
    }
  }

  .join {
    padding: 80px 0;
  }

  .join-content {
    padding: 0 20px;
  }

  .section-title {
    font-size: 2.2rem !important;
    letter-spacing: -0.5px;
  }

  .section-subtitle {
    font-size: 1.1rem !important;
    margin-bottom: 40px !important;
  }

  .selection-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-card {
    padding: 40px 20px;
  }

  .exclusivity-badges {
    gap: 8px;
    margin-bottom: 30px;
  }

  .exclusive-badge {
    padding: 4px 10px;
    font-size: 9px;
  }

  .btn-premium,
  .btn-outline-premium {
    width: 100%;
    margin: 8px 0;
    padding: 18px 25px;
    font-size: 1.1rem;
  }

  .join-note-box {
    padding: 30px 20px;
    margin-top: 40px;
  }

  .marketing-stats-box {
    padding: 30px 20px;
    gap: 30px;
  }

  .stat-item-premium .stat-num {
    font-size: 2.5rem;
  }

  .pathway-options {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pathway-option {
    padding: 40px 25px;
  }

  .about {
    padding: 80px 0;
  }

  .about .exclusivity-badges {
    justify-content: center;
    margin-bottom: 30px;
  }

  .about-title {
    font-size: 2rem;
    text-align: center;
  }

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

  .about-quote {
    text-align: center;
    margin-top: 30px;
  }
}

/* ==========================================================================
   MODERN DESIGN IMPROVEMENTS (High-End Dark Mode & Glassmorphism Aesthetics)
   ========================================================================== */

/* Accent variables & background glowing circles */
:root {
  --glass-bg: rgba(255, 255, 255, 0.02);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-bg-hover: rgba(255, 255, 255, 0.05);
  --shadow-glow-red: 0 15px 35px rgba(255, 0, 48, 0.15), 0 0 25px rgba(255, 0, 48, 0.05);
  --shadow-glow-purple: 0 15px 35px rgba(165, 140, 165, 0.15), 0 0 25px rgba(165, 140, 165, 0.05);
}

/* Immersive background radial glows */
.section {
  position: relative;
  overflow: hidden;
}

.section::before {
  content: '';
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 0, 48, 0.04) 0%, transparent 70%);
  bottom: -200px;
  left: -150px;
  pointer-events: none;
  filter: blur(60px);
  z-index: 0;
}

.pathway::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(165, 140, 165, 0.04) 0%, transparent 70%);
  top: -100px;
  right: -150px;
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
}

/* Premium Title Gradient Styling */
.section-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #ffffff 40%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900 !important;
  letter-spacing: -0.03em !important;
  background: linear-gradient(135deg, #ffffff 30%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.5));
}

/* 1. Proceso Completo: Glassmorphism layout */
.distribution-process {
  background: rgba(10, 10, 15, 0.45) !important;
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4) !important;
  padding: 3rem 2rem !important;
  border-radius: 24px !important;
}

.process-step {
  background: var(--glass-bg) !important;
  border: 1px solid var(--glass-border) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border-radius: 16px !important;
  padding: 2rem 1.5rem !important;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-step::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 0, 48, 0.02) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 0;
}

.process-step:hover::before {
  opacity: 1;
}

.process-step:hover {
  transform: translateY(-8px) scale(1.02) !important;
  background: var(--glass-bg-hover) !important;
  border-color: rgba(255, 0, 48, 0.3) !important;
  box-shadow: var(--shadow-glow-red) !important;
}

.process-icon {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  position: relative;
  z-index: 1;
}

.process-step:hover .process-icon {
  transform: scale(1.1) translateY(-3px);
  filter: drop-shadow(0 0 10px rgba(255, 0, 48, 0.8));
}

.process-title,
.process-description {
  position: relative;
  z-index: 1;
}

/* 2. ¿Tienes Lo Que Buscamos?: Stat Cards glow */
.stat-card {
  background: rgba(255, 255, 255, 0.01) !important;
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
  border-radius: 20px !important;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  position: relative;
}

.stat-card.red {
  border-bottom: 3px solid var(--primary) !important;
}

.stat-card.orange {
  border-bottom: 3px solid #ff8e53;
}

.stat-card.purple {
  border-bottom: 3px solid #a58ca5;
}

.stat-card:hover {
  transform: translateY(-10px) scale(1.02) !important;
  background: rgba(255, 255, 255, 0.03) !important;
}

.stat-card.red:hover {
  border-color: var(--primary) !important;
  box-shadow: 0 20px 40px rgba(255, 0, 48, 0.15) !important;
}

.stat-card.orange:hover {
  border-color: #ff8e53 !important;
  box-shadow: 0 20px 40px rgba(255, 142, 83, 0.15) !important;
}

.stat-card.purple:hover {
  border-color: #a58ca5 !important;
  box-shadow: 0 20px 40px rgba(165, 140, 165, 0.15) !important;
}

/* 3. Servicios de Elite: High-Fidelity Cards */
.marketing-card {
  background: rgba(10, 10, 15, 0.35) !important;
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
  backdrop-filter: blur(15px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(15px) saturate(180%) !important;
  border-radius: 20px !important;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
  position: relative;
  overflow: hidden;
}

.marketing-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 0, 48, 0.03) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 0;
}

.marketing-card:hover::before {
  opacity: 1;
}

.marketing-card:hover {
  transform: translateY(-4px) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 0, 48, 0.3) !important;
  box-shadow: var(--shadow-glow-red) !important;
}

.marketing-icon {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  position: relative;
  z-index: 1;
}

.marketing-card:hover .marketing-icon {
  transform: none;
  filter: drop-shadow(0 0 10px rgba(255, 0, 48, 0.8));
}

.marketing-title,
.marketing-text,
.btn {
  position: relative;
  z-index: 1;
}

/* 4. Pathway: Frosty Glow Columns */
.pathway-option {
  background: rgba(10, 10, 15, 0.3) !important;
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
  backdrop-filter: blur(15px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(15px) saturate(180%) !important;
  border-radius: 24px !important;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.pathway-option.recommended {
  border: 1px solid rgba(255, 0, 48, 0.15) !important;
}

.pathway-option.expert {
  border: 1px solid rgba(90, 74, 90, 0.15) !important;
}

.pathway-option:hover {
  transform: translateY(-12px) scale(1.01) !important;
}

.pathway-option.recommended:hover {
  border-color: rgba(255, 0, 48, 0.5) !important;
  background: rgba(255, 0, 48, 0.015) !important;
  box-shadow: var(--shadow-glow-red) !important;
}

.pathway-option.expert:hover {
  border-color: rgba(165, 140, 165, 0.5) !important;
  background: rgba(90, 74, 90, 0.02) !important;
  box-shadow: var(--shadow-glow-purple) !important;
}

/* 5. Custom premium badges */
.exclusive-badge {
  border-radius: 8px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  padding: 6px 16px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.badge-red {
  background: rgba(255, 0, 48, 0.08) !important;
  border-color: rgba(255, 0, 48, 0.3) !important;
  text-shadow: 0 0 8px rgba(255, 0, 48, 0.3);
}

.badge-purple {
  background: rgba(165, 140, 165, 0.08) !important;
  border-color: rgba(165, 140, 165, 0.3) !important;
  text-shadow: 0 0 8px rgba(165, 140, 165, 0.3);
}

/* Micro-animations and interaction enhancements */
.btn-premium {
  letter-spacing: 1px;
  position: relative;
  box-shadow: 0 10px 30px rgba(255, 0, 48, 0.3) !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.btn-premium:hover {
  box-shadow: 0 15px 40px rgba(255, 0, 48, 0.55) !important;
  transform: translateY(-4px) scale(1.02) !important;
}

.btn-outline-premium {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.btn-outline-premium:hover {
  transform: translateY(-4px) scale(1.02) !important;
}

/* Perfect alignment for CTA buttons */
.join-cta {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 20px !important;
  margin-bottom: 40px !important;
  flex-wrap: wrap !important;
  margin-top: 30px !important;
}

.join-cta .btn-premium,
.join-cta .btn-outline-premium {
  padding: 0 40px !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 58px !important;
  border-radius: 50px !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  text-align: center !important;
  line-height: normal !important;
}

/* Beautiful custom font/highlight for the Win-Win slogan */
.text-highlight-win {
  font-style: italic !important;
  font-weight: 700 !important;
  color: #ff3355 !important;
  text-shadow: 0 0 12px rgba(255, 0, 48, 0.2) !important;
  letter-spacing: 0.5px !important;
  font-size: 1.05em !important;
  display: inline-block !important;
}

/* 15% Net Hero Badge */
.hero-badge-container {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.hero-premium-badge {
  background: rgba(255, 0, 48, 0.12);
  border: 1px solid rgba(255, 0, 48, 0.45);
  color: #FF0030;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(255, 0, 48, 0.2);
  animation: pulse-glow 3s infinite;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 15px rgba(255, 0, 48, 0.2);
    border-color: rgba(255, 0, 48, 0.4);
  }

  50% {
    box-shadow: 0 0 25px rgba(255, 0, 48, 0.4);
    border-color: rgba(255, 0, 48, 0.6);
  }

  100% {
    box-shadow: 0 0 15px rgba(255, 0, 48, 0.2);
    border-color: rgba(255, 0, 48, 0.4);
  }
}

/* Growth Modules Grid Layout */
.growth-modules-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 40px auto 60px;
  max-width: 1100px;
  position: relative;
  z-index: 2;
}

.growth-module-card {
  background: rgba(10, 10, 15, 0.4) !important;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.growth-module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.02), transparent 60%);
  pointer-events: none;
}

.growth-module-card:hover {
  transform: translateY(-10px);
  background: rgba(15, 15, 22, 0.5) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Card Badge styling */
.growth-modules-container .card-badge {
  position: absolute;
  top: 15px;
  right: 20px;
  background: rgba(255, 0, 48, 0.15);
  border: 1px solid rgba(255, 0, 48, 0.3);
  color: #ff3355;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.growth-modules-container .card-badge.badge-optional {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cccccc;
}

/* Header, icon, title, subtitle inside cards */
.growth-module-card .card-icon {
  font-size: 2.2rem;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #ffffff, #888888);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.core-card .card-icon {
  background: linear-gradient(135deg, #ff0030, #ff8e53);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.acceleration-card .card-icon {
  background: linear-gradient(135deg, #ff8e53, #ffa500);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.elite-card .card-icon {
  background: linear-gradient(135deg, #a58ca5, #ff8e53);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.growth-module-card .card-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 5px 0;
  letter-spacing: 0.5px;
  font-family: 'Space Grotesk', sans-serif;
  color: white;
}

.growth-module-card .card-subtitle {
  font-size: 0.85rem;
  color: #aaaaaa;
  margin-bottom: 25px;
  font-weight: 500;
}

/* Pricing block styling */
.card-pricing {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-percentage {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(135deg, #ffffff, #b3b3b3);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.core-card .price-percentage {
  background: linear-gradient(135deg, #ff0030, #ff8e53);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(255, 0, 48, 0.2);
}

.price-detail {
  font-size: 0.75rem;
  color: #888888;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Features List styling */
.card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
  width: 100%;
  text-align: left;
}

.card-features li {
  font-size: 0.9rem;
  color: #cccccc;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.4;
}

.card-features li i {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.8rem;
  width: 16px;
  text-align: center;
}

.core-card .card-features li i {
  color: #ff3355;
}

/* Specific Card Outline Highlight for M1 (Core 15%) */
.core-card {
  border: 1px solid rgba(255, 0, 48, 0.25);
  box-shadow: 0 10px 30px rgba(255, 0, 48, 0.05);
}

.core-card:hover {
  border-color: rgba(255, 0, 48, 0.5);
  box-shadow: 0 20px 45px rgba(255, 0, 48, 0.18);
}

/* Card Button/CTA styling */
.btn-module-primary {
  background: linear-gradient(135deg, #FF0030, #ff8e53);
  color: white !important;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  width: 100%;
  display: block;
  box-sizing: border-box;
  box-shadow: 0 5px 15px rgba(255, 0, 48, 0.2);
}

.btn-module-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 0, 48, 0.4);
}

.btn-module-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white !important;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  width: 100%;
  display: block;
  box-sizing: border-box;
}

.btn-module-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}