/* ============================================================
   CRECIENTA 2026 — SISTEMA VISUAL RÍTMICO & ALTO IMPACTO
   Alternancia Dark Tech / Light Human & Estructura 100% Simétrica
   ============================================================ */

:root {
  /* --- PALETA DARK TECH (CÓSMICA INSTITUCIONAL) --- */
  --cc-bg-deep: #050a16;
  --cc-bg-surface: #0a1428;
  --cc-bg-card-dark: rgba(13, 27, 54, 0.75);
  --cc-bg-glass-dark: rgba(10, 22, 46, 0.65);
  
  /* --- PALETA LIGHT HUMAN (EDITORIAL LUMINOSO) --- */
  --cc-bg-light: #f8fafc;
  --cc-bg-light-pure: #ffffff;
  --cc-bg-light-surface: #f1f5f9;
  --cc-border-light: #e2e8f0;
  --cc-border-light-subtle: rgba(226, 232, 240, 0.8);

  /* --- ACENTOS LUMINOSOS --- */
  --cc-cyan-neon: #00d2ff;
  --cc-cyan-glow: rgba(0, 210, 255, 0.35);
  --cc-blue-electric: #2563eb;
  --cc-blue-deep: #1d4ed8;
  --cc-gold-prestige: #fbbf24;
  --cc-gold-amber: #f59e0b;
  --cc-rose-alert: #f43f5e;
  --cc-green-live: #10b981;

  /* --- TEXTO & CONTRASTE DARK --- */
  --cc-text-pure: #ffffff;
  --cc-text-headline: #f8fafc;
  --cc-text-body: #cbd5e1;
  --cc-text-muted: #8493a8;

  /* --- TEXTO & CONTRASTE LIGHT --- */
  --cc-text-dark-headline: #0f172a;
  --cc-text-dark-body: #334155;
  --cc-text-dark-muted: #64748b;

  /* --- BORDES REFRACTIVOS --- */
  --cc-border-subtle: rgba(255, 255, 255, 0.08);
  --cc-border-glow: rgba(0, 210, 255, 0.28);
  --cc-border-gold: rgba(251, 191, 36, 0.30);

  /* --- SOMBRAS VOLUMÉTRICAS --- */
  --cc-shadow-3d: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(37, 99, 235, 0.2);
  --cc-shadow-card-dark: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 210, 255, 0.06);
  --cc-shadow-card-light: 0 8px 30px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.03);
  --cc-shadow-card-light-hover: 0 18px 45px rgba(15, 23, 42, 0.12), 0 2px 6px rgba(15, 23, 42, 0.04);

  /* --- RADIOS --- */
  --cc-radius-sm: 8px;
  --cc-radius-md: 14px;
  --cc-radius-lg: 20px;
  --cc-radius-xl: 28px;
  --cc-radius-full: 9999px;

  /* --- TIPOGRAFÍA RESPONSIVA --- */
  --cc-font-title: 'Outfit', sans-serif;
  --cc-font-body: 'Plus Jakarta Sans', sans-serif;
  --cc-text-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.85rem);
  --cc-text-sm: clamp(0.875rem, 0.82rem + 0.3vw, 0.98rem);
  --cc-text-base: clamp(1rem, 0.95rem + 0.35vw, 1.12rem);
  --cc-text-lg: clamp(1.15rem, 1.05rem + 0.5vw, 1.35rem);
  --cc-text-xl: clamp(1.35rem, 1.2rem + 0.7vw, 1.7rem);
  --cc-text-2xl: clamp(1.75rem, 1.45rem + 1.2vw, 2.3rem);
  --cc-text-3xl: clamp(2.2rem, 1.8rem + 1.8vw, 3.1rem);
  --cc-text-4xl: clamp(2.7rem, 2.1rem + 2.8vw, 4.3rem);
}

/* ============================================================
   RESET & BASES
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--cc-font-body);
  background-color: var(--cc-bg-deep);
  color: var(--cc-text-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

.cc-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .cc-container { padding: 0 2rem; }
}

/* ============================================================
   KICKERS TIPOGRÁFICOS (SIN CLICHÉ DE PÍLDORAS DE IA)
   ============================================================ */
.cc-kicker {
  display: inline-block;
  font-family: var(--cc-font-title);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.cc-kicker-cyan {
  color: var(--cc-cyan-neon);
  text-shadow: 0 0 15px rgba(0, 210, 255, 0.4);
}

.cc-kicker-gold {
  color: #fbbf24;
  text-shadow: 0 0 15px rgba(251, 191, 36, 0.3);
}

.cc-kicker-dark {
  color: var(--cc-blue-electric);
  letter-spacing: 0.14em;
}

/* ============================================================
   RITMO DE SECCIONES (DARK TECH VS LIGHT HUMAN)
   ============================================================ */
.cc-section-dark {
  background-color: var(--cc-bg-deep);
  color: var(--cc-text-body);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}

.cc-section-light {
  background-color: var(--cc-bg-light);
  color: var(--cc-text-dark-body);
  padding: 5.5rem 0;
  position: relative;
  border-top: 1px solid var(--cc-border-light);
  border-bottom: 1px solid var(--cc-border-light);
}

.cc-title-dark {
  color: var(--cc-text-dark-headline) !important;
}

.cc-sub-dark {
  color: var(--cc-text-dark-muted) !important;
}

/* ============================================================
   AMBIENT GLOWS & ORBS (SECCIONES DARK)
   ============================================================ */
.cc-ambient-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.cc-orb-hero-1 {
  position: absolute;
  top: -10%;
  left: 5%;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.35) 0%, rgba(0, 210, 255, 0.12) 50%, transparent 70%);
  filter: blur(90px);
}

.cc-orb-hero-2 {
  position: absolute;
  top: 25%;
  right: -5%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.25) 0%, rgba(30, 64, 175, 0.12) 55%, transparent 75%);
  filter: blur(90px);
}

.cc-grid-matrix {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.cc-navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(5, 10, 22, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--cc-border-subtle);
  transition: all 0.3s ease;
}

.cc-navbar.scrolled {
  background: rgba(5, 10, 22, 0.95);
  border-bottom-color: rgba(0, 210, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.cc-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.cc-nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cc-logo-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cc-logo-text {
  font-family: var(--cc-font-title);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--cc-text-pure);
  letter-spacing: -0.02em;
}

.cc-logo-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  background: rgba(37, 99, 235, 0.25);
  border: 1px solid rgba(0, 210, 255, 0.35);
  color: var(--cc-cyan-neon);
  border-radius: var(--cc-radius-full);
}

.cc-nav-links {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

@media (min-width: 960px) {
  .cc-nav-links { display: flex; }
}

.cc-nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--cc-text-body);
  transition: color 0.2s ease;
}

.cc-nav-links a:hover {
  color: var(--cc-cyan-neon);
}

.cc-nav-cta {
  display: none;
}

@media (min-width: 768px) {
  .cc-nav-cta { display: inline-flex; }
}

.cc-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
}

@media (min-width: 960px) {
  .cc-hamburger { display: none; }
}

.cc-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--cc-text-pure);
  border-radius: 2px;
}

/* DRAWER */
.cc-drawer {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  background: rgba(6, 12, 26, 0.98);
  backdrop-filter: blur(25px);
  border-bottom: 1px solid var(--cc-border-glow);
  padding: 2rem 1.5rem;
  z-index: 99;
}

.cc-drawer.open { display: block; }

.cc-drawer nav {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cc-drawer nav a {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cc-text-headline);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* ============================================================
   BOTONES & CTAS
   ============================================================ */
.cc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  min-height: 48px;
  border-radius: var(--cc-radius-md);
  font-family: var(--cc-font-title);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cc-btn-primary {
  background: linear-gradient(135deg, #00d2ff 0%, #2563eb 60%, #1d4ed8 100%);
  color: #030712;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 
    0 4px 20px rgba(0, 210, 255, 0.4),
    0 0 35px rgba(37, 99, 235, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.cc-btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 
    0 8px 30px rgba(0, 210, 255, 0.6),
    0 0 50px rgba(37, 99, 235, 0.5);
  color: #000;
}

/* CTA ACTION ITEM & PRE-LABELS (FOTO 1 FIX) */
.cc-cta-action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

@media (min-width: 540px) {
  .cc-cta-action-item {
    width: auto;
  }
}

.cc-action-pre-label {
  font-family: var(--cc-font-title);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cc-cyan-neon);
  text-shadow: 0 0 14px rgba(0, 210, 255, 0.45);
  line-height: 1.2;
  text-align: center;
}

.cc-action-pre-label.cc-label-wa {
  color: #4ade80;
  text-shadow: 0 0 14px rgba(74, 222, 128, 0.35);
}

.cc-action-pre-label.cc-label-muted {
  color: var(--cc-text-muted);
  text-shadow: none;
}

.cc-btn-hero-dominant {
  padding: 14px 28px;
  min-height: 52px;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  gap: 10px;
}

.cc-btn-hero-secondary {
  padding: 14px 28px;
  min-height: 52px;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  gap: 10px;
}

.cc-btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-20deg);
  animation: btnShine 4s infinite;
}

@keyframes btnShine {
  0% { left: -100%; }
  25% { left: 180%; }
  100% { left: 180%; }
}

.cc-btn-glow {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.8), rgba(0, 210, 255, 0.8));
  color: #ffffff;
  border: 1px solid rgba(0, 210, 255, 0.4);
  box-shadow: 0 0 25px rgba(0, 210, 255, 0.3);
}

.cc-btn-glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--cc-text-headline);
  backdrop-filter: blur(10px);
}

.cc-btn-glass:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(0, 210, 255, 0.3);
  color: #fff;
  transform: translateY(-2px);
}

.cc-btn-dark {
  background: #0f172a;
  color: #ffffff;
  border: 1px solid #1e293b;
}

.cc-btn-dark:hover {
  background: #1e293b;
  transform: translateY(-2px);
}

.cc-btn-wa {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.35);
  padding: 14px 28px;
  min-height: 52px;
  font-size: 1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cc-btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.5);
}

.cc-btn-xs {
  min-height: 36px;
  padding: 8px 14px;
  font-size: 0.8rem;
}

.cc-btn-full { width: 100%; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.cc-hero {
  padding: 4rem 0 5rem;
}

@media (min-width: 960px) {
  .cc-hero { padding: 5rem 0 7rem; }
}

.cc-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .cc-hero-inner {
    grid-template-columns: 1.15fr 0.95fr;
    gap: 3rem;
  }
}

.cc-hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cc-hero-headline {
  font-family: var(--cc-font-title);
  font-size: var(--cc-text-4xl);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--cc-text-headline);
}

.cc-grad-title {
  display: block;
  background: linear-gradient(135deg, #00d2ff 0%, #38bdf8 30%, #fbbf24 85%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px rgba(0, 210, 255, 0.3));
}

.cc-hero-sub {
  font-size: var(--cc-text-base);
  color: var(--cc-text-body);
  max-width: 580px;
  line-height: 1.7;
}

.cc-hero-sub strong { color: #fff; }

.cc-hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

@media (min-width: 560px) {
  .cc-hero-cta-group {
    flex-direction: row;
    align-items: center;
  }
}

.cc-hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--cc-radius-lg);
  backdrop-filter: blur(12px);
}

.cc-trust-metric {
  display: flex;
  flex-direction: column;
}

.cc-metric-header {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cc-live-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--cc-green-live);
  box-shadow: 0 0 10px var(--cc-green-live);
}

.cc-trust-number {
  font-family: var(--cc-font-title);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--cc-text-pure);
}

.cc-trust-label {
  font-size: 0.72rem;
  color: var(--cc-text-muted);
  font-weight: 500;
}

.cc-trust-sep {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  display: none;
}

@media (min-width: 600px) {
  .cc-trust-sep { display: block; }
}

.cc-stars-row {
  color: #fbbf24;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.cc-trust-badge-seal {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #fde68a;
  background: rgba(251, 191, 36, 0.08);
  padding: 6px 12px;
  border-radius: var(--cc-radius-md);
  border: 1px solid rgba(251, 191, 36, 0.2);
}

.cc-trust-seal-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.4);
}

/* 3D STAGE */
.cc-3d-stage {
  position: relative;
  width: 100%;
  height: 480px;
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .cc-3d-stage { height: 540px; }
}

.cc-stage-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.25) 0%, rgba(37, 99, 235, 0.15) 50%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
}

.cc-phone-card-wrapper {
  position: absolute;
  top: 5%;
  right: 0;
  width: 82%;
  max-width: 440px;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cc-phone-glass-frame {
  border-radius: var(--cc-radius-xl);
  padding: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--cc-shadow-3d);
  backdrop-filter: blur(10px);
}

.cc-hero-phone-img {
  border-radius: calc(var(--cc-radius-xl) - 6px);
  width: 100%;
  height: auto;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
}

.cc-hero-card-floating {
  position: absolute;
  bottom: 8%;
  left: -5%;
  width: 76%;
  max-width: 360px;
  z-index: 4;
}

@media (max-width: 640px) {
  .cc-hero-card-floating {
    left: 2%;
    bottom: 2%;
    width: 88%;
  }
}

.cc-credential-3d-wrapper {
  perspective: 1000px;
  cursor: pointer;
}

.cc-credential-flipper {
  position: relative;
  width: 100%;
  min-height: 220px;
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-style: preserve-3d;
}

.cc-credential-flipper.flipped {
  transform: rotateY(180deg);
}

.cc-card-3d-face {
  position: absolute;
  inset: 0;
  border-radius: var(--cc-radius-lg);
  padding: 1.25rem;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow: 
    0 20px 45px rgba(0, 0, 0, 0.7),
    0 0 30px rgba(0, 210, 255, 0.25),
    inset 0 1px 1px rgba(255, 255, 255, 0.3);
  overflow: hidden;
}

.cc-card-3d-front {
  background: linear-gradient(135deg, rgba(14, 30, 64, 0.95) 0%, rgba(6, 14, 32, 0.98) 100%);
  border: 1px solid rgba(0, 210, 255, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cc-card-specular-glare {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, transparent 35%, rgba(255, 255, 255, 0.25) 45%, transparent 55%);
  pointer-events: none;
}

.cc-card-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cc-card-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cc-card-logo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cc-cyan-neon);
  box-shadow: 0 0 10px var(--cc-cyan-neon);
}

.cc-card-union-title {
  display: block;
  font-family: var(--cc-font-title);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--cc-text-pure);
}

.cc-card-union-sub {
  display: block;
  font-size: 0.65rem;
  color: var(--cc-cyan-neon);
  font-weight: 600;
}

.cc-chip-hologram {
  padding: 4px;
  background: rgba(251, 191, 36, 0.1);
  border-radius: 6px;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.cc-card-body-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 10px 0;
}

.cc-card-avatar-box {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2563eb, #00d2ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cc-card-valid-dot {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cc-green-live);
  border: 2px solid #060e20;
}

.cc-card-name {
  display: block;
  font-family: var(--cc-font-title);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--cc-text-pure);
}

.cc-card-category {
  display: block;
  font-size: 0.72rem;
  color: var(--cc-text-muted);
}

.cc-card-id-badge {
  display: inline-block;
  font-size: 0.7rem;
  color: #fbbf24;
  margin-top: 2px;
}

.cc-card-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 8px;
}

.cc-card-expiry small {
  display: block;
  font-size: 0.6rem;
  color: var(--cc-text-muted);
}

.cc-card-expiry strong {
  font-size: 0.85rem;
  color: var(--cc-text-pure);
}

.cc-card-qr-box {
  padding: 4px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 6px;
  border: 1px solid rgba(0, 210, 255, 0.3);
}

.cc-card-flip-prompt {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  color: var(--cc-cyan-neon);
  margin-top: 6px;
  justify-content: center;
}

/* REVERSO */
.cc-card-3d-back {
  background: linear-gradient(135deg, rgba(8, 20, 48, 0.98) 0%, rgba(4, 10, 26, 0.99) 100%);
  border: 1px solid rgba(37, 99, 235, 0.5);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

.cc-back-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
}

.cc-tag-secure {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--cc-green-live);
  background: rgba(16, 185, 129, 0.15);
  padding: 2px 6px;
  border-radius: 4px;
}

.cc-back-qr-large {
  padding: 8px;
  background: #ffffff;
  border-radius: 10px;
  margin: 6px 0;
}

.cc-back-instruction {
  font-size: 0.72rem;
  color: var(--cc-text-body);
}

.cc-floating-pill {
  position: absolute;
  top: 15%;
  left: 5%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(6, 15, 34, 0.90);
  border: 1px solid rgba(0, 210, 255, 0.4);
  border-radius: var(--cc-radius-full);
  box-shadow: var(--cc-shadow-card-dark);
  backdrop-filter: blur(16px);
  z-index: 5;
}

.cc-floating-pill strong { display: block; font-size: 0.82rem; color: #fff; }
.cc-floating-pill small { display: block; font-size: 0.68rem; color: var(--cc-cyan-neon); }
.cc-pill-emoji { font-size: 1.35rem; }

.cc-floating-element { animation: levitate1 6s ease-in-out infinite alternate; }
.cc-floating-element-delay { animation: levitate2 7s ease-in-out 1s infinite alternate; }

@keyframes levitate1 {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-12px) rotate(1deg); }
}

@keyframes levitate2 {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-16px) rotate(-1.5deg); }
}

/* ============================================================
   SECCIÓN 2: EL PROBLEMA (LIGHT HUMAN - SIMÉTRICA)
   ============================================================ */
.cc-section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3.5rem;
}

.cc-section-title {
  font-family: var(--cc-font-title);
  font-size: var(--cc-text-3xl);
  font-weight: 800;
  line-height: 1.15;
  margin: 0.5rem 0 1rem;
  letter-spacing: -0.02em;
}

.cc-section-sub {
  font-size: var(--cc-text-base);
  line-height: 1.65;
}

/* GRILLA 4 COLUMNAS SIMÉTRICA */
.cc-grid-4-symmetric {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .cc-grid-4-symmetric { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .cc-grid-4-symmetric { grid-template-columns: repeat(4, 1fr); }
}

.cc-light-card {
  background: #ffffff;
  border: 1px solid var(--cc-border-light);
  border-radius: var(--cc-radius-lg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--cc-shadow-card-light);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cc-light-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--cc-shadow-card-light-hover);
  border-color: #cbd5e1;
}

.cc-card-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cc-icon-rose { background: #ffe4e6; color: #e11d48; }
.cc-icon-amber { background: #fef3c7; color: #d97706; }
.cc-icon-blue { background: #dbeafe; color: #2563eb; }
.cc-icon-purple { background: #f3e8ff; color: #9333ea; }

.cc-card-h3-dark {
  font-family: var(--cc-font-title);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--cc-text-dark-headline);
  line-height: 1.25;
}

.cc-card-p-dark {
  font-size: 0.9rem;
  color: var(--cc-text-dark-body);
  line-height: 1.6;
}

.cc-card-tag {
  margin-top: auto;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-top: 8px;
}

.cc-tag-rose { color: #e11d48; }
.cc-tag-amber { color: #d97706; }
.cc-tag-blue { color: #2563eb; }
.cc-tag-purple { color: #9333ea; }

/* ============================================================
   SECCIÓN 3: DEMO PORTAL (DARK TECH)
   ============================================================ */
.cc-section-demo {
  padding: 5rem 0;
}

.cc-demo-shell {
  background: linear-gradient(135deg, rgba(12, 25, 52, 0.75) 0%, rgba(6, 14, 30, 0.92) 100%);
  border: 1px solid rgba(0, 210, 255, 0.25);
  border-radius: var(--cc-radius-xl);
  padding: 2.5rem 1.5rem;
  box-shadow: var(--cc-shadow-3d);
  backdrop-filter: blur(25px);
}

@media (min-width: 768px) {
  .cc-demo-shell { padding: 3.5rem 3rem; }
}

.cc-demo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 960px) {
  .cc-demo-grid { grid-template-columns: 1.15fr 0.85fr; }
}

.cc-demo-title {
  font-family: var(--cc-font-title);
  font-size: var(--cc-text-3xl);
  font-weight: 800;
  color: var(--cc-text-headline);
  line-height: 1.15;
  margin: 0.5rem 0 1rem;
}

.cc-demo-sub {
  font-size: var(--cc-text-base);
  color: var(--cc-text-body);
  margin-bottom: 2rem;
}

.cc-quick-demo-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--cc-radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.cc-input-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cc-cyan-neon);
  margin-bottom: 8px;
}

.cc-dni-action-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 500px) {
  .cc-dni-action-row {
    flex-direction: row;
    align-items: stretch;
  }
}

.cc-input-wrap {
  position: relative;
  flex: 1;
}

.cc-input-wrap input {
  width: 100%;
  min-height: 52px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--cc-radius-md);
  padding: 0 4.5rem 0 1.25rem;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
}

.cc-input-wrap input:focus {
  outline: none;
  border-color: var(--cc-cyan-neon);
  box-shadow: 0 0 20px var(--cc-cyan-glow);
}

.cc-input-badge {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.65rem;
  font-weight: 800;
  background: rgba(0, 210, 255, 0.2);
  color: var(--cc-cyan-neon);
  padding: 4px 8px;
  border-radius: 4px;
}

.cc-quick-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.cc-quick-buttons span {
  font-size: 0.78rem;
  color: var(--cc-text-muted);
}

.cc-profile-chip {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--cc-radius-full);
  font-size: 0.75rem;
  color: var(--cc-text-body);
  transition: all 0.2s;
}

.cc-profile-chip:hover, .cc-profile-chip.active {
  background: rgba(0, 210, 255, 0.2);
  border-color: var(--cc-cyan-neon);
  color: #fff;
}

.cc-help-text {
  display: block;
  font-size: 0.75rem;
  color: var(--cc-text-muted);
  margin-top: 12px;
}

.cc-demo-features-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cc-dfl-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.cc-dfl-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid var(--cc-green-live);
  color: var(--cc-green-live);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
}

/* DEMO PHONE CHASSIS */
.cc-phone-interactive-wrapper {
  max-width: 380px;
  margin: 0 auto;
}

.cc-phone-chassis {
  background: #020612;
  border: 8px solid #1e293b;
  border-radius: 44px;
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.8),
    0 0 35px rgba(0, 210, 255, 0.25);
  padding: 18px 14px 24px;
}

.cc-phone-speaker {
  width: 60px;
  height: 5px;
  background: #334155;
  border-radius: 3px;
  margin: 0 auto 16px;
}

.cc-interactive-screen {
  background: #071124;
  border-radius: 28px;
  padding: 1.25rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc-portal-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc-portal-header-left {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #fff;
  font-weight: 700;
}

.cc-portal-dot-active {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cc-cyan-neon);
}

.cc-portal-badge-status {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--cc-green-live);
  background: rgba(16, 185, 129, 0.15);
  padding: 3px 8px;
  border-radius: 12px;
}

.cc-portal-user-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 14px 0;
}

.cc-portal-eyebrow {
  font-size: 0.65rem;
  color: var(--cc-text-muted);
  text-transform: uppercase;
}

.cc-portal-user-name {
  font-family: var(--cc-font-title);
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}

.cc-portal-user-meta {
  font-size: 0.72rem;
  color: var(--cc-cyan-neon);
}

.cc-portal-avatar-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #00d2ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 0.9rem;
}

.cc-portal-card-preview {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.6) 0%, rgba(15, 23, 42, 0.9) 100%);
  border: 1px solid rgba(0, 210, 255, 0.35);
  border-radius: var(--cc-radius-md);
  padding: 1rem;
  margin-bottom: 14px;
}

.cc-pcp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cc-pcp-row small {
  display: block;
  font-size: 0.6rem;
  color: var(--cc-cyan-neon);
}

.cc-pcp-row strong {
  font-size: 0.9rem;
  color: #fff;
}

.cc-pcp-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
}

.cc-pcp-hint {
  font-size: 0.65rem;
  color: var(--cc-text-muted);
  text-align: center;
}

.cc-portal-benefits-section {
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--cc-radius-md);
  padding: 10px;
}

.cc-pbs-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--cc-text-muted);
  margin-bottom: 8px;
}

.cc-pbs-count { color: var(--cc-gold-prestige); }

.cc-pbs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.cc-pbs-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cc-pbs-icon { font-size: 1.1rem; }
.cc-pbs-item strong { display: block; font-size: 0.75rem; color: #fff; }
.cc-pbs-item span { display: block; font-size: 0.62rem; color: var(--cc-text-muted); }

/* ============================================================
   SECCIÓN 4: SIMULADOR SALARIAL (FEATURE PROTAGONISTA)
   ============================================================ */
.cc-section-simulator {
  background: linear-gradient(180deg, #050a16 0%, #081226 100%);
  border-top: 1px solid rgba(0, 210, 255, 0.15);
  border-bottom: 1px solid rgba(0, 210, 255, 0.15);
}

.cc-sim-hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .cc-sim-hero-layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
}

.cc-sim-headline {
  font-family: var(--cc-font-title);
  font-size: var(--cc-text-3xl);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin: 0.5rem 0 1.25rem;
}

.cc-sim-desc {
  font-size: var(--cc-text-base);
  color: var(--cc-text-body);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cc-sim-perks-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cc-spl-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cc-spl-bullet {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.35);
  color: #fbbf24;
  font-family: var(--cc-font-title);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cc-spl-item strong {
  display: block;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 2px;
}

.cc-spl-item p {
  font-size: 0.88rem;
  color: var(--cc-text-muted);
  line-height: 1.55;
}

/* CONSOLA DE CÁLCULO SALARIAL */
.cc-glass-console {
  background: rgba(11, 23, 48, 0.85);
  border: 1px solid rgba(0, 210, 255, 0.35);
  border-radius: var(--cc-radius-xl);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(0, 210, 255, 0.2);
  backdrop-filter: blur(25px);
  overflow: hidden;
}

.cc-gc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cc-gc-dot-row {
  display: flex;
  gap: 6px;
}

.cc-gc-dot-row span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #334155;
}

.cc-gc-title {
  font-family: var(--cc-font-title);
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
}

.cc-gc-badge {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--cc-cyan-neon);
  background: rgba(0, 210, 255, 0.15);
  padding: 3px 8px;
  border-radius: 4px;
}

.cc-gc-body {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cc-gc-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cc-gc-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cc-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cc-gc-select {
  min-height: 48px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--cc-radius-md);
  color: #fff;
  padding: 0 14px;
  font-size: 0.95rem;
}

.cc-gc-select:focus {
  outline: none;
  border-color: var(--cc-cyan-neon);
}

.cc-gc-select option {
  background: #081226;
  color: #fff;
}

.cc-gc-extras {
  padding: 6px 0;
}

.cc-checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--cc-text-body);
  cursor: pointer;
}

.cc-checkbox-label input {
  width: 16px;
  height: 16px;
  accent-color: var(--cc-cyan-neon);
}

.cc-gc-breakdown {
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--cc-radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cc-gcb-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--cc-text-muted);
}

.cc-gcb-row strong {
  color: #fff;
}

.cc-gcb-highlight {
  color: #fbbf24 !important;
}

.cc-gcb-highlight strong {
  color: #fbbf24 !important;
}

.cc-gc-total-box {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.25) 0%, rgba(0, 210, 255, 0.15) 100%);
  border: 1px solid var(--cc-cyan-neon);
  border-radius: var(--cc-radius-md);
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cc-gct-label {
  display: block;
  font-family: var(--cc-font-title);
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
}

.cc-gct-sub {
  display: block;
  font-size: 0.68rem;
  color: var(--cc-text-muted);
}

.cc-gct-amount {
  font-family: var(--cc-font-title);
  font-size: 2rem;
  font-weight: 900;
  color: var(--cc-cyan-neon);
  text-shadow: 0 0 25px var(--cc-cyan-glow);
}

.cc-gc-footer {
  font-size: 0.72rem;
  color: var(--cc-text-muted);
  text-align: center;
}

/* ============================================================
   SECCIÓN 5: BENEFICIOS (LIGHT HUMAN - SIMÉTRICA 3 COL)
   ============================================================ */
.cc-grid-3-symmetric {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .cc-grid-3-symmetric { grid-template-columns: repeat(3, 1fr); }
}

.cc-light-benefit-card {
  background: #ffffff;
  border: 1px solid var(--cc-border-light);
  border-radius: var(--cc-radius-xl);
  overflow: hidden;
  box-shadow: var(--cc-shadow-card-light);
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cc-light-benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--cc-shadow-card-light-hover);
  border-color: #cbd5e1;
}

.cc-lbc-media {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #0f172a;
}

.cc-lbc-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cc-lbc-placeholder-turismo {
  height: 100%;
  background: linear-gradient(135deg, #0369a1, #0284c7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  gap: 8px;
}

.cc-lbc-placeholder-retail {
  height: 100%;
  background: linear-gradient(135deg, #4338ca, #6366f1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  gap: 8px;
}

.cc-lbc-icon-large { font-size: 2.5rem; }
.cc-lbc-hotel-title { font-family: var(--cc-font-title); font-size: 0.95rem; font-weight: 700; }

.cc-lbc-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #0f172a;
  color: var(--cc-cyan-neon);
  font-family: var(--cc-font-title);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--cc-radius-full);
}

.cc-lbc-badge.cc-badge-gold {
  color: #fbbf24;
}

.cc-lbc-body {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.cc-lbc-title {
  font-family: var(--cc-font-title);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--cc-text-dark-headline);
}

.cc-lbc-desc {
  font-size: 0.9rem;
  color: var(--cc-text-dark-body);
  line-height: 1.6;
}

.cc-lbc-foot {
  margin-top: auto;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--cc-blue-electric);
  padding-top: 10px;
  border-top: 1px solid var(--cc-border-light);
}

/* ============================================================
   SECCIÓN 6: GESTIÓN (DARK TECH - SIMÉTRICA 4 COL)
   ============================================================ */
.cc-grid-4-dark-symmetric {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .cc-grid-4-dark-symmetric { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .cc-grid-4-dark-symmetric { grid-template-columns: repeat(4, 1fr); }
}

.cc-dark-tool-card {
  background: var(--cc-bg-card-dark);
  border: 1px solid var(--cc-border-subtle);
  border-radius: var(--cc-radius-lg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s;
}

.cc-dark-tool-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 210, 255, 0.3);
  box-shadow: var(--cc-shadow-card-dark);
}

.cc-dt-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(0, 210, 255, 0.25);
  color: var(--cc-cyan-neon);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cc-dark-tool-card h3 {
  font-family: var(--cc-font-title);
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}

.cc-dark-tool-card p {
  font-size: 0.88rem;
  color: var(--cc-text-body);
  line-height: 1.6;
}

.cc-dt-tag {
  margin-top: auto;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cc-cyan-neon);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-top: 8px;
}

/* ============================================================
   SECCIÓN 7: ANTES VS DESPUÉS (LIGHT HUMAN)
   ============================================================ */
.cc-avd-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 980px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .cc-avd-grid { grid-template-columns: 1fr 1fr; }
}

.cc-avd-col {
  border-radius: var(--cc-radius-xl);
  padding: 2.5rem 2rem;
}

.cc-avd-before {
  background: #ffffff;
  border: 1px solid #fecdd3;
  box-shadow: 0 4px 20px rgba(244, 63, 94, 0.06);
}

.cc-avd-after {
  background: #ffffff;
  border: 2px solid var(--cc-blue-electric);
  box-shadow: 0 10px 35px rgba(37, 99, 235, 0.12);
}

.cc-avd-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.cc-avd-status-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}

.cc-avd-before .cc-avd-status-icon { background: #ffe4e6; color: #e11d48; }
.cc-avd-after .cc-avd-status-icon { background: #dbeafe; color: #2563eb; }

.cc-avd-h3 {
  font-family: var(--cc-font-title);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--cc-text-dark-headline);
}

.cc-avd-p {
  font-size: 0.8rem;
  color: var(--cc-text-dark-muted);
}

.cc-avd-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cc-avd-before .cc-avd-items li {
  color: #64748b;
  position: relative;
  padding-left: 20px;
  font-size: 0.92rem;
}

.cc-avd-before .cc-avd-items li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #e11d48;
  font-weight: 800;
}

.cc-avd-after .cc-avd-items li {
  color: #0f172a;
  position: relative;
  padding-left: 24px;
  font-weight: 600;
  font-size: 0.92rem;
}

.cc-avd-after .cc-avd-items li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: 800;
}

/* ============================================================
   SECCIÓN 8: PLANES Y PRECIOS (DARK TECH)
   ============================================================ */
.cc-pricing-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 980px;
  margin: 0 auto;
  align-items: stretch;
}

@media (min-width: 768px) {
  .cc-pricing-cards-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

.cc-plan-card {
  background: var(--cc-bg-card-dark);
  border: 1px solid var(--cc-border-subtle);
  border-radius: var(--cc-radius-xl);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.cc-featured-plan {
  background: linear-gradient(135deg, rgba(16, 36, 80, 0.95) 0%, rgba(8, 18, 44, 0.98) 100%);
  border: 2px solid var(--cc-cyan-neon);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.7),
    0 0 45px rgba(0, 210, 255, 0.35);
  transform: none;
  z-index: 2;
}

@media (max-width: 767px) {
  .cc-featured-plan { transform: none; }
}

.cc-plan-ribbon {
  position: absolute;
  top: -14px;
  right: 24px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #050a16;
  font-family: var(--cc-font-title);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: var(--cc-radius-full);
}

.cc-plan-type {
  font-family: var(--cc-font-title);
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
}

.cc-type-glow {
  color: var(--cc-cyan-neon);
  text-shadow: 0 0 20px var(--cc-cyan-glow);
}

.cc-plan-desc {
  font-size: 0.85rem;
  color: var(--cc-text-muted);
  margin-top: 4px;
}

.cc-plan-pricing-box {
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.35);
  border-radius: var(--cc-radius-md);
}

.cc-box-featured {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 210, 255, 0.25);
}

.cc-price-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--cc-text-muted);
  letter-spacing: 0.05em;
}

.cc-price-old {
  font-size: 0.85rem;
  color: #ef4444;
  text-decoration: line-through;
  font-weight: 600;
}

.cc-price-current {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 4px 0 8px;
}

.cc-currency { font-size: 1.2rem; font-weight: 700; color: var(--cc-text-body); }

.cc-amount {
  font-family: var(--cc-font-title);
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.cc-price-glow .cc-amount {
  color: var(--cc-cyan-neon);
  text-shadow: 0 0 30px var(--cc-cyan-glow);
}

.cc-monthly-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--cc-text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 8px;
}

.cc-monthly-row strong { color: #fff; }

.cc-plan-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.88rem;
  flex: 1;
  margin: 1.5rem 0;
}

.cc-chk { color: #3b82f6; font-weight: 800; margin-right: 6px; }
.cc-chk-glow { color: var(--cc-cyan-neon); font-weight: 800; margin-right: 6px; text-shadow: 0 0 8px var(--cc-cyan-neon); }

.cc-app-addon-box {
  background: rgba(251, 191, 36, 0.08);
  border: 1px dashed rgba(251, 191, 36, 0.35);
  border-radius: var(--cc-radius-sm);
  padding: 10px 14px;
  margin-bottom: 1.25rem;
}

.cc-plan-card > .cc-btn {
  margin-top: auto;
}

.cc-addon-info strong { display: block; font-size: 0.82rem; color: #fde68a; }
.cc-addon-info span { font-size: 0.72rem; color: var(--cc-text-muted); }

.cc-pricing-guarantee-note {
  max-width: 700px;
  margin: 3rem auto 0;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--cc-radius-lg);
  padding: 1.5rem;
}

.cc-pgn-badge {
  font-size: 0.85rem;
  font-weight: 800;
  color: #fbbf24;
  margin-bottom: 6px;
}

.cc-pricing-guarantee-note p { font-size: 0.85rem; color: var(--cc-text-muted); }

/* ============================================================
   SECCIÓN 9: FEDERACIONES (LIGHT HUMAN)
   ============================================================ */
.cc-federation-box-light {
  background: #ffffff;
  border: 1px solid var(--cc-border-light);
  border-radius: var(--cc-radius-xl);
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  box-shadow: var(--cc-shadow-card-light);
}

@media (min-width: 768px) {
  .cc-federation-box-light {
    grid-template-columns: 1.2fr 0.8fr;
    padding: 4rem 3rem;
  }
}

.cc-fed-h2-dark {
  font-family: var(--cc-font-title);
  font-size: var(--cc-text-2xl);
  font-weight: 800;
  color: var(--cc-text-dark-headline);
  margin: 0.5rem 0 1rem;
}

.cc-fed-p-dark {
  font-size: var(--cc-text-base);
  color: var(--cc-text-dark-body);
}

.cc-fed-scale-light {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
  margin: 1.5rem 0 2rem;
}

.cc-fsl-item {
  background: var(--cc-bg-light-surface);
  border: 1px solid var(--cc-border-light);
  border-radius: var(--cc-radius-sm);
  padding: 12px;
  text-align: center;
}

.cc-fsl-item strong { display: block; font-size: 0.82rem; color: var(--cc-text-dark-headline); }
.cc-fsl-item span { font-size: 0.75rem; color: #b45309; font-weight: 700; }

.cc-fed-case-col {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.cc-fed-case-card {
  width: 100%;
  max-width: 440px;
  background: #0b1528;
  border: 1px solid rgba(0, 210, 255, 0.3);
  border-radius: var(--cc-radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(0, 210, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cc-fed-case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 35px rgba(0, 210, 255, 0.25);
}

.cc-fed-case-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background: rgba(15, 23, 42, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cc-fed-case-pill {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--cc-cyan-neon);
  background: rgba(0, 210, 255, 0.15);
  padding: 3px 8px;
  border-radius: var(--cc-radius-full);
}

.cc-fed-case-org {
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}

.cc-fed-case-preview {
  position: relative;
  overflow: hidden;
  background: #000;
}

.cc-fed-case-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.cc-fed-case-card:hover .cc-fed-case-img {
  transform: scale(1.02);
}

.cc-fed-case-foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 12px 16px;
  background: rgba(10, 20, 40, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  gap: 12px;
}

.cc-fed-case-stat strong {
  display: block;
  font-size: 0.8rem;
  color: #fff;
}

.cc-fed-case-stat span {
  font-size: 0.7rem;
  color: var(--cc-text-muted);
}

/* ============================================================
   SECCIÓN 10: TESTIMONIOS (LIGHT HUMAN)
   ============================================================ */
.cc-test-card-light {
  background: #ffffff;
  border: 1px solid var(--cc-border-light);
  border-radius: var(--cc-radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: var(--cc-shadow-card-light);
}

.cc-test-card-light blockquote {
  font-size: 0.95rem;
  color: var(--cc-text-dark-body);
  line-height: 1.6;
  font-style: italic;
}

.cc-test-author-light {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cc-test-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #00d2ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 0.85rem;
}

.cc-test-author-light strong { display: block; font-size: 0.9rem; color: var(--cc-text-dark-headline); }
.cc-test-author-light span { display: block; font-size: 0.72rem; color: var(--cc-text-dark-muted); }

/* ============================================================
   SECCIÓN 11: FAQ & CTA FINAL (DARK TECH)
   ============================================================ */
.cc-faq-wrap { max-width: 820px; }

.cc-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cc-faq-item {
  background: var(--cc-bg-card-dark);
  border: 1px solid var(--cc-border-subtle);
  border-radius: var(--cc-radius-md);
  overflow: hidden;
}

.cc-faq-item[open] {
  border-color: rgba(0, 210, 255, 0.3);
  background: rgba(12, 26, 54, 0.85);
}

.cc-faq-q {
  padding: 1.25rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.cc-faq-q::-webkit-details-marker { display: none; }

.cc-faq-chevron {
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--cc-cyan-neon);
  border-bottom: 2px solid var(--cc-cyan-neon);
  transform: rotate(45deg);
  transition: transform 0.2s;
}

.cc-faq-item[open] .cc-faq-chevron { transform: rotate(-135deg); }

.cc-faq-a {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.92rem;
  color: var(--cc-text-body);
  line-height: 1.65;
}

.cc-final-cta-box {
  background: linear-gradient(135deg, #0b1e42 0%, #050d20 100%);
  border: 1px solid var(--cc-cyan-neon);
  border-radius: var(--cc-radius-xl);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--cc-shadow-3d);
  margin-top: 5rem;
}

.cc-fcta-headline {
  font-family: var(--cc-font-title);
  font-size: var(--cc-text-3xl);
  font-weight: 900;
  color: #fff;
  margin: 0.5rem 0 1rem;
}

.cc-fcta-sub {
  font-size: var(--cc-text-lg);
  color: var(--cc-text-body);
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

.cc-fcta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

@media (min-width: 540px) {
  .cc-fcta-buttons { flex-direction: row; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.cc-footer {
  background: #020610;
  border-top: 1px solid var(--cc-border-subtle);
  padding: 4rem 0 2rem;
}

.cc-footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .cc-footer-inner { grid-template-columns: 1.5fr 1fr; }
}

.cc-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 480px;
}

.cc-footer-brand p { font-size: 0.9rem; color: var(--cc-text-muted); }
.cc-footer-guarantee { font-size: 0.8rem; color: #fbbf24; font-weight: 600; }
.cc-footer-back { font-size: 0.85rem; color: var(--cc-cyan-neon); font-weight: 600; }

.cc-footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.cc-footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cc-footer-col strong {
  font-size: 0.85rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cc-footer-col a {
  font-size: 0.85rem;
  color: var(--cc-text-muted);
  transition: color 0.2s;
}

.cc-footer-col a:hover { color: var(--cc-cyan-neon); }

.cc-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
}

.cc-fb-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--cc-text-muted);
}

@media (min-width: 768px) {
  .cc-fb-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ============================================================
   ANIMACIONES ON SCROLL
   ============================================================ */
.cc-animate {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.cc-animate.is-visible {
  opacity: 1;
  transform: none;
}

.cc-stagger:nth-child(1) { transition-delay: 0ms; }
.cc-stagger:nth-child(2) { transition-delay: 80ms; }
.cc-stagger:nth-child(3) { transition-delay: 160ms; }
.cc-stagger:nth-child(4) { transition-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
  .cc-animate, .cc-floating-element, .cc-floating-element-delay {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
