/* =========================================================================
   PROYECTOS COMMSA - Embudo Público
   Tema: Dark Industrial PREMIUM V3.0 (Chakra Petch + Barlow)
   INYMO × COMMSA - $50K Custom Industrial Theme
   Con animaciones de nivel cinematográfico, partículas, glows,
   efectos de soldadura, circuitos, hologramas y mecánicas avanzadas
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;500;600;700&family=Barlow:wght@300;400;500;600;700&family=Barlow+Condensed:wght@400;500;600;700&display=swap');

/* =========================================================================
   CSS CUSTOM PROPERTIES - EXPANDED PALETTE
   ========================================================================= */
:root {
  /* Core darks */
  --pc-dark: #060a14;
  --pc-dark-2: #0c1222;
  --pc-dark-3: #141c2e;
  --pc-dark-4: #1a2540;

  /* Greens */
  --pc-green: #8CC63F;
  --pc-green-dark: #6ba32e;
  --pc-green-light: #a8e060;
  --pc-green-glow: rgba(140, 198, 63, 0.35);
  --pc-green-glow-strong: rgba(140, 198, 63, 0.6);
  --pc-green-neon: #b4ff50;
  --pc-green-deep: #2d5a0f;

  /* Accents */
  --pc-orange: #f59e0b;
  --pc-blue: #60a5fa;
  --pc-cyan: #22d3ee;
  --pc-cyan-glow: rgba(34, 211, 238, 0.3);
  --pc-red: #ef4444;
  --pc-purple: #a78bfa;
  --pc-gold: #fbbf24;
  --pc-steel: #6b7d96;

  /* Surfaces */
  --pc-surface: rgba(140, 198, 63, 0.02);
  --pc-surface-hover: rgba(140, 198, 63, 0.06);

  /* Typography */
  --pc-text: #f1f5f9;
  --pc-text-muted: #94a3b8;

  /* Borders */
  --pc-border: rgba(255,255,255,0.08);
  --pc-border-green: rgba(140, 198, 63, 0.15);

  /* Gradients */
  --pc-gradient-dark: linear-gradient(135deg, #060a14 0%, #0c1222 50%, #0a1020 100%);
  --pc-gradient-green: linear-gradient(135deg, #8CC63F, #6ba32e);
  --pc-gradient-card: linear-gradient(180deg, rgba(140,198,63,0.04) 0%, rgba(140,198,63,0) 100%);
  --pc-gradient-cyan: linear-gradient(135deg, #8CC63F, #6ba32e);
  --pc-gradient-holographic: linear-gradient(135deg, rgba(140,198,63,0.8) 0%, rgba(170,220,80,0.6) 50%, rgba(140,198,63,0.8) 100%);

  /* Timing */
  --pc-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --pc-ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --pc-ease-power: cubic-bezier(0.16, 1, 0.3, 1);
}


/* =========================================================================
   KEYFRAMES - ORIGINAL SET (ENHANCED)
   ========================================================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px var(--pc-green-glow); }
  50% { box-shadow: 0 0 40px var(--pc-green-glow-strong), 0 0 60px var(--pc-green-glow), 0 0 80px rgba(140,198,63,0.1); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes scanLine {
  0% { top: -2px; }
  100% { top: 100%; }
}

@keyframes borderGlow {
  0%, 100% { border-color: rgba(140,198,63,0.2); }
  50% { border-color: rgba(140,198,63,0.6); }
}

@keyframes counterUp {
  from { opacity: 0; transform: scale(0.5) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes slideInStagger {
  from { opacity: 0; transform: translateY(40px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes particleFloat {
  0% { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-100vh) translateX(50px) rotate(360deg); opacity: 0; }
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.03; }
  50% { opacity: 0.08; }
}

@keyframes heroImageFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-5px) rotate(0.5deg); }
  75% { transform: translateY(5px) rotate(-0.5deg); }
}

@keyframes neonPulse {
  0%, 100% { text-shadow: 0 0 10px rgba(140,198,63,0.3); }
  50% { text-shadow: 0 0 20px rgba(140,198,63,0.6), 0 0 40px rgba(140,198,63,0.2), 0 0 60px rgba(140,198,63,0.1); }
}

@keyframes progressFill {
  from { width: 0%; }
  to { width: var(--progress-width); }
}

@keyframes checkBounce {
  0% { transform: scale(0); }
  50% { transform: scale(1.3); }
  70% { transform: scale(0.9); }
  100% { transform: scale(1); }
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

@keyframes slideRight {
  from { transform: translateX(-100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* =========================================================================
   KEYFRAMES - NEW PREMIUM SET
   ========================================================================= */

/* Electric spark - random flash effect */
@keyframes electricSpark {
  0%, 100% { opacity: 0; }
  5% { opacity: 1; filter: brightness(3) saturate(2); }
  6% { opacity: 0; }
  15% { opacity: 0; }
  15.5% { opacity: 0.8; filter: brightness(2.5) saturate(1.5); }
  16% { opacity: 0; }
  40% { opacity: 0; }
  40.5% { opacity: 1; filter: brightness(4) saturate(2); }
  41% { opacity: 0.3; }
  41.5% { opacity: 0; }
  70% { opacity: 0; }
  70.3% { opacity: 0.9; filter: brightness(3) saturate(2); }
  71% { opacity: 0; }
}

/* Gear rotation */
@keyframes rotateGear {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Welding flash effect */
@keyframes weldGlow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(245,158,11,0.3);
    background-color: rgba(245,158,11,0.05);
  }
  20% {
    box-shadow: 0 0 30px rgba(255,200,50,0.8), 0 0 60px rgba(245,158,11,0.4);
    background-color: rgba(255,255,255,0.05);
  }
  25% {
    box-shadow: 0 0 50px rgba(255,255,255,0.6), 0 0 80px rgba(245,158,11,0.6);
    background-color: rgba(255,255,255,0.1);
  }
  30% {
    box-shadow: 0 0 25px rgba(245,158,11,0.5);
    background-color: rgba(245,158,11,0.03);
  }
  60% {
    box-shadow: 0 0 15px rgba(245,158,11,0.2);
    background-color: rgba(245,158,11,0.01);
  }
}

/* Smoke rise */
@keyframes smokeRise {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.4;
    filter: blur(4px);
  }
  50% {
    transform: translateY(-40px) translateX(15px) scale(1.5);
    opacity: 0.2;
    filter: blur(8px);
  }
  100% {
    transform: translateY(-80px) translateX(-10px) scale(2);
    opacity: 0;
    filter: blur(16px);
  }
}

/* Metallic sheen sweep */
@keyframes metalSheen {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Typing cursor blink */
@keyframes typingCursor {
  0%, 100% { border-right-color: var(--pc-green); }
  50% { border-right-color: transparent; }
}

/* Orbital float */
@keyframes orbitFloat {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(6px, -6px) rotate(3deg); }
  50% { transform: translate(0, -10px) rotate(0deg); }
  75% { transform: translate(-6px, -6px) rotate(-3deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

/* Glitch flicker */
@keyframes glitchFlicker {
  0%, 100% { opacity: 1; transform: translate(0, 0); }
  10% { opacity: 0.8; transform: translate(-1px, 0); }
  20% { opacity: 1; transform: translate(1px, 0); }
  30% { opacity: 0.9; transform: translate(0, -1px); }
  40% { opacity: 1; transform: translate(0, 0); }
  50% { opacity: 0.95; transform: translate(0.5px, 0.5px); }
  60% { opacity: 1; transform: translate(0, 0); }
}

/* Ripple wave */
@keyframes rippleWave {
  0% {
    transform: scale(0.5);
    opacity: 0.6;
    border-width: 3px;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
    border-width: 1px;
  }
}

/* Gradient shift - cycling colors */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  25% { background-position: 50% 100%; }
  50% { background-position: 100% 50%; }
  75% { background-position: 50% 0%; }
  100% { background-position: 0% 50%; }
}

/* Radar ping for active steps */
@keyframes radarPing {
  0% {
    transform: scale(1);
    opacity: 0.8;
    box-shadow: 0 0 0 0 rgba(140,198,63,0.6);
  }
  70% {
    transform: scale(1.8);
    opacity: 0;
    box-shadow: 0 0 0 15px rgba(140,198,63,0);
  }
  100% {
    transform: scale(1);
    opacity: 0;
    box-shadow: 0 0 0 0 rgba(140,198,63,0);
  }
}

/* Border spin for conic gradient trick */
@keyframes borderSpin {
  0% { --border-angle: 0deg; }
  100% { --border-angle: 360deg; }
}

/* Confetti burst */
@keyframes confettiBurst {
  0% { transform: scale(0) rotate(0deg); opacity: 1; }
  50% { opacity: 1; }
  100% { transform: scale(1.5) rotate(180deg); opacity: 0; }
}

/* Typewriter reveal */
@keyframes typewriterReveal {
  from { max-width: 0; }
  to { max-width: 100%; }
}

/* Progress glow travel */
@keyframes progressGlowTravel {
  0% { left: -20%; }
  100% { left: 120%; }
}

/* Scan line horizontal sweep */
@keyframes scanLineHorizontal {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Pulse ring expansion */
@keyframes pulseRing {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* Green text gradient shift */
@keyframes greenCyanShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Grid pulse second layer */
@keyframes gridPulse2 {
  0%, 100% { opacity: 0.015; }
  50% { opacity: 0.05; }
}

/* Nebula drift */
@keyframes nebulaDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(20px, -10px) scale(1.05); }
  50% { transform: translate(-10px, 15px) scale(0.98); }
  75% { transform: translate(-20px, -5px) scale(1.02); }
}

/* Icon spin wobble */
@keyframes iconSpinWobble {
  0% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(5deg) scale(1.05); }
  50% { transform: rotate(0deg) scale(1); }
  75% { transform: rotate(-5deg) scale(1.05); }
  100% { transform: rotate(0deg) scale(1); }
}

/* Underline expand */
@keyframes underlineExpand {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}


/* =========================================================================
   BODY / BACKGROUND
   ========================================================================= */
.pc-body {
  margin: 0;
  padding: 0;
  background:
    linear-gradient(rgba(10, 14, 26, 0.88), rgba(10, 14, 26, 0.93)),
    url('/images/proyectos_commsa/soldador.jpg') center/cover fixed no-repeat;
  color: var(--pc-text);
  font-family: 'Barlow', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Primary grid layer - 60px fine grid */
.pc-body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(140,198,63,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140,198,63,0.03) 1px, transparent 1px),
    linear-gradient(rgba(140,198,63,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140,198,63,0.015) 1px, transparent 1px),
    radial-gradient(ellipse at 10% 90%, rgba(140,198,63,0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 10%, rgba(140,198,63,0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(6,10,20,0.8) 0%, transparent 80%);
  background-size:
    60px 60px,
    60px 60px,
    120px 120px,
    120px 120px,
    100% 100%,
    100% 100%,
    100% 100%;
  animation: gridPulse 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* Nebula glow at top-right */
.pc-body::after {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 85% 15%, rgba(140,198,63,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 15% 85%, rgba(140,198,63,0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(140,198,63,0.02) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: nebulaDrift 30s ease-in-out infinite;
}


/* =========================================================================
   FLOATING PARTICLES - VARIED SIZES
   ========================================================================= */
.pc-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.pc-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--pc-green);
  border-radius: 50%;
  animation: particleFloat linear infinite;
  opacity: 0;
}

/* Varied particle sizes */
.pc-particle:nth-child(3n+1) {
  width: 2px;
  height: 2px;
  background: var(--pc-green-light);
}

.pc-particle:nth-child(3n+2) {
  width: 3px;
  height: 3px;
  box-shadow: 0 0 6px var(--pc-green-glow), 0 0 12px rgba(140,198,63,0.15);
}

.pc-particle:nth-child(3n) {
  width: 5px;
  height: 5px;
  background: var(--pc-green-neon);
  box-shadow: 0 0 10px var(--pc-green-glow-strong), 0 0 20px rgba(140,198,63,0.2);
}

/* Some light green particles */
.pc-particle:nth-child(7n) {
  background: var(--pc-green-light);
  box-shadow: 0 0 8px var(--pc-green-glow), 0 0 16px rgba(140,198,63,0.1);
}

/* Some gold sparks */
.pc-particle:nth-child(11n) {
  background: var(--pc-gold);
  width: 2px;
  height: 2px;
  box-shadow: 0 0 6px rgba(251,191,36,0.4);
  animation: particleFloat linear infinite, electricSpark 8s ease-in-out infinite;
}


/* =========================================================================
   HEADER - PREMIUM INDUSTRIAL
   ========================================================================= */
.pc-header {
  background: rgba(6, 10, 20, 0.92);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--pc-border-green);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  animation: fadeInDown 0.6s ease;
  overflow: hidden;
}

/* Pulsing bottom green gradient line */
.pc-header::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(140,198,63,0.1) 15%,
    var(--pc-green) 50%,
    rgba(140,198,63,0.1) 85%,
    transparent 100%
  );
  animation: neonPulse 3s ease-in-out infinite;
  z-index: 2;
}

/* Scan line on hover */
.pc-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(140,198,63,0.04), transparent);
  pointer-events: none;
  transition: none;
  z-index: 1;
}

.pc-header:hover::after {
  animation: scanLineHorizontal 1.5s ease-in-out;
}

.pc-header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 3;
}

.pc-header .logos {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pc-header .logos img {
  height: 32px;
  transition: all 0.4s var(--pc-ease-spring);
  filter: drop-shadow(0 0 6px rgba(140,198,63,0.4));
}

.pc-header .logos img:hover {
  filter: brightness(1.2) drop-shadow(0 0 10px rgba(140,198,63,0.6));
  transform: scale(1.05);
}

/* White contrast box for COMMSA logo */
.pc-header .commsa-logo-box {
  background: #fff;
  border-radius: 6px;
  padding: 4px 10px;
  display: flex;
  align-items: center;
}

.pc-header .commsa-logo-box img {
  filter: none;
  height: 28px;
}

.pc-header .commsa-logo-box img:hover {
  filter: brightness(1.05);
}

/* Clean separator between logos */
.pc-header .header-logo-separator {
  width: 2px;
  height: 28px;
  background: linear-gradient(to bottom, transparent, var(--pc-green), transparent);
  opacity: 0.6;
}

/* Header contact links */
.pc-header .header-contact-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--pc-text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.pc-header .header-contact-link:hover {
  color: var(--pc-green);
}

.pc-header .logos .separator {
  width: 2px;
  height: 28px;
  background: linear-gradient(to bottom, transparent, var(--pc-green), transparent);
  opacity: 0.6;
  transition: all 0.4s ease;
  position: relative;
}

.pc-header .logos .separator:hover {
  opacity: 1;
  box-shadow: 0 0 12px var(--pc-green-glow), 0 0 24px rgba(140,198,63,0.15);
  background: linear-gradient(to bottom, transparent, var(--pc-green-neon), transparent);
}

.pc-header .header-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--pc-text-muted);
  font-size: 0.85rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.pc-header .header-contact span,
.pc-header .header-contact a {
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  position: relative;
  color: var(--pc-text-muted);
  text-decoration: none;
}

.pc-header .header-contact span::after,
.pc-header .header-contact a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--pc-green);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right;
}

.pc-header .header-contact span:hover,
.pc-header .header-contact a:hover {
  color: var(--pc-green);
}

.pc-header .header-contact span:hover::after,
.pc-header .header-contact a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.pc-header .header-contact i {
  color: var(--pc-green);
  font-size: 1.1rem;
  filter: drop-shadow(0 0 4px rgba(140,198,63,0.3));
}


/* =========================================================================
   PROGRESS BAR - CIRCUIT BOARD STYLE
   ========================================================================= */
.pc-progress {
  background: rgba(12, 18, 34, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  border-bottom: 1px solid var(--pc-border);
  position: relative;
  overflow: hidden;
}

/* Animated progress fill line with glow */
.pc-progress::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: var(--progress-width, 20%);
  background: var(--pc-gradient-green);
  box-shadow: 0 0 15px var(--pc-green-glow), 0 0 30px rgba(140,198,63,0.15);
  animation: progressFill 0.8s ease-out;
  z-index: 2;
}

/* Traveling glow on the progress line */
.pc-progress::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pc-green-neon), transparent);
  box-shadow: 0 0 20px var(--pc-green-glow-strong);
  animation: progressGlowTravel 3s ease-in-out infinite;
  z-index: 3;
}

.pc-progress .progress-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.pc-progress .steps {
  display: flex;
  justify-content: space-between;
  position: relative;
}

/* Base connection line between steps */
.pc-progress .steps::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 30px;
  right: 30px;
  height: 2px;
  background: rgba(255,255,255,0.06);
  z-index: 0;
}

.pc-progress .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.5s ease backwards;
}

.pc-progress .step:nth-child(1) { animation-delay: 0s; }
.pc-progress .step:nth-child(2) { animation-delay: 0.1s; }
.pc-progress .step:nth-child(3) { animation-delay: 0.2s; }
.pc-progress .step:nth-child(4) { animation-delay: 0.3s; }
.pc-progress .step:nth-child(5) { animation-delay: 0.4s; }

/* Circuit board connection lines between steps */
.pc-progress .step:not(:last-child) .num::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  width: calc(100% + 40px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(140,198,63,0.1) 0px,
    rgba(140,198,63,0.1) 8px,
    transparent 8px,
    transparent 14px
  );
  transform: translateY(-50%);
  z-index: -1;
  pointer-events: none;
}

.pc-progress .step .num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pc-dark-3);
  border: 2px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: 'Chakra Petch', sans-serif;
  transition: all 0.4s var(--pc-ease-spring);
  position: relative;
}

/* Active step - radar ping effect */
.pc-progress .step.active .num {
  background: var(--pc-green);
  border-color: var(--pc-green);
  color: var(--pc-dark);
  box-shadow: 0 0 20px var(--pc-green-glow-strong);
  transform: scale(1.15);
  animation: pulseGlow 2s ease-in-out infinite;
}

.pc-progress .step.active .num::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid var(--pc-green);
  border-radius: 50%;
  animation: radarPing 2s ease-out infinite;
  pointer-events: none;
}

/* Done steps - green trail */
.pc-progress .step.done .num {
  background: var(--pc-green-dark);
  border-color: var(--pc-green);
  color: white;
  animation: checkBounce 0.5s ease;
  box-shadow: 0 0 12px rgba(140,198,63,0.3);
}

.pc-progress .step.done:not(:last-child) .num::after {
  background: linear-gradient(90deg, var(--pc-green), rgba(140,198,63,0.3));
  box-shadow: 0 0 8px var(--pc-green-glow);
  height: 2px;
}

.pc-progress .step .label {
  font-size: 0.72rem;
  color: var(--pc-text-muted);
  text-align: center;
  font-weight: 500;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s;
}

.pc-progress .step.active .label {
  color: var(--pc-green);
  font-weight: 700;
  text-shadow: 0 0 8px rgba(140,198,63,0.3);
}

.pc-progress .step.done .label {
  color: var(--pc-green-dark);
}


/* =========================================================================
   MAIN CONTENT
   ========================================================================= */
.pc-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 24px 100px;
  position: relative;
  z-index: 1;
}


/* =========================================================================
   REVEAL ANIMATION
   ========================================================================= */
.pc-reveal {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeInUp 0.6s ease forwards;
}


/* =========================================================================
   SECTION TITLES - ENHANCED
   ========================================================================= */
.pc-section-title {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--pc-text);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}

.pc-section-title .accent {
  color: var(--pc-green);
  position: relative;
  text-shadow: 0 0 8px rgba(140,198,63,0.2);
}

.pc-section-subtitle {
  color: var(--pc-text-muted);
  font-size: 1.05rem;
  margin-bottom: 36px;
  line-height: 1.5;
}


/* =========================================================================
   LANDING PAGE HERO - PREMIUM
   ========================================================================= */
.pc-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 75vh;
  padding: 60px 0;
  position: relative;
}

/* Huge radial green glow behind hero */
.pc-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(140,198,63,0.06) 0%, rgba(140,198,63,0.02) 35%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.pc-hero-content {
  animation: fadeInLeft 0.8s ease;
  position: relative;
  z-index: 1;
}

.pc-hero-content h1 {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

/* Metallic green text */
.pc-hero-content h1 .green {
  color: var(--pc-green);
  position: relative;
  z-index: 1;
  text-shadow: 0 0 20px rgba(140,198,63,0.3);
}

.pc-hero-content > p {
  font-size: 1.15rem;
  color: var(--pc-text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Stats grid with counter animation */
.pc-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}

.pc-hero-stat {
  text-align: center;
  padding: 18px 10px;
  background: rgba(140,198,63,0.03);
  border: 1px solid var(--pc-border-green);
  border-radius: 14px;
  transition: all 0.4s var(--pc-ease-smooth);
  position: relative;
  overflow: hidden;
}

.pc-hero-stat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(140,198,63,0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

/* Metallic sheen on hover */
.pc-hero-stat::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255,255,255,0.03) 40%,
    rgba(255,255,255,0.06) 50%,
    rgba(255,255,255,0.03) 60%,
    transparent 80%
  );
  background-size: 200% 100%;
  animation: metalSheen 6s ease-in-out infinite;
  pointer-events: none;
}

.pc-hero-stat:hover {
  border-color: rgba(140,198,63,0.4);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(140,198,63,0.15), 0 0 20px rgba(140,198,63,0.08);
}

.pc-hero-stat:hover::before {
  opacity: 1;
}

.pc-hero-stat .number {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--pc-green);
  display: block;
  animation: counterUp 0.8s ease backwards;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 20px rgba(140,198,63,0.3);
}

.pc-hero-stat:nth-child(1) .number { animation-delay: 0.2s; }
.pc-hero-stat:nth-child(2) .number { animation-delay: 0.4s; }
.pc-hero-stat:nth-child(3) .number { animation-delay: 0.6s; }
.pc-hero-stat:nth-child(4) .number { animation-delay: 0.8s; }

.pc-hero-stat .label {
  font-size: 0.72rem;
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--pc-text-muted);
  display: block;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

/* Hero visual - parallax float at different speeds */
.pc-hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  animation: fadeInRight 0.8s ease;
  position: relative;
  z-index: 1;
  perspective: 1000px;
}

.pc-hero-visual img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  height: 180px;
  border: 1px solid var(--pc-border-green);
  transition: all 0.5s var(--pc-ease-smooth);
  position: relative;
  backface-visibility: hidden;
}

/* 3D perspective tilt on hover */
.pc-hero-visual img:hover {
  transform: perspective(1000px) scale(1.04) rotateX(2deg) rotateY(-2deg) translateY(-3px);
  box-shadow:
    0 12px 40px rgba(0,0,0,0.4),
    0 0 20px var(--pc-green-glow),
    inset 0 1px 0 rgba(255,255,255,0.05);
  border-color: rgba(140,198,63,0.4);
}

.pc-hero-visual img:first-child {
  grid-column: 1 / -1;
  height: 230px;
  animation: heroImageFloat 6s ease-in-out infinite;
}

/* Parallax at different speeds per image */
.pc-hero-visual img:nth-child(2) {
  animation: heroImageFloat 7s ease-in-out infinite 0.5s;
}
.pc-hero-visual img:nth-child(3) {
  animation: heroImageFloat 8s ease-in-out infinite 1s;
}
.pc-hero-visual img:nth-child(4) {
  animation: heroImageFloat 7.5s ease-in-out infinite 1.5s;
}
.pc-hero-visual img:nth-child(5) {
  animation: heroImageFloat 6.5s ease-in-out infinite 2s;
}

/* Orbital motion for specific images */
.pc-hero-visual img:nth-child(2) {
  animation: heroImageFloat 7s ease-in-out infinite 0.5s, orbitFloat 12s ease-in-out infinite;
}
.pc-hero-visual img:nth-child(5) {
  animation: heroImageFloat 6.5s ease-in-out infinite 2s, orbitFloat 15s ease-in-out infinite reverse;
}


/* =========================================================================
   CTA BUTTONS - HOLOGRAPHIC PREMIUM
   ========================================================================= */
.btn-pc-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--pc-gradient-green);
  color: var(--pc-dark);
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 16px 36px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--pc-ease-spring);
  text-decoration: none;
  box-shadow: 0 4px 20px var(--pc-green-glow);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
  z-index: 1;
}

/* Metallic shimmer effect */
.btn-pc-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.08) 30%,
    rgba(255,255,255,0.15) 50%,
    rgba(255,255,255,0.08) 70%,
    transparent 100%
  );
  animation: shimmer 3s ease-in-out infinite;
}

/* Pulse ring on CTA */
.btn-pc-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--pc-green);
  border-radius: 14px;
  animation: pulseRing 3s ease-out infinite;
  pointer-events: none;
}

.btn-pc-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 12px 40px var(--pc-green-glow-strong),
    0 0 30px rgba(140,198,63,0.2);
  color: var(--pc-dark);
}

/* Arrow icon slides right on hover */
.btn-pc-primary:hover i,
.btn-pc-primary:hover .bi {
  transform: translateX(4px);
}

.btn-pc-primary i,
.btn-pc-primary .bi {
  transition: transform 0.3s var(--pc-ease-spring);
  position: relative;
  z-index: 2;
}

.btn-pc-primary:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-pc-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--pc-text);
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 14px;
  border: 1px solid var(--pc-border);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-pc-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(140,198,63,0.04), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-pc-secondary:hover {
  border-color: var(--pc-green);
  color: var(--pc-green);
  box-shadow: 0 0 15px var(--pc-green-glow), 0 0 30px rgba(140,198,63,0.08);
}

.btn-pc-secondary:hover::before {
  opacity: 1;
}


/* =========================================================================
   SECTORS PREVIEW - PREMIUM EFFECTS
   ========================================================================= */
.pc-sectors-preview {
  padding: 40px 0;
  position: relative;
}

.pc-sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pc-sector-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 220px;
  cursor: pointer;
  transition: all 0.5s var(--pc-ease-smooth);
  border: 1px solid var(--pc-border-green);
  animation: slideInStagger 0.6s ease backwards;
}

.pc-sector-card:nth-child(1) { animation-delay: 0.1s; }
.pc-sector-card:nth-child(2) { animation-delay: 0.2s; }
.pc-sector-card:nth-child(3) { animation-delay: 0.3s; }
.pc-sector-card:nth-child(4) { animation-delay: 0.4s; }
.pc-sector-card:nth-child(5) { animation-delay: 0.5s; }
.pc-sector-card:nth-child(6) { animation-delay: 0.6s; }

.pc-sector-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--pc-ease-smooth);
}

.pc-sector-card:hover {
  transform: translateY(-6px);
  border-color: rgba(140,198,63,0.4);
  box-shadow:
    0 15px 40px rgba(0,0,0,0.4),
    0 0 25px var(--pc-green-glow),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.pc-sector-card:hover img {
  transform: scale(1.12);
}

.pc-sector-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,10,20,0.95) 0%, rgba(6,10,20,0.2) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: all 0.4s;
}

.pc-sector-card:hover .overlay {
  background: linear-gradient(to top, rgba(6,10,20,0.98) 0%, rgba(140,198,63,0.05) 60%);
}

.pc-sector-card .overlay h4 {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--pc-text);
  margin: 0 0 5px;
  transition: all 0.3s;
}

.pc-sector-card:hover .overlay h4 {
  color: var(--pc-green);
  text-shadow: 0 0 10px rgba(140,198,63,0.3);
}

.pc-sector-card .overlay p {
  font-size: 0.82rem;
  color: var(--pc-text-muted);
  margin: 0;
  font-family: 'Barlow', sans-serif;
}


/* =========================================================================
   CERTIFICATIONS - WITH ORBITAL FLOAT
   ========================================================================= */
.pc-certs {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 20px 0;
  flex-wrap: wrap;
}

.pc-cert {
  text-align: center;
  transition: all 0.4s var(--pc-ease-smooth);
  animation: fadeInUp 0.5s ease backwards;
}

.pc-cert:nth-child(1) { animation-delay: 0.1s; }
.pc-cert:nth-child(2) { animation-delay: 0.2s; }
.pc-cert:nth-child(3) { animation-delay: 0.3s; }
.pc-cert:nth-child(4) { animation-delay: 0.4s; }

.pc-cert:hover {
  transform: translateY(-5px);
}

.pc-cert .icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(140, 198, 63, 0.08);
  border: 1px solid var(--pc-border-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 1.6rem;
  color: var(--pc-green);
  transition: all 0.4s var(--pc-ease-spring);
  position: relative;
}

.pc-cert .icon::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  background: conic-gradient(
    from 0deg,
    rgba(140,198,63,0.3),
    transparent,
    rgba(140,198,63,0.2),
    transparent,
    rgba(140,198,63,0.3)
  );
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}

.pc-cert:hover .icon {
  background: rgba(140, 198, 63, 0.15);
  box-shadow: 0 0 20px var(--pc-green-glow), 0 0 40px rgba(140,198,63,0.1);
  transform: scale(1.1);
  animation: orbitFloat 4s ease-in-out infinite;
}

.pc-cert:hover .icon::before {
  opacity: 1;
}

.pc-cert .name {
  font-size: 0.8rem;
  color: var(--pc-text-muted);
  font-weight: 600;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}


/* =========================================================================
   STEP CARDS GRID
   ========================================================================= */
.pc-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}

.pc-cards-grid.two-cols {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
}


/* =========================================================================
   BASE CARD - MASSIVE UPGRADE
   ========================================================================= */
.pc-card {
  position: relative;
  background: var(--pc-dark-2);
  border: 2px solid var(--pc-border);
  border-radius: 18px;
  padding: 28px;
  cursor: pointer;
  transition: all 0.4s var(--pc-ease-smooth);
  text-align: center;
  overflow: hidden;
  animation: slideInStagger 0.5s ease backwards;
}

.pc-card:nth-child(1) { animation-delay: 0.05s; }
.pc-card:nth-child(2) { animation-delay: 0.1s; }
.pc-card:nth-child(3) { animation-delay: 0.15s; }
.pc-card:nth-child(4) { animation-delay: 0.2s; }
.pc-card:nth-child(5) { animation-delay: 0.25s; }
.pc-card:nth-child(6) { animation-delay: 0.3s; }
.pc-card:nth-child(7) { animation-delay: 0.35s; }
.pc-card:nth-child(8) { animation-delay: 0.4s; }
.pc-card:nth-child(9) { animation-delay: 0.45s; }

/* Gradient overlay */
.pc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(140,198,63,0.03) 0%,
    transparent 40%,
    rgba(140,198,63,0.02) 70%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}

/* Shimmer sweep on hover */
.pc-card:hover::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 1;
  background:
    linear-gradient(
      135deg,
      rgba(140,198,63,0.03) 0%,
      transparent 40%,
      rgba(140,198,63,0.02) 70%,
      transparent 100%
    ),
    linear-gradient(
      110deg,
      transparent 25%,
      rgba(255,255,255,0.04) 45%,
      rgba(255,255,255,0.06) 50%,
      rgba(255,255,255,0.04) 55%,
      transparent 75%
    );
  background-size: 100% 100%, 200% 100%;
  animation: metalSheen 3s ease-in-out;
}

/* 3D tilt on hover */
.pc-card:hover {
  border-color: rgba(140, 198, 63, 0.35);
  background: rgba(140, 198, 63, 0.04);
  transform: perspective(1000px) translateY(-5px) rotateX(2deg) rotateY(-2deg);
  box-shadow:
    0 12px 35px rgba(0,0,0,0.3),
    0 0 15px var(--pc-green-glow),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

/* Selected card - electric glow border + particle burst */
.pc-card.selected {
  border-color: var(--pc-green);
  background: rgba(140, 198, 63, 0.08);
  box-shadow:
    0 0 25px var(--pc-green-glow),
    0 0 50px rgba(140,198,63,0.15),
    0 8px 30px rgba(0,0,0,0.3);
  transform: translateY(-3px);
  animation: slideInStagger 0.5s ease backwards, borderGlow 2s ease-in-out infinite;
}

/* Checkmark with glow burst */
.pc-card.selected::after {
  content: '\2713';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pc-gradient-green);
  color: var(--pc-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  animation: checkBounce 0.4s ease;
  box-shadow:
    0 0 10px var(--pc-green-glow),
    0 0 20px rgba(140,198,63,0.2),
    0 0 40px rgba(140,198,63,0.1);
  z-index: 2;
}

/* Card image type */
.pc-card-img {
  overflow: hidden;
  padding: 0;
  height: 240px;
}

.pc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--pc-ease-smooth);
}

.pc-card-img:hover img {
  transform: scale(1.08);
}

/* Subtle noise texture overlay on image cards */
.pc-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 150px 150px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
}

.pc-card-img .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,10,20,0.96) 0%, rgba(6,10,20,0.15) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  z-index: 2;
}

.pc-card-img .card-overlay h4 {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--pc-text);
  margin: 0 0 4px;
  transition: all 0.3s;
}

.pc-card-img:hover .card-overlay h4 {
  color: var(--pc-green-light);
  text-shadow: 0 0 8px rgba(140,198,63,0.3);
}

.pc-card-img .card-overlay p {
  font-size: 0.82rem;
  color: var(--pc-text-muted);
  margin: 0;
}

/* Card icon */
.pc-card .card-icon {
  font-size: 2.8rem;
  color: var(--pc-green);
  margin-bottom: 14px;
  transition: all 0.4s var(--pc-ease-spring);
  position: relative;
  z-index: 1;
}

.pc-card:hover .card-icon {
  transform: scale(1.15);
  filter: drop-shadow(0 0 12px var(--pc-green-glow));
  animation: orbitFloat 3s ease-in-out infinite;
}

.pc-card.selected .card-icon {
  filter: drop-shadow(0 0 16px var(--pc-green-glow-strong));
}

.pc-card h4 {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}

.pc-card:hover h4 {
  color: var(--pc-green-light);
}

.pc-card p {
  font-size: 0.85rem;
  color: var(--pc-text-muted);
  margin: 0;
  position: relative;
  z-index: 1;
}

.pc-card .tag {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(140, 198, 63, 0.12);
  color: var(--pc-green);
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: 1px solid rgba(140,198,63,0.15);
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.pc-card:hover .tag {
  background: rgba(140, 198, 63, 0.18);
  border-color: rgba(140,198,63,0.3);
  box-shadow: 0 0 8px rgba(140,198,63,0.15);
}

.pc-card.selected .tag {
  background: rgba(140, 198, 63, 0.2);
  border-color: var(--pc-green);
  box-shadow: 0 0 12px rgba(140,198,63,0.2);
}


/* =========================================================================
   FORM ELEMENTS - ELECTRIC FOCUS EFFECTS
   ========================================================================= */
.pc-form-group {
  margin-bottom: 24px;
  position: relative;
}

.pc-form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--pc-text);
  margin-bottom: 10px;
  font-family: 'Barlow', sans-serif;
  transition: color 0.3s;
}

.pc-form-group label .required {
  color: var(--pc-red);
  text-shadow: 0 0 6px rgba(239,68,68,0.3);
}

.pc-input,
.pc-select,
.pc-textarea {
  width: 100%;
  background: var(--pc-dark-2);
  border: 1px solid var(--pc-border);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--pc-text);
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

/* Electric border animation on focus */
.pc-input:focus,
.pc-select:focus,
.pc-textarea:focus {
  outline: none;
  border-color: var(--pc-green);
  box-shadow:
    0 0 0 3px var(--pc-green-glow),
    0 4px 15px rgba(140,198,63,0.1),
    0 0 30px rgba(140,198,63,0.05);
  background: rgba(140,198,63,0.02);
}

/* Glow traveling along border on focus - simulated with box-shadow animation */
.pc-input:focus {
  animation: borderGlow 2s ease-in-out infinite;
}

/* Valid input glow */
.pc-input-glow,
.pc-input:valid:not(:placeholder-shown) {
  border-color: rgba(140,198,63,0.4);
  box-shadow: 0 0 12px rgba(140,198,63,0.1);
}

.pc-input::placeholder,
.pc-textarea::placeholder {
  color: #3d4a5c;
  transition: opacity 0.3s;
}

.pc-input:focus::placeholder,
.pc-textarea:focus::placeholder {
  opacity: 0.5;
}

/* Textarea gradient background shift on focus */
.pc-textarea {
  min-height: 110px;
  resize: vertical;
  transition: all 0.4s ease;
}

.pc-textarea:focus {
  background: linear-gradient(
    180deg,
    rgba(140,198,63,0.03) 0%,
    rgba(6,10,20,0.95) 30%,
    rgba(140,198,63,0.01) 100%
  );
  animation: borderGlow 2s ease-in-out infinite;
}

/* Select with animated custom chevron */
.pc-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238CC63F' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.pc-select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23b4ff50' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
}


/* =========================================================================
   CHIPS / RADIO ITEMS
   ========================================================================= */
.pc-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pc-checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: var(--pc-dark-2);
  border: 1px solid var(--pc-border);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.pc-checkbox-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--pc-gradient-card);
  opacity: 0;
  transition: opacity 0.3s;
}

.pc-checkbox-item:hover {
  border-color: rgba(140, 198, 63, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.pc-checkbox-item:hover::before {
  opacity: 1;
}

.pc-checkbox-item.selected {
  color: var(--pc-green);
  border-color: var(--pc-green);
  background: rgba(140, 198, 63, 0.08);
  box-shadow: 0 0 15px var(--pc-green-glow), 0 0 30px rgba(140,198,63,0.08);
  font-weight: 700;
}


/* =========================================================================
   TOGGLE BUTTONS
   ========================================================================= */
.pc-toggle {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
}

.pc-toggle-btn {
  flex: 1;
  padding: 20px 24px;
  background: var(--pc-dark-2);
  border: 2px solid var(--pc-border);
  border-radius: 16px;
  color: var(--pc-text-muted);
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.4s var(--pc-ease-smooth);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pc-toggle-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--pc-gradient-card);
  opacity: 0;
  transition: opacity 0.3s;
}

.pc-toggle-btn:hover {
  border-color: rgba(140, 198, 63, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.pc-toggle-btn.active {
  border-color: var(--pc-green);
  background: rgba(140, 198, 63, 0.06);
  color: var(--pc-green);
  box-shadow: 0 0 20px var(--pc-green-glow), 0 0 40px rgba(140,198,63,0.08);
}

.pc-toggle-btn.active::before {
  opacity: 1;
}

.pc-toggle-btn.active::after {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: conic-gradient(
    from 0deg,
    rgba(140,198,63,0.4),
    transparent 30%,
    rgba(140,198,63,0.3) 50%,
    transparent 70%,
    rgba(140,198,63,0.4)
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
  pointer-events: none;
}

.pc-toggle-btn i {
  display: block;
  font-size: 2.2rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  transition: all 0.4s var(--pc-ease-spring);
}

.pc-toggle-btn.active i {
  filter: drop-shadow(0 0 8px var(--pc-green-glow));
  animation: orbitFloat 5s ease-in-out infinite;
}


/* =========================================================================
   INFO BANNER - WITH WELD GLOW
   ========================================================================= */
.pc-info-banner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: rgba(140,198,63,0.04);
  border: 1px solid rgba(140,198,63,0.15);
  border-radius: 16px;
  margin-top: 20px;
  animation: fadeInUp 0.5s ease;
  position: relative;
  overflow: hidden;
}

.pc-info-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pc-green), transparent);
  opacity: 0.4;
}

.pc-info-banner-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(140,198,63,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s;
}

.pc-info-banner:hover .pc-info-banner-icon {
  animation: weldGlow 4s ease-in-out;
  box-shadow: 0 0 15px rgba(140,198,63,0.2);
}

.pc-info-banner-icon i {
  font-size: 1.5rem;
  color: var(--pc-green);
}

.pc-info-banner-text h4 {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--pc-green);
  font-size: 1rem;
}

.pc-info-banner-text p {
  color: var(--pc-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}


/* =========================================================================
   NAVIGATION BUTTONS
   ========================================================================= */
.pc-nav-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--pc-border);
  position: relative;
}

/* Green glow divider at the border */
.pc-nav-buttons::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(140,198,63,0.3), transparent);
}

.btn-pc-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pc-text-muted);
  background: none;
  border: 1px solid var(--pc-border);
  padding: 12px 24px;
  border-radius: 12px;
  cursor: pointer;
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-pc-back::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.02), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-pc-back:hover {
  border-color: var(--pc-text-muted);
  color: var(--pc-text);
  transform: translateX(-3px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.btn-pc-back:hover::before {
  opacity: 1;
}

/* Back arrow slides left on hover */
.btn-pc-back:hover i,
.btn-pc-back:hover .bi {
  transform: translateX(-3px);
}

.btn-pc-back i,
.btn-pc-back .bi {
  transition: transform 0.3s var(--pc-ease-spring);
}

.btn-pc-next {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--pc-gradient-green);
  color: var(--pc-dark);
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--pc-ease-spring);
  text-decoration: none;
  box-shadow: 0 4px 15px var(--pc-green-glow);
  position: relative;
  overflow: hidden;
}

/* Shimmer on next button */
.btn-pc-next::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.15),
    rgba(255,255,255,0.08),
    transparent
  );
  animation: shimmer 3s ease-in-out infinite;
}

/* Pulse ring */
.btn-pc-next::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--pc-green);
  border-radius: 12px;
  animation: pulseRing 3s ease-out infinite;
  pointer-events: none;
}

.btn-pc-next:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 30px var(--pc-green-glow-strong), 0 0 20px rgba(140,198,63,0.15);
  color: var(--pc-dark);
}

/* Arrow slides right on hover */
.btn-pc-next:hover i,
.btn-pc-next:hover .bi {
  transform: translateX(4px);
}

.btn-pc-next i,
.btn-pc-next .bi {
  transition: transform 0.3s var(--pc-ease-spring);
  position: relative;
  z-index: 2;
}

.btn-pc-next:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-pc-next:disabled::before,
.btn-pc-next:disabled::after {
  animation: none;
}


/* =========================================================================
   STEP ENTER ANIMATION
   ========================================================================= */
.pc-step-enter {
  animation: fadeInUp 0.5s ease;
}


/* =========================================================================
   CONFIRMATION PAGE - FIREWORK / CONFETTI BURST
   ========================================================================= */
.pc-confirmation {
  text-align: center;
  max-width: 650px;
  margin: 60px auto;
  animation: fadeInScale 0.6s ease;
  position: relative;
}

/* Radial green explosion glow behind check */
.pc-confirmation::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(140,198,63,0.12) 0%, rgba(140,198,63,0.04) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: fadeInScale 1s ease 0.2s backwards;
}

.pc-confirmation .check-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(140, 198, 63, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 3rem;
  color: var(--pc-green);
  box-shadow: 0 0 40px var(--pc-green-glow), 0 0 80px rgba(140,198,63,0.15);
  animation: checkBounce 0.8s ease 0.3s backwards, pulseGlow 2s ease-in-out 1s infinite;
  position: relative;
  z-index: 1;
}

/* Confetti/firework burst particles around check icon */
.pc-confirmation .check-icon::before {
  content: '';
  position: absolute;
  inset: -20px;
  border: 3px solid rgba(140,198,63,0.3);
  border-radius: 50%;
  animation: confettiBurst 1.5s ease 0.8s both;
  pointer-events: none;
}

.pc-confirmation .check-icon::after {
  content: '';
  position: absolute;
  inset: -35px;
  border: 2px dashed rgba(140,198,63,0.2);
  border-radius: 50%;
  animation: confettiBurst 2s ease 1s both;
  pointer-events: none;
}

.pc-confirmation h1 {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 2.4rem;
  margin-bottom: 12px;
  animation: fadeInUp 0.5s ease 0.4s backwards;
  position: relative;
  z-index: 1;
}

/* Code with typewriter reveal effect */
.pc-confirmation .code {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--pc-green);
  margin: 28px 0;
  padding: 20px 40px;
  background: rgba(140, 198, 63, 0.08);
  border: 1px solid rgba(140, 198, 63, 0.25);
  border-radius: 16px;
  display: inline-block;
  animation: fadeInScale 0.5s ease 0.6s backwards, neonPulse 3s ease-in-out infinite;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Typewriter cursor on code */
.pc-confirmation .code::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background: var(--pc-green);
  animation: typingCursor 1s step-end infinite;
  border-radius: 1px;
}

.pc-next-steps {
  text-align: left;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.pc-next-steps h3 {
  font-family: 'Chakra Petch', sans-serif;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.pc-next-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--pc-border);
  animation: slideRight 0.5s ease backwards;
  transition: all 0.3s;
}

.pc-next-step:hover {
  padding-left: 8px;
}

.pc-next-step:nth-child(2) { animation-delay: 0.7s; }
.pc-next-step:nth-child(3) { animation-delay: 0.9s; }
.pc-next-step:nth-child(4) { animation-delay: 1.1s; }

.pc-next-step .step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pc-gradient-green);
  color: var(--pc-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Chakra Petch', sans-serif;
  flex-shrink: 0;
  box-shadow: 0 0 10px var(--pc-green-glow);
  transition: all 0.3s;
}

.pc-next-step:hover .step-num {
  box-shadow: 0 0 20px var(--pc-green-glow-strong);
  transform: scale(1.1);
}

.pc-next-step .step-text strong {
  display: block;
  margin-bottom: 3px;
  font-family: 'Chakra Petch', sans-serif;
}

.pc-next-step .step-text span {
  color: var(--pc-text-muted);
  font-size: 0.9rem;
}


/* =========================================================================
   CTA SECTION
   ========================================================================= */
.pc-cta-section {
  text-align: center;
  padding: 32px 0 24px;
  position: relative;
}

.pc-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--pc-green), transparent);
  box-shadow: 0 0 10px var(--pc-green-glow);
}


/* =========================================================================
   FOOTER - WITH SCAN LINE
   ========================================================================= */
.pc-footer {
  background: var(--pc-dark-2);
  border-top: 1px solid var(--pc-border-green);
  padding: 28px 0;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.pc-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pc-green), transparent);
  box-shadow: 0 0 8px var(--pc-green-glow);
}

.pc-footer p {
  color: var(--pc-text-muted);
  font-size: 0.85rem;
  margin: 4px 0;
}

.pc-footer a {
  color: var(--pc-green);
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
}

.pc-footer a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--pc-green);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right;
}

.pc-footer a:hover {
  text-shadow: 0 0 8px var(--pc-green-glow);
  color: var(--pc-green-neon);
}

.pc-footer a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}


/* =========================================================================
   NEW SECTION: PARTNERSHIP BADGE
   ========================================================================= */
.pc-partnership-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px 40px;
  margin: 40px auto;
  max-width: 420px;
  background: rgba(140,198,63,0.04);
  border: 1px solid rgba(140,198,63,0.2);
  border-radius: 60px;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--pc-text);
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  animation: fadeInScale 0.8s ease;
}

.pc-partnership-badge::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 60px;
  background: conic-gradient(
    from 0deg,
    rgba(140,198,63,0.5),
    transparent 15%,
    transparent 35%,
    rgba(140,198,63,0.4) 50%,
    transparent 65%,
    transparent 85%,
    rgba(140,198,63,0.5)
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
  animation: rotateGear 8s linear infinite;
}

/* Metallic sheen sweep */
.pc-partnership-badge::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255,255,255,0.04) 45%,
    rgba(255,255,255,0.08) 50%,
    rgba(255,255,255,0.04) 55%,
    transparent 70%
  );
  background-size: 200% 100%;
  animation: metalSheen 4s ease-in-out infinite;
  border-radius: 60px;
}

.pc-partnership-badge .times-symbol {
  color: var(--pc-green);
  font-size: 1.4rem;
  text-shadow: 0 0 12px var(--pc-green-glow);
  animation: neonPulse 3s ease-in-out infinite;
}

.pc-partnership-badge .badge-name {
  position: relative;
  z-index: 1;
}

.pc-partnership-badge .badge-name:first-child {
  background: linear-gradient(90deg, var(--pc-green), var(--pc-green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* =========================================================================
   NEW SECTION: IMAGE STRIP - HORIZONTAL SCROLL
   ========================================================================= */
.pc-image-strip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--pc-green-dark) var(--pc-dark-3);
  position: relative;
}

.pc-image-strip::-webkit-scrollbar {
  height: 6px;
}

.pc-image-strip::-webkit-scrollbar-track {
  background: var(--pc-dark-3);
  border-radius: 3px;
}

.pc-image-strip::-webkit-scrollbar-thumb {
  background: var(--pc-green-dark);
  border-radius: 3px;
  transition: background 0.3s;
}

.pc-image-strip::-webkit-scrollbar-thumb:hover {
  background: var(--pc-green);
}

.pc-image-strip img {
  height: 200px;
  width: auto;
  border-radius: 12px;
  border: 1px solid var(--pc-border-green);
  flex-shrink: 0;
  transition: all 0.4s var(--pc-ease-smooth);
  object-fit: cover;
}

.pc-image-strip img:hover {
  transform: scale(1.05) translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4), 0 0 15px var(--pc-green-glow);
  border-color: rgba(140,198,63,0.4);
}


/* =========================================================================
   NEW SECTION: FLOATING BADGE
   ========================================================================= */
.pc-floating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(140,198,63,0.08);
  border: 1px solid rgba(140,198,63,0.2);
  border-radius: 30px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--pc-green);
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  animation: float 4s ease-in-out infinite, fadeInScale 0.5s ease;
  backdrop-filter: blur(8px);
}

.pc-floating-badge::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 30px;
  background: linear-gradient(90deg, rgba(140,198,63,0.3), rgba(170,220,80,0.2), rgba(140,198,63,0.3));
  background-size: 200% 100%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
}

.pc-floating-badge i {
  font-size: 0.9rem;
  filter: drop-shadow(0 0 4px rgba(140,198,63,0.4));
}


/* =========================================================================
   NEW SECTION: GLOW DIVIDER
   ========================================================================= */
.pc-glow-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(140,198,63,0.1) 15%,
    rgba(140,198,63,0.4) 35%,
    var(--pc-green) 50%,
    rgba(140,198,63,0.4) 65%,
    rgba(140,198,63,0.1) 85%,
    transparent 100%
  );
  margin: 40px 0;
  position: relative;
}

.pc-glow-divider::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 9px;
  background: linear-gradient(90deg, transparent, rgba(140,198,63,0.15), transparent);
  filter: blur(4px);
}

.pc-glow-divider::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 3px;
  background: var(--pc-green-neon);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--pc-green-glow-strong), 0 0 20px var(--pc-green-glow);
  animation: neonPulse 2s ease-in-out infinite;
}


/* =========================================================================
   NEW SECTION: TRUST BAR
   ========================================================================= */
.pc-trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 30px 20px;
  background: rgba(140,198,63,0.02);
  border: 1px solid rgba(140,198,63,0.08);
  border-radius: 16px;
  margin: 30px 0;
  position: relative;
  overflow: hidden;
}

.pc-trust-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255,255,255,0.02) 45%,
    rgba(255,255,255,0.04) 50%,
    rgba(255,255,255,0.02) 55%,
    transparent 70%
  );
  background-size: 200% 100%;
  animation: metalSheen 8s ease-in-out infinite;
}

.pc-trust-bar .trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--pc-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.3s;
}

.pc-trust-bar .trust-item:hover {
  color: var(--pc-text);
}

.pc-trust-bar .trust-item i {
  color: var(--pc-green);
  font-size: 1.2rem;
  filter: drop-shadow(0 0 4px rgba(140,198,63,0.3));
}

.pc-trust-bar .trust-item .trust-value {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--pc-green);
}


/* =========================================================================
   NEW SECTION: SERVICE CARD
   ========================================================================= */
.pc-service-card {
  background: var(--pc-dark-2);
  border: 1px solid var(--pc-border);
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s var(--pc-ease-smooth);
  position: relative;
  overflow: hidden;
}

.pc-service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(140,198,63,0.04) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}

.pc-service-card:hover {
  border-color: rgba(140,198,63,0.3);
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.3), 0 0 20px rgba(140,198,63,0.08);
}

.pc-service-card:hover::before {
  opacity: 1;
}

.pc-service-card .service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(140,198,63,0.08);
  border: 1px solid var(--pc-border-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.8rem;
  color: var(--pc-green);
  transition: all 0.4s var(--pc-ease-spring);
}

.pc-service-card:hover .service-icon {
  animation: float 3s ease-in-out infinite;
  box-shadow: 0 0 20px var(--pc-green-glow);
  background: rgba(140,198,63,0.12);
  transform: scale(1.1);
}

.pc-service-card h4 {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--pc-text);
  transition: color 0.3s;
}

.pc-service-card:hover h4 {
  color: var(--pc-green-light);
}

.pc-service-card p {
  font-size: 0.85rem;
  color: var(--pc-text-muted);
  line-height: 1.5;
  margin: 0;
}


/* =========================================================================
   NEW SECTION: STAT COUNTER
   ========================================================================= */
.pc-stat-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 24px 16px;
  position: relative;
}

.pc-stat-counter .counter-value {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--pc-green);
  line-height: 1;
  animation: counterUp 1s var(--pc-ease-power) backwards;
  text-shadow: 0 0 20px rgba(140,198,63,0.3);
  position: relative;
}

/* Number morphing - subtle glitch on the numbers */
.pc-stat-counter .counter-value::after {
  content: attr(data-value);
  position: absolute;
  inset: 0;
  color: var(--pc-green-light);
  opacity: 0;
  animation: glitchFlicker 8s ease-in-out infinite;
  pointer-events: none;
}

.pc-stat-counter .counter-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--pc-text-muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.pc-stat-counter .counter-icon {
  font-size: 1.4rem;
  color: var(--pc-green);
  margin-bottom: 4px;
  filter: drop-shadow(0 0 6px rgba(140,198,63,0.3));
  animation: orbitFloat 6s ease-in-out infinite;
}


/* =========================================================================
   UTILITY: DECORATIVE GEAR ICON
   ========================================================================= */
.pc-gear-deco {
  display: inline-block;
  color: rgba(140,198,63,0.15);
  font-size: 3rem;
  animation: rotateGear 20s linear infinite;
  pointer-events: none;
  user-select: none;
}

.pc-gear-deco.reverse {
  animation-direction: reverse;
  animation-duration: 25s;
}

.pc-gear-deco.small {
  font-size: 1.5rem;
  animation-duration: 15s;
}


/* =========================================================================
   UTILITY: SMOKE EFFECT
   ========================================================================= */
.pc-smoke {
  position: absolute;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, rgba(140,198,63,0.06), transparent);
  border-radius: 50%;
  animation: smokeRise 6s ease-out infinite;
  pointer-events: none;
}

.pc-smoke:nth-child(2) { animation-delay: 2s; left: 20%; }
.pc-smoke:nth-child(3) { animation-delay: 4s; left: 60%; }


/* =========================================================================
   UTILITY: ELECTRIC SPARK OVERLAY
   ========================================================================= */
.pc-spark {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--pc-green-neon);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--pc-green-glow-strong), 0 0 16px var(--pc-green-glow);
  animation: electricSpark 5s ease-in-out infinite;
  pointer-events: none;
}


/* =========================================================================
   UTILITY: ANIMATED GRADIENT TEXT
   ========================================================================= */
.pc-gradient-text {
  background: linear-gradient(135deg, var(--pc-green), var(--pc-green-light), var(--pc-green-neon), var(--pc-green));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease-in-out infinite;
}


/* =========================================================================
   SCROLLBAR STYLING - INDUSTRIAL
   ========================================================================= */
.pc-body::-webkit-scrollbar {
  width: 8px;
}

.pc-body::-webkit-scrollbar-track {
  background: var(--pc-dark);
}

.pc-body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--pc-green-dark), var(--pc-dark-4));
  border-radius: 4px;
  border: 1px solid rgba(140,198,63,0.1);
}

.pc-body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--pc-green), var(--pc-green-dark));
  box-shadow: 0 0 6px var(--pc-green-glow);
}


/* =========================================================================
   SELECTION HIGHLIGHT
   ========================================================================= */
.pc-body ::selection {
  background: rgba(140,198,63,0.3);
  color: var(--pc-text);
}

.pc-body ::-moz-selection {
  background: rgba(140,198,63,0.3);
  color: var(--pc-text);
}


/* =========================================================================
   LINK GLOBAL STYLES
   ========================================================================= */
.pc-body a {
  color: var(--pc-green);
  transition: all 0.3s ease;
}

.pc-body a:hover {
  color: var(--pc-green-neon);
  text-shadow: 0 0 6px rgba(140,198,63,0.3);
}


/* =========================================================================
   RESPONSIVE - 768px
   ========================================================================= */
@media (max-width: 768px) {
  .pc-hero {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 0;
    min-height: auto;
  }

  .pc-hero-content h1 {
    font-size: 2.2rem;
  }

  .pc-hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .pc-cards-grid.two-cols {
    grid-template-columns: 1fr;
  }

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

  .pc-header .header-contact {
    display: none;
  }

  .pc-progress .step .label {
    display: none;
  }

  .pc-section-title {
    font-size: 1.6rem;
  }

  /* Reduce particle count on mobile */
  .pc-particle:nth-child(n+8) {
    display: none;
  }

  /* Bigger touch targets for cards */
  .pc-card {
    padding: 24px 20px;
    min-height: 80px;
  }

  .pc-checkbox-item {
    padding: 14px 20px;
    min-height: 48px;
  }

  .pc-toggle-btn {
    padding: 18px 20px;
    min-height: 60px;
  }

  /* Simplify animations on mobile */
  .pc-card:hover {
    transform: translateY(-3px);
  }

  .pc-hero-visual img:hover {
    transform: scale(1.02) translateY(-2px);
  }

  /* Trust bar stack */
  .pc-trust-bar {
    flex-wrap: wrap;
    gap: 20px;
  }

  /* Partnership badge */
  .pc-partnership-badge {
    padding: 14px 24px;
    font-size: 1rem;
  }

  /* Image strip smaller */
  .pc-image-strip img {
    height: 150px;
  }

  /* Stat counter smaller */
  .pc-stat-counter .counter-value {
    font-size: 2rem;
  }

  /* Service cards */
  .pc-service-card {
    padding: 24px 18px;
  }

  .pc-service-card .service-icon {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }
}


/* =========================================================================
   RESPONSIVE - 480px
   ========================================================================= */
@media (max-width: 480px) {
  .pc-main {
    padding: 28px 16px 70px;
  }

  .pc-section-title {
    font-size: 1.35rem;
  }

  .pc-cards-grid {
    grid-template-columns: 1fr;
  }

  .pc-toggle {
    flex-direction: column;
  }

  .pc-nav-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .pc-nav-buttons .btn-pc-back,
  .pc-nav-buttons .btn-pc-next {
    width: 100%;
    justify-content: center;
  }

  .pc-hero-content h1 {
    font-size: 1.8rem;
  }

  .pc-sector-grid {
    grid-template-columns: 1fr;
  }

  .pc-checkbox-group {
    flex-direction: column;
  }

  .pc-confirmation .code {
    font-size: 1.6rem;
    padding: 16px 24px;
  }

  /* Further reduce particles */
  .pc-particle:nth-child(n+5) {
    display: none;
  }

  /* Hide nebula glow on small screens for performance */
  .pc-body::after {
    display: none;
  }

  /* Simplify second grid layer */
  .pc-body::before {
    background-image:
      linear-gradient(rgba(140,198,63,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(140,198,63,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
  }

  /* Touch-friendly buttons */
  .btn-pc-primary {
    padding: 16px 28px;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }

  .btn-pc-secondary {
    padding: 14px 24px;
    width: 100%;
    justify-content: center;
  }

  /* Floating badge smaller */
  .pc-floating-badge {
    padding: 6px 14px;
    font-size: 0.7rem;
  }

  /* Trust bar single column */
  .pc-trust-bar {
    flex-direction: column;
    gap: 16px;
    padding: 20px 16px;
  }

  /* Partnership badge compact */
  .pc-partnership-badge {
    padding: 12px 20px;
    font-size: 0.9rem;
    gap: 10px;
    max-width: 100%;
  }

  /* Confirmation check icon smaller */
  .pc-confirmation .check-icon {
    width: 70px;
    height: 70px;
    font-size: 2.4rem;
  }

  .pc-confirmation h1 {
    font-size: 1.8rem;
  }

  /* Image strip */
  .pc-image-strip img {
    height: 120px;
  }

  /* Disable 3D tilt on touch */
  .pc-card:hover {
    transform: translateY(-3px);
  }

  /* Stat counter */
  .pc-stat-counter .counter-value {
    font-size: 1.8rem;
  }
}


/* =========================================================================
   RESPONSIVE - 360px (EXTRA SMALL)
   ========================================================================= */
@media (max-width: 360px) {
  .pc-main {
    padding: 20px 12px 60px;
  }

  .pc-hero-content h1 {
    font-size: 1.5rem;
  }

  .pc-hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .pc-hero-stat {
    padding: 12px 6px;
  }

  .pc-hero-stat .number {
    font-size: 1.5rem;
  }

  .pc-confirmation .code {
    font-size: 1.2rem;
    padding: 12px 16px;
    letter-spacing: 1px;
  }

  .pc-progress .step .num {
    width: 30px;
    height: 30px;
    font-size: 0.7rem;
  }
}


/* =========================================================================
   PARTNERSHIP BADGES
   ========================================================================= */
.pc-partnership-hero-badge {
  text-align: center;
  padding: 30px 0 10px;
}

.pc-partnership-inner {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 14px 32px;
  background: rgba(140,198,63,0.04);
  border: 1px solid rgba(140,198,63,0.15);
  border-radius: 60px;
  backdrop-filter: blur(10px);
}

.pc-partnership-inner img {
  filter: drop-shadow(0 0 6px rgba(140,198,63,0.3));
  transition: all 0.3s;
}

.pc-partnership-inner img:hover {
  filter: drop-shadow(0 0 12px rgba(140,198,63,0.5));
  transform: scale(1.05);
}

.pc-badge-times {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--pc-green);
  font-size: 1.3rem;
  font-weight: 700;
  font-family: 'Chakra Petch', sans-serif;
}

.pc-partnership-subtitle {
  color: var(--pc-text-muted);
  font-size: 0.85rem;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 10px;
}

.pc-glow-dot, .pc-glow-dot-lg {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pc-green);
  box-shadow: 0 0 6px rgba(140,198,63,0.3);
}

.pc-glow-dot-lg {
  width: 8px;
  height: 8px;
}

.pc-times {
  color: var(--pc-green);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 2px;
}

.pc-partnership-mini {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(140,198,63,0.04);
  border: 1px solid rgba(140,198,63,0.1);
  border-radius: 30px;
  font-size: 0.8rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--pc-text-muted);
  margin-bottom: 24px;
}

.pc-partnership-mini span:first-child,
.pc-partnership-mini span:nth-child(3) {
  color: var(--pc-green);
  text-transform: uppercase;
}

.pc-mini-times {
  color: var(--pc-green);
  font-weight: 700;
}

.pc-mini-divider {
  color: rgba(255,255,255,0.2);
  margin: 0 4px;
}

.pc-mini-label {
  color: var(--pc-text-muted);
  font-weight: 400;
}

/* =========================================================================
   HERO GRID 2x3
   ========================================================================= */
.pc-hero-grid-2x3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
  height: 100%;
}

.pc-hero-grid-item {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--pc-border-green);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pc-hero-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.pc-hero-grid-item:hover {
  border-color: rgba(140,198,63,0.4);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4), 0 0 15px var(--pc-green-glow);
  transform: scale(1.02);
}

.pc-hero-grid-item:hover img {
  transform: scale(1.08);
}

.pc-hero-grid-item:nth-child(1) { animation: heroImageFloat 6s ease-in-out infinite; }
.pc-hero-grid-item:nth-child(2) { animation: heroImageFloat 7s ease-in-out infinite 0.5s; }
.pc-hero-grid-item:nth-child(3) { animation: heroImageFloat 8s ease-in-out infinite 1s; }
.pc-hero-grid-item:nth-child(4) { animation: heroImageFloat 7.5s ease-in-out infinite 1.5s; }
.pc-hero-grid-item:nth-child(5) { animation: heroImageFloat 6.5s ease-in-out infinite 2s; }
.pc-hero-grid-item:nth-child(6) { animation: heroImageFloat 9s ease-in-out infinite 0.8s; }

.pc-hero-description {
  font-size: 1.1rem;
  color: var(--pc-text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.pc-hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.pc-neon-pulse {
  color: var(--pc-green);
}

.pc-hero-title {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

/* =========================================================================
   IMAGE STRIP (Marquee)
   ========================================================================= */
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.pc-image-strip {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  padding: 24px 0;
  position: relative;
  background: rgba(140,198,63,0.02);
  border-top: 1px solid var(--pc-border-green);
  border-bottom: 1px solid var(--pc-border-green);
}

.pc-image-strip::before,
.pc-image-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.pc-image-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--pc-dark), transparent);
}

.pc-image-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--pc-dark), transparent);
}

.pc-image-strip-track {
  display: flex;
  gap: 16px;
  animation: marqueeScroll 40s linear infinite;
  width: max-content;
}

.pc-image-strip-track img {
  height: 160px;
  width: auto;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--pc-border-green);
  transition: all 0.4s;
  flex-shrink: 0;
}

.pc-image-strip-track img:hover {
  transform: scale(1.05);
  border-color: rgba(140,198,63,0.4);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* =========================================================================
   SECTION HEADERS
   ========================================================================= */
.pc-section-header {
  text-align: center;
  margin-bottom: 24px;
}

.pc-section-icon {
  font-size: 1.8rem;
  color: var(--pc-green);
  display: block;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 8px var(--pc-green-glow));
}

.sector-icon {
  font-size: 1.6rem;
  color: var(--pc-green);
  display: block;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 6px var(--pc-green-glow));
}

.pc-section-header .pc-section-title {
  justify-content: center;
}

.pc-section-header .pc-section-subtitle {
  text-align: center;
}

/* =========================================================================
   SERVICES SECTION
   ========================================================================= */
.pc-services-section {
  padding: 32px 0;
}

.pc-service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(140,198,63,0.08);
  border: 1px solid rgba(140,198,63,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--pc-green);
  margin: 0 auto 14px;
  transition: all 0.4s;
}

.pc-service-card:hover .pc-service-icon {
  transform: scale(1.15) translateY(-4px);
  box-shadow: 0 8px 25px var(--pc-green-glow);
  background: rgba(140,198,63,0.15);
}

/* =========================================================================
   TRUST BAR
   ========================================================================= */
.pc-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 24px 32px;
  background: rgba(140,198,63,0.03);
  border: 1px solid rgba(140,198,63,0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  margin: 16px auto;
  max-width: 900px;
  flex-wrap: wrap;
}

.pc-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--pc-text-muted);
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

.pc-trust-item:hover {
  color: var(--pc-green);
}

.pc-trust-item i {
  color: var(--pc-green);
  font-size: 1.2rem;
}

.pc-trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.1);
}

/* =========================================================================
   CERTIFICATIONS SECTION ENHANCED
   ========================================================================= */
.pc-certs-section {
  padding: 32px 0;
}

.pc-cert .desc {
  font-size: 0.72rem;
  color: rgba(148,163,184,0.7);
  font-family: 'Barlow', sans-serif;
  margin-top: 4px;
  line-height: 1.3;
}

/* =========================================================================
   CLIENTS SECTION
   ========================================================================= */
.pc-clients-section {
  padding: 32px 0;
}

.pc-clients-section .pc-certs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 991px) {
  .pc-clients-section .pc-certs {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 575px) {
  .pc-clients-section .pc-certs {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================================================
   GALLERY SECTION
   ========================================================================= */
.pc-gallery-section {
  padding: 32px 0;
}

.pc-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.pc-gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 200px;
  border: 1px solid var(--pc-border-green);
  transition: all 0.5s;
  cursor: pointer;
}

.pc-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.pc-gallery-item:hover {
  transform: translateY(-4px);
  border-color: rgba(140,198,63,0.4);
  box-shadow: 0 12px 35px rgba(0,0,0,0.4), 0 0 20px var(--pc-green-glow);
}

.pc-gallery-item:hover img {
  transform: scale(1.1);
}

.pc-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,10,20,0.9) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}

.pc-gallery-item:hover .pc-gallery-overlay {
  opacity: 1;
}

.pc-gallery-overlay span {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--pc-green);
}

/* =========================================================================
   CTA SECTION ENHANCED
   ========================================================================= */
.pc-cta-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(140,198,63,0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: pulseGlow 4s ease-in-out infinite;
}

.pc-cta-content {
  position: relative;
  z-index: 1;
}

.pc-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn-pc-lg {
  padding: 18px 44px !important;
  font-size: 1.15rem !important;
}

/* =========================================================================
   SCROLL REVEAL
   ========================================================================= */
.pc-scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.pc-scroll-reveal.pc-scroll-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================================
   GLOW DIVIDER
   ========================================================================= */
.pc-glow-divider {
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(140,198,63,0.4), var(--pc-green), rgba(140,198,63,0.4), transparent);
  margin: 0;
  box-shadow: 0 0 10px var(--pc-green-glow);
  animation: neonPulse 3s ease-in-out infinite;
}

/* =========================================================================
   SCROLL TOP BUTTON
   ========================================================================= */
.pc-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pc-gradient-green);
  color: var(--pc-dark);
  border: none;
  cursor: pointer;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px var(--pc-green-glow);
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  pointer-events: none;
}

.pc-scroll-top-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.pc-scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--pc-green-glow-strong);
}

/* =========================================================================
   FOOTER LOGOS
   ========================================================================= */
.pc-footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 8px;
}

.pc-footer-logos img {
  filter: drop-shadow(0 0 4px rgba(140,198,63,0.2));
  transition: all 0.3s;
}

.pc-footer-logos img:hover {
  filter: drop-shadow(0 0 8px rgba(140,198,63,0.4));
  transform: scale(1.05);
}

.pc-footer-separator {
  color: var(--pc-green);
  font-size: 1.2rem;
}

/* =========================================================================
   CARD IMG TALL
   ========================================================================= */
.pc-card-img-tall {
  height: 280px;
}

.card-icon-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(6,10,20,0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(140,198,63,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--pc-green);
  z-index: 3;
  transition: all 0.3s;
}

.pc-card:hover .card-icon-badge,
.pc-card.selected .card-icon-badge {
  background: rgba(140,198,63,0.9);
  color: var(--pc-dark);
  box-shadow: 0 0 12px var(--pc-green-glow);
}

/* =========================================================================
   MINI GALLERY
   ========================================================================= */
.pc-mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.pc-mini-gallery-sm {
  grid-template-columns: repeat(2, 1fr);
  max-width: 500px;
}

.pc-mini-gallery-item {
  border-radius: 12px;
  overflow: hidden;
  height: 120px;
  border: 1px solid var(--pc-border-green);
  transition: all 0.4s;
}

.pc-mini-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pc-mini-gallery-item:hover {
  border-color: rgba(140,198,63,0.4);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.pc-mini-gallery-item:hover img {
  transform: scale(1.08);
}

/* =========================================================================
   LABEL WITH AUDIO
   ========================================================================= */
.pc-label-with-audio {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--pc-text);
  margin-bottom: 10px;
}

.audio-recorder-inline {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
}

/* =========================================================================
   TOGGLE ENHANCED
   ========================================================================= */
.pc-toggle-enhanced .pc-toggle-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  padding: 24px;
}

.pc-toggle-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 14px;
  background: rgba(140,198,63,0.06);
  border: 1px solid rgba(140,198,63,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.pc-toggle-icon i {
  display: block;
  font-size: 1.5rem;
  margin: 0;
}

.pc-toggle-btn.active .pc-toggle-icon {
  background: rgba(140,198,63,0.15);
  border-color: var(--pc-green);
  box-shadow: 0 0 12px var(--pc-green-glow);
}

.pc-toggle-content {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.pc-toggle-content strong {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 1rem;
  margin-bottom: 2px;
}

.pc-toggle-sub {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--pc-text-muted);
  font-family: 'Barlow', sans-serif;
}

/* =========================================================================
   FORMATS HINT
   ========================================================================= */
.pc-formats-hint {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  background: rgba(140,198,63,0.03);
  border: 1px solid rgba(140,198,63,0.08);
  border-radius: 8px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: var(--pc-text-muted);
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.3px;
}

/* =========================================================================
   INFO BANNER ENHANCED
   ========================================================================= */
.pc-info-banner-lg {
  padding: 28px;
}

.pc-info-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 8px;
}

.pc-info-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  color: var(--pc-text-muted);
  font-size: 0.88rem;
}

.pc-info-hint {
  font-size: 0.82rem;
  color: rgba(148,163,184,0.7);
  margin-top: 8px;
  display: flex;
  align-items: center;
}

/* =========================================================================
   CONFIRMATION PAGE ENHANCED
   ========================================================================= */
.pc-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

@keyframes confettiFall {
  0% { transform: translateY(-20px) rotate(0deg) scale(0); opacity: 0; }
  20% { opacity: 1; transform: translateY(0) rotate(90deg) scale(1); }
  100% { transform: translateY(100px) rotate(720deg) scale(0.5); opacity: 0; }
}

.pc-confetti-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: confettiFall 3s ease-out infinite;
}

.check-icon-glow {
  box-shadow: 0 0 40px var(--pc-green-glow), 0 0 80px var(--pc-green-glow), inset 0 0 30px rgba(140,198,63,0.1);
}

.pc-confirm-subtitle {
  color: var(--pc-text-muted);
  font-size: 0.95rem;
}

.pc-code-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: rgba(140,198,63,0.06);
  border: 2px solid rgba(140,198,63,0.25);
  border-radius: 16px;
  margin: 24px 0;
  animation: neonPulse 3s ease-in-out infinite;
}

.pc-code-text {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--pc-green);
  letter-spacing: 2px;
}

.pc-code-copy {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(140,198,63,0.1);
  border: 1px solid rgba(140,198,63,0.2);
  color: var(--pc-green);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.pc-code-copy:hover {
  background: rgba(140,198,63,0.2);
  transform: scale(1.1);
}

.pc-confirm-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 32px 0 16px;
}

.pc-confirm-separator {
  color: var(--pc-green);
  font-size: 1.2rem;
  font-weight: 700;
}

.pc-confirm-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn-pc-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-pc-whatsapp:hover {
  background: #1fb855;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.3);
}

.btn-pc-whatsapp i {
  font-size: 1.3rem;
}

/* =========================================================================
   CONFIRMATION PAGE BUTTONS - HIGH CONTRAST
   ========================================================================= */
.btn-confirm-nueva {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #8CC63F 0%, #6da832 100%);
  color: #0f172a;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 14px;
  border: 2px solid #8CC63F;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-confirm-nueva:hover {
  background: linear-gradient(135deg, #a3d65c 0%, #8CC63F 100%);
  color: #0f172a;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(140, 198, 63, 0.35);
}

.btn-confirm-web {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #e2e8f0;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-confirm-web:hover {
  border-color: #8CC63F;
  color: #8CC63F;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(140, 198, 63, 0.15);
}

.btn-confirm-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #ffffff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 14px;
  border: 2px solid #25D366;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-confirm-whatsapp:hover {
  background: #1fb855;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}

.btn-confirm-whatsapp i {
  font-size: 1.3rem;
}

/* Confirmation step icons */
.pc-next-step .step-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(140,198,63,0.1);
  border: 1px solid rgba(140,198,63,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--pc-green);
  font-size: 1.2rem;
  transition: all 0.3s;
}

.pc-next-step:hover .step-icon {
  background: var(--pc-gradient-green);
  color: var(--pc-dark);
  box-shadow: 0 0 15px var(--pc-green-glow);
}

/* =========================================================================
   PASO5 FORM SECTIONS
   ========================================================================= */
.pc-form-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--pc-border);
}

.pc-form-section-header i {
  color: var(--pc-green);
  font-size: 1.2rem;
}

.pc-form-section-header h4 {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--pc-text);
  margin: 0;
}

.pc-checkbox-icon {
  margin-right: 6px;
  color: var(--pc-green);
  font-size: 0.9rem;
}

.pc-auth-box {
  padding: 20px;
  background: rgba(140,198,63,0.03);
  border: 1px solid rgba(140,198,63,0.1);
  border-radius: 14px;
  margin-top: 8px;
}

.pc-trust-message {
  text-align: center;
  color: var(--pc-text-muted);
  font-size: 0.82rem;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.pc-trust-message i {
  color: var(--pc-green);
}

/* =========================================================================
   CARD TALL + THREE COLS + INFO NOTE
   ========================================================================= */
.pc-card-tall {
  padding: 32px 24px;
}

.pc-card-tall .card-icon-lg {
  font-size: 3.2rem;
  margin-bottom: 16px;
}

.pc-card .card-desc {
  font-size: 0.83rem;
  color: var(--pc-text-muted);
  line-height: 1.5;
  margin: 0 0 8px;
  position: relative;
  z-index: 1;
}

.pc-cards-grid.three-cols {
  grid-template-columns: repeat(3, 1fr);
}

.pc-info-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(140,198,63,0.03);
  border: 1px solid rgba(140,198,63,0.08);
  border-radius: 12px;
  margin: 20px 0;
  font-size: 0.88rem;
  color: var(--pc-text-muted);
}

.pc-details-row {
  margin-top: 24px;
}

.pc-form-section {
  margin-bottom: 28px;
}

.pc-form-section-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--pc-border);
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--pc-text);
}

.pc-form-section-header i {
  font-size: 1.2rem;
}

.btn-pc-submit {
  padding: 16px 40px !important;
  font-size: 1.05rem !important;
}

.pc-trust-msg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  color: var(--pc-text-muted);
  font-size: 0.82rem;
  margin-top: 16px;
  padding: 10px;
}

/* =========================================================================
   RESPONSIVE ADDITIONS
   ========================================================================= */
@media (max-width: 768px) {
  .pc-hero-grid-2x3 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    height: auto;
  }

  .pc-hero-grid-item:nth-child(n+5) {
    display: none;
  }

  .pc-hero-title {
    font-size: 2.2rem;
  }

  .pc-image-strip-track img {
    height: 120px;
  }

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

  .pc-trust-divider {
    display: none;
  }

  .pc-trust-bar {
    gap: 0;
    padding: 16px;
  }

  .pc-trust-item {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .pc-cards-grid[style*="repeat(5"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .pc-partnership-hero-badge .pc-partnership-inner {
    padding: 10px 20px;
  }

  .pc-partnership-hero-badge .pc-partnership-inner img {
    height: 28px !important;
  }

  .pc-mini-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .pc-card-img-tall {
    height: 200px;
  }

  .pc-code-text {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .pc-hero-title {
    font-size: 1.7rem;
  }

  .pc-gallery-grid {
    grid-template-columns: 1fr;
  }

  .pc-cards-grid[style*="repeat(5"] {
    grid-template-columns: 1fr !important;
  }

  .pc-partnership-inner {
    gap: 10px;
    padding: 10px 18px;
  }

  .pc-confirm-actions {
    flex-direction: column;
  }

  .pc-confirm-actions a {
    width: 100%;
    justify-content: center;
  }

  .pc-code-text {
    font-size: 1.2rem;
  }

  .pc-code-box {
    padding: 14px 20px;
  }
}

/* =========================================================================
   METALLIC INDUSTRIAL EFFECTS
   ========================================================================= */
.pc-sector-card,
.pc-gallery-item,
.pc-service-card,
.pc-card {
  background-image: linear-gradient(
    180deg,
    rgba(255,255,255,0.02) 0%,
    transparent 40%,
    rgba(0,0,0,0.1) 100%
  );
}

.pc-trust-bar,
.pc-info-banner,
.pc-partnership-hero-badge .pc-partnership-inner {
  background-image: linear-gradient(
    135deg,
    rgba(255,255,255,0.03) 0%,
    rgba(140,198,63,0.02) 50%,
    rgba(255,255,255,0.01) 100%
  );
  border: 1px solid rgba(140,198,63,0.12);
}

.pc-section-header::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--pc-green), rgba(140,198,63,0.2));
  margin: 12px auto 0;
  border-radius: 1px;
}

/* =========================================================================
   REDUCED MOTION - ACCESSIBILITY
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .pc-body::before,
  .pc-body::after {
    animation: none !important;
  }

  .pc-particle {
    display: none !important;
  }
}


/* =========================================================================
   PRINT STYLES
   ========================================================================= */
@media print {
  .pc-body {
    background: white;
    color: black;
  }

  .pc-body::before,
  .pc-body::after,
  .pc-particles,
  .pc-particle,
  .pc-gear-deco,
  .pc-smoke,
  .pc-spark {
    display: none !important;
  }

  .pc-header {
    background: white;
    border-bottom: 2px solid #333;
    position: relative;
  }

  .pc-card {
    border: 1px solid #ccc;
    break-inside: avoid;
  }

  .pc-confirmation .check-icon {
    box-shadow: none;
  }
}

/* ============================================================
   AI CHAT WIDGET — Embudo Proyectos COMMSA
   ============================================================ */

.ai-chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  font-family: 'Barlow', sans-serif;
}

.ai-chat-fab {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0c1524, #0f1f35);
  border: 2px solid rgba(139, 198, 63, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.ai-chat-fab:hover {
  transform: scale(1.08);
  border-color: #8CC63F;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.ai-chat-fab-icon {
  font-size: 28px;
  color: #8CC63F;
  z-index: 2;
}

.ai-chat-fab-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(139, 198, 63, 0.3);
  animation: aiFabPulse 2s ease-out infinite;
}

@keyframes aiFabPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

.ai-chat-panel {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 380px;
  max-height: 520px;
  background: #0a1018;
  border: 2px solid rgba(139, 198, 63, 0.3);
  border-radius: 20px;
  overflow: hidden;
  display: none;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(139, 198, 63, 0.1);
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.ai-chat-widget.open .ai-chat-panel {
  display: flex !important;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.ai-chat-widget.open .ai-chat-fab {
  display: none;
}

.ai-chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(15, 23, 42, 0.95);
  border-bottom: 1px solid rgba(139, 198, 63, 0.15);
}

.ai-chat-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(139, 198, 63, 0.2), rgba(139, 198, 63, 0.05));
  border: 2px solid rgba(139, 198, 63, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #8CC63F;
}

.ai-chat-title {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ai-name {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ai-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #8CC63F;
}

.ai-status-dot {
  width: 8px;
  height: 8px;
  background: #8CC63F;
  border-radius: 50%;
  box-shadow: 0 0 8px #8CC63F;
  animation: statusBlink 1.5s ease infinite;
}

@keyframes statusBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.ai-chat-close {
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.2s ease;
}

.ai-chat-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.ai-chat-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 340px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.ai-chat-messages::-webkit-scrollbar {
  display: none;
}

.ai-message {
  display: flex;
  max-width: 85%;
}

.ai-message-bot {
  align-self: flex-start;
}

.ai-message-user {
  align-self: flex-end;
}

.ai-message-content {
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.ai-message-bot .ai-message-content {
  background: rgba(139, 198, 63, 0.1);
  border: 1px solid rgba(139, 198, 63, 0.2);
  color: rgba(255, 255, 255, 0.9);
  border-bottom-left-radius: 4px;
}

.ai-message-user .ai-message-content {
  background: linear-gradient(135deg, #8CC63F, #6db82a);
  color: #0a1018;
  font-weight: 500;
  border-bottom-right-radius: 4px;
}

.ai-quick-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ai-quick-links span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}

.ai-quick-btn {
  padding: 8px 14px;
  border: 1px solid rgba(139, 198, 63, 0.3);
  background: rgba(139, 198, 63, 0.05);
  border-radius: 20px;
  font-size: 0.85rem;
  color: #8CC63F;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Barlow', sans-serif;
}

.ai-quick-btn:hover {
  background: rgba(139, 198, 63, 0.15);
  border-color: #8CC63F;
  transform: translateX(4px);
}

.ai-typing {
  display: flex;
  gap: 4px;
  padding: 12px 16px;
  background: rgba(139, 198, 63, 0.1);
  border: 1px solid rgba(139, 198, 63, 0.2);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  width: fit-content;
}

.ai-typing-dot {
  width: 8px;
  height: 8px;
  background: #8CC63F;
  border-radius: 50%;
  animation: aiTypingDot 1.4s ease-in-out infinite;
}

.ai-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.ai-typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes aiTypingDot {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1); }
}

.ai-chat-input-area {
  display: flex;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(10, 16, 24, 0.95);
  border-top: 1px solid rgba(139, 198, 63, 0.1);
}

.ai-chat-input {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid rgba(139, 198, 63, 0.3);
  background: rgba(15, 23, 42, 0.8);
  border-radius: 24px;
  color: #fff;
  font-size: 0.9rem;
  font-family: 'Barlow', sans-serif;
  outline: none;
  transition: border-color 0.2s ease;
}

.ai-chat-input:focus {
  border-color: #8CC63F;
}

.ai-chat-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.ai-chat-send {
  width: 46px;
  height: 46px;
  border: none;
  background: linear-gradient(135deg, #8CC63F, #6db82a);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #0a1018;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ai-chat-send:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 20px rgba(139, 198, 63, 0.4);
}

/* Mobile adjustments - COMPREHENSIVE STYLES */
@media (max-width: 768px) {
  .ai-chat-widget {
    position: fixed !important;
    bottom: 16px !important;
    right: 16px !important;
    left: auto !important;
    z-index: 9999 !important;
  }

  .ai-chat-fab {
    width: 56px !important;
    height: 56px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #0c1524, #0f1f35) !important;
    border: 2px solid rgba(139, 198, 63, 0.4) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .ai-chat-fab-icon {
    font-size: 24px !important;
    color: var(--pc-green) !important;
  }

  /* Panel MÓVIL - estilos completos */
  .ai-chat-panel {
    position: fixed !important;
    left: 12px !important;
    right: 12px !important;
    bottom: 12px !important;
    top: auto !important;
    width: auto !important;
    max-height: 80vh !important;
    border-radius: 16px !important;
    background: #0a1018 !important;
    background-color: #0a1018 !important;
    border: 2px solid rgba(139, 198, 63, 0.5) !important;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.95) !important;
    overflow: hidden !important;
    z-index: 10000 !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  /* Forzar fondo opaco en todo el panel */
  .ai-chat-panel * {
    background-color: inherit;
  }

  .ai-chat-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #0a1018;
    z-index: -1;
    border-radius: 14px;
  }

  .ai-chat-widget.open .ai-chat-panel {
    display: flex !important;
    flex-direction: column !important;
  }

  /* Header móvil */
  .ai-chat-header {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 14px 16px !important;
    background: #0c1524 !important;
    background-color: #0c1524 !important;
    border-bottom: 1px solid rgba(139, 198, 63, 0.3) !important;
    position: relative !important;
    z-index: 2 !important;
  }

  .ai-chat-avatar {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: rgba(139, 198, 63, 0.15) !important;
    border: 2px solid rgba(139, 198, 63, 0.4) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--pc-green) !important;
    font-size: 20px !important;
  }

  .ai-chat-title {
    flex: 1 !important;
  }

  .ai-name {
    display: block !important;
    font-family: 'Chakra Petch', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    color: #fff !important;
  }

  .ai-status {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 0.75rem !important;
    color: var(--pc-green) !important;
  }

  .ai-status-dot {
    width: 8px !important;
    height: 8px !important;
    background: var(--pc-green) !important;
    border-radius: 50% !important;
  }

  .ai-chat-close {
    width: 36px !important;
    height: 36px !important;
    border: none !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 50% !important;
    color: #fff !important;
    font-size: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Messages area móvil */
  .ai-chat-messages {
    flex: 1 !important;
    padding: 16px !important;
    background-color: #0a1018 !important;
    overflow-y: auto !important;
    min-height: 150px !important;
    max-height: 50vh !important;
  }

  .ai-message {
    display: flex !important;
    max-width: 90% !important;
    margin-bottom: 12px !important;
  }

  .ai-message-bot {
    align-self: flex-start !important;
  }

  .ai-message-user {
    align-self: flex-end !important;
    margin-left: auto !important;
  }

  .ai-message-content {
    padding: 12px 14px !important;
    border-radius: 12px !important;
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
  }

  .ai-message-bot .ai-message-content {
    background-color: rgba(139, 198, 63, 0.1) !important;
    border: 1px solid rgba(139, 198, 63, 0.2) !important;
    color: rgba(255, 255, 255, 0.9) !important;
  }

  .ai-message-user .ai-message-content {
    background: linear-gradient(135deg, var(--pc-green), #6db82a) !important;
    color: #0a1018 !important;
  }

  /* Quick buttons móvil */
  .ai-quick-links {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
  }

  .ai-quick-links span {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
  }

  .ai-quick-btn {
    padding: 10px 14px !important;
    border: 1px solid rgba(139, 198, 63, 0.3) !important;
    background-color: rgba(139, 198, 63, 0.08) !important;
    border-radius: 20px !important;
    font-size: 0.8rem !important;
    color: var(--pc-green) !important;
    font-family: 'Barlow', sans-serif !important;
  }

  /* Input area móvil */
  .ai-chat-input-area {
    display: flex !important;
    gap: 10px !important;
    padding: 12px 16px !important;
    background-color: #0c1524 !important;
    border-top: 1px solid rgba(139, 198, 63, 0.2) !important;
  }

  .ai-chat-input {
    flex: 1 !important;
    padding: 12px 16px !important;
    border: 1px solid rgba(139, 198, 63, 0.3) !important;
    background-color: #0f172a !important;
    border-radius: 24px !important;
    color: #fff !important;
    font-size: 0.9rem !important;
    font-family: 'Barlow', sans-serif !important;
  }

  .ai-chat-input::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
  }

  .ai-chat-send {
    width: 44px !important;
    height: 44px !important;
    border: none !important;
    background: linear-gradient(135deg, var(--pc-green), #6db82a) !important;
    border-radius: 50% !important;
    color: #0a1018 !important;
    font-size: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* ========== FIX CHAT MÓVIL AGRESIVO ========== */
  /* Forzar fondo en el panel principal */
  .ai-chat-widget.open .ai-chat-panel,
  .ai-chat-panel[style*="display: flex"],
  .ai-chat-panel {
    background: #0a1018 !important;
    background-color: #0a1018 !important;
    -webkit-appearance: none !important;
  }

  /* Remover cualquier transparencia no deseada */
  .ai-chat-panel,
  .ai-chat-panel > *,
  .ai-chat-header,
  .ai-chat-messages,
  .ai-chat-input-area {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    -webkit-transform: translateZ(0) !important;
    transform: translateZ(0) !important;
  }

  /* Quick links container fondo */
  .ai-quick-links {
    background-color: transparent !important;
  }

  .ai-quick-btns {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    background-color: transparent !important;
  }
}

/* ============================================================
   CHAT WIDGET EMERGENCY MOBILE FIX - ALTA ESPECIFICIDAD
   Estos estilos tienen máxima prioridad para sobrescribir cualquier cosa
   ============================================================ */
@media screen and (max-width: 768px) {
  /* Panel con ID para máxima especificidad */
  #aiChatPanel,
  .ai-chat-widget #aiChatPanel,
  .ai-chat-widget.open #aiChatPanel,
  div.ai-chat-panel,
  div#aiChatPanel {
    background: #0a1018 !important;
    background-color: #0a1018 !important;
    color: #ffffff !important;
  }

  /* Header del chat */
  #aiChatPanel .ai-chat-header,
  .ai-chat-panel .ai-chat-header {
    background: #0c1524 !important;
    background-color: #0c1524 !important;
    color: #ffffff !important;
  }

  /* Todos los textos dentro del chat */
  #aiChatPanel *,
  .ai-chat-panel * {
    color: inherit !important;
  }

  #aiChatPanel .ai-name,
  .ai-chat-panel .ai-name {
    color: #ffffff !important;
  }

  #aiChatPanel .ai-status,
  .ai-chat-panel .ai-status {
    color: var(--pc-green) !important;
  }

  /* Messages container */
  #aiChatPanel .ai-chat-messages,
  .ai-chat-panel .ai-chat-messages {
    background: #0a1018 !important;
    background-color: #0a1018 !important;
  }

  /* Message content bot */
  #aiChatPanel .ai-message-bot .ai-message-content,
  .ai-chat-panel .ai-message-bot .ai-message-content {
    background: rgba(139, 198, 63, 0.1) !important;
    background-color: rgba(139, 198, 63, 0.1) !important;
    border: 1px solid rgba(139, 198, 63, 0.2) !important;
    color: rgba(255, 255, 255, 0.9) !important;
  }

  /* Quick links text */
  #aiChatPanel .ai-quick-links span,
  .ai-chat-panel .ai-quick-links span {
    color: rgba(255, 255, 255, 0.6) !important;
  }

  /* Quick buttons */
  #aiChatPanel .ai-quick-btn,
  .ai-chat-panel .ai-quick-btn {
    background: rgba(139, 198, 63, 0.08) !important;
    background-color: rgba(139, 198, 63, 0.08) !important;
    border: 1px solid rgba(139, 198, 63, 0.3) !important;
    color: var(--pc-green) !important;
  }

  /* Input area */
  #aiChatPanel .ai-chat-input-area,
  .ai-chat-panel .ai-chat-input-area {
    background: #0c1524 !important;
    background-color: #0c1524 !important;
  }

  /* Input field */
  #aiChatPanel .ai-chat-input,
  .ai-chat-panel .ai-chat-input,
  #aiChatInput {
    background: #0f172a !important;
    background-color: #0f172a !important;
    border: 1px solid rgba(139, 198, 63, 0.3) !important;
    color: #ffffff !important;
  }

  /* Send button */
  #aiChatPanel .ai-chat-send,
  .ai-chat-panel .ai-chat-send,
  #aiChatSend {
    background: var(--pc-green) !important;
    background-color: var(--pc-green) !important;
    border: none !important;
    color: #0a1018 !important;
  }

  /* Close button */
  #aiChatPanel .ai-chat-close,
  .ai-chat-panel .ai-chat-close,
  #aiChatClose {
    background: rgba(255, 255, 255, 0.1) !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: none !important;
    color: #ffffff !important;
  }

  /* Avatar */
  #aiChatPanel .ai-chat-avatar,
  .ai-chat-panel .ai-chat-avatar {
    background: rgba(139, 198, 63, 0.15) !important;
    background-color: rgba(139, 198, 63, 0.15) !important;
    color: var(--pc-green) !important;
  }
}
