/* ==========================================================================
   JEANCONECTA v6.0 — Premium Light Glassmorphic Design System
   Aesthetics: White Space (#FFFFFF) | Soft Moving Clouds (Violet & Blue)
                Neon Indigo (#6366F1) | Neon Pink (#EC4899) | Electric Cyan (#06B6D4)
                Emerald Mint (#059669) | Warm Gold (#D97706) | Slate Slate (#0F172A)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,500;1,600&display=swap');

:root {
  /* Color Design Tokens - Light Theme */
  --space-dark: #FFFFFF;
  --space-mid: #F8FAFC;
  --space-light: #F1F5F9;
  --card-glass: rgba(255, 255, 255, 0.55);
  
  --primary-indigo: #6366F1;
  --primary-indigo-dark: #4F46E5;
  --primary-indigo-rgb: 99, 102, 241;
  
  --neon-indigo: #6366F1;
  --neon-pink: #EC4899;
  --neon-cyan: #06B6D4;
  --neon-gold: #D97706;
  --neon-mint: #059669;
  
  --text-main: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  
  /* Typography & Layout */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Playfair Display', serif;
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;

  /* Shadows and Glows - Light Theme Soft Shadows */
  --shadow-sm: 0 4px 12px rgba(99, 102, 241, 0.03);
  --shadow-md: 0 12px 30px -10px rgba(99, 102, 241, 0.08);
  --shadow-lg: 0 30px 60px -15px rgba(99, 102, 241, 0.12);
  --border-glass: rgba(99, 102, 241, 0.12);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 110px;
  background-color: var(--space-dark);
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--space-dark);
  color: var(--text-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---- Soft Moving Clouds Background System ---- */
.space-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  background-color: #FFFFFF;
}

.space-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.15;
  pointer-events: none;
  animation: cloudMove 22s ease-in-out infinite;
}

.space-glow--1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.9), transparent);
  top: -15%;
  right: -10%;
  animation-duration: 28s;
}

.space-glow--2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.9), transparent);
  bottom: -10%;
  left: -10%;
  animation-duration: 22s;
  animation-delay: -6s;
}

.space-glow--3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.8), transparent);
  top: 35%;
  left: 30%;
  animation-duration: 25s;
  animation-delay: -11s;
}

.blueprint-grid {
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
  background-size: 55px 55px;
  z-index: -1;
  pointer-events: none;
}

@keyframes cloudMove {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(60px, -40px) scale(1.08);
  }
  66% {
    transform: translate(-40px, 30px) scale(0.92);
  }
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-main);
}

h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
}

h4 {
  font-size: 1.15rem;
  font-weight: 600;
}

p {
  line-height: 1.8;
  color: var(--text-body);
  font-size: 1.05rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s var(--ease-premium);
}

.accent-font {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
}

.text-gold { color: var(--neon-gold); }
.text-cyan { color: var(--neon-cyan); }
.text-purple { color: var(--neon-indigo); }

.text-neon {
  background: linear-gradient(135deg, var(--neon-indigo), var(--neon-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.15));
}

.text-outline--white {
  -webkit-text-stroke: 1.5px var(--text-main);
  -webkit-text-fill-color: transparent;
}

.text-outline--indigo {
  -webkit-text-stroke: 1.5px var(--neon-indigo);
  -webkit-text-fill-color: transparent;
}

/* ---- Sleek Highlight Marker System ---- */
.highlight-underline {
  position: relative;
  display: inline;
}

.highlight-underline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--neon-indigo), var(--neon-pink));
  z-index: 1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s var(--ease-premium);
  border-radius: 2px;
}

.highlight-underline.revealed::after {
  transform: scaleX(1);
}

.highlight-marker {
  position: relative;
  display: inline;
  z-index: 1;
  padding: 0 4px;
}

.highlight-marker::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 45%;
  background-color: rgba(99, 102, 241, 0.12);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s var(--ease-premium);
}

.highlight-marker.revealed::before {
  transform: scaleX(1);
}

.highlight-marker--blue::before {
  background-color: rgba(6, 182, 212, 0.12);
}

.highlight-marker--pink::before {
  background-color: rgba(236, 72, 153, 0.12);
}

.highlight-marker--green::before {
  background-color: rgba(16, 185, 129, 0.12);
}

.highlight-marker--gold::before {
  background-color: rgba(245, 158, 11, 0.12);
}

.highlight-scribble {
  position: relative;
  display: inline;
}

.highlight-scribble::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-indigo), var(--neon-pink));
  opacity: 0.8;
  z-index: 1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s var(--ease-premium);
}

.highlight-scribble.revealed::after {
  transform: scaleX(1);
}

/* ---- Card Glow Follow Mouse System ---- */
.glow-card {
  position: relative;
  background: var(--card-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease-premium), border-color 0.5s var(--ease-premium), box-shadow 0.5s var(--ease-premium), background 0.5s var(--ease-premium);
}

.glow-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: radial-gradient(350px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(99, 102, 241, 0.25), rgba(236, 72, 153, 0.18) 40%, transparent 80%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
}

.glow-card:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(99, 102, 241, 0.45);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 45px rgba(99, 102, 241, 0.12), 0 0 20px rgba(99, 102, 241, 0.05);
}

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

.glow-card h3 {
  transition: color 0.4s var(--ease-premium);
}

.glow-card:hover h3 {
  color: var(--neon-indigo);
}

/* Browser Mockup Glass styling */
.browser-mockup {
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
  display: block;
}

.browser-header {
  height: 40px;
  background-color: rgba(248, 250, 252, 0.6);
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 6px;
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.browser-dot--red { background-color: #EF4444; }
.browser-dot--yellow { background-color: #F59E0B; }
.browser-dot--green { background-color: #10B981; }

.browser-address {
  height: 24px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  flex: 1;
  max-width: 280px;
  margin: 0 auto;
  font-size: 0.72rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.browser-content {
  position: relative;
}

.browser-content img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s var(--ease-premium);
}

/* Floating Interactive Labels (Premium Dark Glassmorphic) */
.jc-hero__float {
  position: absolute;
  padding: 12px 18px;
  border-radius: 12px;
  background: rgba(10, 10, 26, 0.92); /* Dark Cosmic Glassmorphism */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12); /* Fine cosmic border */
  z-index: 5;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  
  /* Parallax scrolling */
  transform: translateY(calc(var(--scroll-offset, 0px) * var(--parallax-factor, 0.1)));
  
  /* Independent slow floating animation using translate */
  animation: floating-anim 6s ease-in-out infinite;
  
  transition: transform 0.15s cubic-bezier(0.1, 0.8, 0.2, 1), 
              border-color 0.3s ease, 
              box-shadow 0.3s ease;
}

.jc-hero__float:hover {
  transform: translateY(calc(var(--scroll-offset, 0px) * var(--parallax-factor, 0.1))) scale(1.05) !important;
}

.float-badge-1:hover {
  border-color: var(--neon-indigo) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(99, 102, 241, 0.35) !important;
}

.float-badge-2:hover {
  border-color: var(--neon-cyan) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(6, 182, 212, 0.35) !important;
}

.float-badge-3:hover {
  border-color: var(--neon-pink) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(236, 72, 153, 0.35) !important;
}

.float-badge-4:hover {
  border-color: var(--neon-mint) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(5, 150, 105, 0.35) !important;
}

@keyframes floating-anim {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

/* Float badges inner content styling */
.float-badge-content {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.float-badge-eyebrow {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
}

.float-badge-title {
  font-size: 0.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-top: 2px;
}

.float-badge-chart {
  margin-top: 4px;
  overflow: visible;
}

.float-badge-emoji {
  font-size: 1.1rem;
}

/* ---- Layout & Grid Design ---- */
.jc-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.jc-section {
  padding: 75px 0;
  position: relative;
  overflow: visible;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section-header .jc-badge {
  margin-bottom: 16px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-body);
}

.jc-grid {
  display: grid;
  gap: 28px;
}

.jc-grid--2 { grid-template-columns: repeat(2, 1fr); }
.jc-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ---- Floating Capsule Navigation Header ---- */
.jc-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1140px;
  background: rgba(10, 10, 26, 0.92); /* Dark Cosmic Glassmorphic background */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12); /* Fine cosmic border */
  border-radius: 50px;
  padding: 10px 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08); /* Deep shadow with subtle inner glow */
  z-index: 1000;
  transition: all 0.4s var(--ease-premium);
}

.jc-header.scrolled {
  top: 10px;
  width: 95%;
  background: rgba(10, 10, 26, 0.96); /* Slightly darker when scrolled */
  border-color: rgba(255, 255, 255, 0.20);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.jc-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 769px) {
  .jc-header__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
  .jc-header__logo {
    justify-self: start;
  }
  .jc-header__nav {
    justify-self: center;
  }
  .jc-header__cta {
    justify-self: end;
  }
}

.jc-header__logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: -0.5px;
}

.jc-header .logo-text-jean {
  color: #ffffff; /* White text for dark compatibility */
}

.jc-header__logo:hover .logo-text-conecta {
  filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.4));
}

.jc-header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.jc-header__nav a {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65); /* Light gray for legibility */
  position: relative;
  padding: 6px 0;
}

.jc-header__nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--neon-indigo);
  border-radius: 2px;
  transition: all 0.3s var(--ease-premium);
  transform: translateX(-50%);
  box-shadow: 0 0 8px var(--neon-indigo);
}

.jc-header__nav a:hover,
.jc-header__nav a.active {
  color: #ffffff;
}

.jc-header__nav a:hover::after,
.jc-header__nav a.active::after {
  width: 100%;
}

.jc-header__cta .jc-btn {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.jc-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  z-index: 1001;
}

.jc-header__burger span {
  width: 22px;
  height: 2px;
  background-color: #ffffff; /* White burger menu lines */
  transition: all 0.3s var(--ease-premium);
  border-radius: 2px;
}

/* Mobile Nav Overlay */
.jc-mobile-nav {
  position: fixed;
  inset: 0;
  background-color: rgba(8, 8, 24, 0.96); /* Dark theme mobile overlay */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease-premium);
}

.jc-mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.jc-mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s;
}

.jc-mobile-nav a:hover,
.jc-mobile-nav a.active {
  color: #ffffff;
  transform: scale(1.05);
}

.jc-header__burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.jc-header__burger.open span:nth-child(2) {
  opacity: 0;
}

.jc-header__burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- Badges ---- */
.jc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  font-family: var(--font-heading);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background-color: rgba(99, 102, 241, 0.05);
  border: 1px solid rgba(99, 102, 241, 0.15);
  color: var(--neon-indigo);
}

.jc-badge--gold {
  background-color: rgba(245, 158, 11, 0.06);
  color: var(--neon-gold);
  border-color: rgba(245, 158, 11, 0.2);
}

.jc-badge--purple {
  background-color: rgba(99, 102, 241, 0.06);
  color: var(--neon-indigo);
  border-color: rgba(99, 102, 241, 0.2);
}

.jc-badge--mint {
  background-color: rgba(16, 185, 129, 0.06);
  color: var(--neon-mint);
  border-color: rgba(16, 185, 129, 0.2);
}

.jc-badge--cyan {
  background-color: rgba(6, 182, 212, 0.06);
  color: var(--neon-cyan);
  border-color: rgba(6, 182, 212, 0.2);
}

/* ---- Buttons ---- */
.jc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s var(--ease-premium);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.jc-btn--gold {
  background: linear-gradient(135deg, var(--neon-indigo), var(--primary-indigo-dark));
  color: #FFFFFF;
  border: none;
  box-shadow: 0 8px 25px -5px rgba(99, 102, 241, 0.35);
}

.jc-btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -8px rgba(99, 102, 241, 0.5);
}

.jc-btn--gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  z-index: -1;
}

.jc-btn--gold:hover::after {
  transform: translateX(100%);
}

.jc-btn--outline {
  background: transparent;
  color: var(--text-main);
  border: 1.5px solid rgba(99, 102, 241, 0.25);
}

.jc-btn--outline:hover {
  background-color: rgba(99, 102, 241, 0.05);
  border-color: var(--neon-indigo);
  transform: translateY(-3px);
}

/* ---- Custom Diagonal Marquee ---- */
.jc-marquee {
  overflow: hidden;
  padding: 16px 0;
  position: relative;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.jc-marquee--diagonal {
  transform: rotate(-1.5deg) scale(1.02);
  margin: -15px 0;
  width: 120%;
  min-width: 120%;
  left: -10%;
  flex-shrink: 0;
  align-self: center;
  height: max-content;
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.04);
  z-index: 5;
}

.jc-marquee__track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.jc-marquee__track span {
  white-space: nowrap;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 14px;
}

.jc-marquee__track span::before {
  content: '✦';
  color: var(--neon-indigo);
  font-size: 0.95rem;
  filter: drop-shadow(0 0 5px var(--neon-indigo));
}

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

/* ---- Hero Section (Premium Immersive Canvas & Parallax Hybrid) ---- */
.jc-hero {
  height: 100vh;
  min-height: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 100px 4% 60px 4%;
  z-index: 1;
  overflow: hidden;
  box-sizing: border-box;
}

/* Vibrant background glows inside the hero area */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.28;
  pointer-events: none;
  mix-blend-mode: multiply;
  animation: heroCloudMove 18s ease-in-out infinite;
  z-index: 0;
}

.hero-glow--1 {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.9) 0%, transparent 70%);
  top: -10%;
  left: 5%;
  animation-duration: 25s;
}

.hero-glow--2 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.85) 0%, transparent 70%);
  bottom: -5%;
  right: 5%;
  animation-duration: 20s;
  animation-delay: -5s;
}

.hero-glow--3 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.8) 0%, transparent 70%);
  top: 35%;
  right: 25%;
  animation-duration: 22s;
  animation-delay: -10s;
}

@keyframes heroCloudMove {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(80px, -60px) scale(1.10);
  }
  66% {
    transform: translate(-60px, 50px) scale(0.90);
  }
}

/* Edge-to-edge animated immersive loop banner container */
.jc-hero__immersive-banner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  border: 1.5px solid rgba(99, 102, 241, 0.16);
  box-shadow: 0 45px 95px -20px rgba(99, 102, 241, 0.12);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* --- Banner Layout Grid --- */
.banner-grid-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 0 40px 0 0; /* No left padding — phone sits at the left edge */
}

/* ============================================================
   Samsung S26 Ultra — Photorealistic Image with CSS 3D Tilt
   mix-blend-mode: multiply erases the white background so
   the phone floats cleanly over the glassmorphism banner
   ============================================================ */

.jc-hero__phone-column {
  perspective: 1400px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 10;
  width: 100%;
  margin-left: -20px;
}

.s26-ultra-img {
  display: block;
  width: 340px;
  max-width: 100%;
  height: auto;
  /* Real transparent PNG — no blend mode needed */
  user-select: none;
  -webkit-user-drag: none;
  flex-shrink: 0;
  filter: drop-shadow(0 35px 55px rgba(10,15,30,0.55)) drop-shadow(0 0 30px rgba(99,102,241,0.12));
}

/* Legacy selectors — no longer active */
.s26-ultra, .phone-mockup-3d,
.phone-inner, .phone-screen,
.phone-notch, .phone-glare,
.s26-ultra__camera, .s26-ultra__feed,
.s26-ultra__home { display: none; }

/* Portrait background of Jeanhiasary with CSS fade mask */
.banner-person-bg {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 50%;
  background-image: url('../img/jean_banner_bg.png');
  background-size: cover;
  background-position: center top;
  z-index: 1;
  opacity: 0.95;
  pointer-events: none;
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 45%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 45%, rgba(0, 0, 0, 0) 100%);
}

/* #hero-particles removed — canvas animation disabled */

/* Technical blueprint overlay for precision */
.banner-overlay-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(99, 102, 241, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.04) 1px, transparent 1px);
  background-size: 45px 45px;
  pointer-events: none;
  z-index: 1;
}

.typing-cursor {
  font-weight: 300;
  color: var(--neon-indigo);
  animation: blink-cursor 0.75s step-end infinite;
  margin-left: 4px;
}

@keyframes blink-cursor {
  from, to { color: transparent }
  50% { color: var(--neon-indigo) }
}

.scroll-down-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s;
}

.scroll-down-indicator:hover {
  opacity: 0.85;
}

.scroll-down-indicator__mouse {
  width: 26px;
  height: 42px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  border: 2px solid var(--border-glass);
}

.scroll-down-indicator__wheel {
  width: 4px;
  height: 8px;
  background-color: var(--neon-indigo);
  border-radius: 2px;
  animation: scroll-wheel 1.6s ease-in-out infinite;
  box-shadow: 0 0 5px var(--neon-indigo);
}

@keyframes scroll-wheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

.jc-hero__float svg path {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: draw-sparkline 2s ease-in-out forwards;
  animation-delay: 1s;
}

@keyframes draw-sparkline {
  to { stroke-dashoffset: 0; }
}

.hero-immersive-title {
  font-size: clamp(2.8rem, 6.5vw, 4.4rem);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  color: var(--text-main);
}

#hero-dynamic-text {
  font-size: clamp(2.0rem, 5.2vw, 3.2rem);
}

@media (min-width: 769px) {
  #hero-dynamic-text {
    white-space: nowrap;
  }
}

.jc-hero__content {
  max-width: 700px;
  margin: 0;
  text-align: left;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 20px;
}

.jc-hero__badge {
  margin-bottom: 24px;
}

.jc-hero__sub {
  color: var(--text-body);
  font-size: 1.08rem;
  max-width: 530px;
  margin-bottom: 40px;
  text-align: left;
}

.jc-hero__cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* Dynamic social proof block alignment */
.jc-social-proof {
  margin-top: 36px;
  display: flex;
  justify-content: flex-start;
  width: 100%;
}



/* Float badges positions - distributed to avoid overlap and frame the banner */
.float-badge-1 { top: 14%; left: 3%; }
.float-badge-2 { top: 16%; right: 3%; }
.float-badge-3 { bottom: 18%; left: 3%; }
.float-badge-4 { bottom: 16%; right: 3%; }

/* ---- Card Styling Inside Grids ---- */
.jc-card {
  padding: 36px;
}

.jc-card h3 {
  margin-bottom: 12px;
}

.jc-card__number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--neon-indigo);
  opacity: 0.06;
  line-height: 1;
  transition: opacity 0.5s var(--ease-premium), transform 0.5s var(--ease-premium);
}

.glow-card:hover .jc-card__number {
  opacity: 0.15;
  transform: translateY(-4px) scale(1.08);
}

.jc-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.05);
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border-glass);
}

.jc-card__icon--gold {
  color: var(--neon-gold);
  border-color: rgba(245, 158, 11, 0.25);
}

.jc-card__icon--lavender {
  color: var(--neon-indigo);
  border-color: rgba(99, 102, 241, 0.25);
}

.jc-card__icon--navy {
  color: var(--neon-cyan);
  border-color: rgba(6, 182, 212, 0.25);
}

.jc-card__icon--mint {
  color: var(--neon-mint);
  border-color: rgba(5, 150, 105, 0.25);
}

/* ---- About Me (Sobre Mí) ---- */
.about-grid {
  align-items: center;
  gap: 72px;
}

/* --- About Me Immersive Banner & Glows --- */
.jc-about-section {
  position: relative;
  overflow: visible;
  z-index: 1;
}

/* Purple glows behind about container */
.about-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.22;
  pointer-events: none;
  mix-blend-mode: multiply;
  animation: heroCloudMove 20s ease-in-out infinite;
  z-index: 0;
}

.about-glow--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.75) 0%, transparent 70%); /* Purple */
  top: -10%;
  right: 15%;
  animation-duration: 28s;
}

.about-glow--2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.8) 0%, transparent 70%); /* Violet */
  bottom: -5%;
  left: 10%;
  animation-duration: 22s;
  animation-delay: -3s;
}

.jc-about__immersive-banner {
  position: relative;
  width: 100%;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  border: 1.5px solid rgba(168, 85, 247, 0.16); /* Purple border */
  box-shadow: 0 45px 95px -20px rgba(168, 85, 247, 0.12); /* Purple shadow */
  overflow: hidden;
  padding: 60px;
  z-index: 2;
}

/* Blueprint overlay with purple/violet grid lines */
.about-overlay-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(168, 85, 247, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 85, 247, 0.035) 1px, transparent 1px);
  background-size: 45px 45px;
  pointer-events: none;
  z-index: 1;
}

/* Responsive padding for about banner */
@media (max-width: 768px) {
  .jc-about__immersive-banner {
    padding: 30px 20px;
    border-radius: 24px;
  }
}


.jc-sticker-photo {
  position: relative;
  display: block;
}

.jc-sticker-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.story-quote {
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--text-main);
  border-left: 3px solid var(--neon-indigo);
  padding-left: 20px;
  margin: 32px 0;
  line-height: 1.8;
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.03), transparent);
  padding-top: 10px;
  padding-bottom: 10px;
}

/* ---- Flowchart Methodology with Scroll SVG Line ---- */
.flowchart-section {
  position: relative;
}

.flowchart-wrapper {
  position: relative;
  margin-top: 48px;
}

.flowchart-svg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.flowchart-svg-path {
  fill: none;
  stroke: rgba(99, 102, 241, 0.12);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flowchart-svg-path-active {
  fill: none;
  stroke: url(#flowchart-glow-grad);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000; /* Controlled by JS scroll */
  transition: stroke-dashoffset 0.05s ease-out;
  filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.6));
}

.flowchart-diagram {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 60px;
  position: relative;
  z-index: 1;
}

@media (min-width: 1025px) {
  .flowchart-node:nth-child(1) { grid-column: 1; grid-row: 1; }
  .flowchart-node:nth-child(2) { grid-column: 2; grid-row: 1; }
  .flowchart-node:nth-child(3) { grid-column: 3; grid-row: 1; }
  .flowchart-node:nth-child(4) { grid-column: 3; grid-row: 2; }
  .flowchart-node:nth-child(5) { grid-column: 2; grid-row: 2; }
  .flowchart-node:nth-child(6) { grid-column: 1; grid-row: 2; }
}

.flowchart-node {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 220px;
  box-sizing: border-box;
  padding: 28px;
}

.flowchart-node__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.flowchart-node__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.05);
  border: 1px solid rgba(99, 102, 241, 0.15);
  color: var(--neon-indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  transition: all 0.3s ease;
}

.flowchart-node:hover .flowchart-node__num {
  background: var(--neon-indigo);
  color: #FFFFFF;
  box-shadow: 0 0 12px var(--neon-indigo);
}

.flowchart-node__title {
  margin: 0;
}

.flowchart-node__desc {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---- Farmasi Premium Showcase ---- */
.farmasi-section {
  position: relative;
  overflow: visible;
}

.farmasi-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.farmasi-glow--1 {
  background: radial-gradient(circle, rgba(5, 150, 105, 0.22) 0%, transparent 70%);
  width: 500px;
  height: 500px;
  top: -10%;
  right: 10%;
}

.farmasi-glow--2 {
  background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
  width: 500px;
  height: 500px;
  bottom: -10%;
  left: 5%;
}

.farmasi-banner {
  background: rgba(255, 255, 255, 0.38);
  border: 1.5px solid rgba(5, 150, 105, 0.16);
  box-shadow: 0 45px 95px -20px rgba(5, 150, 105, 0.08);
  border-radius: var(--radius-md);
  position: relative;
  overflow: visible;
  padding: 48px;
}

.farmasi-overlay-grid {
  background-image: linear-gradient(rgba(5, 150, 105, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(5, 150, 105, 0.02) 1px, transparent 1px);
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.farmasi-grid {
  align-items: center;
  position: relative;
  z-index: 2;
}

.farmasi-intro-text {
  display: flex;
  flex-direction: column;
}

.farmasi-title {
  margin: 20px 0 24px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.2;
  color: var(--text-main);
}

.farmasi-description {
  margin-bottom: 24px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-body);
}

.farmasi-list {
  list-style: none;
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
  padding: 0;
}

.farmasi-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.98rem;
  line-height: 1.6;
}

.farmasi-list-icon {
  font-size: 1.2rem;
  line-height: 1;
}

.farmasi-list-text {
  color: var(--text-body);
}

.farmasi-info-card {
  padding: 24px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(5, 150, 105, 0.12);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.farmasi-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.farmasi-card-sparkle {
  color: var(--neon-mint);
}

.farmasi-card-desc {
  margin: 0 0 20px 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-body);
}

.farmasi-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Custom Mint Buttons */
.jc-btn--mint {
  background: linear-gradient(135deg, var(--neon-mint), #047857);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 8px 25px -5px rgba(5, 150, 105, 0.3);
  padding: 12px 24px;
  font-size: 0.85rem;
  width: 100%;
  text-align: center;
}

.jc-btn--mint:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -8px rgba(5, 150, 105, 0.45);
  color: #FFFFFF;
}

.jc-btn--mint-outline {
  background: transparent;
  color: var(--neon-mint);
  border: 1.5px solid rgba(5, 150, 105, 0.3);
  padding: 12px 24px;
  font-size: 0.85rem;
  width: 100%;
  text-align: center;
}

.jc-btn--mint-outline:hover {
  background: rgba(5, 150, 105, 0.05);
  border-color: var(--neon-mint);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.1);
  color: var(--neon-mint);
}

/* Right Column: Interactive Collage */
.farmasi-collage-column {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding: 20px 0;
}

.farmasi-interactive-collage {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1 / 1.1;
  margin: 0 auto;
  overflow: visible;
}

.collage-item {
  position: absolute;
  width: 34%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.08);
  background: #ffffff;
  border: 4px solid #ffffff;
  transform: translate(-50%, -50%) scale(1) rotate(var(--rotation));
  left: var(--x);
  top: var(--y);
  z-index: var(--z);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.25);
  cursor: pointer;
  user-select: none;
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.collage-item:hover {
  transform: translate(-50%, -50%) scale(1.22) rotate(0deg);
  z-index: 20;
  box-shadow: 0 30px 60px rgba(5, 150, 105, 0.35);
  border-color: var(--neon-mint);
}

/* ====== FARMASI LIGHTBOX OVERLAY ====== */
.farmasi-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.farmasi-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 90%;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.25); /* Scale down further for a more dramatic zoom-in */
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}

.farmasi-lightbox.active .lightbox-content {
  transform: scale(1);
  opacity: 1;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  border: 4px solid #ffffff;
}

.lightbox-close {
  position: absolute;
  top: -55px;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  font-size: 2.2rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

/* ---- Academy Premium Showcase ---- */
.academy-section {
  position: relative;
  overflow: visible;
}

.academy-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.academy-glow--1 {
  background: radial-gradient(circle, rgba(217, 119, 6, 0.12) 0%, transparent 70%);
  width: 500px;
  height: 500px;
  top: -10%;
  left: 10%;
}

.academy-glow--2 {
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
  width: 500px;
  height: 500px;
  bottom: -10%;
  right: 5%;
}

.academy-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 2;
}

.academy-module-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.academy-module-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(217, 119, 6, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.academy-module-card:hover {
  border-color: var(--neon-gold);
  transform: translateX(10px) translateY(-2px);
  box-shadow: 0 20px 40px rgba(217, 119, 6, 0.08);
  background: rgba(255, 255, 255, 0.65);
}

.academy-module-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(217, 119, 6, 0.08);
  border: 1px solid rgba(217, 119, 6, 0.25);
  color: var(--neon-gold);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1;
  box-shadow: 0 4px 10px rgba(217, 119, 6, 0.05);
  flex-shrink: 0;
}

.academy-module-card h4 {
  margin-bottom: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-main);
}

.academy-module-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-body);
}

.academy-visual-column {
  position: relative;
  z-index: 2;
}

.academy-visual {
  background: rgba(255, 255, 255, 0.55);
  border: 1.5px solid rgba(217, 119, 6, 0.16);
  box-shadow: 0 45px 95px -20px rgba(217, 119, 6, 0.06);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.academy-visual::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.2) 0%, transparent 70%);
  top: -40px;
  right: -40px;
  border-radius: 50%;
  pointer-events: none;
}

@keyframes float-emoji {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

.academy-visual-icon {
  font-size: 4.2rem;
  line-height: 1;
  margin-bottom: 24px;
  display: inline-block;
  animation: float-emoji 4s ease-in-out infinite;
  filter: drop-shadow(0 10px 15px rgba(217, 119, 6, 0.2));
  user-select: none;
}

.academy-visual h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 1.3;
  color: var(--text-main);
  margin-bottom: 12px;
}

.academy-visual-desc {
  margin-bottom: 28px;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Custom Gold Button */
.jc-btn--gold-accent {
  background: linear-gradient(135deg, var(--neon-gold), #B45309);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 8px 25px -5px rgba(217, 119, 6, 0.3);
  padding: 14px 32px;
  font-size: 0.88rem;
  font-weight: 700;
}

.jc-btn--gold-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -8px rgba(217, 119, 6, 0.45);
  color: #FFFFFF;
}

/* Academy Target Cards */
.academy-target-grid {
  margin-top: 64px;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}

.academy-target-grid .jc-card {
  padding: 36px 24px;
  background: rgba(255, 255, 255, 0.45);
  border: 1.5px solid var(--border-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.academy-target-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  user-select: none;
}

.academy-target-icon-svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  transition: transform 0.4s var(--ease-premium);
}

.academy-target-card-icon--entrepreneur {
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: var(--neon-indigo);
}

.academy-target-card-icon--cm {
  background: rgba(236, 72, 153, 0.08);
  border: 1px solid rgba(236, 72, 153, 0.2);
  color: var(--neon-pink);
}

.academy-target-card-icon--freelance {
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.2);
  color: var(--neon-cyan);
}

/* Hover effects */
.academy-target-grid .jc-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.65);
}

.academy-target-grid .jc-card:nth-child(1):hover {
  border-color: var(--neon-indigo);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.12);
}

.academy-target-grid .jc-card:nth-child(2):hover {
  border-color: var(--neon-pink);
  box-shadow: 0 20px 40px rgba(236, 72, 153, 0.12);
}

.academy-target-grid .jc-card:nth-child(3):hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 20px 40px rgba(6, 182, 212, 0.12);
}

.academy-target-grid .jc-card:hover .academy-target-card-icon {
  transform: scale(1.15) rotate(8deg);
}

/* ---- Toast Notification Container ---- */
.jc-toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.jc-toast {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--neon-indigo);
  color: var(--text-main);
  padding: 12px 20px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(100px);
  opacity: 0;
  animation: toast-in 0.4s var(--ease-premium) forwards;
}

@keyframes toast-in {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.jc-toast.fade-out {
  animation: toast-out 0.4s var(--ease-premium) forwards;
}

@keyframes toast-out {
  to {
    transform: translateY(20px);
    opacity: 0;
  }
}


/* ========================================================
   STATS SECTION — Solid dark + SVG wave transitions
   ======================================================== */
.stats-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(150deg, #08081c 0%, #0f0f2e 50%, #080818 100%);
  padding: 160px 0 180px; /* Agrandado para escritorio para dar aire y mayor tamaño al fondo */
  margin: 0;
}

.stats-section::before,
.stats-section::after { display: none; }
.halftone-divider      { display: none; }

/* SVG wave overlays */
.stats-wave {
  position: absolute;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 3;
  line-height: 0;
  transform: translate3d(0, 0, 0); /* Force GPU rendering to prevent subpixel gaps */
}

.stats-wave--top {
  top: -1px;
  height: 130px;
}

.stats-wave--bottom {
  bottom: -1px;
  height: 130px;
}

.stats-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Ensure content container is always above the wave overlays */
.stats-section .jc-container {
  position: relative;
  z-index: 5 !important;
}


/* --- Floating particles --- */
.stats-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.stat-particle {
  position: absolute;
  border-radius: 50%;
  animation: floatParticle linear infinite;
  opacity: 0;
}

.stat-particle--1 { width: 4px; height: 4px; background: var(--neon-indigo); top: 15%; left: 8%;  animation-duration: 14s; animation-delay: 0s;    box-shadow: 0 0 8px var(--neon-indigo); }
.stat-particle--2 { width: 3px; height: 3px; background: var(--neon-pink);   top: 70%; left: 20%; animation-duration: 18s; animation-delay: -3s;   box-shadow: 0 0 6px var(--neon-pink); }
.stat-particle--3 { width: 5px; height: 5px; background: var(--neon-cyan);   top: 40%; left: 55%; animation-duration: 12s; animation-delay: -7s;   box-shadow: 0 0 10px var(--neon-cyan); }
.stat-particle--4 { width: 3px; height: 3px; background: var(--neon-gold);   top: 80%; left: 75%; animation-duration: 20s; animation-delay: -2s;   box-shadow: 0 0 6px var(--neon-gold); }
.stat-particle--5 { width: 4px; height: 4px; background: var(--neon-indigo); top: 25%; left: 88%; animation-duration: 16s; animation-delay: -10s;  box-shadow: 0 0 8px var(--neon-indigo); }
.stat-particle--6 { width: 3px; height: 3px; background: var(--neon-pink);   top: 55%; left: 42%; animation-duration: 22s; animation-delay: -5s;   box-shadow: 0 0 6px var(--neon-pink); }

@keyframes floatParticle {
  0%   { transform: translateY(60px) scale(0); opacity: 0; }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-120px) scale(1.2); opacity: 0; }
}

/* --- Glowing orbs --- */
.stats-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 1;
  animation: orbPulse ease-in-out infinite alternate;
}

.stats-orb--1 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(99,102,241,0.35), transparent 70%);
  top: -10%; left: -8%;
  animation-duration: 8s;
}
.stats-orb--2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(236,72,153,0.30), transparent 70%);
  bottom: -5%; right: -5%;
  animation-duration: 11s; animation-delay: -4s;
}
.stats-orb--3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(6,182,212,0.22), transparent 70%);
  top: 40%; left: 48%;
  transform: translateX(-50%);
  animation-duration: 13s; animation-delay: -8s;
}

@keyframes orbPulse {
  from { opacity: 0.6; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.12); }
}

/* --- Section header for dark bg --- */
.stats-header {
  text-align: center;
}

.stats-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(99,102,241,0.9);
  margin-bottom: 20px;
  padding: 8px 20px;
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: 50px;
  background: rgba(99,102,241,0.08);
  backdrop-filter: blur(8px);
}

.stats-eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--neon-indigo);
  box-shadow: 0 0 8px var(--neon-indigo);
  animation: dotBlink 2s ease-in-out infinite alternate;
}

@keyframes dotBlink {
  from { opacity: 0.4; }
  to   { opacity: 1; box-shadow: 0 0 14px var(--neon-indigo); }
}

.stats-title {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 16px;
}

.stats-highlight {
  background: linear-gradient(135deg, var(--neon-indigo), var(--neon-pink) 50%, var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(99,102,241,0.4));
}

.stats-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.52);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Grid --- */
.jc-stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

/* --- Stat Card --- */
.jc-stat-item {
  text-align: center;
  padding: 36px 24px 28px;
  border-radius: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  position: relative;
  overflow: hidden;
  transition: transform 0.45s var(--ease-premium),
              border-color 0.45s var(--ease-premium),
              box-shadow 0.45s var(--ease-premium),
              background 0.45s var(--ease-premium);
  animation-delay: var(--delay, 0s);
}

/* Shimmer sweep on card */
.jc-stat-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.06) 50%, transparent 70%);
  background-size: 200% 100%;
  background-position: -100% 0;
  transition: background-position 0.7s var(--ease-premium);
  pointer-events: none;
}

.jc-stat-item:hover::before {
  background-position: 200% 0;
}

/* Top glowing line per card */
.jc-stat-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  border-radius: 0 0 4px 4px;
  transition: width 0.5s var(--ease-premium);
}

.jc-stat-item:nth-child(1)::after { background: linear-gradient(90deg, var(--neon-indigo), #818cf8); }
.jc-stat-item:nth-child(2)::after { background: linear-gradient(90deg, var(--neon-pink), #f472b6); }
.jc-stat-item:nth-child(3)::after { background: linear-gradient(90deg, var(--neon-cyan), #38bdf8); }
.jc-stat-item:nth-child(4)::after { background: linear-gradient(90deg, var(--neon-gold), #fbbf24); }

.jc-stat-item:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.18);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.35),
    0 0 30px rgba(99,102,241,0.15),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.jc-stat-item:hover::after {
  width: 70%;
}

/* --- Stat Icon --- */
.stat-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium);
}

.stat-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.stat-icon-wrap--indigo { background: rgba(99,102,241,0.18);  color: #818cf8;  border: 1px solid rgba(99,102,241,0.25); }
.stat-icon-wrap--pink   { background: rgba(236,72,153,0.18);  color: #f472b6;  border: 1px solid rgba(236,72,153,0.25); }
.stat-icon-wrap--cyan   { background: rgba(6,182,212,0.18);   color: #22d3ee;  border: 1px solid rgba(6,182,212,0.25); }
.stat-icon-wrap--gold   { background: rgba(217,119,6,0.18);   color: #fbbf24;  border: 1px solid rgba(217,119,6,0.25); }

.jc-stat-item:hover .stat-icon-wrap { transform: scale(1.12) rotate(-4deg); }
.jc-stat-item:hover .stat-icon-wrap--indigo { box-shadow: 0 0 20px rgba(99,102,241,0.4); }
.jc-stat-item:hover .stat-icon-wrap--pink   { box-shadow: 0 0 20px rgba(236,72,153,0.4); }
.jc-stat-item:hover .stat-icon-wrap--cyan   { box-shadow: 0 0 20px rgba(6,182,212,0.4);  }
.jc-stat-item:hover .stat-icon-wrap--gold   { box-shadow: 0 0 20px rgba(217,119,6,0.4);  }

/* --- Stat number --- */
.jc-stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  display: inline-block;
  letter-spacing: -0.02em;
  transition: transform 0.4s var(--ease-premium);
}

.jc-stat-item:nth-child(1) .jc-stat-number { background: linear-gradient(135deg, #a5b4fc, var(--neon-indigo)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.jc-stat-item:nth-child(2) .jc-stat-number { background: linear-gradient(135deg, #f9a8d4, var(--neon-pink));   -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.jc-stat-item:nth-child(3) .jc-stat-number { background: linear-gradient(135deg, #67e8f9, var(--neon-cyan));   -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.jc-stat-item:nth-child(4) .jc-stat-number { background: linear-gradient(135deg, #fde68a, var(--neon-gold));   -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.jc-stat-item:hover .jc-stat-number {
  transform: scale(1.06);
}

/* --- Labels & desc --- */
.jc-stat-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 6px;
}

.stat-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
  margin-bottom: 18px;
}

/* --- Progress bar --- */
.stat-bar {
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
}

.stat-bar-fill {
  height: 100%;
  width: 0;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--neon-indigo), #818cf8);
  transition: width 1.6s var(--ease-premium);
}

.stat-bar-fill--cyan { background: linear-gradient(90deg, var(--neon-cyan), #38bdf8); }
.stat-bar-fill--gold { background: linear-gradient(90deg, var(--neon-gold), #fbbf24); }

/* When card is revealed, animate the bar */
.jc-stat-item.jc-visible .stat-bar-fill {
  width: var(--fill-pct, 70%);
}

/* Responsive */
@media (max-width: 900px) {
  .jc-stats-container { grid-template-columns: repeat(2, 1fr); }
  .stats-section, .services-section-dark { padding: 120px 0 130px; }
  .stats-wave--top, .stats-wave--bottom { height: 90px; }
}
@media (max-width: 500px) {
  .jc-stats-container { grid-template-columns: 1fr; }
  .stats-section, .services-section-dark { padding: 100px 0; }
  .stats-wave--top, .stats-wave--bottom { height: 70px; }
}


/* ---- Contact Form Glassmorphic Styles ---- */
.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.08;
  pointer-events: none;
  z-index: 1;
}

.contact-glow--1 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--neon-pink), transparent);
  top: -10%;
  left: -5%;
}

.contact-glow--2 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, var(--neon-indigo), transparent);
  bottom: -10%;
  right: -5%;
}

.contact-grid {
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  position: relative;
  z-index: 2;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: center;
  transition: transform 0.3s var(--ease-premium);
}

.contact-info-item:hover {
  transform: translateX(6px);
}

.contact-info-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease-premium);
}

.contact-info-icon--whatsapp {
  background: rgba(5, 150, 105, 0.08);
  border: 1.5px solid rgba(5, 150, 105, 0.18);
  color: var(--neon-mint);
}

.contact-info-icon--email {
  background: rgba(99, 102, 241, 0.08);
  border: 1.5px solid rgba(99, 102, 241, 0.18);
  color: var(--neon-indigo);
}

.contact-info-icon--instagram {
  background: rgba(236, 72, 153, 0.08);
  border: 1.5px solid rgba(236, 72, 153, 0.18);
  color: var(--neon-pink);
}

.contact-icon-svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  transition: transform 0.4s var(--ease-premium);
}

.contact-info-item:hover .contact-icon-svg {
  transform: scale(1.15) rotate(6deg);
}

.contact-info-item:hover .contact-info-icon {
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.08);
}

.contact-info-text h4 {
  margin-bottom: 2px;
}

.contact-info-text p {
  font-size: 0.92rem;
  color: var(--text-body);
}

/* Auditoría Gratuita Card */
.contact-audit-card {
  transition: all 0.4s var(--ease-premium) !important;
  background: rgba(10, 10, 26, 0.92) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.contact-audit-card:hover {
  transform: translateY(-5px) !important;
  border-color: var(--neon-gold) !important;
  background: rgba(10, 10, 26, 0.95) !important;
  box-shadow: 0 20px 40px rgba(217, 119, 6, 0.25), 0 0 20px rgba(217, 119, 6, 0.05) !important;
}

.contact-audit-title {
  color: #ffffff !important;
}

.contact-audit-desc {
  color: rgba(255, 255, 255, 0.7) !important;
}

.contact-audit-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(217, 119, 6, 0.12);
  border: 1.5px solid rgba(217, 119, 6, 0.25);
  color: var(--neon-gold);
  transition: all 0.4s var(--ease-premium);
}

.contact-audit-card:hover .contact-audit-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 16px rgba(217, 119, 6, 0.2) !important;
}

.jc-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background-color: #FFFFFF;
  border-color: var(--neon-indigo);
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.15);
}

.form-group select option {
  background-color: #FFFFFF;
  color: var(--text-main);
}

/* Spinner styling inside button during contact simulation */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 0.8s linear infinite;
  margin-right: 8px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}


/* ========================================================
   SERVICES SECTION — Premium Dark Glassmorphic Theme
   ======================================================== */
.services-section-dark {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(150deg, #08081c 0%, #0f0f2e 50%, #080818 100%);
  padding: 160px 0 180px; /* Matching expanded stats section spacing */
  margin: 0;
}

.services-section-dark::before,
.services-section-dark::after { display: none; }

/* Glowing Orbs for Services Section */
.services-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(95px);
  pointer-events: none;
  z-index: 1;
  animation: orbPulse ease-in-out infinite alternate;
}

.services-orb--1 {
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(99,102,241,0.32), transparent 70%);
  top: -12%; right: -5%;
  animation-duration: 9s;
}
.services-orb--2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(6,182,212,0.22), transparent 70%);
  bottom: -8%; left: -8%;
  animation-duration: 12s; animation-delay: -3s;
}
.services-orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(236,72,153,0.18), transparent 70%);
  top: 40%; right: 45%;
  animation-duration: 14s; animation-delay: -6s;
}

/* Floating Particles for Services Section */
.services-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.serv-particle {
  position: absolute;
  border-radius: 50%;
  animation: floatParticle linear infinite;
  opacity: 0;
}

.serv-particle--1 { width: 3px; height: 3px; background: var(--neon-cyan);   top: 20%; left: 12%; animation-duration: 15s; animation-delay: -2s;   box-shadow: 0 0 6px var(--neon-cyan); }
.serv-particle--2 { width: 4px; height: 4px; background: var(--neon-indigo); top: 75%; left: 18%; animation-duration: 17s; animation-delay: -5s;   box-shadow: 0 0 8px var(--neon-indigo); }
.serv-particle--3 { width: 3px; height: 3px; background: var(--neon-pink);   top: 45%; left: 88%; animation-duration: 13s; animation-delay: -8s;   box-shadow: 0 0 6px var(--neon-pink); }
.serv-particle--4 { width: 4px; height: 4px; background: var(--neon-gold);   top: 85%; left: 82%; animation-duration: 19s; animation-delay: -1s;   box-shadow: 0 0 8px var(--neon-gold); }
.serv-particle--5 { width: 3px; height: 3px; background: var(--neon-indigo); top: 15%; left: 52%; animation-duration: 16s; animation-delay: -4s;   box-shadow: 0 0 6px var(--neon-indigo); }
.serv-particle--6 { width: 4px; height: 4px; background: var(--neon-cyan);   top: 60%; left: 48%; animation-duration: 18s; animation-delay: -7s;   box-shadow: 0 0 8px var(--neon-cyan); }

/* Header for Dark Services */
.services-header {
  text-align: center;
}

.services-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(99,102,241,0.9);
  margin-bottom: 20px;
  padding: 8px 20px;
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: 50px;
  background: rgba(99,102,241,0.08);
  backdrop-filter: blur(8px);
}

.services-eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--neon-indigo);
  box-shadow: 0 0 8px var(--neon-indigo);
  animation: dotBlink 2s ease-in-out infinite alternate;
}

.services-title {
  color: #ffffff;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.2;
  margin-bottom: 16px;
}

.services-highlight {
  background: linear-gradient(135deg, var(--neon-indigo), var(--neon-pink) 50%, var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(99,102,241,0.4));
}

.services-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Dark Glassmorphic Card overrides for Services Section */
.services-section-dark .jc-container {
  position: relative;
  z-index: 5 !important;
}

.services-section-dark .glow-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s var(--ease-premium), 
              border-color 0.5s var(--ease-premium), 
              box-shadow 0.5s var(--ease-premium), 
              background 0.5s var(--ease-premium);
}

.services-section-dark .glow-card h3 {
  color: #ffffff;
  transition: color 0.4s var(--ease-premium);
}

.services-section-dark .glow-card p {
  color: rgba(255, 255, 255, 0.6);
}

.services-section-dark .glow-card ul {
  color: rgba(255, 255, 255, 0.65);
}

.services-section-dark .glow-card ul li {
  color: rgba(255, 255, 255, 0.65);
}

.services-section-dark .glow-card .jc-card__number {
  color: #ffffff;
  opacity: 0.04;
  transition: opacity 0.5s var(--ease-premium), transform 0.5s var(--ease-premium);
}

/* Dark Card Icon Styles */
.services-section-dark .glow-card .jc-card__icon {
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium);
}

.services-section-dark .glow-card .jc-card__icon--gold {
  background: rgba(217, 119, 6, 0.15);
  color: var(--neon-gold);
  border-color: rgba(217, 119, 6, 0.25);
}

.services-section-dark .glow-card .jc-card__icon--lavender {
  background: rgba(99, 102, 241, 0.15);
  color: #818cf8;
  border-color: rgba(99, 102, 241, 0.25);
}

.services-section-dark .glow-card .jc-card__icon--navy {
  background: rgba(6, 182, 212, 0.15);
  color: #22d3ee;
  border-color: rgba(6, 182, 212, 0.25);
}

.services-section-dark .glow-card .jc-card__icon--mint {
  background: rgba(5, 150, 105, 0.15);
  color: #34d399;
  border-color: rgba(5, 150, 105, 0.25);
}

/* Top Accent Line expansion on hover (just like stats section) */
.services-section-dark .glow-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2.5px;
  border-radius: 0 0 4px 4px;
  transition: width 0.5s var(--ease-premium);
}

.services-section-dark .glow-card:nth-child(1)::after { background: linear-gradient(90deg, var(--neon-gold), #fbbf24); }
.services-section-dark .glow-card:nth-child(2)::after { background: linear-gradient(90deg, var(--neon-indigo), #818cf8); }
.services-section-dark .glow-card:nth-child(3)::after { background: linear-gradient(90deg, var(--neon-cyan), #38bdf8); }
.services-section-dark .glow-card:nth-child(4)::after { background: linear-gradient(90deg, var(--neon-mint), #34d399); }

/* Hover states for services dark cards */
.services-section-dark .glow-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.35),
    0 0 30px rgba(99,102,241,0.15),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.services-section-dark .glow-card:hover .jc-card__number {
  opacity: 0.12;
  transform: translateY(-4px) scale(1.08);
}

.services-section-dark .glow-card:hover::after {
  width: 70%;
}

.services-section-dark .glow-card:hover .jc-card__icon--gold { box-shadow: 0 0 20px rgba(217, 119, 6, 0.4); }
.services-section-dark .glow-card:hover .jc-card__icon--lavender { box-shadow: 0 0 20px rgba(99, 102, 241, 0.4); }
.services-section-dark .glow-card:hover .jc-card__icon--navy { box-shadow: 0 0 20px rgba(6, 182, 212, 0.4); }
.services-section-dark .glow-card:hover .jc-card__icon--mint { box-shadow: 0 0 20px rgba(5, 150, 105, 0.4); }

.services-section-dark .glow-card:hover .jc-card__icon {
  transform: scale(1.12) rotate(-4deg);
}

/* ---- Footer ---- */
.jc-footer {
  background-color: var(--space-mid);
  border-top: 1px solid var(--border-glass);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

.jc-footer__glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08), transparent 70%);
  filter: blur(120px);
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  pointer-events: none;
}

/* ---- Footer CTA Card ---- */
/* ---- Footer CTA Card ---- */
.jc-footer__cta-card {
  position: relative;
  background: rgba(10, 10, 26, 0.92); /* Dark Cosmic Glassmorphism */
  border: 1.5px solid rgba(255, 255, 255, 0.12); /* Fine cosmic border */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  margin-bottom: 64px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: all 0.4s var(--ease-premium);
}

.jc-footer__cta-card:hover {
  border-color: var(--neon-indigo);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 25px rgba(99, 102, 241, 0.25);
  transform: translateY(-4px);
}

.jc-footer__cta-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen; /* beautiful glow blending */
}

.jc-footer__cta-glow--1 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.25), transparent 70%);
  top: -80px;
  right: -80px;
  animation: ctaGlowPulse1 10s ease-in-out infinite;
}

.jc-footer__cta-glow--2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.20), transparent 70%);
  bottom: -60px;
  left: -60px;
  animation: ctaGlowPulse2 8s ease-in-out infinite;
}

@keyframes ctaGlowPulse1 {
  0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.8; }
  50% { transform: scale(1.15) translate(-30px, 15px); opacity: 1; }
}

@keyframes ctaGlowPulse2 {
  0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.8; }
  50% { transform: scale(1.25) translate(25px, -20px); opacity: 1; }
}

.jc-footer__cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  text-align: left;
}

.jc-footer__cta-content h3 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin: 8px 0;
  font-weight: 800;
  color: #ffffff;
}

.jc-footer__cta-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.jc-footer__cta-action {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

/* Logo brand animation */
.jc-footer__logo-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  user-select: none;
}

.logo-text-jean {
  color: var(--text-main);
  position: relative;
}

.logo-text-conecta {
  background: linear-gradient(135deg, var(--neon-indigo), var(--neon-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  transition: all 0.3s;
}

.jc-footer__logo-brand:hover .logo-text-conecta {
  filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.4));
}

.logo-dot--animated {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-pink);
  box-shadow: 0 0 8px var(--neon-pink);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 6px var(--neon-pink);
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
    box-shadow: 0 0 12px var(--neon-pink);
  }
}

.jc-footer__main {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.83fr);
  gap: 48px;
  margin-bottom: 60px;
}

.jc-footer__brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 300px;
}

/* Upgraded Social Media Links */
.jc-footer__social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.45);
  border: 1.5px solid var(--border-glass);
  color: var(--text-body);
  transition: all 0.4s var(--ease-premium);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.social-link svg {
  transition: transform 0.4s var(--ease-premium);
  stroke: currentColor;
}

.social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s var(--ease-premium);
  z-index: -1;
}

.social-link--instagram:hover {
  color: #FFFFFF;
  border-color: rgba(236, 72, 153, 0.3);
  box-shadow: 0 8px 20px rgba(236, 72, 153, 0.25);
  transform: translateY(-4px) scale(1.05);
}
.social-link--instagram::before {
  background: linear-gradient(135deg, #feda75, #fa7e1e, #d62976, #962fbf);
}

.social-link--whatsapp:hover {
  color: #FFFFFF;
  border-color: rgba(5, 150, 105, 0.3);
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.25);
  transform: translateY(-4px) scale(1.05);
}
.social-link--whatsapp::before {
  background: linear-gradient(135deg, #059669, #10B981);
}

.social-link--email:hover {
  color: #FFFFFF;
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.25);
  transform: translateY(-4px) scale(1.05);
}
.social-link--email::before {
  background: linear-gradient(135deg, var(--neon-indigo), var(--neon-cyan));
}

.social-link:hover::before {
  opacity: 1;
}

.social-link:hover svg {
  transform: scale(1.1) rotate(4deg);
}

.jc-footer__col h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 24px;
}

.jc-footer__col a {
  display: block;
  font-size: 0.92rem;
  color: var(--text-body);
  margin-bottom: 12px;
}

.jc-footer__col a:hover {
  color: var(--text-main);
  transform: translateX(4px);
}

/* Developed by credit badge styles */
.credit-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.credit-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.6);
  border: 1.5px solid var(--border-glass);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.84rem;
  color: var(--text-body);
  font-weight: 500;
  transition: all 0.4s var(--ease-premium);
  text-decoration: none;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.credit-badge span strong {
  background: linear-gradient(90deg, var(--neon-indigo), var(--neon-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  transition: all 0.3s;
}

.credit-badge:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.12);
  background: rgba(255, 255, 255, 0.85);
}

.credit-badge:hover span strong {
  filter: drop-shadow(0 0 5px rgba(99, 102, 241, 0.3));
}

.jc-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-glass);
  padding-top: 32px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.jc-footer__bottom a:hover {
  color: var(--text-body);
}

/* ==========================================================================
   Responsive Styles & Media Queries
   ========================================================================== */

@media (max-width: 1024px) {
  .jc-header {
    width: 95%;
    padding: 10px 18px;
  }
  
  .jc-hero {
    height: auto;
    min-height: auto;
    padding: 140px 20px 80px 20px;
  }
  
  .jc-hero__immersive-banner {
    height: auto;
    padding: 80px 24px;
    border-radius: 24px;
  }

  .banner-grid-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0;
  }

  .jc-hero__phone-column {
    display: none;
  }
  
  .banner-person-bg {
    display: none; /* hide portrait photo on mobile/tablet to avoid overlapping text */
  }
  
  .jc-hero__content {
    max-width: 100%;
    align-items: center;
    text-align: center;
    padding-left: 0;
  }
  
  .jc-hero__sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .jc-hero__cta {
    justify-content: center;
  }
  
  .jc-social-proof {
    justify-content: center;
  }
  
  .jc-hero__float {
    position: static !important;
    transform: none !important;
    animation: none !important;
    margin: 12px auto;
    width: 100%;
    max-width: 300px;
    justify-content: center;
    box-shadow: var(--shadow-sm) !important;
  }
  
  .float-badge-1, .float-badge-2, .float-badge-3, .float-badge-4 {
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
  }
  
  .flowchart-diagram {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .flowchart-svg-container {
    display: none;
  }
  
  .flowchart-node {
    height: auto !important;
    padding: 24px;
  }

  .about-grid,
  .academy-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .jc-stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ====== LEGAL MODALS ====== */
.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.legal-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.legal-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 26, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.legal-modal__content {
  position: relative;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: var(--radius-md);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
  padding: 36px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.legal-modal.active .legal-modal__content {
  transform: translateY(0);
}

.legal-modal__content h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--text-main);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.legal-modal__close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-body);
  opacity: 0.6;
  cursor: pointer;
  transition: opacity 0.3s, color 0.3s;
}

.legal-modal__close:hover {
  opacity: 1;
  color: var(--neon-indigo);
}

.legal-modal__body {
  overflow-y: auto;
  flex: 1;
  padding-right: 8px;
  text-align: left;
}

.legal-modal__body h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-main);
  margin: 18px 0 8px;
}

.legal-modal__body p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-body);
  margin-bottom: 12px;
}

.legal-modal__body a {
  color: var(--neon-indigo);
  text-decoration: underline;
}

.legal-modal__body::-webkit-scrollbar {
  width: 6px;
}

.legal-modal__body::-webkit-scrollbar-track {
  background: transparent;
}

.legal-modal__body::-webkit-scrollbar-thumb {
  background: rgba(99, 102, 241, 0.2);
  border-radius: 3px;
}

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

@keyframes geminiGlow1 {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    filter: blur(55px) hue-rotate(0deg) !important;
  }
  50% {
    transform: translate(30px, 40px) scale(1.2) rotate(180deg);
    filter: blur(55px) hue-rotate(180deg) !important;
  }
  100% {
    transform: translate(0, 0) scale(1) rotate(360deg);
    filter: blur(55px) hue-rotate(360deg) !important;
  }
}

@keyframes geminiGlow2 {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    filter: blur(55px) hue-rotate(0deg) !important;
  }
  50% {
    transform: translate(-40px, -50px) scale(1.15) rotate(-180deg);
    filter: blur(55px) hue-rotate(-180deg) !important;
  }
  100% {
    transform: translate(0, 0) scale(1) rotate(-360deg);
    filter: blur(55px) hue-rotate(-360deg) !important;
  }
}

@media (max-width: 768px) {
  /* Force mobile viewport bounds and disable horizontal scroll overflow */
  html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  /* Disable heavy background glows animations on mobile to restore 60fps fluidity */
  .space-glow,
  .hero-glow,
  .about-glow {
    animation: none !important;
  }

  /* Make the 'jean' word in the footer logo light black */
  .jc-footer__logo-brand .logo-text-jean {
    color: #1E293B !important;
  }

  /* Floating Burger navigation style on mobile */
  .jc-header {
    width: 50px !important;
    height: 50px !important;
    padding: 0 !important;
    left: auto !important;
    right: 20px !important;
    top: 20px !important;
    transform: none !important;
    border-radius: 50% !important;
    background: rgba(10, 10, 26, 0.92) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.4) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
  }
  
  .jc-header:has(.open) {
    background: rgba(10, 10, 26, 0.98) !important;
    border-color: rgba(99, 102, 241, 0.3) !important;
    box-shadow: 0 10px 32px rgba(99, 102, 241, 0.25) !important;
  }
  
  .jc-header.scrolled {
    top: 20px !important;
    width: 50px !important;
    background: rgba(10, 10, 26, 0.92) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
  }
  
  .jc-header__logo {
    display: none !important;
  }
  
  .jc-header__inner {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
  }
  
  .jc-header__nav,
  .jc-header__cta {
    display: none !important;
  }
  
  .jc-header__burger {
    display: flex !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .jc-header__burger span {
    background-color: #ffffff !important;
  }

  /* Mobile menu side drawer style */
  .jc-mobile-nav {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    width: 300px !important;
    height: 100vh !important;
    background: rgba(10, 10, 26, 0.96) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: -15px 0 50px rgba(0, 0, 0, 0.6) !important;
    z-index: 1000 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    padding: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(100%) !important;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1) !important;
    overflow: hidden !important;
  }

  .jc-mobile-nav.open {
    transform: translateX(0) !important;
  }

  /* Decorative Orbs inside the mobile menu */
  .mobile-nav-glow {
    position: absolute !important;
    border-radius: 50% !important;
    filter: blur(55px) !important;
    pointer-events: none !important;
    z-index: 0 !important;
  }

  .mobile-nav-glow--1 {
    background: radial-gradient(circle, #3B82F6 0%, #8B5CF6 40%, transparent 70%) !important;
    width: 260px !important;
    height: 260px !important;
    top: 15% !important;
    left: -60px !important;
    opacity: 0.3 !important;
  }

  .mobile-nav-glow--2 {
    background: radial-gradient(circle, #EC4899 0%, #3B82F6 40%, transparent 70%) !important;
    width: 280px !important;
    height: 280px !important;
    bottom: 20% !important;
    right: -70px !important;
    opacity: 0.25 !important;
  }

  /* Animate drawer glows only when drawer is open */
  .jc-mobile-nav.open .mobile-nav-glow--1 {
    animation: geminiGlow1 12s ease-in-out infinite !important;
  }

  .jc-mobile-nav.open .mobile-nav-glow--2 {
    animation: geminiGlow2 15s ease-in-out infinite !important;
  }

  /* Header area of Mobile Menu */
  .mobile-nav-header {
    position: relative !important;
    z-index: 2 !important;
    padding: 24px 24px 20px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
  }

  .mobile-nav-logo {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.5px !important;
    text-decoration: none !important;
    color: #ffffff !important;
    padding: 0 !important;
    background: none !important;
  }

  .mobile-nav-logo:hover {
    background: none !important;
    transform: none !important;
  }

  /* Navigation Links Wrapper */
  .mobile-nav-links {
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    padding: 24px 16px !important;
    overflow-y: auto !important;
    flex: 1 !important;
  }

  .jc-mobile-nav .mobile-nav-links a {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.65) !important;
    padding: 12px 16px !important;
    border-radius: 8px !important;
    transition: all 0.3s !important;
    text-align: left !important;
    display: block !important;
    transform: none !important;
  }

  .jc-mobile-nav .mobile-nav-links a:hover,
  .jc-mobile-nav .mobile-nav-links a.active {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.05) !important;
    transform: translateX(5px) !important;
  }

  /* Footer area of Mobile Menu */
  .mobile-nav-footer {
    position: relative !important;
    z-index: 2 !important;
    padding: 20px 20px 24px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    background: rgba(10, 10, 26, 0.6) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
  }

  .jc-mobile-nav .mobile-nav-instagram {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 0.9rem !important;
    color: var(--neon-pink) !important;
    padding: 8px 12px !important;
    border-radius: 6px !important;
    background: rgba(236, 72, 153, 0.05) !important;
    border: 1px solid rgba(236, 72, 153, 0.1) !important;
    width: fit-content !important;
    align-self: center !important;
    transition: all 0.3s ease !important;
  }
  
  .jc-mobile-nav .mobile-nav-instagram:hover {
    color: #ffffff !important;
    background: rgba(236, 72, 153, 0.15) !important;
    border-color: var(--neon-pink) !important;
    transform: translateY(-2px) !important;
  }

  .jc-mobile-nav .mobile-nav-instagram svg {
    stroke: currentColor !important;
  }

  .jc-mobile-nav .mobile-nav-credit {
    font-size: 0.72rem !important;
    color: rgba(255, 255, 255, 0.45) !important;
    padding: 10px 14px !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    text-align: center !important;
    display: block !important;
    line-height: 1.4 !important;
    transition: all 0.3s ease !important;
  }
  
  .jc-mobile-nav .mobile-nav-credit:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(99, 102, 241, 0.2) !important;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1) !important;
    transform: translateY(-2px) !important;
  }


  /* Dispersed compact float badges in hero */
  .jc-hero__float {
    position: absolute !important;
    width: auto !important;
    max-width: none !important;
    padding: 6px 10px !important;
    gap: 6px !important;
    border-radius: 20px !important;
    pointer-events: none !important;
    user-select: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25) !important;
    z-index: 2 !important;
  }
  
  .float-badge-eyebrow,
  .float-badge-chart {
    display: none !important;
  }
  
  .float-badge-title {
    font-size: 0.65rem !important;
    margin-top: 0 !important;
  }
  
  .float-badge-emoji {
    font-size: 0.85rem !important;
  }
  
  /* Dispersed layouts to completely avoid overlapping text */
  .float-badge-1 { top: 90px !important; left: 2% !important; bottom: auto !important; right: auto !important; animation: floating-anim 6s ease-in-out infinite !important; }
  .float-badge-2 { top: 160px !important; right: 2% !important; bottom: auto !important; left: auto !important; animation: floating-anim 5.5s ease-in-out 1s infinite !important; }
  .float-badge-3 { top: 230px !important; left: 2% !important; bottom: auto !important; right: auto !important; animation: floating-anim 6.5s ease-in-out 0.5s infinite !important; }
  .float-badge-4 { top: 300px !important; right: 2% !important; bottom: auto !important; left: auto !important; animation: floating-anim 7s ease-in-out 1.5s infinite !important; }

  /* Subtitle and Social Proof constraints to keep text in center away from float badges */
  .jc-hero__sub {
    max-width: 82% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .jc-social-proof {
    max-width: 82% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: center !important;
  }

  .jc-hero {
    padding: 90px 0 30px !important;
    height: auto !important;
    min-height: auto !important;
  }

  .scroll-down-indicator {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    margin: 32px auto 0 auto !important;
    display: flex !important;
  }

  .jc-hero__immersive-banner {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    padding: 0 16px 40px 16px !important;
    border-radius: 24px !important;
    overflow: hidden !important;
  }

  .banner-grid-layout {
    height: auto !important;
  }

  .banner-person-bg {
    display: block !important;
    position: relative !important;
    order: -1 !important;
    width: calc(100% + 32px) !important;
    margin-left: -16px !important;
    margin-right: -16px !important;
    margin-top: 0 !important;
    margin-bottom: 30px !important;
    height: 360px !important;
    background-size: cover !important;
    background-position: center top !important;
    z-index: 1 !important;
    opacity: 0.95 !important;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 100%) !important;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 100%) !important;
  }

  /* Mobile Logo Overrides and Conecta Animation */
  .logo-text-jean {
    color: #ffffff !important;
  }

  .logo-text-conecta {
    background: linear-gradient(270deg, 
      #8B5CF6, /* purple */
      #C084FC, /* light purple */
      #F472B6, /* light fuchsia */
      #38BDF8, /* blue */
      #8B5CF6  /* back to purple */
    ) !important;
    background-size: 400% 100% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: slowGradientMove 8s ease infinite !important;
  }

  .jc-marquee {
    padding: 10px 0 !important;
  }
  
  .jc-marquee__track span {
    font-size: 0.8rem !important;
    gap: 8px !important;
  }
  
  .jc-marquee__track span::before {
    font-size: 0.7rem !important;
  }
  
  .jc-hero__cta {
    justify-content: center;
  }
  
  .jc-grid--2, .jc-grid--3 {
    grid-template-columns: 1fr;
  }
  
  .farmasi-banner {
    padding: 32px 20px !important;
    overflow: hidden !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .farmasi-grid {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 24px !important;
  }

  .farmasi-intro-text {
    width: 100% !important;
    min-width: 0 !important;
  }

  .farmasi-actions {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .farmasi-collage-column {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
    padding: 20px 0 0 !important;
  }

  .farmasi-interactive-collage {
    display: flex !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    aspect-ratio: auto !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    gap: 16px !important;
    padding: 20px 10px !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .farmasi-interactive-collage::-webkit-scrollbar {
    display: none !important;
  }

  .collage-item {
    position: static !important;
    flex: 0 0 190px !important;
    width: 190px !important;
    aspect-ratio: 4 / 5 !important;
    transform: none !important;
    scroll-snap-align: center !important;
    border-radius: var(--radius-sm) !important;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08) !important;
  }

  .collage-item:hover {
    transform: scale(1.04) !important;
    box-shadow: 0 12px 24px rgba(5, 150, 105, 0.15) !important;
  }

  .academy-target-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  
  .academy-target-grid .jc-card {
    padding: 20px 16px !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .academy-target-grid .jc-card:nth-child(3) {
    grid-column: span 2 !important;
  }

  .academy-target-card-icon {
    margin-bottom: 12px !important;
  }

  .academy-target-grid .jc-card h4 {
    font-size: 0.95rem !important;
    margin-bottom: 8px !important;
  }

  .academy-target-grid .jc-card p {
    font-size: 0.78rem !important;
    line-height: 1.4 !important;
  }

  /* Academy modules in 2 columns on mobile */
  .academy-module-list {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .academy-module-card {
    flex-direction: column !important;
    gap: 10px !important;
    padding: 16px !important;
    align-items: flex-start !important;
    text-align: left !important;
  }

  .academy-module-card h4 {
    font-size: 0.88rem !important;
    line-height: 1.3 !important;
  }

  .academy-module-card p {
    font-size: 0.75rem !important;
    line-height: 1.4 !important;
  }

  .academy-module-num {
    width: 36px !important;
    height: 36px !important;
    font-size: 1rem !important;
  }
  
  .jc-footer__main {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 32px 16px !important;
  }
  
  .jc-footer__brand {
    grid-column: span 2 !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  
  .jc-footer__brand p {
    margin: 12px auto 20px !important;
    text-align: center !important;
  }

  .jc-footer__social-links {
    justify-content: center !important;
  }
  
  .jc-footer__col {
    text-align: left !important;
  }

  .jc-footer__col:nth-child(4) {
    grid-column: span 2 !important;
    text-align: center !important;
  }
  
  .jc-footer__col h4 {
    margin-bottom: 12px;
  }
  
  .jc-footer__cta-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 20px;
    gap: 24px;
  }

  .jc-footer__cta-content {
    text-align: center;
  }

  .jc-footer__cta-action {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .jc-footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  /* Disable sticky hover animations and mock-clicks on mobile for cards */
  .glow-card,
  .jc-card,
  .flowchart-node,
  .contact-audit-card,
  .jc-footer__cta-card {
    cursor: default !important;
    pointer-events: auto !important;
  }
  
  /* Reset all light hovers to their normal static values on mobile */
  .glow-card:hover,
  .jc-card:hover,
  .flowchart-node:hover,
  .academy-module-card:hover {
    transform: none !important;
    box-shadow: var(--shadow-sm) !important;
    border-color: var(--border-glass) !important;
    background: var(--card-glass) !important;
  }

  /* Specific resets for dark theme cards on mobile to keep them dark */
  .services-section-dark .glow-card:hover,
  .contact-audit-card:hover,
  .jc-footer__cta-card:hover {
    transform: none !important;
    background: rgba(10, 10, 26, 0.92) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  }

  .jc-section--cream .glow-card:hover,
  .jc-section--white .glow-card:hover,
  .about-grid .glow-card:hover,
  .flowchart-diagram .glow-card:hover,
  .flowchart-node:hover {
    border-color: rgba(21, 7, 53, 0.08) !important;
    background: var(--white) !important;
    box-shadow: var(--shadow-sm) !important;
  }

  .academy-module-card:hover {
    border-color: rgba(217, 119, 6, 0.08) !important;
    background: rgba(255, 255, 255, 0.45) !important;
    box-shadow: none !important;
  }

  .academy-target-grid .jc-card:hover {
    background: rgba(255, 255, 255, 0.45) !important;
  }
  .academy-target-grid .jc-card:nth-child(1):hover { border-color: rgba(99, 102, 241, 0.2) !important; }
  .academy-target-grid .jc-card:nth-child(2):hover { border-color: rgba(236, 72, 153, 0.2) !important; }
  .academy-target-grid .jc-card:nth-child(3):hover { border-color: rgba(6, 182, 212, 0.2) !important; }
  
  .academy-target-grid .jc-card:hover .academy-target-card-icon {
    transform: none !important;
  }

  .flowchart-node:hover .flowchart-node__num {
    background: rgba(99, 102, 241, 0.05) !important;
    color: var(--neon-indigo) !important;
    box-shadow: none !important;
  }

  .services-section-dark .glow-card:hover {
    border-color: rgba(255, 255, 255, 0.12) !important;
    background: rgba(10, 10, 26, 0.92) !important;
  }
  
  .services-section-dark .glow-card:hover::after {
    width: 0 !important;
  }
  
  .glow-card:hover .jc-card__number,
  .services-section-dark .glow-card:hover .jc-card__number {
    opacity: 0.06 !important;
    transform: none !important;
  }
  
  .glow-card:hover h3 {
    color: inherit !important;
  }
  
  .glow-card:hover .contact-audit-icon {
    transform: none !important;
    box-shadow: none !important;
  }
  
  .services-section-dark .glow-card:hover .jc-card__icon {
    transform: none !important;
    box-shadow: none !important;
  }

  /* 2 Column Grid for Flowchart nodes on mobile */
  .flowchart-diagram {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  
  .flowchart-node {
    padding: 16px 12px !important;
    min-height: 180px !important;
    height: auto !important;
  }
  
  .flowchart-node__header {
    margin-bottom: 8px !important;
    gap: 8px !important;
  }
  
  .flowchart-node__num {
    width: 28px !important;
    height: 28px !important;
    font-size: 0.75rem !important;
  }
  
  .flowchart-node__title {
    font-size: 0.85rem !important;
  }
  
  .flowchart-node__desc {
    font-size: 0.75rem !important;
    line-height: 1.5 !important;
  }

  /* Hide contact items on mobile */
  .contact-info-item {
    display: none !important;
  }
}
