/* ============================================
   NetOrbit - Professional Conversion-Focused Design
   Revolutionary, Sober, Minimalist
   ============================================ */

/* ============================================
   IMPORTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap');

/* ============================================
   DESIGN SYSTEM - Minimalist & Professional
   ============================================ */
:root {
  /* Colors - NetOrbit Live Identity (Dark & Electric Blue) */
  --color-bg: #020617;
  /* Slate 950 */
  --color-bg-alt: #0f172a;
  /* Slate 900 */

  /* Text Colors */
  --color-text-primary: #f8fafc;
  /* Slate 50 */
  --color-text-secondary: #94a3b8;
  /* Slate 400 */
  --color-text-muted: #64748b;
  /* Slate 500 */

  /* Brand Colors */
  --color-accent: #3b82f6;
  /* Blue 500 */
  --color-accent-dark: #2563eb;
  /* Blue 600 */
  --color-accent-light: #60a5fa;
  /* Blue 400 */
  --color-accent-glow: 0 0 20px rgba(59, 130, 246, 0.5);

  --color-secondary: #0ea5e9;
  /* Sky 500 */

  --color-border: #1e293b;
  /* Slate 800 */
  --color-success: #10B981;

  /* Typography - Single Professional Font */
  --font-primary: 'Manrope', 'Segoe UI', sans-serif;
  --font-display: 'Space Grotesk', 'Manrope', sans-serif;

  /* Font Sizes - Precise Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Spacing */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 2.5rem;
  --space-6: 3rem;
  --space-8: 4rem;
  --space-10: 5rem;
  --space-12: 6rem;
  --space-16: 8rem;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --max-width-text: 680px;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;

  /* Shadows - Glowy & Dark */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -2px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -4px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 15px rgba(59, 130, 246, 0.3);

  /* Transitions */
  --transition: 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ============================================
   ANIMATIONS & KEYFRAMES
   ============================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

  100% {
    background-position: 200% center;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
  }

  50% {
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.5);
  }
}

/* Utility Animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

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

.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

/* Enhanced Gradient Text */
.text-gradient {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text-primary);
  background: var(--color-bg);
  /* Particle/Star Background Effect */
  background-image:
    radial-gradient(circle at 15% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(14, 165, 233, 0.08) 0%, transparent 25%);
  background-attachment: fixed;
  overflow-x: hidden;
  /* Prevent horizontal scroll from gradients */
}

/* ============================================
   AURORA BACKGROUND
   ============================================ */
.aurora-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
  filter: blur(80px);
  animation: auroraMove 20s infinite alternate;
  pointer-events: none;
}

.aurora-blob-1 {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: rgba(14, 165, 233, 0.2);
  /* Sky Blue */
  border-radius: 50%;
  filter: blur(100px);
  animation: floatBlob 25s infinite alternate;
}

.aurora-blob-2 {
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: rgba(59, 130, 246, 0.15);
  /* Electric Blue */
  border-radius: 50%;
  filter: blur(100px);
  animation: floatBlobReverse 30s infinite alternate;
}

@keyframes auroraMove {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

@keyframes floatBlob {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  100% {
    transform: translate(100px, 100px) rotate(20deg);
  }
}

@keyframes floatBlobReverse {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  100% {
    transform: translate(-100px, -100px) rotate(-20deg);
  }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
}

h1 {
  font-size: var(--text-5xl);
  font-weight: 800;
}

h2 {
  font-size: var(--text-4xl);
  font-weight: 700;
}

h3 {
  font-size: var(--text-3xl);
  font-weight: 700;
}

p {
  color: var(--color-text-secondary);
  line-height: 1.7;
}

strong {
  font-weight: 600;
  color: var(--color-text-primary);
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.container-narrow {
  max-width: var(--max-width-narrow);
}

.container-text {
  max-width: var(--max-width-text);
}

section {
  padding: var(--space-16) 0;
}

/* ============================================
   NAVIGATION - Dark Glass
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(2, 6, 23, 0.7);
  /* Dark semi-transparent */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  /* Cross-browser glass effect */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

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

.nav-logo {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-text-primary);
  letter-spacing: -0.03em;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
  /* Blue text glow */
}

.nav-links {
  display: flex;
  gap: var(--space-6);
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--color-accent);
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.nav-toggle {
  display: none;
}

/* ============================================
   BUTTONS - Glow & Gradient
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-base);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-20deg) translateX(-150%);
  transition: 0.5s;
}

.btn:hover::after {
  transform: skewX(-20deg) translateX(150%);
}

.btn-primary {
  background: var(--color-accent);
  color: white;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.6);
  /* Stronger glow */
}

.btn-secondary {
  background: transparent;
  color: var(--color-text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

.btn-large {
  padding: var(--space-4) var(--space-6);
  font-size: var(--text-lg);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.5);
}

/* ============================================
   HERO - Space & Depth
   ============================================ */
.hero {
  padding-top: calc(72px + var(--space-16));
  padding-bottom: var(--space-16);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  /* Ensure canvas doesn't overflow */
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.6;
  /* Subtle blend */
}

.hero .container {
  position: relative;
  z-index: 1;
  /* Ensure text is above canvas */
}

.hero-label {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent-light);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.1);
}

.hero h1 {
  margin-bottom: var(--space-4);
  color: white;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

#rotating-text {
  color: var(--color-accent);
  transition: opacity 0.3s ease-in-out;
}

.hero-subtitle {
  font-size: var(--text-xl);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-6);
  line-height: 1.6;
}

/* Hero Grid Layout */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.hero-image:hover img {
  transform: scale(1.02);
}

.image-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-image:hover .image-glow {
  opacity: 1;
}

/* Hero Responsive */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .hero-content {
    order: 1;
  }

  .hero-image {
    order: 2;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ============================================
   VISUAL SHOWCASE
   ============================================ */
.visual-showcase {
  padding: var(--space-16) 0;
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}

.showcase-content {
  max-width: 900px;
  margin: 0 auto var(--space-8);
  text-align: center;
}

.showcase-content img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.showcase-text {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.showcase-text h3 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-3);
  color: var(--color-text-primary);
}

.showcase-text p {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ============================================
   SECTIONS & SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.section-label {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-title {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
  color: var(--color-text-primary);
}

.section-description {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  max-width: var(--max-width-text);
  margin: 0 auto;
}

/* ============================================
   CARDS - Dark Glass & Hover Glow
   ============================================ */
.card {
  background: rgba(30, 41, 59, 0.6);
  /* Slate 800 with opacity */
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: var(--transition);
}

.card:hover {
  border-color: var(--color-accent);
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
  /* Blue Glow */
  background: rgba(30, 41, 59, 0.8);
}

/* ============================================
   FEATURES LIST
   ============================================ */
.features-list {
  list-style: none;
  display: grid;
  gap: var(--space-3);
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.features-list li:hover {
  background: rgba(59, 130, 246, 0.05);
  /* Very subtle blue tint */
}

.features-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  /* Blue Check */
  color: white;
  border-radius: 50%;
  font-size: var(--text-sm);
  font-weight: 700;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.4);
}

/* ============================================
   BENTO GRID - Modern Layout
   ============================================ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-4);
  max-width: var(--max-width);
  margin: 0 auto 3rem auto;
}

.bento-item {
  position: relative;
  background: rgba(30, 41, 59, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  overflow: hidden;
  transition: transform 0.3s ease;
  /* Spotlight variables */
  --x: 0px;
  --y: 0px;
}

.bento-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(800px circle at var(--x) var(--y),
      rgba(59, 130, 246, 0.15),
      transparent 40%);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}

.bento-item:hover::before {
  opacity: 1;
}

.bento-item-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-item h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
  color: var(--color-text-primary);
}

.bento-item p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* Bento Sizes */
.bento-col-4 {
  grid-column: span 4;
}

.bento-col-6 {
  grid-column: span 6;
}

.bento-col-8 {
  grid-column: span 8;
}

.bento-col-12 {
  grid-column: span 12;
}

@media (max-width: 900px) {
  .bento-grid {
    display: flex;
    flex-direction: column;
  }

  .bento-col-4,
  .bento-col-6,
  .bento-col-8,
  .bento-col-12 {
    grid-column: span 12;
  }
}

/* Pricing Upgrade in Bento Style */
.pricing-bento-card {
  grid-column: span 12;
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.9) 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  margin-top: var(--space-8);
  text-align: center;
  position: relative;
}

/* ============================================
   PRICING - Highlighted
   ============================================ */
.pricing-card {
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.9) 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  /* Blue border by default */
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* Subtle glow at top of pricing card */
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.pricing-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-2);
}

.pricing-amount {
  font-size: var(--text-5xl);
  font-weight: 800;
  color: white;
  margin-bottom: var(--space-2);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.pricing-note {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison {
  max-width: 900px;
  margin: 0 auto;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.comparison-col h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
}

.comparison-list {
  list-style: none;
  display: grid;
  gap: var(--space-2);
}

.comparison-list li {
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.comparison-col:first-child .comparison-list li::before {
  content: '✗';
  color: var(--color-text-muted);
  margin-right: var(--space-2);
}

.comparison-col:last-child .comparison-list li::before {
  content: '✓';
  color: var(--color-success);
  margin-right: var(--space-2);
  font-weight: 700;
}

#para-quien .comparison-col:first-child .comparison-list li::before {
  content: '✓';
  color: var(--color-success);
}

#para-quien .comparison-col:last-child .comparison-list li::before {
  content: '✗';
  color: var(--color-text-muted);
}

/* ============================================
   PRICING TIER CARDS - NEW
   ============================================ */
.pricing-tiers {
  max-width: var(--max-width);
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.pricing-tier-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.85) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pricing-tier-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pricing-tier-card:hover::before {
  opacity: 1;
}

.pricing-tier-card:hover {
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(59, 130, 246, 0.25);
}

.pricing-tier-card.featured {
  border-color: var(--color-accent);
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.35),
    0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(1.05);
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.95) 100%);
}

.pricing-tier-card.featured::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent) 0%, rgba(14, 165, 233, 0.8) 100%);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
}

.pricing-tier-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 0 50px rgba(59, 130, 246, 0.5),
    0 25px 70px rgba(0, 0, 0, 0.4);
}

.badge-popular {
  position: absolute;
  top: -12px;
  right: var(--space-4);
  background: var(--color-accent);
  color: white;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

.tier-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tier-icon img {
  height: 100%;
  width: auto;
  object-fit: cover;
}

/* Crop each icon from the combined image */
.icon-rocket {
  object-position: 16% center;
  /* Show left third (rocket) */
}

.icon-briefcase {
  object-position: 50% center;
  /* Show middle third (briefcase) */
}

.icon-crown {
  object-position: 84% center;
  /* Show right third (crown) */
}


.tier-header {
  text-align: center;
  margin-bottom: var(--space-4);
}

.tier-header h4 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-1);
  color: var(--color-text-primary);
}

.tier-subtitle {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.tier-price {
  text-align: center;
  margin-bottom: var(--space-4);
  padding: var(--space-4) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-currency {
  font-size: var(--text-2xl);
  color: var(--color-accent);
  font-weight: 700;
  vertical-align: super;
}

.price-value {
  font-size: var(--text-5xl);
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1;
}

.price-from {
  font-size: var(--text-3xl);
  line-height: 1.2;
  display: inline-block;
}

.tier-description {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-6);
  line-height: 1.6;
}

.tier-features {
  list-style: none;
  margin-bottom: var(--space-6);
  flex-grow: 1;
}

.tier-features li {
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.btn-full {
  width: 100%;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-tier-card.featured {
    transform: scale(1);
  }

  .pricing-tier-card.featured:hover {
    transform: translateY(-5px);
  }
}

/* ============================================
   GARANTÍAS - Risk Reduction (PREMIUM)
   ============================================ */
#garantias {
  position: relative;
  overflow: hidden;
}

#garantias::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(14, 165, 233, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.garantias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-8);
  position: relative;
  z-index: 1;
}

.garantia-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.8) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.garantia-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent) 0%, rgba(14, 165, 233, 0.8) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.garantia-card:hover::before {
  transform: scaleX(1);
}

.garantia-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.garantia-card:hover::after {
  opacity: 1;
}

.garantia-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.4),
    0 0 40px rgba(59, 130, 246, 0.2);
}

.garantia-icon {
  font-size: 3.5rem;
  margin-bottom: var(--space-4);
  filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.3));
  transition: transform 0.4s ease;
}

.garantia-card:hover .garantia-icon {
  transform: scale(1.15) rotateY(10deg);
}

.garantia-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  color: var(--color-text-primary);
  font-weight: 700;
}

.garantia-card p {
  color: var(--color-text-secondary);
  line-height: 1.7;
  font-size: var(--text-base);
}

.garantia-card strong {
  color: var(--color-accent);
  font-weight: 600;
}

/* ============================================
   PROCESO - Timeline (PREMIUM)
   ============================================ */
#proceso {
  position: relative;
  overflow: hidden;
}

#proceso::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%);
  pointer-events: none;
}

.proceso-timeline {
  max-width: 900px;
  margin: var(--space-10) auto 0;
  position: relative;
  z-index: 1;
}

.proceso-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 30px;
  bottom: 30px;
  width: 3px;
  background: linear-gradient(180deg,
      var(--color-accent) 0%,
      rgba(59, 130, 246, 0.6) 50%,
      rgba(59, 130, 246, 0.3) 100%);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.proceso-step {
  display: flex;
  gap: var(--space-8);
  margin-bottom: var(--space-10);
  position: relative;
}

.proceso-step:last-child {
  margin-bottom: 0;
}

.step-number {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent) 0%, rgba(59, 130, 246, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  font-weight: 800;
  color: white;
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.6),
    0 10px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.proceso-step:hover .step-number {
  transform: scale(1.15) rotateY(15deg);
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.8),
    0 15px 30px rgba(0, 0, 0, 0.4);
}

.step-content {
  flex: 1;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.9) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.step-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-accent) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.step-content:hover::before {
  opacity: 1;
}

.step-content::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.step-content:hover::after {
  opacity: 1;
}

.proceso-step:hover .step-content {
  border-color: var(--color-accent);
  transform: translateX(8px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3),
    0 0 30px rgba(59, 130, 246, 0.2);
}

.step-content h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-3);
  color: var(--color-text-primary);
  font-weight: 700;
}

.step-content p {
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-3);
  font-size: var(--text-base);
}

.step-time {
  display: inline-block;
  font-size: var(--text-sm);
  color: var(--color-accent);
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: var(--space-1) var(--space-3);
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

@media (max-width: 600px) {
  .proceso-timeline::before {
    left: 24px;
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: var(--text-xl);
  }

  .proceso-step {
    gap: var(--space-4);
  }

  .step-content h3 {
    font-size: var(--text-xl);
  }
}

/* ============================================
   CASES
   ============================================ */
/* ============================================
   CONTACT SECTION (PREMIUM)
   ============================================ */
.hover-glow-card {
  background: rgba(30, 41, 59, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.hover-glow-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 0 50px rgba(59, 130, 246, 0.1);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

.contact-info {
  padding-right: var(--space-6);
}

.contact-info h2 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
  line-height: 1.2;
}

.section-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 20px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.method-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  background: rgba(255, 255, 255, 0.03);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.method-item:hover {
  background: rgba(59, 130, 246, 0.05);
  border-color: rgba(59, 130, 246, 0.2);
  transform: translateX(10px);
}

.method-icon-wrapper {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(14, 165, 233, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.method-text {
  display: flex;
  flex-direction: column;
}

.method-text strong {
  color: var(--color-text-primary);
  font-size: var(--text-lg);
}

.method-text span {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}

.contact-form.glass-panel {
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.8) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.15);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-6);
  color: var(--color-text-primary);
  text-align: center;
}

.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: white;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(59, 130, 246, 0.05);
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.form-privacy {
  text-align: center;
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding-right: 0;
    margin-bottom: var(--space-8);
    text-align: center;
  }

  .contact-methods {
    align-items: center;
  }

  .method-item {
    width: 100%;
    justify-content: center;
  }
}

.cases-grid {
  display: grid;
  gap: var(--space-6);
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.case-card {
  padding: var(--space-6);
}

.case-card h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-3);
}

.case-card p {
  margin-bottom: var(--space-2);
}

.case-metrics {
  list-style: none;
  margin-top: var(--space-3);
}

.case-metrics li {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2);
  font-size: var(--text-sm);
}

.case-metrics li::before {
  content: '✓';
  color: var(--color-success);
  margin-right: var(--space-2);
  font-weight: 700;
}

.case-media {
  margin: var(--space-4) 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.case-media img {
  display: block;
  width: 100%;
  height: auto;
}

.case-site-link {
  display: inline-block;
  margin-top: var(--space-3);
  color: var(--color-accent);
  font-weight: 700;
  text-decoration: none;
}

.case-site-link:hover {
  text-decoration: underline;
}

.hero-secondary-link {
  display: inline-block;
  margin-top: var(--space-2);
  color: var(--color-text-secondary);
  text-decoration: none;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.4);
  padding-bottom: 2px;
}

.hero-secondary-link:hover {
  color: var(--color-text-primary);
  border-bottom-color: rgba(248, 250, 252, 0.6);
}

/* ============================================
   ABOUT
   ============================================ */
.about-content {
  max-width: var(--max-width-text);
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--color-bg-alt);
  text-align: center;
}

.cta-section h2 {
  margin-bottom: var(--space-4);
}

.cta-section p {
  font-size: var(--text-xl);
  margin-bottom: var(--space-6);
  max-width: var(--max-width-text);
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-bg-alt);
  padding: var(--space-8) 0;
  margin-top: var(--space-16);
  border-top: 1px solid var(--color-border);
}

.footer-content {
  text-align: center;
}

.footer-links {
  display: flex;
  gap: var(--space-6);
  justify-content: center;
  margin-bottom: var(--space-4);
}

.footer-links a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-copyright {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1001;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  z-index: -1;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.3;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Tooltip */
.whatsapp-float .tooltip {
  position: absolute;
  right: 70px;
  background: white;
  color: #333;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.whatsapp-float:hover .tooltip {
  opacity: 1;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }

  .whatsapp-float .tooltip {
    display: none;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  :root {
    --text-5xl: 2.25rem;
    /* 36px */
    --text-4xl: 1.875rem;
    /* 30px */
    --text-3xl: 1.5rem;
    /* 24px */
  }

  section {
    padding: var(--space-12) 0;
  }

  .nav-links {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: white;
    padding: var(--space-4);
    gap: var(--space-2);
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition);
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: var(--space-1);
  }

  .nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    transition: var(--transition);
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .hero {
    min-height: auto;
    padding-top: calc(72px + var(--space-12));
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: var(--space-6);
  }

  .card {
    padding: var(--space-4);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-3);
  }

  .pricing-amount {
    font-size: var(--text-4xl);
  }
}

/* ============================================
   MOBILE OPTIMIZATIONS
   ============================================ */

/* Tablets y móviles grandes (landscape) */
@media (max-width: 1024px) {
  :root {
    --text-5xl: 3rem;
    --text-4xl: 2.5rem;
    --text-3xl: 2rem;
  }

  .container {
    padding: 0 var(--space-5);
  }

  .hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .pricing-comparison {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .comparison-option.highlight {
    transform: scale(1);
  }
}

/* Móviles (portrait) */
@media (max-width: 768px) {
  :root {
    --text-5xl: 2.5rem;
    --text-4xl: 2rem;
    --text-3xl: 1.75rem;
    --text-2xl: 1.5rem;
    --text-xl: 1.25rem;
    --space-16: 4rem;
    --space-12: 3rem;
  }

  body {
    font-size: 16px;
  }

  /* Navbar móvil mejorado */
  .navbar {
    padding: var(--space-3) 0;
  }

  .nav-logo {
    font-size: var(--text-xl);
  }

  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(2, 6, 23, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: var(--space-6);
    gap: var(--space-4);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .nav-links a {
    font-size: var(--text-lg);
    padding: var(--space-3) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  /* Hero móvil */
  .hero {
    padding: var(--space-12) 0 var(--space-8);
    min-height: auto;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: var(--space-4);
  }

  .hero-subtitle {
    font-size: var(--text-base);
    line-height: 1.6;
  }

  .hero-cta {
    flex-direction: column;
    gap: var(--space-3);
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  /* Secciones */
  section {
    padding: var(--space-10) 0;
  }

  .section-header {
    margin-bottom: var(--space-6);
  }

  .section-title {
    font-size: var(--text-3xl);
  }

  /* Pricing comparison móvil */
  .pricing-comparison {
    grid-template-columns: 1fr;
  }

  .comparison-option {
    padding: var(--space-5);
  }

  .price-big {
    font-size: var(--text-4xl);
  }

  /* Value breakdown móvil */
  .value-breakdown {
    padding: var(--space-6);
  }

  .value-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .value-item.total {
    grid-column: span 1;
  }

  /* Bento grid móvil */
  .bento-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
  }

  .bento-item {
    padding: var(--space-5);
  }

  /* Comparación móvil */
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  /* Cases móvil */
  .cases-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  /* Botones móvil - más grandes para tocar */
  .btn {
    padding: var(--space-4) var(--space-6);
    font-size: var(--text-base);
    min-height: 48px;
  }

  .btn-large {
    padding: var(--space-5) var(--space-6);
    font-size: var(--text-lg);
    min-height: 56px;
  }

  /* WhatsApp flotante móvil */
  .whatsapp-float {
    bottom: 20px !important;
    right: 20px !important;
    width: 56px !important;
    height: 56px !important;
  }

  .whatsapp-float svg {
    width: 28px !important;
    height: 28px !important;
  }

  .whatsapp-float .tooltip {
    display: none;
  }

  /* Footer móvil */
  .footer-links {
    flex-direction: column;
    gap: var(--space-3);
    text-align: center;
  }
}

/* Móviles pequeños */
@media (max-width: 480px) {
  :root {
    --text-5xl: 2rem;
    --text-4xl: 1.75rem;
    --text-3xl: 1.5rem;
  }

  .container {
    padding: 0 var(--space-4);
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .price-big {
    font-size: var(--text-3xl);
  }

  .value-amount {
    font-size: var(--text-xl);
  }

  .bento-item h3 {
    font-size: var(--text-base);
  }

  .bento-item p {
    font-size: var(--text-sm);
  }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: var(--space-2);
}

.mt-4 {
  margin-top: var(--space-4);
}

.mt-6 {
  margin-top: var(--space-6);
}

.mt-8 {
  margin-top: var(--space-8);
}

.mb-2 {
  margin-bottom: var(--space-2);
}

.mb-4 {
  margin-bottom: var(--space-4);
}

.mb-6 {
  margin-bottom: var(--space-6);
}

.mb-8 {
  margin-bottom: var(--space-8);
}

/* ============================================
   PRICING COMPARISON
   ============================================ */
.pricing-comparison {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin: var(--space-8) 0;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.comparison-option {
  background: rgba(30, 41, 59, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
  transition: transform 0.3s ease;
  position: relative;
}

.comparison-option.highlight {
  border-color: var(--color-accent);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(30, 41, 59, 0.6) 100%);
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
}

.comparison-option .tag {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
  letter-spacing: 0.05em;
}

.comparison-option .tag.best {
  background: var(--color-accent);
  color: white;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

.price-strikethrough {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-text-muted);
  text-decoration: line-through;
  margin: var(--space-2) 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text-primary);
  text-decoration: none;
  transition: var(--transition);
  gap: var(--space-2);
}

/* Logo Container */
.logo-container {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* Logo Icon with Orbit */
.logo-icon {
  position: relative;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.4),
    inset 0 0 10px rgba(59, 130, 246, 0.2);
  animation: orbit-rotate 20s linear infinite;
}

@keyframes orbit-rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.orbit-node {
  position: absolute;
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, var(--color-accent) 0%, #0ea5e9 100%);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.8);
  animation: orbit-pulse 2s ease-in-out infinite;
}

.orbit-node-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.orbit-node-2 {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  animation-delay: 0.66s;
}

.orbit-node-3 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 1.33s;
}

@keyframes orbit-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.6;
  }
}

/* Logo Text */
.logo-text {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.logo-studio {
  font-weight: 400;
  color: var(--color-accent);
  font-size: var(--text-base);
}

.nav-logo:hover .orbit-ring {
  border-color: #0ea5e9;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.6),
    inset 0 0 15px rgba(59, 130, 246, 0.3);
  animation: orbit-rotate 10s linear infinite;
}

.nav-logo:hover .orbit-node {
  animation: orbit-pulse 1s ease-in-out infinite;
}

.nav-logo:hover .logo-text {
  color: white;
}

.price-small {
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-text-secondary);
  margin: var(--space-2) 0;
}

.price-big {
  font-size: var(--text-5xl);
  font-weight: 900;
  color: white;
  margin: var(--space-2) 0;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.price-subtitle {
  font-size: var(--text-base);
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.pricing-features-bad {
  list-style: none;
  padding: 0;
  margin: var(--space-4) 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-align: left;
}

.pricing-features-bad li {
  padding: var(--space-2) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features-good {
  list-style: none;
  padding: 0;
  margin: var(--space-4) 0;
  font-size: var(--text-base);
  color: var(--color-text-primary);
  text-align: left;
}

.pricing-features-good li {
  padding: var(--space-2) 0;
  font-weight: 500;
}

@media (max-width: 900px) {
  .pricing-comparison {
    grid-template-columns: 1fr;
  }

  .comparison-option.highlight {
    transform: scale(1);
  }
}

/* ============================================
   VALUE BREAKDOWN
   ============================================ */
.value-breakdown {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  margin: var(--space-8) 0;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-4);
  background: rgba(30, 41, 59, 0.4);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.value-item.total {
  grid-column: span 3;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(30, 41, 59, 0.6) 100%);
  border-color: var(--color-accent);
}

.value-amount {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: var(--space-1);
}

.value-item.total .value-amount {
  font-size: var(--text-4xl);
  color: white;
}

.value-label {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.value-item.total .value-label {
  font-size: var(--text-lg);
  color: var(--color-text-primary);
  font-weight: 600;
}

@media (max-width: 768px) {
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-item.total {
    grid-column: span 2;
  }
}

/* ============================================
   CTA PRICING
   ============================================ */
.cta-pricing {
  text-align: center;
  margin-top: var(--space-8);
  padding: var(--space-6);
  background: rgba(30, 41, 59, 0.3);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

/* ============================================
   SCALABILITY ROADMAP
   ============================================ */
.scalability-roadmap {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: var(--space-4) 0;
}

.roadmap-step {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-4);
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  position: relative;
  transition: var(--transition);
  z-index: 2;
}

.roadmap-step.active {
  background: rgba(59, 130, 246, 0.1);
  border-color: var(--color-accent);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
}

.roadmap-step:hover {
  transform: translateX(10px);
  background: rgba(30, 41, 59, 0.8);
}

.step-icon {
  font-size: 2rem;
  background: rgba(255, 255, 255, 0.05);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.roadmap-step.active .step-icon {
  background: var(--color-accent);
  color: white;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

.step-content h4 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-1);
  font-size: var(--text-lg);
}

.step-content p {
  font-size: var(--text-sm);
  margin: 0;
}

.step-connector {
  position: absolute;
  top: -20px;
  left: 30px;
  /* Half of icon width */
  width: 2px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.roadmap-step.active+.roadmap-step .step-connector {
  background: linear-gradient(to bottom, var(--color-accent), rgba(255, 255, 255, 0.1));
}

.badge-future {
  display: inline-block;
  font-size: 0.7rem;
  background: var(--color-success);
  color: white;
  padding: 2px 8px;
  border-radius: 10px;
  margin-top: var(--space-2);
  text-transform: uppercase;
  font-weight: 700;
}

/* ============================================
   CONTACT FORM & GRID
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

.contact-info {
  text-align: left;
}

.contact-info h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
}

.contact-methods {
  margin-top: var(--space-6);
  display: grid;
  gap: var(--space-4);
}

.method-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.method-icon {
  font-size: 1.5rem;
}

.method-text {
  display: flex;
  flex-direction: column;
}

.method-text strong {
  color: var(--color-text-primary);
}

.method-text span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* Form Styling */
.contact-form-wrapper {
  background: rgba(30, 41, 59, 0.6);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.2);
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: var(--space-4);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-1);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-3);
  background: rgba(2, 6, 23, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: white;
  font-family: var(--font-primary);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.form-privacy {
  text-align: center;
  margin-top: var(--space-3);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ============================================
   TECH MARQUEE
   ============================================ */
.tech-marquee-container {
  width: 100%;
  background: rgba(15, 23, 42, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: var(--space-4) 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.tech-marquee-container::before,
.tech-marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.tech-marquee-container::before {
  left: 0;
  background: linear-gradient(to right, rgba(2, 6, 23, 1), transparent);
}

.tech-marquee-container::after {
  right: 0;
  background: linear-gradient(to left, rgba(2, 6, 23, 1), transparent);
}


/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.faq-item {
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  background: rgba(30, 41, 59, 0.6);
  border-color: rgba(59, 130, 246, 0.3);
}

.faq-item.active {
  background: rgba(30, 41, 59, 0.8);
  border-color: var(--color-accent);
}

.faq-question {
  padding: var(--space-4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.faq-question h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
}

.faq-icon {
  font-size: var(--text-xl);
  color: var(--color-accent);
  transition: transform 0.3s ease;
  font-weight: 400;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  padding: 0 var(--space-4);
}

.faq-item.active .faq-answer {
  padding-bottom: var(--space-4);
}


/* ============================================
   LGO & ANIMATIONS (REMOVED)
   ============================================ */
/* Logo styles removed as per user request */



/* Hero Layout Reset */
/* .hero .container previously had flex for logo, now text centered or default block */
.hero .container {
  display: block;
  /* Revert to block if needed or keep relative */
}

.hero-content {
  text-align: center;
  /* Ensure contents are centered */
  margin: 0 auto;
  max-width: 800px;
  /* Limit width for reading */
}

/* Responsive Logo adjustments REMOVED */


/* ============================================
   TECH MARQUEE (Base Styles)
   ============================================ */
.tech-marquee-container {
  width: 100%;
  max-width: 100vw;
  /* Prevent overflow */
  background: rgba(15, 23, 42, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: var(--space-4) 0;
  overflow: hidden;
  /* Critical for marquee */
  position: relative;
  z-index: 10;
  display: flex;
  /* Centering helper */
  justify-content: flex-start;
}

.tech-marquee {
  width: 100%;
  overflow: hidden;
  /* Double safety */
  display: flex;
}

.tech-track {
  display: flex;
  flex-flow: row nowrap;
  /* Force row */
  gap: var(--space-8);
  animation: scroll 30s linear infinite;
  padding-left: var(--space-8);
  will-change: transform;
  /* Hint for smoother animation */
}

/* Reduced animation speed/gap for mobile in media query below */

.tech-item {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.6;
  white-space: nowrap;
  /* Prevent breaking */
  flex-shrink: 0;
  /* Prevent shrinking */
  display: flex;
  align-items: center;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Mobile Tweaks (Placed AFTER base styles to override correctly) */
@media (max-width: 480px) {
  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: var(--space-6);
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: var(--space-3);
  }

  .hero-subtitle {
    font-size: 0.95rem;
    /* readable base size */
    padding: 0 var(--space-2);
  }

  /* Marquee Mobile Overrides */
  .tech-track {
    gap: var(--space-4);
    animation-duration: 20s;
    /* Faster on small screens or keep consistent */
  }

  .tech-item {
    font-size: 0.8rem;
    margin: 0;
  }

  /* Layout Stacking Fixes */
  .container {
    padding-left: var(--space-3);
    padding-right: var(--space-3);
  }

  /* Roadmap Mobile */
  .roadmap-step {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-4);
  }

  .step-icon {
    margin-bottom: var(--space-1);
  }

  .step-connector {
    display: none;
    /* Hide connector on mobile to clean up layout */
  }

  /* Pricing/Value Mobile */
  .value-grid {
    grid-template-columns: 1fr;
    /* Stack vertically */
  }

  .value-item.total {
    grid-column: span 1;
  }
}


@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Global Image Safety */
img {
  max-width: 100%;
  height: auto;
}

/* ============================================
   NETORBIT V4 - LUXE OVERRIDES
   ============================================ */
:root {
  --color-bg: #070b14;
  --color-bg-alt: #0d1424;
  --color-text-primary: #eef4ff;
  --color-text-secondary: #b6c2d9;
  --color-text-muted: #7f8aa3;
  --color-accent: #2dd4bf;
  --color-accent-dark: #0ea5a3;
  --color-accent-light: #7de7db;
  --color-border: #1b2840;
  --color-success: #34d399;
  --shadow-glow: 0 0 32px rgba(45, 212, 191, 0.24);
}

body {
  background:
    radial-gradient(1200px 700px at 12% -10%, rgba(45, 212, 191, 0.18), transparent 55%),
    radial-gradient(1100px 700px at 95% 10%, rgba(125, 231, 219, 0.12), transparent 52%),
    linear-gradient(180deg, #060a13 0%, #0a1220 48%, #09111e 100%);
  background-attachment: fixed;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.navbar {
  background: rgba(8, 13, 26, 0.62);
  border-bottom: 1px solid rgba(125, 231, 219, 0.12);
  box-shadow: 0 14px 45px rgba(2, 6, 23, 0.5);
}

.navbar.scrolled {
  background: rgba(6, 11, 21, 0.88);
  border-bottom-color: rgba(125, 231, 219, 0.2);
}

.nav-links a {
  color: #c9d5ea;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.nav-links a:hover {
  color: var(--color-accent-light);
  text-shadow: 0 0 16px rgba(45, 212, 191, 0.45);
}

.hero {
  min-height: 92vh;
}

.hero .container {
  max-width: 1240px;
}

.hero-grid {
  gap: var(--space-10);
}

.hero-content {
  text-align: left;
  max-width: 660px;
}

.hero-label {
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.18), rgba(45, 212, 191, 0.08));
  border: 1px solid rgba(125, 231, 219, 0.34);
  color: #bdf7ef;
  box-shadow: 0 8px 24px rgba(45, 212, 191, 0.14);
}

.hero h1 {
  font-size: clamp(2.2rem, 5.4vw, 4.5rem);
  line-height: 1.04;
  text-wrap: balance;
  text-shadow: none;
}

#rotating-text {
  color: var(--color-accent-light);
}

.hero-subtitle {
  font-size: clamp(1.03rem, 1.4vw, 1.28rem);
  max-width: 60ch;
  color: #c2cee3;
}

.hero-image img {
  border: 1px solid rgba(125, 231, 219, 0.22);
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(2, 6, 23, 0.7);
}

.image-glow {
  background: radial-gradient(circle at 50% 50%, rgba(45, 212, 191, 0.32), transparent 70%);
}

.btn {
  border-radius: 14px;
  font-weight: 700;
}

.btn-primary {
  background: linear-gradient(135deg, #14b8a6, #2dd4bf);
  color: #04131b;
  box-shadow: 0 10px 28px rgba(45, 212, 191, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0ea5a3, #14b8a6);
  box-shadow: 0 14px 34px rgba(45, 212, 191, 0.42);
}

.btn-secondary {
  border: 1px solid rgba(125, 231, 219, 0.26);
}

.btn-secondary:hover {
  border-color: rgba(125, 231, 219, 0.58);
  color: #d8fff8;
}

.hero-secondary-link {
  color: #c7d4ea;
  border-bottom-color: rgba(125, 231, 219, 0.34);
}

.hero-secondary-link:hover {
  color: #d9fff9;
}

.section-header {
  margin-bottom: var(--space-8);
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  text-wrap: balance;
}

.section-label {
  background: rgba(45, 212, 191, 0.08);
  border: 1px solid rgba(125, 231, 219, 0.24);
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: var(--space-5);
}

.pricing-tier-card {
  background: linear-gradient(165deg, rgba(19, 30, 52, 0.84) 0%, rgba(8, 14, 26, 0.88) 100%);
  border: 1px solid rgba(125, 231, 219, 0.12);
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(2, 6, 23, 0.45);
}

.pricing-tier-card:hover {
  transform: translateY(-10px);
  border-color: rgba(125, 231, 219, 0.45);
  box-shadow: 0 24px 55px rgba(2, 6, 23, 0.58), 0 0 40px rgba(45, 212, 191, 0.15);
}

.pricing-tier-card.featured {
  border-color: rgba(125, 231, 219, 0.55);
  box-shadow: 0 0 0 1px rgba(125, 231, 219, 0.2), 0 28px 65px rgba(2, 6, 23, 0.62);
}

.pricing-tier-card.featured::after {
  background: linear-gradient(90deg, #2dd4bf 0%, #7de7db 100%);
  box-shadow: 0 0 24px rgba(45, 212, 191, 0.45);
}

.badge-popular {
  background: linear-gradient(135deg, #2dd4bf, #99f6e4);
  color: #03201f;
  box-shadow: 0 10px 26px rgba(45, 212, 191, 0.42);
}

.tier-description,
.tier-features li {
  color: #bfd0e9;
}

.comparison-grid {
  gap: var(--space-4);
}

.comparison-col {
  background: linear-gradient(160deg, rgba(16, 26, 46, 0.86), rgba(10, 17, 31, 0.9));
  border: 1px solid rgba(125, 231, 219, 0.15);
  border-radius: 16px;
  padding: var(--space-6);
}

.comparison-list li {
  border-bottom: 1px dashed rgba(125, 231, 219, 0.12);
}

.comparison-list li:last-child {
  border-bottom: 0;
}

.cases-grid {
  max-width: var(--max-width);
  grid-template-columns: repeat(2, minmax(290px, 1fr));
}

.case-card {
  background: linear-gradient(165deg, rgba(20, 31, 54, 0.78), rgba(10, 16, 30, 0.84));
  border: 1px solid rgba(125, 231, 219, 0.14);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(2, 6, 23, 0.38);
}

.case-card h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.case-media {
  border: 1px solid rgba(125, 231, 219, 0.35);
}

.case-site-link {
  color: #9ef5e7;
}

.cta-section {
  background: transparent;
}

.hover-glow-card {
  border: 1px solid rgba(125, 231, 219, 0.16);
  background: linear-gradient(160deg, rgba(13, 22, 40, 0.84), rgba(8, 14, 26, 0.9));
  box-shadow: 0 25px 50px rgba(2, 6, 23, 0.5);
}

.hover-glow-card:hover {
  border-color: rgba(125, 231, 219, 0.34);
  box-shadow: 0 28px 60px rgba(2, 6, 23, 0.6), 0 0 40px rgba(45, 212, 191, 0.12);
}

.contact-form-wrapper {
  border: 1px solid rgba(125, 231, 219, 0.2);
}

.form-group input,
.form-group textarea {
  border: 1px solid rgba(125, 231, 219, 0.2);
  background: rgba(4, 10, 20, 0.75);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(125, 231, 219, 0.65);
  box-shadow: 0 0 0 2px rgba(45, 212, 191, 0.2);
}

.footer {
  border-top: 1px solid rgba(125, 231, 219, 0.14);
  background: rgba(8, 13, 24, 0.85);
}

.footer-links a {
  color: #bed2ed;
}

.footer-links a:hover {
  color: #d8fff9;
}

.whatsapp-float {
  background: linear-gradient(135deg, #25d366, #40e67e) !important;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.35) !important;
}

@media (max-width: 1000px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .cases-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .hero-content {
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================================
   NETORBIT V5 - PREMIUM IMAGE SYSTEM
   ============================================ */
.hero-trust {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: var(--space-4);
}

.hero-trust-chip {
  font-size: 0.74rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #d6fff7;
  background: rgba(14, 25, 43, 0.72);
  border: 1px solid rgba(125, 231, 219, 0.3);
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
}

.hero-visual-frame {
  position: relative;
  border-radius: 20px;
  padding: 14px;
  border: 1px solid rgba(125, 231, 219, 0.26);
  background: linear-gradient(160deg, rgba(12, 22, 39, 0.95), rgba(5, 10, 20, 0.92));
  box-shadow: 0 34px 70px rgba(2, 6, 23, 0.62);
  transform-style: preserve-3d;
}

.hero-visual-frame::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 14px;
  width: 48px;
  height: 10px;
  border-radius: 20px;
  background: radial-gradient(circle at 6px 5px, #ff5f57 0 4px, transparent 4px),
    radial-gradient(circle at 22px 5px, #febc2e 0 4px, transparent 4px),
    radial-gradient(circle at 38px 5px, #28c840 0 4px, transparent 4px);
  opacity: 0.8;
  z-index: 3;
}

.hero-main-shot {
  display: block;
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(125, 231, 219, 0.2);
}

.hero-secondary-shot {
  position: absolute;
  width: 52%;
  right: -24px;
  bottom: -28px;
  border-radius: 12px;
  border: 1px solid rgba(125, 231, 219, 0.35);
  box-shadow: 0 18px 36px rgba(2, 6, 23, 0.56);
  transform: rotate(-6deg) translate3d(calc(var(--mx, 0) * -2px), calc(var(--my, 0) * -2px), 0);
  transition: transform 180ms ease;
  background: #0a1321;
}

.hero-metric {
  position: absolute;
  padding: 0.48rem 0.72rem;
  border-radius: 11px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #dffff8;
  background: rgba(8, 18, 31, 0.88);
  border: 1px solid rgba(125, 231, 219, 0.36);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 24px rgba(2, 6, 23, 0.48);
}

.hero-metric-a {
  left: -18px;
  top: 18%;
  transform: translate3d(calc(var(--mx, 0) * 2px), calc(var(--my, 0) * 2px), 0);
}

.hero-metric-b {
  right: -18px;
  top: 58%;
  transform: translate3d(calc(var(--mx, 0) * 3px), calc(var(--my, 0) * 2px), 0);
}

.case-media-browser {
  position: relative;
  padding-top: 24px;
  background: linear-gradient(180deg, rgba(8, 15, 28, 0.96), rgba(8, 15, 28, 0.82));
}

.case-media-browser::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 12px;
  width: 46px;
  height: 10px;
  border-radius: 30px;
  background: radial-gradient(circle at 6px 5px, #ff5f57 0 4px, transparent 4px),
    radial-gradient(circle at 22px 5px, #febc2e 0 4px, transparent 4px),
    radial-gradient(circle at 38px 5px, #28c840 0 4px, transparent 4px);
  opacity: 0.75;
  z-index: 2;
}

.case-media-browser figcaption {
  padding: 0.55rem 0.85rem 0.75rem;
  font-size: 0.78rem;
  color: #9db1cf;
  letter-spacing: 0.02em;
}

#servicio,
#diferencia,
#para-quien,
#casos,
#contacto {
  position: relative;
}

#servicio::after,
#diferencia::after,
#para-quien::after,
#casos::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(90%, 960px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(125, 231, 219, 0.24), transparent);
}

@media (max-width: 900px) {
  .hero-trust {
    justify-content: center;
  }

  .hero-secondary-shot {
    width: 56%;
    right: -10px;
    bottom: -22px;
  }

  .hero-metric-a,
  .hero-metric-b {
    position: static;
    display: inline-block;
    margin-top: 0.7rem;
    transform: none;
  }

  .hero-visual-frame {
    padding-bottom: 18px;
  }
}

/* ============================================
   NETORBIT V6 - CINEMATIC FLOW
   ============================================ */
html.js body {
  opacity: 1;
}

.section-cinematic {
  position: relative;
  isolation: isolate;
}

.section-cinematic::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(125, 231, 219, 0.03) 0%, transparent 22%),
    radial-gradient(90% 120% at 50% 0%, rgba(45, 212, 191, 0.08) 0%, transparent 64%);
  pointer-events: none;
  z-index: -1;
}

.section-cinematic .section-header {
  transform: translateY(0);
  transition: transform 420ms ease;
}

.section-cinematic:hover .section-header {
  transform: translateY(-2px);
}

.pricing-tier-card,
.case-card,
.comparison-col {
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
}

.case-card:hover {
  transform: translateY(-8px);
  border-color: rgba(125, 231, 219, 0.35);
  box-shadow: 0 24px 48px rgba(2, 6, 23, 0.55), 0 0 36px rgba(45, 212, 191, 0.14);
}

.case-media-browser {
  overflow: hidden;
}

.case-media-browser img {
  transform: scale(1.01);
  transition: transform 450ms ease;
}

.case-card:hover .case-media-browser img {
  transform: scale(1.04);
}

.case-media-browser::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background: linear-gradient(180deg, transparent 0%, rgba(6, 10, 18, 0.32) 100%);
  pointer-events: none;
}

@media (max-width: 900px) {
  html.js body {
    opacity: 1;
  }
}

/* ============================================
   NETORBIT V6.1 - CONVERSION LAYER
   ============================================ */
.hero-proof {
  margin-top: var(--space-4);
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 0.65rem;
  max-width: 640px;
}

.hero-proof-item {
  background: rgba(10, 18, 32, 0.76);
  border: 1px solid rgba(125, 231, 219, 0.24);
  border-radius: 12px;
  padding: 0.65rem 0.75rem;
}

.hero-proof-item strong {
  display: block;
  font-size: 0.95rem;
  color: #d8fff9;
  margin-bottom: 0.15rem;
}

.hero-proof-item span {
  font-size: 0.74rem;
  color: #9fb0cb;
}

.conversion-band {
  padding: var(--space-10) 0;
}

.conversion-band-card {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-8);
  border-radius: 20px;
  border: 1px solid rgba(125, 231, 219, 0.28);
  background:
    radial-gradient(80% 140% at 50% -20%, rgba(45, 212, 191, 0.2), rgba(8, 14, 26, 0.94) 56%),
    linear-gradient(160deg, rgba(11, 20, 36, 0.92), rgba(7, 13, 24, 0.95));
  box-shadow: 0 30px 70px rgba(2, 6, 23, 0.62), 0 0 40px rgba(45, 212, 191, 0.14);
}

.conversion-band-kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  color: #a8efe4;
  margin-bottom: 0.65rem;
}

.conversion-band-card h3 {
  font-size: clamp(1.4rem, 2.8vw, 2.15rem);
  margin-bottom: 0.65rem;
}

.conversion-band-card p {
  margin-bottom: var(--space-4);
}

@media (max-width: 900px) {
  .hero-proof {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}

/* ============================================
   NETORBIT V7 - ANTI TEMPLATE
   ============================================ */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.18;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.01) 0 1px, transparent 1px 4px);
}

.section-cinematic[data-section] .section-header {
  position: relative;
  padding-left: 3.2rem;
}

.section-cinematic[data-section] .section-header::before {
  content: attr(data-section);
  position: absolute;
  left: 0;
  top: 0.2rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  color: rgba(125, 231, 219, 0.72);
}

.pricing-card-a {
  border-color: rgba(126, 230, 219, 0.22);
  transform: translateY(8px) rotate(-0.25deg);
}

.pricing-card-b {
  transform: rotate(0.15deg);
}

.pricing-card-a:hover,
.pricing-card-b:hover {
  transform: translateY(-10px) rotate(0deg);
}

.pricing-card-b .badge-popular {
  letter-spacing: 0.08em;
}

.pricing-main-title {
  text-align: center;
  margin-bottom: var(--space-6);
  color: var(--color-text-primary);
  font-size: var(--text-3xl);
}

.pricing-note-main {
  text-align: center;
  margin-top: var(--space-6);
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}

.pricing-note-subtle {
  text-align: center;
  margin-top: var(--space-2);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
}

.comparison-heading-muted {
  color: var(--color-text-muted);
}

.comparison-heading-primary {
  color: var(--color-text-primary);
}

.comparison-heading-success {
  color: var(--color-success);
}

.case-card {
  position: relative;
  overflow: hidden;
}

.case-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(125, 231, 219, 0.8), rgba(125, 231, 219, 0.05));
}

.case-card:nth-child(2)::before {
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.75), rgba(99, 102, 241, 0.08));
}

.case-meta {
  display: inline-block;
  margin-bottom: 0.7rem;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9bc2ce;
  border-bottom: 1px solid rgba(155, 194, 206, 0.3);
  padding-bottom: 0.25rem;
}

.hero-label {
  text-transform: none;
  letter-spacing: 0.02em;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

@media (max-width: 900px) {
  .section-cinematic[data-section] .section-header {
    padding-left: 0;
  }

  .section-cinematic[data-section] .section-header::before {
    position: static;
    display: block;
    margin-bottom: 0.45rem;
  }

  .pricing-card-a,
  .pricing-card-b {
    transform: none;
  }
}

/* ============================================
   MOBILE MAX OPTIMIZATION
   ============================================ */
@media (max-width: 768px) {
  :root {
    --space-16: 5rem;
    --space-12: 3.5rem;
    --space-10: 2.8rem;
    --space-8: 2.2rem;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  section {
    padding: var(--space-10) 0;
  }

  .hero {
    min-height: auto;
    padding-top: calc(72px + var(--space-8));
    padding-bottom: var(--space-8);
  }

  .hero-grid {
    gap: 1.2rem;
  }

  .hero-content {
    text-align: left;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 8.8vw, 2.4rem);
    line-height: 1.08;
    margin-bottom: 0.85rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 1.1rem;
  }

  .hero-cta {
    gap: 0.75rem;
  }

  .hero-cta .btn,
  .hero .btn-large,
  .conversion-band .btn-large,
  #contacto .btn-large {
    width: 100%;
    min-height: 52px;
    justify-content: center;
  }

  .hero-secondary-link {
    display: inline-flex;
    margin-top: 0.25rem;
    font-size: 0.9rem;
  }

  .hero-trust {
    gap: 0.45rem;
  }

  .hero-trust-chip {
    font-size: 0.67rem;
    padding: 0.38rem 0.55rem;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-top: 0.75rem;
  }

  .hero-proof-item {
    padding: 0.58rem 0.68rem;
  }

  .hero-image {
    margin-top: 0.5rem;
  }

  .hero-visual-frame {
    padding: 0.72rem;
    border-radius: 15px;
  }

  .hero-main-shot {
    border-radius: 10px;
  }

  .hero-secondary-shot {
    width: 50%;
    right: -6px;
    bottom: -14px;
    border-radius: 8px;
  }

  .hero-metric {
    position: static;
    display: block;
    margin-top: 0.55rem;
    font-size: 0.73rem;
    padding: 0.44rem 0.62rem;
    transform: none !important;
  }

  #servicio .section-header,
  #diferencia .section-header,
  #para-quien .section-header,
  #casos .section-header,
  #contacto .section-header {
    margin-bottom: 1.2rem;
  }

  .section-title {
    font-size: clamp(1.45rem, 7vw, 2rem);
    line-height: 1.15;
  }

  .pricing-main-title {
    font-size: clamp(1.35rem, 6.5vw, 1.8rem);
    margin-bottom: 1rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    margin-top: 1rem;
  }

  .pricing-tier-card {
    padding: 1rem;
    border-radius: 14px;
  }

  .pricing-tier-card:hover,
  .pricing-tier-card.featured:hover,
  .case-card:hover {
    transform: none;
  }

  .tier-header h4 {
    font-size: 1.25rem;
  }

  .tier-subtitle {
    font-size: 0.78rem;
  }

  .price-from {
    font-size: 1.75rem;
  }

  .tier-description {
    margin-bottom: 0.8rem;
    font-size: 0.88rem;
  }

  .tier-features {
    margin-bottom: 0.9rem;
  }

  .tier-features li {
    font-size: 0.84rem;
    padding: 0.28rem 0;
    line-height: 1.42;
  }

  .pricing-note-main,
  .pricing-note-subtle {
    padding: 0 0.25rem;
  }

  .cta-pricing {
    margin-top: 1rem;
    padding: 0.9rem;
  }

  .comparison-grid,
  .cases-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .comparison-col,
  .case-card {
    padding: 0.95rem;
    border-radius: 14px;
  }

  .comparison-list li {
    font-size: 0.88rem;
    line-height: 1.45;
    padding: 0.38rem 0;
  }

  .case-meta {
    font-size: 0.66rem;
  }

  .case-card h3 {
    font-size: 1.2rem;
  }

  .case-card p,
  .case-metrics li {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .case-media {
    margin: 0.72rem 0;
  }

  .conversion-band {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }

  .conversion-band-card {
    padding: 1rem;
    border-radius: 14px;
  }

  .conversion-band-card h3 {
    font-size: 1.2rem;
    line-height: 1.2;
  }

  .conversion-band-card p {
    font-size: 0.9rem;
  }

  #contacto .hover-glow-card {
    padding: 1rem !important;
    border-radius: 14px !important;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-info {
    text-align: left;
    margin-bottom: 0;
    padding-right: 0;
  }

  .contact-methods {
    gap: 0.65rem;
  }

  .method-item {
    justify-content: flex-start;
    width: 100%;
    padding: 0.55rem;
  }

  .contact-form-wrapper {
    padding: 0.9rem;
    border-radius: 14px;
  }

  .form-group label {
    font-size: 0.82rem;
  }

  .form-group input,
  .form-group textarea {
    min-height: 46px;
    font-size: 16px;
  }

  .form-group textarea {
    min-height: 98px;
  }

  .footer {
    padding: 1.1rem 0;
    margin-top: 2rem;
  }

  .footer-links {
    gap: 0.85rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-float {
    width: 56px !important;
    height: 56px !important;
    right: 16px !important;
    bottom: 16px !important;
    box-shadow: 0 10px 22px rgba(37, 211, 102, 0.32) !important;
  }

  .whatsapp-float svg {
    width: 28px !important;
    height: 28px !important;
  }

  .whatsapp-float .tooltip {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .hero-secondary-shot {
    display: none;
  }

  .hero h1 {
    font-size: clamp(1.65rem, 8.6vw, 2rem);
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-trust-chip {
    font-size: 0.62rem;
  }

  .price-from {
    font-size: 1.58rem;
  }

  .tier-features li,
  .comparison-list li,
  .case-card p,
  .case-metrics li {
    font-size: 0.84rem;
  }

  .section-cinematic[data-section] .section-header::before {
    font-size: 0.7rem;
  }
}
