/* 
  Tipografía: 
  - Outfit (Sans-serif, pesos 300, 400, 700) para lectura general y estructura.
  - Playfair Display (Serif, itálica) para palabras clave destacadías en titulares.
*/
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;700&family=Playfair+Display:ital,wght@1,500;1,600&display=swap');

:root {
  /* PALETTE (Minimalista y reducida) */
  /* Colores de acento (Usados con intención, no saturados) */
  --primary: #6e4fe7;
  --primary-light: #9b7ff0;
  --primary-dark: #2a1a6e;
  --primary-subtle: rgba(110, 79, 231, 0.06);
  --primary-glow: rgba(110, 79, 231, 0.15);

  /* Fondos neutros y limpios */
  --bg-page: #ffffff;
  --bg-base: #ffffff;
  --bg-section-alt: #f8f8fa;
  --bg-section: #f8f8fa;
  --bg-dark: #151515;
  --bg-glass: rgba(255, 255, 255, 0.7);

  /* Silver palette (for scrollbar, dividers, legacy refs) */
  --silver-100: #f0f0f4;
  --silver-gradient: linear-gradient(135deg, #e8e8f0, #d0d0dc);

  /* Colores de texto (Contraste claro) */
  --text-main: #1a1535;
  --text-primary: #1a1535;
  --text-secondary: #6b6b7b;
  --text-muted: #6b6b7b;
  --text-inverse: #ffffff;
  --text-on-dark: rgba(255, 255, 255, 0.95);
  --text-on-dark-muted: rgba(255, 255, 255, 0.55);

  /* TYPOGRAPHY */
  --font-sans: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', serif;

  /* Escala tipogr—fica */
  --text-xs: 0.875rem;
  --text-sm: 1rem;
  --text-base: 1.125rem;
  --text-lg: 1.375rem;
  --text-xl: 1.75rem;
  --text-2xl: 2.5rem;
  --text-3xl: 3.5rem;

  /* Titulares gigantes fluidos para el Hero y Scroll Storytelling */
  --text-display: clamp(2.2rem, 8vw, 7.5rem);

  /* Pesos */
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-bold: 700;

  /* SPACING (Layout respirado) */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;
  --space-4xl: 10rem;

  /* Padding de secciones (Muy generoso, mín 96-120px en desktop) */
  --section-padding-y: clamp(6rem, 10vw, 9rem);
  --section-padding-x: clamp(1.5rem, 5vw, 4rem);

  /* UI ELEMENTS */
  /* Bordes */
  --border-subtle: 1px solid rgba(0, 0, 0, 0.06);
  --border-dark: 1px solid rgba(255, 255, 255, 0.1);
  --border-silver: rgba(0, 0, 0, 0.08);
  --border-glass: rgba(110, 79, 231, 0.12);

  /* Radios */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Sombras */
  --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.03);
  --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.04);
  --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.08);
  --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.12);
  --shadow-silver: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 0 30px rgba(110, 79, 231, 0.1);

  /* Transiciones */
  --transition-fast: 200ms ease;
  --transition-base: 350ms ease;
  --transition-smooth: 600ms cubic-bezier(0.25, 1, 0.5, 1);
  --transition-slow: 800ms cubic-bezier(0.25, 1, 0.5, 1);
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}





/* DESIGN TOKENS */
:root {
  /* Z-Index Scale */
  --z-base: 1;
  --z-above: 10;
  --z-nav: 9000;
  --z-overlay: 9500;
  --z-modal: 9999;
  --z-toast: 10000;

  /* Navbar height */
  --nav-height: 96px;
  /* Aumentado ligeramente para más espacio */
}







/* PREMIUM PRELOADER */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
  /* Let GSAP toggle this if needed, actually keep pointer-events: all while loading */
}

.loader-cols {
  position: absolute;
  inset: 0;
  display: flex;
  z-index: 0;
}

.loader-col {
  flex: 1;
  height: 101vh;
  /* slight overlap to avoid subpixel gaps */
  background: var(--primary);
  transform-origin: bottom;
}

/* Glassmorphism ambient glow behind loader content */

.loader-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 65%);
  animation: pulse-glow 3s ease-in-out infinite alternate;
  z-index: 1;
}

.loader-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loader-logo {
  width: 100px;
  height: auto;
  animation: float-y 2.5s ease-in-out infinite;
  filter: drop-shadow(0 0 15px rgba(110, 79, 231, 0.3));
}

.loader-ring-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
}

.loader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--primary);
  border-right-color: var(--primary-light);
  animation: spin 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.loader-ring:nth-child(2) {
  inset: 15px;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: rgba(110, 79, 231, 0.5);
  border-left-color: rgba(110, 79, 231, 0.2);
  animation: spin-reverse 1.8s linear infinite;
}

@keyframes pulse-glow {
  0% {
    transform: scale(0.8);
    opacity: 0.3;
  }

  100% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}

@keyframes spin-reverse {
  0% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

/* RESET & BASE */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  width: 100%;
  max-width: 100%;
}

body {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  word-break: break-word;
  overflow-wrap: break-word;
}

::selection {
  background: var(--primary);
  color: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  border: none;
  outline: none;
}

input,
textarea {
  font-family: 'Outfit', sans-serif;
  outline: none;
}

/* SCROLLBAR: COMPLETELY HIDDEN */
*::-webkit-scrollbar,
html::-webkit-scrollbar,
body::-webkit-scrollbar,
::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}

*::-webkit-scrollbar-track,
html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track,
::-webkit-scrollbar-track {
  display: none !important;
  background: transparent !important;
}

*::-webkit-scrollbar-thumb,
html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb,
::-webkit-scrollbar-thumb {
  display: none !important;
  background: transparent !important;
}

/* LAYOUT */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container--wide {
  max-width: 1400px;
}

.section {
  padding: var(--section-padding-y) var(--section-padding-x);
  position: relative;
  background: transparent;
  overflow: hidden;
}

/* Light alt section */
.section--alt {
  background: transparent;
}

/* Deep purple contrast sections */
.section--dark {
  background: var(--bg-dark);
  color: var(--text-inverse);
}

.section--dark .section-title {
  color: var(--text-on-dark);
}

.section--dark .section-subtitle {
  color: var(--text-on-dark-muted);
}

.section--dark .section-badge {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}

/* SECTION HEADERS */
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--bg-section-alt);
  border: var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.section-title {
  font-size: var(--text-display);
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
  color: var(--text-main);
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* TYPOGRAPHY UTILITIES */
.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-silver {
  background: linear-gradient(135deg, #9090b0, #c0c0d8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* GRID UTILITIES */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

/* DIVIDER */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-silver), transparent);
  margin: 0 auto;
  max-width: 1200px;
}

/* GLOW ORBS (background decorations) */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.glow-orb--purple {
  background: radial-gradient(circle, rgba(110, 79, 231, 0.2) 0%, transparent 70%);
}

.glow-orb--silver {
  background: radial-gradient(circle, rgba(180, 175, 220, 0.25) 0%, transparent 70%);
}

/* NOISE OVERLAY */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
}

/* ANIMATIONS (keyframes) */
@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }

  100% {
    transform: scale(40);
    opacity: 0;
  }
}

@keyframes float-y {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes count-pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }

  100% {
    transform: scale(1);
  }
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 2.5rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 5rem;
  }

  .container {
    padding: 0 var(--space-lg);
  }

  .section {
    padding: var(--space-3xl) 0;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }
}





/* KEYFRAMES */

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes floatSlow {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  33% {
    transform: translateY(-8px) rotate(1deg);
  }

  66% {
    transform: translateY(-4px) rotate(-1deg);
  }
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 20px var(--primary-glow), 0 0 40px var(--primary-glow);
  }

  50% {
    box-shadow: 0 0 40px var(--primary-glow), 0 0 80px var(--primary-glow);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes borderGlow {

  0%,
  100% {
    border-color: rgba(110, 79, 231, 0.3);
  }

  50% {
    border-color: rgba(110, 79, 231, 0.8);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 0.6;
  }

  100% {
    transform: scale(4);
    opacity: 0;
  }
}

@keyframes heroLogoFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 30px rgba(110, 79, 231, 0.5));
  }

  50% {
    transform: translateY(-10px) scale(1.02);
    filter: drop-shadow(0 0 60px rgba(110, 79, 231, 0.8));
  }
}

@keyframes lineGrow {
  from {
    scaleX: 0;
  }

  to {
    scaleX: 1;
  }
}

@keyframes wobble {

  0%,
  100% {
    transform: rotate(-3deg);
  }

  50% {
    transform: rotate(3deg);
  }
}

@keyframes orb-drift {
  0% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -20px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 15px) scale(0.97);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

/* SCROLL REVEAL (Intersection Observer classes) */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.reveal--left {
  transform: translateX(-28px);
}

.reveal.reveal--right {
  transform: translateX(28px);
}

.reveal.reveal--scale {
  transform: scale(0.9);
  opacity: 0;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Staggered children */
.reveal-group>* {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-group.is-visible>*:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0ms;
}

.reveal-group.is-visible>*:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 100ms;
}

.reveal-group.is-visible>*:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 200ms;
}

.reveal-group.is-visible>*:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 300ms;
}

.reveal-group.is-visible>*:nth-child(5) {
  opacity: 1;
  transform: none;
  transition-delay: 400ms;
}

/* UTILITY ANIMATION CLASSES */
.animate-float {
  animation: float 4s ease-in-out infinite;
}

.animate-float-slow {
  animation: floatSlow 7s ease-in-out infinite;
}

.animate-pulse-glow {
  animation: pulse-glow 3s ease-in-out infinite;
}

.animate-spin-slow {
  animation: spinSlow 20s linear infinite;
}

.animate-gradient {
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
}

.animate-shimmer {
  background: linear-gradient(90deg,
      var(--primary) 0%,
      var(--primary-light) 50%,
      var(--primary) 100%);
  background-size: 200% auto;
  animation: shimmer 2s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* HOVER EFFECTS */
.hover-lift {
  transition: transform var(--transition-spring), box-shadow var(--transition-base);
}

.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong), 0 0 50px var(--primary-glow);
}

.hover-glow {
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
}

.hover-glow:hover {
  box-shadow: 0 0 30px var(--primary-glow);
  border-color: var(--primary) !important;
}

/* PAGE LOADING */


/* STEP TIMELINE */
.step-line-fill {
  transform-origin: left;
  animation: lineGrow 0.8s ease forwards;
}





/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  height: var(--nav-height);
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  border-radius: 0;
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border: none;
  box-shadow: none;
  transition: transform 0.44s cubic-bezier(0.32, 0.72, 0, 1),
              opacity 0.44s cubic-bezier(0.32, 0.72, 0, 1),
              top 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              width 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              max-width 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              height 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-radius 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar--hidden {
  transform: translateY(-115%) !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Morph into floating bubble on scroll */
.navbar.scrolled {
  top: 1rem;
  left: 0;
  right: 0;
  width: calc(100% - 2.5rem);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  height: 64px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.navbar.scrolled.navbar--hidden {
  transform: translateY(-135%) !important;
}

.navbar__inner {
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  box-sizing: border-box;
}

.navbar__inner > a {
  flex: 1 1 0%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.navbar__logo {
  height: 44px;
  max-height: 44px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  flex-shrink: 0;
  transition: filter var(--transition-base), transform var(--transition-base);
  margin: 0;
}

.navbar__logo:hover {
  transform: scale(1.04);
}

.navbar__links {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.35rem, 1.1vw, 0.95rem);
  margin: 0 auto;
  white-space: nowrap;
}

.navbar__link {
  font-size: 0.885rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.02em;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  border: 1px solid transparent;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.navbar__link::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  transform: scale(0.85);
  opacity: 0;
  transition: all var(--transition-spring);
  z-index: -1;
}

.navbar__link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25), 0 0 12px rgba(110, 79, 231, 0.25);
  transform: translateY(-1px);
}

.navbar__link:hover::after {
  transform: scale(1);
  opacity: 1;
}

.navbar__link:active,
.navbar__link.active {
  color: #ffffff;
  background: rgba(110, 79, 231, 0.22);
  border-color: rgba(167, 139, 250, 0.4);
}

/* Refined & Editorial 'Planes' Button in Navbar (Zero Neon, Clean White) */
.navbar__link--planes-nav {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  padding: 8px 20px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  box-shadow: none !important;
  text-shadow: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  animation: none !important;
  position: relative !important;
  overflow: hidden !important;
}

.navbar__link--planes-nav:hover {
  background: rgba(255, 255, 255, 0.16) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4) !important;
}

.navbar__link--planes-nav::after {
  display: none !important;
}

.navbar__actions {
  flex: 1 1 0%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-shrink: 0;
  margin: 0;
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 3px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-full);
  padding: 3px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color var(--transition-fast);
}

.lang-toggle:hover {
  border-color: rgba(255, 255, 255, 0.28);
}

.lang-btn {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
}

.lang-btn:hover {
  color: #ffffff;
}

.lang-btn.active {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(110, 79, 231, 0.5);
}

.mobile-lang-toggle {
  background: rgba(0, 0, 0, 0.05) !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.mobile-lang-toggle .lang-btn {
  color: #64748b !important;
}

.mobile-lang-toggle .lang-btn:hover {
  color: #0f172a !important;
}

.mobile-lang-toggle .lang-btn.active {
  background: var(--primary) !important;
  color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(110, 79, 231, 0.4) !important;
}


/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.navbar__mobile {
  position: fixed;
  top: calc(var(--nav-height) + 0.5rem);
  left: 0.75rem;
  right: 0.75rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  transform: translateY(-20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.3s ease;
  z-index: calc(var(--z-nav) + 1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (min-width: 769px) {
  .navbar__mobile {
    display: none !important;
  }
}

.navbar__mobile.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.navbar__mobile .navbar__link {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  text-decoration: none;
  border-radius: 12px;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.navbar__mobile .navbar__link:hover,
.navbar__mobile .navbar__link:active {
  background: rgba(110, 79, 231, 0.08);
  color: var(--primary);
}

.navbar__mobile .navbar__link:last-of-type {
  border-bottom: none;
}


/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-spring);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  border: none;
  outline: none;
  text-decoration: none;
}

/* Ripple effect */
.btn::after {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  opacity: 0;
  transform: scale(1);
}

.btn:active::after {
  animation: ripple 0.4s ease-out;
}

/* Primary Button */
.btn--primary {
  background: var(--primary);
  color: var(--text-inverse);
  box-shadow: none;
}

.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: none;
}

/* Outline Button */
.btn--outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  transform: translateY(-2px);
}

/* Ghost Button */
.btn--ghost {
  background: var(--bg-glass);
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
}

.btn--ghost:hover {
  background: var(--primary-subtle);
  color: var(--primary-light);
  border-color: var(--border-glass);
}

/* WhatsApp Button */
.btn--whatsapp,
.btn--wa {
  background: linear-gradient(135deg, #25D366 0%, #1da851 100%) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.38) !important;
  border: 1px solid #20ba5a !important;
  text-decoration: none !important;
}

.btn--whatsapp:hover,
.btn--wa:hover {
  background: linear-gradient(135deg, #22bf5b 0%, #15803d 100%) !important;
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55) !important;
  color: #ffffff !important;
}

/* Large Button */
.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* Small Button */
.btn--sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.8rem;
}

/* Full width */
.btn--full {
  width: 100%;
}

/* Icon in button */
.btn__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* CARDS */
.card {
  background: #ffffff;
  border: 1px solid var(--border-silver);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-spring);
  box-shadow: var(--shadow-card);
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(110, 79, 231, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.card:hover {
  border-color: rgba(110, 79, 231, 0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.card--glass {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.card--featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(110, 79, 231, 0.15), rgba(110, 79, 231, 0.05));
  box-shadow: 0 0 0 1px var(--primary), var(--shadow-glow);
}

/* STAT CARDS */
.stat-card {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
}

.stat-card__number {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-xs);
}

.stat-card__label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ROLE CARDS */
.role-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-lg);
  padding: var(--space-2xl) var(--space-xl);
}

.role-card__icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(110, 79, 231, 0.3));
  transition: filter var(--transition-base), transform var(--transition-spring);
}

.role-card:hover .role-card__icon {
  filter: drop-shadow(0 12px 30px rgba(110, 79, 231, 0.5));
  transform: scale(1.08);
}

.role-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.role-card__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* HOW IT WORKS STEPS */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  position: relative;
}

.steps-grid::after {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glass), var(--primary), var(--border-glass), transparent);
  pointer-events: none;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-md);
  padding: var(--space-xl) var(--space-lg);
  background: var(--bg-page);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
}

.step-card--sticky {
  position: sticky;
  top: 15vh;
}

.step-card__number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--text-inverse);
  font-size: 1.4rem;
  font-weight: var(--font-weight-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.step-card__text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* PLAN CARDS */
.plan-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-lg);
  background: var(--bg-page);
  border: var(--border-subtle);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  box-shadow: var(--shadow-subtle);
}

.plan-card::before {
  display: none;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.plan-card--popular {
  border: 1px solid rgba(110, 79, 231, 0.2);
  background: var(--bg-section-alt);
  box-shadow: var(--shadow-subtle), 0 0 0 1px rgba(110, 79, 231, 0.05);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: var(--shadow-subtle);
  z-index: 10;
}

.plan-card__header {
  text-align: center;
}

.plan-card__icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
}

.plan-card__name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.plan-card__period {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
}

.plan-card__divider {
  height: 1px;
  background: var(--border-subtle);
}

.plan-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex: 1;
}

.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.plan-feature__check {
  width: 18px;
  height: 18px;
  background: rgba(110, 79, 231, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-feature__check svg {
  width: 10px;
  height: 10px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2.5;
}

/* ABOUT CARDS */
.about-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--bg-page);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-subtle);
  align-items: center;
  text-align: center;
}

.about-card:hover {
  border-color: var(--primary);
}

.about-card__icon {
  width: 48px;
  height: 48px;
  background: var(--primary-subtle);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.about-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.about-card__text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* FAQ ACCORDION */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-silver);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(110, 79, 231, 0.04);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  contain: layout style;
}

.faq-item.open {
  border-color: rgba(110, 79, 231, 0.25);
  box-shadow: 0 4px 20px rgba(110, 79, 231, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  cursor: pointer;
  user-select: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--primary-light);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--transition-base), color var(--transition-base);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary-light);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: max-height;
}

.faq-answer-inner {
  padding: 0 var(--space-xl) var(--space-lg);
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* CONTACT FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-input,
.form-textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1rem var(--space-md);
  color: #ffffff;
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* FLOATING WHATSAPP BUTTON */
.wa-float {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  z-index: var(--z-overlay);
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-spring);
  cursor: pointer;
  text-decoration: none;
}

.wa-float:hover {
  transform: scale(1.12) rotate(-5deg);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5);
}

.wa-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.wa-float__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: pulse-glow 2s ease-in-out infinite;
}

/* FLOATING WHATSAPP WRAPPER & TOOLTIP (Professional, no emojis) */
.wa-float-wrapper {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  z-index: 9999 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  pointer-events: none !important;
}

.wa-float-wrapper > * {
  pointer-events: auto !important;
}

.wa-float-wrapper .wa-float {
  position: relative !important;
  inset: auto !important;
  bottom: auto !important;
  right: auto !important;
  top: auto !important;
  left: auto !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
}

.wa-float-pill {
  background: rgba(10, 15, 12, 0.95) !important;
  border: 1px solid rgba(37, 211, 102, 0.45) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.75), 0 0 16px rgba(37, 211, 102, 0.2) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  padding: 9px 18px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 9px !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  user-select: none !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
  animation: floatPulse 3s infinite ease-in-out;
}

.wa-float-pill:hover {
  transform: translateY(-2px) !important;
  border-color: #25d366 !important;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.85), 0 0 24px rgba(37, 211, 102, 0.35) !important;
}

.wa-float-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 8px #25d366;
  display: inline-block;
  flex-shrink: 0;
  animation: liveDot 1.5s infinite ease-in-out;
}

@keyframes liveDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

@keyframes floatPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* HERO CONVERSION ELEMENTS */
.hero__cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 32px 0 20px;
  position: relative;
  z-index: 5;
}

.hero__cta-group .btn {
  margin: 0 !important;
  box-sizing: border-box;
}

/* HERO PROMINENT TRIAL BUTTON (Vibrant WhatsApp Green CTA) */
.btn--trial-cta {
  background: linear-gradient(135deg, #25D366 0%, #1da851 100%);
  color: #ffffff !important;
  border: 1px solid #20ba5a;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.38), 0 2px 6px rgba(0, 0, 0, 0.08);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  margin: 0;
  flex-shrink: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.btn--trial-cta .btn__icon {
  color: #ffffff !important;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
  transition: transform 0.25s ease;
}

.btn--trial-badge {
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: #ffffff !important;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 9px;
  border-radius: 999px;
  margin-right: -2px;
  line-height: 1.2;
}

.btn--trial-cta:hover {
  background: linear-gradient(135deg, #22c55e 0%, #15803d 100%);
  color: #ffffff !important;
  border-color: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55), 0 4px 12px rgba(0, 0, 0, 0.12);
}

.btn--trial-cta:hover .btn__icon {
  color: #ffffff !important;
  transform: scale(1.1);
}

.btn--trial-cta:hover .btn--trial-badge {
  background: rgba(0, 0, 0, 0.32);
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff !important;
}

.btn--trial-cta:active {
  transform: translateY(0);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

.hero__trust-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #64748b;
  margin-top: 6px;
  margin-bottom: 24px;
  font-weight: 500;
}

.hero__trust-line svg {
  flex-shrink: 0;
}

/* TRIAL POPUP MODAL (Emergent Message) */
.trial-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 12, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.trial-modal-backdrop.active {
  display: flex !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.trial-modal-card {
  position: relative;
  background: #0d0d16;
  border: 1px solid rgba(110, 79, 231, 0.35);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 50px rgba(110, 79, 231, 0.18);
  border-radius: 24px;
  width: 100%;
  max-width: 500px;
  padding: 30px 28px 26px;
  color: #ffffff;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
  text-align: left;
}

.trial-modal-backdrop.active .trial-modal-card {
  transform: translateY(0) scale(1);
}

.trial-modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
}

.trial-modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.trial-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.35);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  color: #25d366;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.trial-modal-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 6px #25d366;
  animation: liveDot 1.5s infinite ease-in-out;
}

.trial-modal-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.trial-modal-subtitle {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 18px;
}

.trial-modal-subtitle strong {
  color: #ffffff;
}

/* Guarantees List with Small, Delicate Icons */
.trial-modal-guarantees {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 20px;
}

.trial-modal-guarantee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  line-height: 1.4;
}

.trial-modal-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #25d366;
}

.trial-modal-item-text {
  color: rgba(255, 255, 255, 0.8);
}

.trial-modal-item-text strong {
  color: #ffffff;
  font-weight: 600;
  margin-right: 4px;
}

/* Form */
.trial-modal-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 6px;
}

.trial-modal-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.trial-modal-at {
  position: absolute;
  left: 14px;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.trial-modal-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 11px 14px 11px 32px;
  font-family: inherit;
  font-size: 13.5px;
  color: #ffffff;
  outline: none;
  transition: all 0.2s ease;
}

.trial-modal-input:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: #6e4fe7;
  box-shadow: 0 0 0 3px rgba(110, 79, 231, 0.25);
}

.trial-modal-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.btn--trial-submit {
  background: #25d366;
  color: #0b0f19;
  border: none;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.btn--trial-submit:hover {
  background: #22c55e;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.trial-modal-footer-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  margin: 10px 0 0;
}

@media (max-width: 768px) {
  .hero__cta-group,
  .hero__ctas {
    flex-direction: column !important;
    width: 100% !important;
    max-width: 360px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    gap: 14px !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;
  }
  .hero__cta-group .btn,
  .hero__ctas .btn {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 52px !important;
    justify-content: center !important;
    padding: 13px 18px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    text-align: center !important;
    line-height: 1.3 !important;
  }
  .btn--trial-cta {
    position: relative !important;
  }
  .btn--trial-badge {
    display: none !important;
  }
  .trial-modal-card {
    padding: 24px 20px 20px;
    border-radius: 20px;
  }
  .wa-float-wrapper {
    bottom: 18px !important;
    right: 18px !important;
    gap: 8px !important;
  }
  .wa-float-pill {
    padding: 7px 12px !important;
    font-size: 12px !important;
  }
  .wa-float-wrapper .wa-float {
    width: 52px !important;
    height: 52px !important;
  }
  .wa-float-wrapper .wa-float svg {
    width: 26px !important;
    height: 26px !important;
  }
}

@media (max-width: 440px) {
  .hero__cta-group,
  .hero__ctas {
    max-width: 100% !important;
    padding: 0 6px !important;
    gap: 12px !important;
  }
  .hero__cta-group .btn,
  .hero__ctas .btn {
    padding: 12px 14px !important;
    font-size: 14px !important;
    gap: 8px !important;
    min-height: 50px !important;
  }
  .wa-float-pill .wa-float-text {
    font-size: 11.5px !important;
  }
}

@media (max-width: 360px) {
  .wa-float-pill {
    display: none !important;
  }
}


/* HERO SECTION */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-sm) var(--space-xl);
  max-width: 900px;
  margin: -17vh auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  filter: blur(0);
  opacity: 1;
}

.hero__logo {
  width: clamp(220px, 35vw, 420px);
  height: auto;
  margin: 1.5rem 0 0;
  transform: translateY(3.4rem);
}

.hero__content .section-badge {
  margin-top: -0.35rem;
}

.hero__title {
  font-size: var(--text-display);
  font-weight: var(--font-weight-bold);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-top: 0.2rem;
  margin-bottom: var(--space-sm);
}

.hero__keyword {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--primary);
}

/* Urgency Pill */
.urgency-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-section-alt);
  border: var(--border-subtle);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.urgency-pill__dot {
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
}

.urgency-pill strong,
.urgency-pill span#urgency-spots {
  color: var(--text-main);
  font-weight: 700;
}

.hero__subtitle {
  font-size: clamp(0.95rem, 1.35vw, 1.125rem);
  color: var(--text-secondary);
  max-width: 620px;
  line-height: 1.65;
  margin-top: 0;
  margin-bottom: 0;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}

.hero__stats {
  display: flex;
  gap: var(--space-xl);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.6rem;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 170px;
  text-align: center;
}

.hero__stat-number {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--text-main);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-glass);
  align-self: center;
}

.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
  animation: float 2s ease-in-out infinite;
}

.hero__scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--border-glass);
  border-bottom: 2px solid var(--border-glass);
  transform: rotate(45deg);
}

/* BANNER SECTION (JOIN US) */
.join-section {
  position: relative;
  padding: var(--space-4xl) 0;
  overflow: hidden;
}

.join-banner-img {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto var(--space-2xl);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-strong), 0 0 60px rgba(110, 79, 231, 0.2);
}

.join-banner-img img {
  width: 100%;
  height: auto;
  display: block;
}

.join-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
}

.join-benefit {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.95rem;
  color: var(--text-secondary);
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.join-benefit__icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.testimonial-card {
  background: white;
  border: 1px solid var(--border-silver);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-spring);
  text-align: left;
}

.testimonial-card:hover {
  border-color: rgba(110, 79, 231, 0.25);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.testimonial-user {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.testimonial-handle {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.testimonial-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.testimonial-growth {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  width: fit-content;
}

/* FOOTER */
.footer {
  background: #0f0f11;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: var(--space-3xl) 0 var(--space-xl);
  color: rgba(255, 255, 255, 0.7);
  overflow: hidden;
  position: relative;
  z-index: 105;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: center;
  width: 100%;
  gap: var(--space-3xl);
  margin-bottom: var(--space-2xl);
  position: relative !important;
  z-index: 110 !important;
  pointer-events: auto !important;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  position: relative;
  z-index: 112;
}

.footer__logo {
  height: 64px;
  max-height: 64px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  object-position: left center;
}

.footer__tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 260px;
  line-height: 1.6;
}

.footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: var(--space-md);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  position: relative !important;
  z-index: 115 !important;
  pointer-events: auto !important;
}

.footer__link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
  position: relative !important;
  z-index: 120 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
  display: inline-flex;
  align-items: center;
  padding: 4px 0;
}

.footer__link:hover {
  color: #ffffff;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border-subtle);
  gap: var(--space-md);
  flex-wrap: wrap;
  position: relative;
  z-index: 110;
}

.footer__copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__watermark {
  font-size: clamp(4rem, 13vw, 18vw);
  font-weight: 900;
  color: var(--primary);
  text-align: center;
  line-height: 1;
  font-family: var(--font-serif);
  letter-spacing: -0.04em;
  user-select: none;
  white-space: nowrap;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 30%);
  pointer-events: none !important;
  user-select: none !important;
  z-index: 0 !important;
}

.footer__socials {
  display: flex;
  gap: var(--space-md);
}

.footer__social {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition-base);
  box-shadow: none;
}

.footer__social:hover {
  background: var(--primary-subtle);
  border-color: var(--border-glass);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 4px 16px var(--primary-glow);
}

/* CONTACT SECTION LAYOUT */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: white;
  border: 1px solid var(--border-silver);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  text-decoration: none;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
}

.contact-channel:hover {
  background: white;
  border-color: rgba(110, 79, 231, 0.25);
  box-shadow: var(--shadow-card-hover);
  transform: translateX(6px);
}

.contact-channel__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-channel--wa .contact-channel__icon {
  background: rgba(37, 211, 102, 0.15);
}

.contact-channel--email .contact-channel__icon {
  background: var(--primary-subtle);
}

.contact-channel__info {
  display: flex;
  flex-direction: column;
}

.contact-channel__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.contact-channel__value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* RESPONSIVE (components) */
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid::after {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .fan-deck {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .navbar__links,
  .navbar__actions .lang-toggle {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero__stats {
    gap: var(--space-lg);
  }

  .hero__stat-divider {
    display: none;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .join-benefits {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

}

@media (max-width: 480px) {
  .hero__ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero__ctas .btn {
    width: 100%;
  }

  .wa-float {
    bottom: var(--space-lg);
    right: var(--space-lg);
  }
}





/* AURORA: CSS-ONLY (Light/Silver variant) */
.aurora-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.aurora-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
  contain: layout style;
}

.aurora-orb:nth-child(1) {
  width: 55vw;
  height: 45vh;
  background: radial-gradient(circle, rgba(110, 79, 231, 0.12) 0%, transparent 70%);
  top: -5%;
  left: -10%;
  animation: aurora-drift-1 20s ease-in-out infinite;
}

.aurora-orb:nth-child(2) {
  width: 40vw;
  height: 40vh;
  background: radial-gradient(circle, rgba(180, 175, 220, 0.18) 0%, transparent 70%);
  top: 0;
  right: -5%;
  animation: aurora-drift-2 25s ease-in-out infinite;
}

.aurora-orb:nth-child(3) {
  width: 42vw;
  height: 38vh;
  background: radial-gradient(circle, rgba(155, 127, 240, 0.1) 0%, transparent 70%);
  bottom: 0;
  left: 15%;
  animation: aurora-drift-3 18s ease-in-out infinite;
}

.aurora-orb:nth-child(4) {
  width: 30vw;
  height: 28vh;
  background: radial-gradient(circle, rgba(216, 216, 238, 0.3) 0%, transparent 70%);
  bottom: 10%;
  left: 50%;
  animation: aurora-drift-4 24s ease-in-out infinite;
}

@keyframes aurora-drift-1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(5vw, 4vh) scale(1.05);
  }

  66% {
    transform: translate(-3vw, 6vh) scale(0.97);
  }
}

@keyframes aurora-drift-2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  40% {
    transform: translate(-4vw, 3vh) scale(1.04);
  }

  70% {
    transform: translate(3vw, -4vh) scale(0.96);
  }
}

@keyframes aurora-drift-3 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(4vw, -5vh) scale(1.04);
  }
}

@keyframes aurora-drift-4 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  45% {
    transform: translate(-5vw, 3vh) scale(1.07);
  }

  80% {
    transform: translate(3vw, -4vh) scale(0.95);
  }
}

/* DOT GRID  Light Mode */
.dot-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(110, 79, 231, 0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  contain: strict;
}

.dot-grid--edge {
  mask-image: radial-gradient(ellipse 100% 100% at 50% 0%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 0%, black 30%, transparent 100%);
}

/* HERO GRID  Subtle light grid */
.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(110, 79, 231, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 79, 231, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, transparent 20%, black 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, transparent 20%, black 100%);
  contain: strict;
}

/* HARDWARE ACCELERATED HEADINGS REVEAL (Zero filter:blur layout repaints) */
.blur-text-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px) translateZ(0);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: opacity, transform;
}

.blur-text-word.visible {
  opacity: 1;
  transform: translateY(0) translateZ(0);
  will-change: auto;
}

/* HIGH-PERFORMANCE SCROLL LAYOUT CONTAINMENT */
#equipo, #pruebas, #unete, #faq, #contacto {
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}

/* SPOTLIGHT CARD  Light Mode */
.spotlight-card {
  position: relative;
  isolation: isolate;
}

.spotlight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(300px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
      rgba(110, 79, 231, 0.07) 0%,
      transparent 70%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.spotlight-card:hover::before {
  opacity: 1;
}

/* 3D TILT CARD */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.1s ease;
  will-change: transform;
}

.tilt-card__inner {
  transform: translateZ(20px);
}

/* TEXT SCRAMBLE */
.scramble-char {
  display: inline-block;
  transition: opacity 0.05s;
}

/* GRADIENT BORDER */
.gradient-border {
  position: relative;
  padding: 2px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(110, 79, 231, 0.4), rgba(180, 175, 220, 0.3), rgba(110, 79, 231, 0.4));
  background-size: 200% 200%;
  animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.gradient-border>* {
  background: var(--bg-section);
  border-radius: calc(var(--radius-xl) - 2px);
}

/* BORDER BEAM */
.border-beam {
  --beam-size: 80px;
  --beam-color-from: rgba(110, 79, 231, 0.6);
  --beam-color-to: rgba(155, 127, 240, 0.3);
  overflow: hidden;
}

.border-beam::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(from var(--beam-angle, 0deg),
      var(--beam-color-from),
      var(--beam-color-to),
      transparent 30%);
  animation: beam-spin 3s linear infinite;
  z-index: -1;
}

@property --beam-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes beam-spin {
  to {
    --beam-angle: 360deg;
  }
}

/* Fallback for browsers without @property */
@supports not (background: conic-gradient(from 0deg, red, blue)) {
  .border-beam::after {
    display: none;
  }
}

/* CUSTOM CURSOR */
.custom-cursor {
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
  box-shadow: 0 0 12px var(--primary-glow);
}

.custom-cursor.hovering {
  width: 28px;
  height: 28px;
  background: rgba(110, 79, 231, 0.25);
  border: 2px solid var(--primary);
  mix-blend-mode: normal;
}

/* SCROLL PROGRESS BAR */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform-origin: left;
  transform: scaleX(0);
  z-index: calc(var(--z-nav) 1);
  will-change: transform;
  border-radius: 0 2px 2px 0;
}

/* MARQUEE */
.marquee-section {
  overflow: hidden;
  padding: var(--space-xl) 0;
  background: transparent;
  border-top: none;
  border-bottom: none;
}

.marquee-track {
  display: flex;
  animation: marquee-scroll 28s linear infinite;
  width: max-content;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
  padding-right: var(--space-2xl);
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.marquee-item--highlight {
  color: var(--text-main);
}

.marquee-item__dot {
  width: 5px;
  height: 5px;
  background: var(--text-muted);
  border-radius: 50%;
  opacity: 0.5;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-group>* {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-group>*.visible {
  opacity: 1;
  transform: translateY(0);
}

/* FLOATING WHATSAPP BUTTON */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
  z-index: var(--z-overlay);
  transition: transform var(--transition-spring), box-shadow var(--transition-base);
}

.wa-float-wrapper .wa-float {
  position: relative !important;
  inset: auto !important;
  bottom: auto !important;
  right: auto !important;
  top: auto !important;
  left: auto !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.wa-float:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 12px 48px rgba(37, 211, 102, 0.5);
}

.wa-float__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  animation: wa-pulse 2.5s ease-out infinite;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

/* AMBIENT SHAPES (Light) */
.ambient-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.ambient-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: ambient-float 14s ease-in-out infinite;
}

.ambient-shape:nth-child(1) {
  width: 300px;
  height: 300px;
  background: rgba(110, 79, 231, 0.08);
  top: -100px;
  right: -50px;
}

.ambient-shape:nth-child(2) {
  width: 250px;
  height: 250px;
  background: rgba(155, 127, 240, 0.07);
  bottom: 0;
  left: -80px;
  animation-delay: -5s;
}

.ambient-shape:nth-child(3) {
  width: 180px;
  height: 180px;
  background: rgba(216, 216, 238, 0.15);
  top: 50%;
  left: 50%;
  animation-delay: -9s;
}

@keyframes ambient-float {

  0%,
  100% {
    transform: translate(0, 0);
  }

  33% {
    transform: translate(20px, -15px);
  }

  66% {
    transform: translate(-15px, 20px);
  }
}

/* GLITCH EFFECT */
.glitch {
  position: relative;
  animation: float-y 6s ease-in-out infinite;
}

/* COUNTER PULSE */
.counter-pulse {
  animation: count-pulse 0.3s ease-out;
}

/* LIVE COUNT INDICATOR */
.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #16a34a;
}

.live-indicator::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #16a34a;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
  box-shadow: 0 0 6px rgba(22, 163, 74, 0.5);
}

/* PAGE LOADER */


/* FAN DECK  3D Team Cards */
.fan-deck-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3xl);
}

.fan-deck-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: var(--space-md);
}

/* Founders special full-width row */
.founders-row {
  display: flex;
  gap: var(--space-xl);
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}

.founder-card {
  background: var(--bg-page);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-2xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  min-width: 220px;
  box-shadow: var(--shadow-subtle);
}

.founder-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-inverse);
  font-weight: var(--font-weight-bold);
  flex-shrink: 0;
}

.founder-card__name {
  font-size: 1.1rem;
  font-weight: var(--font-weight-bold);
  color: var(--text-main);
  text-align: center;
}

.founder-card__role {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.founder-card__badge {
  display: none;
}

/* Fan deck for Roles */
.fan-deck {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.fan-role-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.fan-role-block__icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto var(--space-md);
  display: block;
}

.fan-role-block__title {
  font-size: 1.1rem;
  font-weight: var(--font-weight-bold);
  color: var(--text-main);
  margin-bottom: var(--space-sm);
  text-align: center;
}

.fan-role-block__count {
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary);
  text-align: center;
  display: block;
  margin-bottom: var(--space-xs);
}

.fan-role-block__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

.fan-role-block__trend {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-top: var(--space-sm);
}

.fan-role-block__trend--up {
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
}

.fan-role-block__trend--live {
  background: rgba(110, 79, 231, 0.1);
  color: var(--primary);
  animation: pulse-dot 1.5s infinite;
}

/* URGENCY BANNER */
/* Reemplazado por pill */

.urgency-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  animation: shimmer 3s infinite;
  background-size: 200% 100%;
}

.urgency-banner strong {
  color: #fbbf24;
}

/* INSTAGRAM DM BUTTON */
.btn--instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: white;
  box-shadow: 0 4px 20px rgba(131, 58, 180, 0.3);
  border: none;
}

.btn--instagram:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(131, 58, 180, 0.5);
}

/* SHINE EFFECT */
.btn--shine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-15deg);
  transition: left 0.6s ease;
}

.btn--shine:hover::before {
  left: 150%;
}

/* ANIMATE PULSE GLOW */
.animate-pulse-glow {
  animation: glow-pulse 2.5s ease-in-out infinite;
}

@keyframes glow-pulse {

  0%,
  100% {
    box-shadow: 0 4px 20px var(--primary-glow);
  }

  50% {
    box-shadow: 0 8px 40px rgba(110, 79, 231, 0.45);
  }
}

/* FLOATING PARTICLES (CSS-only, no canvas) */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(110, 79, 231, 0.15);
  animation: particle-float linear infinite;
  will-change: transform, opacity;
}

@keyframes particle-float {
  0% {
    transform: translateY(100%) translateX(0) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
    transform: translateY(90%) translateX(5px) scale(1);
  }

  90% {
    opacity: 0.5;
  }

  100% {
    transform: translateY(-20%) translateX(-10px) scale(0.5);
    opacity: 0;
  }
}

/* MORPHING BLOB */
.hero-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}

@media (max-width: 1024px) {
  .hero-blob {
    display: none;
  }
}

/* ROLE CARD  Legacy */
.role-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.role-card__icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

.role-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.role-card__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .fan-deck {
    grid-template-columns: 1fr;
  }

  .founders-row {
    flex-direction: column;
    align-items: center;
  }

  .wa-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }

  .wa-float svg {
    width: 24px;
    height: 24px;
  }
}




/* Custom style for first word in Pruebas section */
#pruebas .section-title .blur-text-word:first-child {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--primary) !important;
}

.blur-hover-text {
  filter: blur(5px);
  opacity: 0.5;
  transition: filter 0.5s ease, opacity 0.5s ease;
  cursor: default;
}

.blur-hover-text:hover {
  filter: blur(0);
  opacity: 1;
}

/* SCROLL STACK STYLES */

.scroll-stack-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.scroll-stack-inner {
  padding: 5vh 0 20vh;
  min-height: 100vh;
}

.scroll-stack-card {
  transform-origin: top center;
  will-change: transform, filter;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  width: 100%;
  margin: 30px 0;
  position: relative;
  z-index: 1;
}

.scroll-stack-end {
  width: 100%;
  height: 1px;
}

/* ═══════════════════════════════════════════════════════════
   CONTACTO PREMIUM — CTO SHELL (REDESIGN)
═══════════════════════════════════════════════════════════ */

/* Shell container */
.cto-shell {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  background: #0f0f13; /* Deep brutalist black */
  border-radius: 40px;
  padding: 80px 64px;
  overflow: visible;
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* 3D Hand Overlay */
.cto-hand {
  position: absolute;
  top: -160px;
  left: 35%;
  transform: translateX(-50%);
  width: 320px;
  z-index: 10;
  pointer-events: none;
  mix-blend-mode: lighten;
  filter: contrast(1.2) brightness(0.9);
  /* Use a mask to feather out the hard edges of the square image background */
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 70%);
  mask-image: radial-gradient(circle at center, black 40%, transparent 70%);
}

/* Two-column grid */
.cto-grid.new-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: stretch;
}

/* ── LEFT COLUMN ────────────────── */
.cto-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cto-left-top {
  margin-bottom: 60px;
}

.cto-eyebrow {
  font-size: 15px;
  color: #ccc;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.cto-title-huge {
  font-size: clamp(45px, 6vw, 95px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: #fff;
  margin: 0;
  word-break: keep-all;
}

.cto-word--serif {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  color: #6e4fe7;
}

/* 2-col actions grid */
.cto-actions-grid.new-style {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
}

.cto-action-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.cto-action-q {
  font-size: 13px;
  color: #fff;
  margin: 0;
}

.cto-action-desc {
  font-size: 12px;
  color: #888;
  line-height: 1.4;
  margin: 0 0 8px;
}

/* Pill buttons */
.cto-pill-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  transition: all 0.2s ease;
  cursor: pointer;
}

.cto-pill-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* ── RIGHT COLUMN ────────────────── */
.cto-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Top Value Props Columns */
.cto-vp-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cto-vp-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cto-vp-col__title {
  font-size: 11px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cto-vp-col__desc {
  font-size: 12px;
  color: #fff;
  line-height: 1.4;
  margin: 0;
}

/* Form Styles */
.cto-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  color: #fff;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: #18181c;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 14px 16px;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  transition: all 0.2s;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(255,255,255,0.3);
  background: #1c1c20;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 24px;
}

.form-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #6e4fe7;
  cursor: pointer;
}

.form-checkbox label {
  font-size: 12px;
  color: #888;
  cursor: pointer;
}

.cto-submit-btn {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 12px 32px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
  align-self: flex-start;
}

.cto-submit-btn:hover {
  background: #fff;
  color: #000;
}

/* ── RESPONSIVE ───────────────────── */
@media (max-width: 992px) {
  .cto-grid.new-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .cto-hand {
    top: -100px;
    width: 220px;
  }
}

@media (max-width: 768px) {
  #contacto {
    padding-left: 16px !important;
    padding-right: 16px !important;
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .cto-shell {
    padding: 44px 18px 36px;
    border-radius: 24px;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .cto-hand {
    top: -55px;
    left: 50%;
    width: 130px;
  }

  .cto-left-top {
    margin-bottom: 30px;
  }

  .cto-title-huge {
    font-size: clamp(34px, 8.5vw, 50px);
    line-height: 1.05;
    word-break: break-word;
  }

  .cto-actions-grid.new-style {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 24px;
  }

  .cto-vp-cols {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cto-vp-col {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 12px 14px;
  }

  .cto-form {
    width: 100%;
    box-sizing: border-box;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    font-size: 15px;
  }

  .cto-submit-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 14px 24px;
    font-size: 15px;
    background: linear-gradient(135deg, #6e4fe7, #8b5cf6);
    border: none;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(110, 79, 231, 0.35);
  }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE MOBILE — Full Page
   ═══════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── Hero ── */
  .hero {
    min-height: 100svh;
    padding-top: clamp(5.5rem, 14vh, 7.5rem) !important;
  }
  .hero__content {
    padding: var(--space-sm) 1.25rem;
    margin-top: 0;
    gap: 1rem;
  }
  .hero__logo {
    width: clamp(180px, 65vw, 300px);
    transform: none;
    margin: 0;
  }
  .hero__title {
    font-size: clamp(2rem, 9vw, 3.5rem);
    margin-top: 0;
    margin-bottom: 0;
  }
  .hero__subtitle {
    font-size: 0.95rem;
  }
  .hero__ctas {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .hero__stats {
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero__stat-divider {
    display: none;
  }
  .hero__stat-number {
    font-size: 1.6rem;
  }

  /* ── Section headers ── */
  .section-title {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }
  .section-subtitle {
    font-size: 0.9rem;
  }

  /* ── Steps / Cards ── */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .steps-grid::after {
    display: none;
  }
  .about-card {
    padding: 1.25rem;
  }

  /* ── Fan Deck (Equipo) ── */
  .fan-deck {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
  .fan-deck-wrapper {
    flex-direction: column !important;
    gap: 2rem;
  }
  .founders-row {
    flex-direction: column !important;
    align-items: center;
    gap: 1rem;
  }
  .founder-card {
    width: 100% !important;
    max-width: 340px;
  }

  /* ── Join Benefits ── */
  .join-benefits {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  /* ── Join Banner Image ── */
  .join-banner-img {
    margin: 0 auto 2rem;
  }
  .join-banner-img img {
    border-radius: 1rem;
  }

  /* ── Section title join matches standard section-title ── */

  /* ── Pruebas Reales — Reset 180% scale for mobile ── */
  #pruebas .container {
    padding: 0 1rem !important;
  }
  #pruebas .testimonial-carousel-wrapper {
    max-width: 100% !important;
  }
  #pruebas .comparison-slider-container {
    max-width: 100% !important;
  }
  #pruebas .testimonial-text {
    font-size: 1.05rem !important;
    margin-bottom: 1rem;
  }
  #pruebas .testimonial-btn {
    font-size: 0.95rem !important;
    padding: 12px 24px !important;
    border-radius: 30px !important;
  }
  #pruebas .carousel-control {
    width: 44px !important;
    height: 44px !important;
  }
  #pruebas .carousel-control svg {
    width: 22px !important;
    height: 22px !important;
  }
  #pruebas .carousel-dot {
    width: 12px !important;
    height: 12px !important;
  }
  #pruebas .comparison-label {
    font-size: 0.75rem !important;
    padding: 5px 12px !important;
  }
  #pruebas .comparison-handle-button {
    width: 40px !important;
    height: 40px !important;
  }
  #pruebas .comparison-handle-button svg {
    width: 20px !important;
    height: 20px !important;
  }
  #pruebas .carousel-slide.active {
    flex-direction: column !important;
    gap: 1.5rem !important;
  }
  #pruebas .carousel-control.next {
    left: auto !important;
    right: -10px !important;
  }
  #pruebas .carousel-control.prev {
    left: -10px !important;
  }
  #pruebas .testimonial-content {
    text-align: center;
    padding: 0 0.5rem;
  }

  /* ── FAQ ── */
  .faq-question {
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
  }
  .faq-answer-inner {
    padding: 0 1.25rem 1rem;
  }

  /* ── Footer ── */
  .footer__inner {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  /* ── WhatsApp float ── */
  .wa-float {
    width: 50px;
    height: 50px;
    bottom: 1.5rem;
    right: 1.5rem;
  }
  .wa-float svg {
    width: 26px;
    height: 26px;
  }

  /* ── Disable magnetic effects on touch ── */
  .btn-magnetic {
    transform: none !important;
  }
}

@media (max-width: 480px) {
  .navbar__logo {
    height: 46px;
    max-width: 140px;
  }
  .hero__title {
    font-size: clamp(1.8rem, 8vw, 3rem);
  }
  .section-title {
    font-size: clamp(1.4rem, 7vw, 2rem);
  }
  #pruebas .container {
    padding: 0 0.75rem !important;
  }
  #pruebas .testimonial-text {
    font-size: 0.95rem !important;
  }
}

.cta-arrow {
  display: block;
}
@media (max-width: 768px) {
  .cta-arrow {
    display: none !important;
  }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(11, 11, 15, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner__content {
  text-align: center;
  margin-bottom: 1rem;
}

.cookie-banner__content p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cookie-banner__actions {
  display: flex;
  gap: 1rem;
}

@media (min-width: 768px) {
  .cookie-banner {
    flex-direction: row;
    padding: 1.5rem 3rem;
  }
  .cookie-banner__content {
    margin-bottom: 0;
    text-align: left;
    max-width: 70%;
  }
}

/* How CTA Container - Centered on Desktop */
.how-cta-container {
  text-align: center;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* Mobile CTA Arrows - Hidden on Desktop */
.mobile-cta-arrow {
  display: none !important;
}

/* How CTA Sublink (Sigue bajando) - Solo en móvil */
.how-cta-sublink-wrap {
  display: none !important;
}

.footer__bottom-mobile {
  display: none !important;
}

@media (max-width: 768px) {
  /* Symmetrical Smooth Hide on Scroll Down & Reveal on Scroll Up */
  .navbar--hidden,
  .navbar.scrolled.navbar--hidden {
    transform: translateY(-115%) !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  /* Compact Navbar on Mobile: Square at Top */
  .navbar {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 56px !important;
    border-radius: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    backdrop-filter: blur(0px) !important;
    -webkit-backdrop-filter: blur(0px) !important;
    border: none !important;
    box-shadow: none !important;
    transition: transform 0.44s cubic-bezier(0.32, 0.72, 0, 1),
                opacity 0.44s cubic-bezier(0.32, 0.72, 0, 1),
                top 0.3s ease,
                background 0.3s ease,
                box-shadow 0.3s ease !important;
  }

  /* Morph into Floating Pill / Bubble on Scroll */
  .navbar.scrolled {
    top: 8px !important;
    left: 10px !important;
    right: 10px !important;
    width: calc(100% - 20px) !important;
    max-width: 500px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    height: 54px !important;
    border-radius: 999px !important;
    padding: 0 4px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
  }

  .navbar__inner {
    padding: 0 12px !important;
    height: 100% !important;
    position: relative !important;
  }

  .navbar__inner > a {
    flex: 0 0 auto !important;
  }

  .navbar__logo {
    height: 38px !important;
    max-height: 38px !important;
    width: auto !important;
    max-width: 140px !important;
  }

  .navbar__actions {
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center !important;
  }

  /* Centrado Perfecto del Botón "Ver Planes de Crecimiento" en Móvil */
  .how-cta-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 2.5rem auto 0 !important;
    padding: 0 1rem !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }

  #how-cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    padding: 0.95rem 1.4rem !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    text-align: center !important;
    box-sizing: border-box !important;
    box-shadow: 0 4px 20px rgba(110, 79, 231, 0.35) !important;
  }

  #how-cta span {
    white-space: normal !important;
    text-align: center !important;
  }

  .how-cta-sublink-wrap {
    display: block !important;
    margin-top: 14px !important;
    width: 100% !important;
    text-align: center !important;
  }

  .how-cta-sublink {
    color: #94a3b8 !important;
    transition: all 0.25s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .how-cta-sublink:hover {
    color: #c4b5fd !important;
    transform: translateY(1px) !important;
  }

  .how-cta-sublink svg {
    animation: bounce-subtle 2s infinite ease-in-out;
  }

  /* Ocultar flechas caóticas de fondo y flechas desktop en móvil */
  .chaotic-arrow,
  .cta-arrow {
    display: none !important;
  }

  /* Flechas llamativas para el botón de Planes en Móvil */
  .planes-cta-wrapper {
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    margin: 2.2rem auto 1.5rem !important;
    padding: 38px 24px 44px !important;
    width: auto !important;
    max-width: 100% !important;
  }

  .mobile-cta-arrow {
    display: block !important;
    position: absolute !important;
    pointer-events: none !important;
    z-index: 3 !important;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.12)) !important;
  }

  /* Flecha 1: Superior Izquierda apuntando al botón */
  .mobile-cta-arrow--tl {
    top: -12px !important;
    left: 4px !important;
    width: 55px !important;
    height: auto !important;
    transform: rotate(45deg) !important;
    animation: arrow-float-tl 2.4s infinite ease-in-out !important;
  }

  /* Flecha 2: Superior Derecha apuntando al botón */
  .mobile-cta-arrow--tr {
    top: -14px !important;
    right: 6px !important;
    width: 54px !important;
    height: auto !important;
    transform: scaleX(-1) rotate(40deg) !important;
    animation: arrow-float-tr 2.6s infinite ease-in-out !important;
  }

  /* Flecha 3: Inferior Derecha apuntando al botón */
  .mobile-cta-arrow--br {
    bottom: -10px !important;
    right: 4px !important;
    width: 58px !important;
    height: auto !important;
    transform: scaleX(-1) rotate(-45deg) !important;
    animation: arrow-float-br 2.2s infinite ease-in-out !important;
  }

  /* Flecha 4: Inferior Izquierda apuntando al botón */
  .mobile-cta-arrow--bl {
    bottom: -8px !important;
    left: 8px !important;
    width: 52px !important;
    height: auto !important;
    transform: rotate(-40deg) !important;
    animation: arrow-float-bl 2.5s infinite ease-in-out !important;
  }

  /* Botón de Planes en Móvil Ultra-Llamativo */
  #planes-cta-btn {
    position: relative !important;
    z-index: 2 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #7c3aed 0%, #6366f1 50%, #8b5cf6 100%) !important;
    font-size: 1rem !important;
    font-weight: 800 !important;
    padding: 1.05rem 1.9rem !important;
    border-radius: 999px !important;
    box-shadow: 0 0 25px rgba(124, 58, 237, 0.6), 0 4px 15px rgba(99, 102, 241, 0.4) !important;
    animation: cta-pulse-mobile 2.5s infinite ease-in-out !important;
  }

  /* Mobile Menu Link to Planes */
  .navbar__link--planes {
    background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 999px !important;
    padding: 13px 20px !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.45) !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin: 4px 0 !important;
  }

  /* Footer en Teléfono Móvil — Completo y sin recortes */
  .footer {
    padding: 3rem 1.5rem 4rem !important;
    overflow: visible !important;
    position: relative !important;
    z-index: 105 !important;
  }

  .footer__inner {
    gap: 2rem !important;
    position: relative !important;
    z-index: 110 !important;
    pointer-events: auto !important;
  }

  .footer__links {
    position: relative !important;
    z-index: 115 !important;
    pointer-events: auto !important;
  }

  .footer__link {
    position: relative !important;
    z-index: 120 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    padding: 8px 12px !important;
    min-height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1rem !important;
    color: rgba(255, 255, 255, 0.85) !important;
  }

  .footer__watermark {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    font-size: clamp(2rem, 9.5vw, 3.2rem) !important;
    margin: 2.5rem auto 1rem !important;
    display: block !important;
    opacity: 0.18 !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
    pointer-events: none !important;
    user-select: none !important;
    z-index: 0 !important;
  }

  .footer__bottom-mobile {
    display: block !important;
    text-align: center !important;
    padding-top: 1.5rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    width: 100% !important;
    position: relative !important;
    z-index: 110 !important;
  }

  .footer__bottom-mobile p {
    font-size: 0.78rem !important;
    color: rgba(255, 255, 255, 0.4) !important;
    margin: 0 !important;
  }

  /* Estabilidad de espacios en móvil: evitar recálculos de espacio y saltos de layout */
  .reveal,
  .reveal-group > * {
    transform: none !important;
    opacity: 1 !important;
    transition: opacity 0.3s ease !important;
  }

  .blur-text-word {
    filter: none !important;
    transform: none !important;
    opacity: 1 !important;
    will-change: auto !important;
    transition: none !important;
  }

  /* Desactivar gradual blur en móvil para evitar crash de GPU */
  .gradual-blur,
  #gradual-blur-container {
    display: none !important;
  }

  /* Canvases de fondo fijos en su contenedor sin layout thrashing */
  canvas[id*="canvas"],
  canvas[id*="molten"],
  canvas[id*="metallic"],
  canvas[id*="ferrofluid"] {
    contain: strict !important;
    transform: translateZ(0) !important;
  }
}

@keyframes bounce-subtle {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

@keyframes arrow-float-tl {
  0%, 100% {
    transform: rotate(45deg) translate(0, 0);
  }
  50% {
    transform: rotate(45deg) translate(4px, 4px);
  }
}

@keyframes arrow-float-tr {
  0%, 100% {
    transform: scaleX(-1) rotate(40deg) translate(0, 0);
  }
  50% {
    transform: scaleX(-1) rotate(40deg) translate(-4px, 4px);
  }
}

@keyframes arrow-float-br {
  0%, 100% {
    transform: scaleX(-1) rotate(-45deg) translate(0, 0);
  }
  50% {
    transform: scaleX(-1) rotate(-45deg) translate(-4px, -4px);
  }
}

@keyframes arrow-float-bl {
  0%, 100% {
    transform: rotate(-40deg) translate(0, 0);
  }
  50% {
    transform: rotate(-40deg) translate(4px, -4px);
  }
}

@keyframes cta-pulse-mobile {
  0%, 100% {
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.5), 0 4px 12px rgba(99, 102, 241, 0.35);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 32px rgba(124, 58, 237, 0.85), 0 6px 20px rgba(99, 102, 241, 0.6);
    transform: scale(1.02);
  }
}

/* ═══════════════════════════════════════════════════════════
   FINAL ENHANCEMENTS: FLOATING WHATSAPP & BUTTON LEGIBILITY
   ═══════════════════════════════════════════════════════════ */
.wa-float-wrapper {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  z-index: 99999 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  pointer-events: none !important;
}

.wa-float-wrapper > * {
  pointer-events: auto !important;
}

.wa-float-wrapper .wa-float {
  position: relative !important;
  inset: auto !important;
  top: auto !important;
  left: auto !important;
  bottom: auto !important;
  right: auto !important;
  margin: 0 !important;
  flex-shrink: 0 !important;
}

.btn--primary {
  color: #ffffff !important;
  font-weight: 700 !important;
}



