/* ==========================================================================
   KOGNIA STUDIO - Sistema de Diseño Renovado 2025
   ========================================================================== */

/* --- Variables y Tokens de Diseño --- */
:root {
  /* Colores Primarios */
  --electric-blue: #2478ff;
  --electric-blue-glow: rgba(36, 120, 255, 0.4);
  --neon-lime: #c7ff3d;
  --neon-lime-glow: rgba(199, 255, 61, 0.4);
  --indigo: #1b2240;

  /* Colores de Texto */
  --text-dark: #0b0e17;
  --text-medium: #3d4663;
  --text-light: #5a647e;

  /* Fondos */
  --background: #ffffff;
  --background-alt: #f8fafc;
  --background-card: rgba(255, 255, 255, 0.8);
  --border-color: #e3e8f0;
  --hero-bg-dark: #070b14;

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

  /* Tipografía */
  --font-headline: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Transiciones */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Espaciado */
  --section-padding: 120px;
  --container-width: 1200px;

  /* Bordes */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}

/* --- Reset y Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--background);
  color: var(--text-dark);
  font-family: var(--font-body);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
  overflow: hidden;
}

/* --- Contenedor Principal --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Tipografía --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headline);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  color: var(--background);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 24px;
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
}

p.section-intro {
  max-width: 700px;
  margin: 0 auto 56px auto;
  text-align: center;
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.8;
}

section {
  padding: var(--section-padding) 0;
  position: relative;
}

/* --- Efectos Reutilizables --- */

/* Glassmorphism */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

/* Glow Effect */
.glow-blue {
  box-shadow: 0 0 20px var(--electric-blue-glow),
    0 0 40px var(--electric-blue-glow);
}

.glow-lime {
  box-shadow: 0 0 20px var(--neon-lime-glow),
    0 0 40px var(--neon-lime-glow);
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, var(--electric-blue), #667eea, var(--neon-lime));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* Hover Lift */
.hover-lift {
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Animations */
@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  padding: 16px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  border-bottom-color: var(--border-color);
  padding: 12px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
}

.logo img {
  height: 40px;
  transition: transform var(--transition-normal);
}

.logo:hover img {
  transform: scale(1.05);
}

.logo .logo-text {
  font-family: var(--font-headline);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
}

.navbar-mobile-title {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-headline);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
}

.nav-menu a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  margin: 0 24px;
  padding-bottom: 8px;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--electric-blue), var(--neon-lime));
  border-radius: 4px;
  transition: transform var(--transition-normal);
}

.nav-menu a:hover {
  color: var(--electric-blue);
}

.nav-menu a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* --- Botones CTA --- */
.cta-button {
  background: linear-gradient(135deg, var(--electric-blue) 0%, #1a5fd1 100%);
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 15px var(--electric-blue-glow);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px var(--electric-blue-glow);
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button-main {
  background: var(--neon-lime);
  color: var(--text-dark);
  padding: 18px 40px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-block;
  transition: all var(--transition-bounce);
  box-shadow: 0 6px 20px var(--neon-lime-glow);
  position: relative;
  overflow: hidden;
}

.cta-button-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.cta-button-main:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 35px var(--neon-lime-glow);
}

.cta-button-main:hover::before {
  opacity: 1;
}

/* --- Hamburger Menu --- */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1001;
}

.hamburger-menu .bar {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--text-dark);
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

.hamburger-menu.active .bar:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.hamburger-menu.active .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger-menu.active .bar:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* --- Mobile Menu Overlay --- */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.98);
  transition: all var(--transition-smooth);
  z-index: 999;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}

.mobile-nav-menu a {
  color: var(--text-dark);
  text-decoration: none;
  font-family: var(--font-headline);
  font-size: 2rem;
  font-weight: 600;
  transition: all var(--transition-normal);
  opacity: 0;
  transform: translateY(20px);
}

.mobile-nav-menu a:hover {
  color: var(--electric-blue);
  transform: scale(1.05);
}

.mobile-cta-button {
  background: var(--neon-lime);
  padding: 16px 32px !important;
  border-radius: var(--radius-md);
  font-size: 1.5rem !important;
}

/* ==========================================================================
   HERO SECTION - DISEÑO IMPACTANTE
   ========================================================================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 60px;
  overflow: hidden;
}

/* Hero Background */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(135deg, #070b14 0%, #0d1321 50%, #0a0f1e 100%);
  overflow: hidden;
}

/* Canvas para partículas */
#hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Mesh Gradient - Blobs animados */
.hero-mesh-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  mix-blend-mode: screen;
  animation: meshMove 20s ease-in-out infinite;
}

.mesh-blob-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(36, 120, 255, 0.8) 0%, transparent 70%);
  top: -20%;
  left: -15%;
  animation-delay: 0s;
}

.mesh-blob-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.7) 0%, transparent 70%);
  top: 60%;
  right: -10%;
  animation-delay: -5s;
}

.mesh-blob-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(199, 255, 61, 0.4) 0%, transparent 70%);
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: -10s;
}

.mesh-blob-4 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.5) 0%, transparent 70%);
  bottom: 10%;
  left: 10%;
  animation-delay: -15s;
}

@keyframes meshMove {

  0%,
  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }

  25% {
    transform: translate(8%, 12%) scale(1.15) rotate(5deg);
  }

  50% {
    transform: translate(-6%, 8%) scale(0.9) rotate(-3deg);
  }

  75% {
    transform: translate(10%, -5%) scale(1.1) rotate(3deg);
  }
}

/* Líneas de conexión animadas */
.hero-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.6;
}

.hero-line {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: lineMove 8s ease-in-out infinite;
}

.hero-line-1 {
  animation-delay: 0s;
}

.hero-line-2 {
  animation-delay: 2s;
}

.hero-line-3 {
  animation-delay: 4s;
}

@keyframes lineMove {
  0% {
    stroke-dashoffset: 2000;
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  50% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    stroke-dashoffset: -2000;
    opacity: 0;
  }
}

/* Hero Grid mejorado */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(36, 120, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 120, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 100%);
  z-index: 1;
  animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 0.7;
  }
}

/* Formas flotantes decorativas */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.floating-circle {
  position: absolute;
  border: 2px solid rgba(36, 120, 255, 0.3);
  border-radius: 50%;
  animation: floatShape 15s ease-in-out infinite;
}

.fc-1 {
  width: 120px;
  height: 120px;
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.fc-2 {
  width: 80px;
  height: 80px;
  top: 25%;
  right: 15%;
  border-color: rgba(199, 255, 61, 0.4);
  animation-delay: -3s;
}

.fc-3 {
  width: 60px;
  height: 60px;
  bottom: 25%;
  left: 20%;
  border-color: rgba(102, 126, 234, 0.4);
  animation-delay: -6s;
}

.floating-square {
  position: absolute;
  border: 2px solid rgba(199, 255, 61, 0.3);
  animation: floatShape 12s ease-in-out infinite;
}

.fs-1 {
  width: 50px;
  height: 50px;
  top: 60%;
  right: 10%;
  transform: rotate(45deg);
  animation-delay: -4s;
}

.fs-2 {
  width: 30px;
  height: 30px;
  bottom: 20%;
  right: 25%;
  border-color: rgba(36, 120, 255, 0.4);
  transform: rotate(15deg);
  animation-delay: -8s;
}

@keyframes floatShape {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.5;
  }

  25% {
    transform: translateY(-20px) rotate(5deg);
    opacity: 0.8;
  }

  50% {
    transform: translateY(-10px) rotate(-3deg);
    opacity: 0.6;
  }

  75% {
    transform: translateY(-25px) rotate(8deg);
    opacity: 0.9;
  }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 950px;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(36, 120, 255, 0.15);
  border: 1px solid rgba(36, 120, 255, 0.3);
  color: var(--neon-lime);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(36, 120, 255, 0.2);
  }

  50% {
    box-shadow: 0 0 40px rgba(36, 120, 255, 0.4);
  }
}

.hero-content h1 {
  margin-bottom: 28px;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.hero-content h1 .line {
  display: block;
  overflow: hidden;
}

/* Línea destacada con gradiente */
.hero-content h1 .line.highlight {
  background: linear-gradient(90deg, var(--electric-blue), var(--neon-lime));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.3rem;
  max-width: 650px;
  margin: 0 auto 40px auto;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

/* Hero CTA Group */
.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 50px;
  margin-bottom: 50px;
  /* Increased drastically from 48px */
  flex-wrap: wrap;
}

/* Botón secundario */
.cta-button-secondary {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
}

.cta-button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateX(5px);
}

/* Trust Badges */
/* Hero Tagline Badge - Diferenciador */
.hero-tagline-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  /* Increased from 32px */
  margin-bottom: 32px;
}

.hero-tagline-badge span {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
  letter-spacing: 0.3px;
  position: relative;
}

.hero-tagline-badge span::before,
.hero-tagline-badge span::after {
  content: "—";
  margin: 0 12px;
  color: rgba(199, 255, 61, 0.5);
}

/* Trust Badges */
.hero-trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 24px 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  margin-top: 60px;
  /* Increased from 32px */
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.trust-number {
  font-family: var(--font-headline);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--neon-lime);
  line-height: 1;
}

.trust-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 10;
  animation: bounceScroll 2s ease-in-out infinite;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--neon-lime);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes bounceScroll {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@keyframes scrollWheel {

  0%,
  100% {
    opacity: 1;
    top: 8px;
  }

  50% {
    opacity: 0.3;
    top: 18px;
  }
}

/* ==========================================================================
   BENEFICIOS - BENTO GRID
   ========================================================================== */
#beneficios {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--background) 0%, var(--background-alt) 100%);
  position: relative;
  overflow: hidden;
}

/* Elemento decorativo de fondo */
#beneficios::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--electric-blue-glow) 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
}

.bento-item {
  background: var(--background);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.bento-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--electric-blue), var(--neon-lime));
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.bento-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.bento-item:hover::before {
  opacity: 1;
}

/* Tamaños especiales para Bento */
.bento-item.large {
  grid-column: span 2;
}

.bento-item.tall {
  grid-row: span 2;
}

.bento-item .benefit-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--electric-blue-glow) 0%, transparent 100%);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  color: var(--electric-blue);
  transition: all var(--transition-normal);
}

.bento-item:hover .benefit-icon {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, var(--electric-blue) 0%, var(--indigo) 100%);
  color: white;
}

.bento-item .benefit-icon svg {
  width: 28px;
  height: 28px;
}

.bento-item h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.bento-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* Legacy support - keep old classes working */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.benefit-item {
  background: var(--background);
  padding: 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-smooth);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.benefit-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--electric-blue), var(--neon-lime));
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.benefit-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.benefit-item:hover::before {
  transform: scaleX(1);
}

.benefit-item .benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--electric-blue-glow), transparent);
  border-radius: var(--radius-md);
  color: var(--electric-blue);
  transition: all var(--transition-normal);
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.15) rotate(-5deg);
  background: linear-gradient(135deg, var(--electric-blue), var(--indigo));
  color: white;
}

.benefit-item .benefit-icon .icon-accent {
  stroke: var(--neon-lime);
}

.benefit-item h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.benefit-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
}

/* ==========================================================================
   QUIÉNES SOMOS
   ========================================================================== */
#quienes-somos {
  padding: 100px 0;
  background-color: var(--background);
  overflow: hidden;
  position: relative;
}

.about-container {
  max-width: 1400px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.eyebrow-text {
  color: var(--electric-blue);
  font-weight: 700;
  font-family: var(--font-headline);
  margin-bottom: 16px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  background: linear-gradient(90deg, var(--electric-blue), var(--neon-lime));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text h2 {
  text-align: left;
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-text p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.9;
}

.about-image {
  position: relative;
}

.about-image::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--electric-blue);
  border-radius: var(--radius-lg);
  opacity: 0.3;
  z-index: 0;
}

.about-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   SOLUCIONES
   ========================================================================== */
#soluciones {
  background: linear-gradient(180deg, var(--background-alt) 0%, var(--background) 100%);
  padding: 120px 20px;
  overflow: hidden;
  position: relative;
}

#soluciones .container {
  position: relative;
  z-index: 2;
}

/* Background decorativo */
.flow-background-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.5;
}

.flow-background-svg svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Feature Grid */
.feature-grid {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 40px;
  border-radius: var(--radius-xl);
  background: var(--background);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-color);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 0;
  background: linear-gradient(180deg, var(--electric-blue), var(--neon-lime));
  transition: height var(--transition-smooth);
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.feature-item:hover::before {
  height: 100%;
}

.feature-item.right-content .feature-text-content {
  order: 2;
}

.feature-item.right-content .feature-image-content {
  order: 1;
}

.feature-text-content {
  flex: 1;
  min-width: 0;
}

.feature-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--neon-lime) 0%, #a8e530 100%);
  color: var(--text-dark);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-text-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 20px;
}

.feature-text-content h3 span {
  color: var(--electric-blue);
  margin-right: 12px;
}

.feature-text-content>p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-medium);
  margin-bottom: 20px;
}

.feature-bullet-points {
  margin-top: 24px;
  border-left: 4px solid var(--neon-lime);
  padding-left: 24px;
  border-radius: 2px;
}

.feature-bullet-points p {
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}

.feature-bullet-points p:last-child {
  margin-bottom: 0;
}

.feature-image-content {
  flex: 0 0 420px;
  max-width: 45%;
}

.feature-image-content img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  transition: transform var(--transition-smooth);
}

.feature-item:hover .feature-image-content img {
  transform: scale(1.03);
}

/* ==========================================================================
   PROCESO - ROADMAP
   ========================================================================== */
#proceso {
  padding: 120px 0;
  background: var(--background);
  position: relative;
  overflow: hidden;
}

#proceso h2 {
  margin-bottom: 60px;
}

.roadmap {
  position: relative;
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.roadmap-svg-container {
  position: absolute;
  top: 62px;
  left: 0;
  width: 100%;
  height: 6px;
  z-index: 0;
}

.roadmap-line-svg path {
  stroke-width: 6;
  fill: none;
  stroke-linecap: round;
}

.roadmap-line-bg {
  stroke: var(--border-color);
}

.roadmap-line-animated {
  stroke: url(#roadmap-gradient);
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

.roadmap-step {
  flex: 1;
  text-align: center;
  opacity: 0.5;
  transition: all var(--transition-smooth);
  position: relative;
  z-index: 1;
}

.roadmap-step.active {
  opacity: 1;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: var(--background);
  border: 3px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: var(--font-headline);
  color: var(--text-light);
  margin: 0 auto 24px auto;
  transition: all var(--transition-bounce);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: relative;
}

.step-icon::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dashed var(--border-color);
  opacity: 0;
  transition: all var(--transition-normal);
}

.roadmap-step.active .step-icon {
  border-color: var(--electric-blue);
  color: var(--text-dark);
  background: var(--neon-lime);
  transform: scale(1.1);
  box-shadow: 0 8px 30px var(--neon-lime-glow);
}

.roadmap-step.active .step-icon::before {
  opacity: 1;
  border-color: var(--electric-blue);
  animation: rotateBorder 10s linear infinite;
}

@keyframes rotateBorder {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.step-content h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.step-content p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 200px;
  margin: 0 auto;
}

.roadmap-mobile-line {
  display: none;
  position: absolute;
  top: 40px;
  bottom: 140px;
  left: 50%;
  width: 4px;
  background: var(--border-color);
  transform: translateX(-50%);
  z-index: 0;
  border-radius: 4px;
  overflow: hidden;
}

.roadmap-mobile-line-progress {
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, var(--electric-blue), var(--neon-lime));
  transition: height 0.1s linear;
}

/* ==========================================================================
   TESTIMONIOS
   ========================================================================== */
#testimonios {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--hero-bg-dark) 100%);
  color: var(--background);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

#testimonios::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 20%, var(--electric-blue-glow) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(102, 126, 234, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

#testimonios h2 {
  color: var(--background);
  position: relative;
  z-index: 1;
}

.testimonial-slider {
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 48px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  position: relative;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 6rem;
  font-family: Georgia, serif;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
}

.testimonial-card p {
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.9;
  position: relative;
  z-index: 1;
}

.testimonial-card h4 {
  text-align: right;
  margin-top: 32px;
  color: var(--neon-lime);
  font-size: 1rem;
  font-weight: 600;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
  width: 10px;
  height: 10px;
  transition: all var(--transition-normal);
}

.swiper-pagination-bullet-active {
  background: var(--neon-lime);
  width: 30px;
  border-radius: 5px;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
#faq {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--background) 0%, var(--background-alt) 100%);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding: 0;
  margin-bottom: 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--border-color);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 28px 0;
  font-size: 1.15rem;
  font-family: var(--font-headline);
  font-weight: 600;
  color: var(--text-dark);
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--electric-blue);
}

.faq-question span:first-child {
  flex-grow: 1;
  padding-right: 20px;
}

.faq-toggle {
  width: 36px;
  height: 36px;
  background: var(--background-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--electric-blue);
  transition: all var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: var(--electric-blue);
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth);
}

.faq-answer p {
  padding: 0 0 28px 0;
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
#cta {
  background: linear-gradient(135deg, var(--electric-blue) 0%, var(--indigo) 100%);
  text-align: center;
  padding: 120px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: ctaPulse 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ctaPulse {

  0%,
  100% {
    transform: scale(0.8);
    opacity: 0;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

#cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  position: relative;
  z-index: 1;
}

#cta p {
  max-width: 650px;
  margin: 24px auto 40px auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

#cta .cta-button-main {
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background-color: var(--hero-bg-dark);
  padding: 60px 0 40px 0;
  color: var(--background);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-quote {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  background: linear-gradient(90deg, var(--neon-lime), var(--electric-blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-links a {
  color: var(--background);
  text-decoration: none;
  margin-left: 32px;
  opacity: 0.7;
  transition: all var(--transition-normal);
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-lime);
  transition: width var(--transition-normal);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--neon-lime);
}

.footer-links a:hover::after {
  width: 100%;
}

.copyright {
  text-align: center;
  opacity: 0.5;
  font-size: 0.9rem;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   ANIMATIONS & REVEAL
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.fade-in-up {
  /* Animation handled by GSAP - ensure visible if GSAP fails */
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 992px) {
  :root {
    --section-padding: 80px;
  }

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  section {
    padding: 80px 0;
  }

  .nav-menu,
  .header-actions .cta-button {
    display: none;
  }

  .hamburger-menu {
    display: flex;
  }

  .logo .logo-text {
    display: none;
  }

  .navbar-mobile-title {
    display: block;
  }

  /* About */
  .about-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .about-image {
    order: -1;
  }

  .about-image::before {
    display: none;
  }

  .about-image img {
    width: 100%;
    height: 400px;
  }

  .about-text h2 {
    text-align: center;
  }

  /* Benefits */
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-item.large,
  .bento-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  /* Feature Items */
  .feature-grid {
    gap: 40px;
  }

  .feature-item {
    flex-direction: column;
    padding: 32px;
    gap: 32px;
  }

  .feature-item.right-content .feature-text-content,
  .feature-item.right-content .feature-image-content {
    order: unset;
  }

  .feature-image-content {
    flex: none;
    max-width: 100%;
  }

  .feature-text-content h3 {
    font-size: 1.7rem;
  }

  /* Roadmap */
  .roadmap {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .roadmap-svg-container {
    display: none;
  }

  .roadmap-mobile-line {
    display: block;
  }

  .roadmap-step {
    opacity: 0.6;
  }

  .step-content p {
    max-width: 300px;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    margin-top: 16px;
  }

  .footer-links a {
    margin: 0 16px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  p.section-intro {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  #hero {
    min-height: auto;
    padding: 140px 24px 80px;
  }

  .hero-content {
    padding: 0 8px;
  }

  .hero-trust-badges {
    padding: 20px 24px;
    gap: 20px;
    flex-wrap: wrap;
  }

  .trust-number {
    font-size: 1.5rem;
  }

  .trust-label {
    font-size: 0.75rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .cta-button-main {
    padding: 16px 32px;
    font-size: 1rem;
  }

  .about-image img {
    height: 300px;
  }

  .feature-item {
    padding: 24px;
  }

  .feature-text-content h3 {
    font-size: 1.5rem;
  }

  .testimonial-card {
    padding: 32px 24px;
  }

  .testimonial-card p {
    font-size: 1.05rem;
  }

  .faq-question {
    font-size: 1.05rem;
    padding: 24px 0;
  }

  #cta h2 {
    font-size: 1.8rem;
  }

  .step-icon {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  #hero {
    padding: 130px 20px 60px;
  }

  .hero-content p {
    font-size: 1rem;
    padding: 0 4px;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 16px;
  }

  .hero-trust-badges {
    padding: 16px 20px;
    gap: 16px;
  }

  .trust-divider {
    display: none;
  }

  .hero-tagline-badge {
    margin-top: 24px;
    margin-bottom: 4px;
  }

  .hero-tagline-badge span {
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.5;
    display: block;
  }

  .hero-tagline-badge span::before,
  .hero-tagline-badge span::after {
    display: none;
  }

  h1 {
    font-size: 1.9rem;
  }

  .bento-item,
  .benefit-item {
    padding: 24px;
  }

  .feature-tag {
    font-size: 0.75rem;
    padding: 6px 14px;
  }

  .mobile-nav-menu a {
    font-size: 1.5rem;
  }
}

/* ==========================================================================
   PÁGINAS LEGALES
   ========================================================================== */
.legal-content-page {
  padding-top: 140px;
  padding-bottom: 100px;
  background-color: var(--background);
  min-height: 100vh;
}

.legal-content-page .container {
  max-width: 800px;
}

.legal-content-page h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text-dark), var(--electric-blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.legal-content-page .last-updated {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 60px;
  font-style: italic;
  font-size: 0.95rem;
}

.legal-content-page h2 {
  font-size: 1.6rem;
  text-align: left;
  margin-top: 48px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-color);
  position: relative;
}

.legal-content-page h2::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--electric-blue), var(--neon-lime));
}

.legal-content-page p,
.legal-content-page li {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 20px;
}

.legal-content-page a {
  color: var(--electric-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
  border-bottom: 1px solid transparent;
}

.legal-content-page a:hover {
  color: var(--indigo);
  border-bottom-color: var(--electric-blue);
}

.legal-content-page ul,
.legal-content-page ol {
  padding-left: 32px;
  margin-bottom: 24px;
}

.legal-content-page li {
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .legal-content-page {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .legal-content-page h2 {
    font-size: 1.4rem;
    margin-top: 36px;
  }
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.text-center {
  text-align: center;
}

.position-relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.section-padding {
  padding: var(--section-padding) 0;
}

/* ==========================================================================
   CONTACT PAGE - FORMULARIO DE CONTACTO (Light Mode Default)
   ========================================================================== */
.contact-page {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
}

/* Contact Background - Light Mode */
.contact-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
  overflow: hidden;
}

.contact-mesh-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Light mode mesh blobs */
.contact-page .mesh-blob-1 {
  background: radial-gradient(circle, rgba(36, 120, 255, 0.12) 0%, transparent 70%);
}

.contact-page .mesh-blob-2 {
  background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
}

.contact-page .mesh-blob-3 {
  background: radial-gradient(circle, rgba(199, 255, 61, 0.08) 0%, transparent 70%);
}

.contact-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(36, 120, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 120, 255, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  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%);
}

/* Contact Container */
.contact-container {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

/* Contact Header */
.contact-header {
  display: flex;
  justify-content: center;
  padding: 16px 0;
  margin-bottom: 24px;
}

.contact-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform var(--transition-normal);
}

.contact-logo:hover {
  transform: scale(1.02);
}

.contact-logo img {
  height: 48px;
}

.contact-logo span {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

/* Contact Main */
.contact-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

/* Form Card - Light Mode */
.form-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-xl);
  padding: 56px;
  width: 100%;
  max-width: 700px;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.02),
    0 12px 24px rgba(0, 0, 0, 0.04),
    0 24px 48px rgba(36, 120, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--electric-blue), var(--neon-lime));
}

/* Progress Bar */
.form-progress {
  margin-bottom: 48px;
}

.progress-bar {
  height: 6px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 28px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--electric-blue), var(--neon-lime));
  width: 0%;
  transition: width var(--transition-smooth);
  border-radius: 3px;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.4;
  transition: all var(--transition-normal);
}

.progress-step.active {
  opacity: 1;
}

.step-number {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  font-family: var(--font-headline);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
  transition: all var(--transition-normal);
}

.progress-step.active .step-number {
  background: linear-gradient(135deg, var(--electric-blue), #1a5fd1);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 12px var(--electric-blue-glow);
}

.step-label {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.progress-step.active .step-label {
  color: var(--text-dark);
}

/* Form Steps */
.form-step {
  display: none;
  animation: fadeInUp 0.5s ease;
}

.form-step.active {
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Step Content */
.step-content {
  text-align: center;
  margin-bottom: 36px;
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  background: linear-gradient(135deg, rgba(36, 120, 255, 0.1), rgba(102, 126, 234, 0.05));
  border: 1px solid rgba(36, 120, 255, 0.2);
  border-radius: 50%;
  margin-bottom: 28px;
  color: var(--electric-blue);
}

.step-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.step-content h2 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--electric-blue);
  margin-bottom: 20px;
  text-align: center;
}

.step-content p {
  color: var(--text-medium);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.step-description {
  color: var(--text-light) !important;
  font-size: 0.95rem !important;
}

/* Form Grid */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: left;
}

.form-group {
  position: relative;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.required {
  color: var(--electric-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--electric-blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(36, 120, 255, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #ef4444;
  background: #fef2f2;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
  padding-right: 48px;
  background-color: #f8fafc;
}

.form-group select option {
  background: #fff;
  color: var(--text-dark);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

/* Checkbox Group */
.checkbox-group {
  margin-top: 20px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-medium);
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 2px solid #cbd5e1;
  border-radius: 6px;
  background: #f8fafc;
  position: relative;
  transition: all var(--transition-fast);
}

.checkbox-label input[type="checkbox"]:checked+.checkmark {
  background: linear-gradient(135deg, var(--electric-blue), var(--neon-lime));
  border-color: transparent;
}

.checkmark::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 8px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.checkbox-label input[type="checkbox"]:checked+.checkmark::after {
  opacity: 1;
}

.checkbox-text a {
  color: var(--electric-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.checkbox-text a:hover {
  color: var(--indigo);
  text-decoration: underline;
}

.checkbox-group.error .checkmark {
  border-color: #ef4444;
}

/* Step Actions */
.step-actions {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
}

.btn-next,
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--electric-blue) 0%, #1a5fd1 100%);
  color: #fff;
  padding: 16px 32px;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-bounce);
  margin-left: auto;
  box-shadow: 0 4px 14px var(--electric-blue-glow);
}

.btn-next:hover,
.btn-submit:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px var(--electric-blue-glow);
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-medium);
  padding: 16px 24px;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.btn-back:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: var(--text-dark);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Form Success */
.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.form-success.active {
  display: block;
  animation: fadeInUp 0.6s ease;
}

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(36, 120, 255, 0.1), rgba(199, 255, 61, 0.1));
  border: 2px solid var(--electric-blue);
  border-radius: 50%;
  margin-bottom: 32px;
  color: var(--electric-blue);
}

.success-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text-dark);
  margin-bottom: 16px;
}

.success-content p {
  color: var(--text-medium);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.success-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(36, 120, 255, 0.03), rgba(199, 255, 61, 0.03));
  border: 1px solid rgba(36, 120, 255, 0.1);
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
}

.success-logo {
  height: 60px;
}

.success-slogan {
  font-family: var(--font-headline);
  font-size: 1.2rem;
  color: var(--electric-blue);
  text-align: center;
  line-height: 1.5;
}

.btn-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-medium);
  padding: 14px 28px;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transition-normal);
}

.btn-home:hover {
  background: #f1f5f9;
  border-color: var(--electric-blue);
  color: var(--electric-blue);
}

/* Contact Footer */
.contact-footer {
  text-align: center;
  padding: 24px;
  color: var(--text-light);
  font-size: 0.85rem;
}

/* Contact Page Responsive */
@media (max-width: 768px) {
  .contact-container {
    padding: 16px;
  }

  .form-card {
    padding: 32px 24px;
    border-radius: var(--radius-lg);
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .progress-steps {
    gap: 8px;
  }

  .step-label {
    display: none;
  }

  .step-actions {
    flex-direction: column-reverse;
  }

  .btn-next,
  .btn-submit {
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }

  .btn-back {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   LINKTREE PAGE - PÁGINA DE ENLACES (Light Mode Default)
   ========================================================================== */
.linktree-page {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
}

/* Linktree Background - Light Mode */
.linktree-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
  overflow: hidden;
}

/* Animated gradient orbs - Light Mode */
.linktree-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: orbFloat 15s ease-in-out infinite;
}

.linktree-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(36, 120, 255, 0.15) 0%, transparent 70%);
  top: -15%;
  left: -15%;
  animation-delay: 0s;
}

.linktree-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(199, 255, 61, 0.12) 0%, transparent 70%);
  bottom: 5%;
  right: -10%;
  animation-delay: -5s;
}

.linktree-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -10s;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }

  25% {
    transform: translate(40px, -40px) scale(1.2);
    opacity: 0.8;
  }

  50% {
    transform: translate(-30px, 30px) scale(0.9);
    opacity: 0.6;
  }

  75% {
    transform: translate(30px, 40px) scale(1.1);
    opacity: 0.8;
  }
}

/* Tech Lines - Light Mode */
.linktree-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.4;
  /* Increased opacity */
  z-index: 0;
}

.tech-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--electric-blue), transparent);
  height: 1px;
  animation: lineSweep 8s linear infinite;
}

.tech-line:nth-child(1) {
  top: 20%;
  width: 60%;
  animation-delay: 0s;
}

.tech-line:nth-child(2) {
  top: 50%;
  width: 80%;
  animation-delay: -3s;
}

.tech-line:nth-child(3) {
  top: 75%;
  width: 50%;
  animation-delay: -6s;
}

@keyframes lineSweep {
  0% {
    left: -100%;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

/* Corner Accents - Light Mode */
.corner-accent {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(36, 120, 255, 0.2);
}

.corner-accent.top-left {
  top: 20px;
  left: 20px;
  border-right: none;
  border-bottom: none;
  border-top-left-radius: 16px;
}

.corner-accent.top-right {
  top: 20px;
  right: 20px;
  border-left: none;
  border-bottom: none;
  border-top-right-radius: 16px;
}

.corner-accent.bottom-left {
  bottom: 20px;
  left: 20px;
  border-right: none;
  border-top: none;
  border-bottom-left-radius: 16px;
}

.corner-accent.bottom-right {
  bottom: 20px;
  right: 20px;
  border-left: none;
  border-top: none;
  border-bottom-right-radius: 16px;
}

/* Nodes - Light Mode */
.linktree-node {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--electric-blue);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--electric-blue-glow);
}

.linktree-node::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border: 1px solid rgba(36, 120, 255, 0.3);
  border-radius: 50%;
  animation: nodePulse 2s ease-out infinite;
}

@keyframes nodePulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

.linktree-node.node-1 {
  top: 15%;
  right: 15%;
}

.linktree-node.node-2 {
  bottom: 20%;
  left: 10%;
  background: var(--neon-lime);
  box-shadow: 0 0 20px var(--neon-lime-glow);
}

.linktree-node.node-2::before {
  border-color: rgba(199, 255, 61, 0.3);
}

/* Linktree Container */
.linktree-container {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

/* Linktree Card */
.linktree-card {
  width: 100%;
  max-width: 440px;
  text-align: center;
}

/* Profile Section */
.linktree-profile {
  margin-bottom: 36px;
}

.profile-image {
  width: 110px;
  height: 110px;
  margin: 0 auto 24px;
  position: relative;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.profile-image::before {
  content: "";
  position: absolute;
  inset: -5px;
  background: linear-gradient(135deg, var(--electric-blue), var(--neon-lime));
  border-radius: 50%;
  z-index: -1;
  animation: profileGlow 3s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes profileGlow {

  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

.profile-name {
  font-family: var(--font-headline);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.profile-tagline {
  font-size: 1rem;
  color: var(--electric-blue);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 14px;
}

.profile-description {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.6;
}

/* Links Section */
.linktree-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* Increased gap */
  margin-bottom: 48px;
}

.link-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.7);
  /* More transparent base */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  /* Lighter border */
  border-radius: var(--radius-lg);
  /* Larger radius */
  text-decoration: none;
  color: var(--text-dark);
  transition: all var(--transition-bounce);
  /* Bouncier transition */
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  animation: slideUpFade 0.6s ease-out backwards;
}

.link-item:nth-child(1) {
  animation-delay: 0.1s;
}

.link-item:nth-child(2) {
  animation-delay: 0.2s;
}

.link-item:nth-child(3) {
  animation-delay: 0.3s;
}

.link-item:nth-child(4) {
  animation-delay: 0.4s;
}

.link-item:nth-child(5) {
  animation-delay: 0.5s;
}

.link-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.link-item:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--electric-blue);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(36, 120, 255, 0.2);
}

.link-item:hover::before {
  left: 100%;
}

.link-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(36, 120, 255, 0.1), rgba(102, 126, 234, 0.05));
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  transition: all var(--transition-normal);
}

.link-item:hover .link-icon {
  background: linear-gradient(135deg, var(--electric-blue), var(--neon-lime));
  transform: scale(1.08) rotate(-3deg);
}

.link-icon svg {
  width: 22px;
  height: 22px;
  color: var(--electric-blue);
  transition: color var(--transition-fast);
}

.link-item:hover .link-icon svg {
  color: #fff;
}

.link-text {
  flex: 1;
  text-align: left;
}

.link-title {
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 3px;
  color: var(--text-dark);
}

.link-subtitle {
  font-size: 0.8rem;
  color: var(--text-light);
}

.link-arrow {
  color: #cbd5e1;
  transition: all var(--transition-fast);
}

.link-item:hover .link-arrow {
  color: var(--electric-blue);
  transform: translateX(4px);
}

/* WhatsApp special style */
.link-item.whatsapp .link-icon {
  background: rgba(37, 211, 102, 0.1);
}

.link-item.whatsapp .link-icon svg {
  color: #25d366;
}

.link-item.whatsapp:hover {
  border-color: #25d366;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.15);
}

.link-item.whatsapp:hover .link-icon {
  background: #25d366;
}

.link-item.whatsapp:hover .link-icon svg {
  color: #fff;
}

/* Linktree Footer */
.linktree-footer {
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  margin-bottom: 16px;
  opacity: 0.9;
  transition: opacity var(--transition-fast);
}

.footer-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

.footer-logo img {
  height: 28px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.footer-logo span {
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  /* Ensure high contrast */
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
}

.linktree-footer p {
  font-size: 0.85rem;
  color: var(--text-medium);
  font-weight: 500;
}

/* Linktree Responsive */
@media (max-width: 480px) {
  .linktree-container {
    padding: 24px 16px;
  }

  .profile-image {
    width: 90px;
    height: 90px;
  }

  .profile-name {
    font-size: 1.6rem;
  }

  .link-item {
    padding: 14px 18px;
    gap: 12px;
  }

  .link-icon {
    width: 42px;
    height: 42px;
  }

  .corner-accent {
    width: 40px;
    height: 40px;
  }
}

/* ==========================================================================
   DARK MODE - Auto-detect from system preference
   ========================================================================== */
@media (prefers-color-scheme: dark) {

  /* Contact Page Dark Mode */
  .contact-page,
  .contact-background {
    background: linear-gradient(135deg, #070b14 0%, #0d1321 50%, #0a0f1e 100%);
  }

  .contact-page .mesh-blob-1 {
    background: radial-gradient(circle, rgba(36, 120, 255, 0.5) 0%, transparent 70%);
  }

  .contact-page .mesh-blob-2 {
    background: radial-gradient(circle, rgba(102, 126, 234, 0.4) 0%, transparent 70%);
  }

  .contact-page .mesh-blob-3 {
    background: radial-gradient(circle, rgba(199, 255, 61, 0.25) 0%, transparent 70%);
  }

  .contact-grid {
    background-image:
      linear-gradient(rgba(36, 120, 255, 0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(36, 120, 255, 0.06) 1px, transparent 1px);
  }

  .contact-logo span {
    color: #fff;
  }

  .form-card {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow:
      0 25px 50px rgba(0, 0, 0, 0.4),
      0 0 100px rgba(36, 120, 255, 0.05);
  }

  .progress-bar {
    background: rgba(255, 255, 255, 0.1);
  }

  .step-number {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
  }

  .progress-step.active .step-number {
    background: linear-gradient(135deg, var(--electric-blue), var(--neon-lime));
    color: var(--text-dark);
  }

  .step-label {
    color: rgba(255, 255, 255, 0.5);
  }

  .progress-step.active .step-label {
    color: rgba(255, 255, 255, 0.9);
  }

  .step-icon {
    background: linear-gradient(135deg, rgba(36, 120, 255, 0.2), rgba(199, 255, 61, 0.1));
    border-color: rgba(36, 120, 255, 0.3);
    color: var(--neon-lime);
  }

  .step-content h1 {
    color: #fff;
  }

  .step-content h2 {
    color: var(--neon-lime);
  }

  .step-content p {
    color: rgba(255, 255, 255, 0.7);
  }

  .step-description {
    color: rgba(255, 255, 255, 0.5) !important;
  }

  .form-group label {
    color: rgba(255, 255, 255, 0.9);
  }

  .required {
    color: var(--neon-lime);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    color: #fff;
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    background: rgba(36, 120, 255, 0.1);
    box-shadow: 0 0 20px rgba(36, 120, 255, 0.15);
  }

  .form-group input.error,
  .form-group select.error,
  .form-group textarea.error {
    border-color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
  }

  .form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-color: rgba(255, 255, 255, 0.05);
  }

  .form-group select option {
    background: #1a1f2e;
    color: #fff;
  }

  .checkbox-label {
    color: rgba(255, 255, 255, 0.7);
  }

  .checkmark {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
  }

  .checkmark::after {
    border-color: var(--text-dark);
  }

  .btn-next,
  .btn-submit {
    background: var(--neon-lime);
    color: var(--text-dark);
    box-shadow: 0 4px 14px var(--neon-lime-glow);
  }

  .btn-next:hover,
  .btn-submit:hover {
    box-shadow: 0 10px 30px var(--neon-lime-glow);
  }

  .btn-back {
    color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.2);
  }

  .btn-back:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
  }

  .success-icon {
    background: linear-gradient(135deg, rgba(199, 255, 61, 0.2), rgba(36, 120, 255, 0.1));
    border-color: var(--neon-lime);
    color: var(--neon-lime);
  }

  .success-content h2 {
    color: #fff;
  }

  .success-content p {
    color: rgba(255, 255, 255, 0.7);
  }

  .success-brand {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
  }

  .btn-home {
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
  }

  .btn-home:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }

  .contact-footer {
    color: rgba(255, 255, 255, 0.4);
  }

  /* Linktree Dark Mode */
  .linktree-page,
  .linktree-background {
    background: linear-gradient(135deg, #070b14 0%, #0d1321 50%, #0a0f1e 100%);
  }

  .linktree-orb-1 {
    background: radial-gradient(circle, rgba(36, 120, 255, 0.5) 0%, transparent 70%);
  }

  .linktree-orb-2 {
    background: radial-gradient(circle, rgba(199, 255, 61, 0.3) 0%, transparent 70%);
  }

  .linktree-orb-3 {
    background: radial-gradient(circle, rgba(102, 126, 234, 0.4) 0%, transparent 70%);
  }

  .linktree-lines {
    opacity: 0.15;
  }

  .corner-accent {
    border-color: rgba(36, 120, 255, 0.3);
  }

  .profile-image::before {
    opacity: 0.5;
  }

  .profile-name {
    color: #fff;
  }

  .profile-tagline {
    color: var(--neon-lime);
  }

  .profile-description {
    color: rgba(255, 255, 255, 0.6);
  }

  .link-item {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
    color: #fff;
    box-shadow: none;
  }

  .link-item::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  }

  .link-item:hover {
    background: rgba(36, 120, 255, 0.15);
    border-color: var(--electric-blue);
    box-shadow: 0 10px 30px rgba(36, 120, 255, 0.2);
  }

  .link-icon {
    background: linear-gradient(135deg, rgba(36, 120, 255, 0.3), rgba(199, 255, 61, 0.1));
  }

  .link-icon svg {
    color: var(--neon-lime);
  }

  .link-item:hover .link-icon svg {
    color: var(--text-dark);
  }

  .link-title {
    color: #fff;
  }

  .link-subtitle {
    color: rgba(255, 255, 255, 0.5);
  }

  .link-arrow {
    color: rgba(255, 255, 255, 0.3);
  }

  .link-item:hover .link-arrow {
    color: var(--neon-lime);
  }

  .link-item.whatsapp .link-icon {
    background: rgba(37, 211, 102, 0.2);
  }

  .link-item.whatsapp:hover {
    background: rgba(37, 211, 102, 0.15);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.2);
  }

  .footer-logo span {
    color: rgba(255, 255, 255, 0.6);
  }

  .linktree-footer p {
    color: rgba(255, 255, 255, 0.3);
  }
}

/* ==========================================================================
   CONTACT PAGE V2 - SPLIT SCREEN PREMIUM DESIGN
   ========================================================================== */

/* Base Layout */
.contact-page-v2 {
  min-height: 100vh;
  overflow-x: hidden;
  background: #ffffff;
}

.contact-split-wrapper {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 100vh;
}

/* ==========================================================================
   LEFT PANEL - HERO BRANDING
   ========================================================================== */
.contact-hero-panel {
  position: relative;
  background: linear-gradient(160deg, #070b14 0%, #0d1321 50%, #111827 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 60px 40px;
}

/* Panel Background Effects */
.hero-panel-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-panel-mesh {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.panel-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  mix-blend-mode: screen;
  animation: panelBlobMove 18s ease-in-out infinite;
}

.panel-blob-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(36, 120, 255, 0.5) 0%, transparent 70%);
  top: -10%;
  left: -10%;
  animation-delay: 0s;
}

.panel-blob-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.4) 0%, transparent 70%);
  bottom: 10%;
  right: -5%;
  animation-delay: -6s;
}

.panel-blob-3 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(199, 255, 61, 0.25) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -12s;
}

@keyframes panelBlobMove {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(40px, 50px) scale(1.2);
  }

  66% {
    transform: translate(-30px, 20px) scale(0.9);
  }
}

.hero-panel-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(36, 120, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 120, 255, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 30%, transparent 100%);
}

.panel-floating-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.panel-shape {
  position: absolute;
  border-radius: 50%;
  animation: panelShapeFloat 12s ease-in-out infinite;
}

.panel-circle-1 {
  width: 80px;
  height: 80px;
  border: 2px solid rgba(36, 120, 255, 0.3);
  top: 15%;
  right: 20%;
  animation-delay: 0s;
}

.panel-circle-2 {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(199, 255, 61, 0.3);
  bottom: 25%;
  left: 15%;
  animation-delay: -4s;
}

.panel-square-1 {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(102, 126, 234, 0.3);
  border-radius: 8px;
  top: 60%;
  right: 10%;
  transform: rotate(45deg);
  animation-delay: -8s;
}

@keyframes panelShapeFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.5;
  }

  50% {
    transform: translateY(-20px) rotate(10deg);
    opacity: 0.8;
  }
}

/* Panel Content */
.hero-panel-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 400px;
}

.panel-logo {
  display: inline-block;
  margin-bottom: 48px;
  transition: transform var(--transition-normal);
}

.panel-logo:hover {
  transform: scale(1.05);
}

.panel-logo img {
  height: 80px;
  filter: drop-shadow(0 0 30px rgba(36, 120, 255, 0.4));
}

.panel-headline h1 {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.panel-headline h1 .highlight {
  background: linear-gradient(90deg, var(--electric-blue), var(--neon-lime));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.panel-tagline {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 48px;
}

/* Contact Info */
.panel-contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
}

.contact-info-item:hover {
  background: rgba(36, 120, 255, 0.1);
  border-color: rgba(36, 120, 255, 0.3);
  transform: translateX(5px);
}

.info-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(36, 120, 255, 0.2), rgba(199, 255, 61, 0.1));
  border-radius: 10px;
  color: var(--neon-lime);
  flex-shrink: 0;
}

.info-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.info-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2px;
}

.info-value {
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 500;
}

/* Slogan */
.panel-slogan {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-slogan span {
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.5px;
}

.panel-slogan span:first-child {
  color: var(--electric-blue);
}

/* ==========================================================================
   RIGHT PANEL - FORM
   ========================================================================== */
.contact-form-panel {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
}

.form-panel-container {
  width: 100%;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

/* Mobile Header - Hidden on Desktop */
.mobile-contact-header {
  display: none;
}

/* Form Card V2 */
.form-card-v2 {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.02),
    0 12px 24px rgba(0, 0, 0, 0.04),
    0 24px 48px rgba(36, 120, 255, 0.05);
  position: relative;
  flex: 1;
}

.form-card-v2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--electric-blue), var(--neon-lime));
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

/* Progress Bar V2 */
.form-progress-v2 {
  margin-bottom: 40px;
}

.progress-track {
  height: 6px;
  background: #e2e8f0;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 24px;
}

.progress-fill-v2 {
  height: 100%;
  background: linear-gradient(90deg, var(--electric-blue), var(--neon-lime));
  width: 0%;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 3px;
}

.progress-steps-v2 {
  display: flex;
  justify-content: space-between;
}

.progress-step-v2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  transition: all var(--transition-normal);
}

.progress-step-v2.active {
  opacity: 1;
}

.step-dot {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  transition: all var(--transition-normal);
}

.step-num {
  font-family: var(--font-headline);
  font-size: 0.95rem;
  font-weight: 700;
  color: #94a3b8;
}

.progress-step-v2.active .step-dot {
  background: linear-gradient(135deg, var(--electric-blue), #1a5fd1);
  border-color: transparent;
  box-shadow: 0 4px 14px var(--electric-blue-glow);
}

.progress-step-v2.active .step-num {
  color: #ffffff;
}

.step-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.progress-step-v2.active .step-name {
  color: var(--text-dark);
}

/* Form Steps V2 */
.form-step-v2 {
  display: none;
  animation: formStepFadeIn 0.5s ease;
}

.form-step-v2.active {
  display: block;
}

@keyframes formStepFadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Step Content V2 */
.step-content-v2 {
  margin-bottom: 32px;
}

.step-icon-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(36, 120, 255, 0.08), rgba(102, 126, 234, 0.04));
  border: 1px solid rgba(36, 120, 255, 0.15);
  border-radius: 50%;
  margin-bottom: 24px;
  color: var(--electric-blue);
}

.step-title {
  font-family: var(--font-headline);
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  text-align: center;
}

.step-subtitle {
  font-size: 1.05rem;
  color: var(--text-medium);
  line-height: 1.6;
  text-align: center;
  margin-bottom: 8px;
}

.step-description-v2 {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  text-align: center;
}

/* Form Grid V2 */
.form-grid-v2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: left;
  margin-top: 28px;
}

.form-group-v2 {
  position: relative;
}

.form-group-v2.full-width {
  grid-column: span 2;
}

.form-group-v2 label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group-v2 .required {
  color: var(--electric-blue);
}

.form-group-v2 input,
.form-group-v2 select,
.form-group-v2 textarea {
  width: 100%;
  padding: 14px 18px;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-group-v2 input::placeholder,
.form-group-v2 textarea::placeholder {
  color: #94a3b8;
}

.form-group-v2 input:focus,
.form-group-v2 select:focus,
.form-group-v2 textarea:focus {
  outline: none;
  border-color: var(--electric-blue);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(36, 120, 255, 0.1);
}

.form-group-v2 input.error,
.form-group-v2 select.error,
.form-group-v2 textarea.error {
  border-color: #ef4444;
  background: #fef2f2;
}

.form-group-v2 select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 44px;
  background-color: #f8fafc;
}

.form-group-v2 textarea {
  resize: vertical;
  min-height: 120px;
}

/* Checkbox V2 */
.checkbox-group-v2 {
  margin-top: 24px;
}

.checkbox-label-v2 {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-medium);
}

.checkbox-label-v2 input[type="checkbox"] {
  display: none;
}

.checkmark-v2 {
  display: inline-block;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  border: 2px solid #cbd5e1;
  border-radius: 6px;
  background: #f8fafc;
  position: relative;
  transition: all var(--transition-fast);
}

.checkbox-label-v2 input[type="checkbox"]:checked+.checkmark-v2 {
  background: linear-gradient(135deg, var(--electric-blue), var(--neon-lime));
  border-color: transparent;
}

.checkmark-v2::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 7px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.checkbox-label-v2 input[type="checkbox"]:checked+.checkmark-v2::after {
  opacity: 1;
}

.checkbox-text-v2 a {
  color: var(--electric-blue);
  text-decoration: none;
  font-weight: 500;
}

.checkbox-text-v2 a:hover {
  text-decoration: underline;
}

.checkbox-group-v2.error .checkmark-v2 {
  border-color: #ef4444;
}

/* Step Actions V2 */
.step-actions-v2 {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 36px;
}

.btn-next-v2,
.btn-submit-v2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--electric-blue) 0%, #1a5fd1 100%);
  color: #fff;
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-headline);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-bounce);
  margin-left: auto;
  box-shadow: 0 4px 14px var(--electric-blue-glow);
}

.btn-next-v2:hover,
.btn-submit-v2:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px var(--electric-blue-glow);
}

.btn-back-v2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-medium);
  padding: 14px 20px;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.btn-back-v2:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: var(--text-dark);
}

.btn-submit-v2:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Form Success V2 */
.form-success-v2 {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success-v2.active {
  display: block;
  animation: formStepFadeIn 0.6s ease;
}

.success-icon-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, rgba(36, 120, 255, 0.1), rgba(199, 255, 61, 0.1));
  border: 2px solid var(--electric-blue);
  border-radius: 50%;
  margin-bottom: 28px;
  color: var(--electric-blue);
}

.success-content-v2 h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: var(--text-dark);
  margin-bottom: 12px;
  text-align: center;
}

.success-content-v2 p {
  color: var(--text-medium);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.success-brand-v2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(36, 120, 255, 0.03), rgba(199, 255, 61, 0.03));
  border: 1px solid rgba(36, 120, 255, 0.1);
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
}

.success-logo-v2 {
  height: 50px;
}

.success-slogan-v2 {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  color: var(--electric-blue);
  text-align: center;
  line-height: 1.4;
}

.btn-home-v2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-medium);
  padding: 12px 24px;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transition-normal);
}

.btn-home-v2:hover {
  background: #f1f5f9;
  border-color: var(--electric-blue);
  color: var(--electric-blue);
}

/* Footer V2 */
.contact-footer-v2 {
  text-align: center;
  padding: 24px 0;
  margin-top: auto;
}

.contact-footer-v2 p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ==========================================================================
   CONTACT V2 - RESPONSIVE DESIGN
   ========================================================================== */

/* Tablet */
@media (max-width: 1024px) {
  .contact-split-wrapper {
    grid-template-columns: 38% 62%;
  }

  .contact-hero-panel {
    padding: 40px 30px;
  }

  .panel-logo img {
    height: 60px;
  }

  .panel-headline h1 {
    font-size: 1.8rem;
  }

  .form-card-v2 {
    padding: 36px;
  }
}

/* Mobile - Stack Layout */
@media (max-width: 768px) {
  .contact-split-wrapper {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  /* Hide desktop hero panel */
  .contact-hero-panel {
    display: none;
  }

  /* Show mobile header */
  .mobile-contact-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
  }

  .mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .mobile-logo img {
    height: 40px;
  }

  .mobile-logo span {
    font-family: var(--font-headline);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
  }

  /* Form Panel Mobile */
  .contact-form-panel {
    padding: 20px;
    min-height: 100vh;
    align-items: flex-start;
  }

  .form-panel-container {
    max-width: 100%;
  }

  .form-card-v2 {
    padding: 28px 20px;
    border-radius: var(--radius-lg);
  }

  /* Progress steps mobile */
  .progress-steps-v2 {
    gap: 8px;
  }

  .step-dot {
    width: 36px;
    height: 36px;
  }

  .step-num {
    font-size: 0.85rem;
  }

  .step-name {
    font-size: 0.7rem;
  }

  .step-icon-v2 {
    width: 70px;
    height: 70px;
  }

  .step-icon-v2 svg {
    width: 32px;
    height: 32px;
  }

  /* Form grid stack */
  .form-grid-v2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-group-v2.full-width {
    grid-column: span 1;
  }

  /* Buttons full width */
  .step-actions-v2 {
    flex-direction: column-reverse;
    gap: 12px;
  }

  .btn-next-v2,
  .btn-submit-v2,
  .btn-back-v2 {
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .contact-form-panel {
    padding: 16px;
  }

  .form-card-v2 {
    padding: 24px 16px;
  }

  .step-title {
    font-size: 1.3rem;
  }

  .step-subtitle {
    font-size: 0.95rem;
  }

  .form-group-v2 input,
  .form-group-v2 select,
  .form-group-v2 textarea {
    padding: 12px 14px;
    font-size: 0.9rem;
  }

  .btn-next-v2,
  .btn-submit-v2 {
    padding: 14px 24px;
    font-size: 0.9rem;
  }

  .mobile-logo span {
    font-size: 1.15rem;
  }
}

/* Footer V2 Override - Must override global footer styles */
.contact-footer-v2 {
  background-color: transparent !important;
  background: transparent !important;
  padding: 24px 0 !important;
  color: var(--text-light) !important;
  text-align: center;
  margin-top: auto;
  border-top: 1px solid #e2e8f0;
}

.contact-footer-v2 p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}