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

  :root {
    interpolate-size: allow-keywords;
    --dark: #0b0e1a;
    --dark2: #12162b;
    --dark3: #181d3a;
    --white: #ffffff;
    --gray-light: #f6f8fb;
    --gray-muted: #64748b;
    --gray-text: #475569;
    --gray-border: #e2e8f0;
    --purple: #6366f1;
    --purple-light: #818cf8;
    --blue: #3b82f6;
    --cyan: #06b6d4;
    --green: #22c55e;
    --green-dark: #15803d;
    --yellow: #eab308;
    --orange: #f97316;
    --pink: #ec4899;
    --red: #ef4444;
    
    --gradient-brand: linear-gradient(135deg, #818cf8 0%, #3b82f6 50%, #06b6d4 100%);
    
    --shadow-soft: 
      0 1px 3px rgba(11,14,26,0.02), 
      0 8px 24px rgba(11,14,26,0.03), 
      0 16px 32px rgba(11,14,26,0.02);
    --shadow-premium: 
      0 10px 40px -10px rgba(99, 102, 241, 0.12),
      0 1px 3px rgba(11,14,26,0.02),
      0 20px 48px -15px rgba(11,14,26,0.05);
  }

  html {
    scroll-behavior: smooth;
    scrollbar-color: rgba(99, 102, 241, 0.4) rgba(246, 248, 253, 0.5);
    scrollbar-width: thin;
  }
  
  /* Web Typography: Clean, resilient fallback stacks */
  body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
  }
  
  /* Display Typography: Distinctive personality */
  h1, h2, h3, h4, h5, h6, .logo-text {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: -0.02em;
    text-wrap: balance; /* Typography: Avoid orphan single words in headers */
  }

  /* Prose Typography: comfort and endurance */
  p, .compare-item, .features-list li, .log-entry span {
    text-wrap: pretty; /* Typography: Clean hyphenation and line ending prevention */
  }
  .prose-max {
    max-width: 65ch; /* Typography: Ideal character line length (45-75 chars) */
  }

  /* Nav styles moved to css/header.css */
  
  .btn-nav-cta:active,
  .btn-hero-primary:active,
  .btn-hero-secondary:active,
  .btn-module:active,
  .btn-cta-white:active {
    transform: translateY(1px) scale(0.98) !important;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.2) !important;
  }

  /* ── SECTION CONFIG ── */
  section {
    padding: 120px 48px;
    position: relative;
  }
  .bg-dark-sec {
    background: var(--dark);
    color: white;
  }
  .bg-light-sec {
    background: var(--gray-light);
  }
  .section-width {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .eyebrow {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--purple-light);
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  .eyebrow::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1.5px;
    background: var(--gradient-brand);
  }
  .eyebrow-dark {
    color: var(--purple);
  }
  
  /* Typography: Tight line height on display text */
  .section-title {
    font-size: clamp(32px, 4.5vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
  }
  .section-title span.gradient {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .section-subtitle {
    color: var(--gray-muted);
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 56px;
  }
  .section-subtitle-light {
    color: rgba(255,255,255,0.6);
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 160px;
    padding-bottom: 100px;
    background: radial-gradient(circle at 75% 20%, #171536 0%, var(--dark) 60%);
    overflow: hidden;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  .hero-content {
    max-width: 640px;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
    color: white;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 28px;
  }
  .hero-badge-dot {
    width: 6px; height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
  }
  
  /* Typography: Large scale title with clamp() fluid scaling */
  .hero-title {
    font-size: clamp(38px, 5.2vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    color: white;
    letter-spacing: -1.5px;
    margin-bottom: 28px;
  }
  .hero-title .highlight {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .hero-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 44px;
  }
  .hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }
  .btn-hero-primary {
    background: white;
    color: var(--dark);
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  }
  .btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,255,255,0.2);
  }
  .btn-hero-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: white;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.2s ease;
  }
  .btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
  }

  /* Console Card */
  .hero-console {
    background: rgba(18, 22, 43, 0.8);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow-premium);
    position: relative;
    color: white;
  }
  .console-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding-bottom: 14px;
  }
  .console-dots { display: flex; gap: 6px; }
  .console-dot { width: 8px; height: 8px; border-radius: 50%; }
  .console-dot:nth-child(1) { background: #ff5f56; }
  .console-dot:nth-child(2) { background: #ffbd2e; }
  .console-dot:nth-child(3) { background: #27c93f; }
  .console-title { font-size: 10px; font-weight: 700; color: var(--gray-muted); letter-spacing: 1px; text-transform: uppercase; }

  .shift-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    position: relative;
  }
  .shift-data h4 { font-size: 11px; color: var(--gray-muted); text-transform: uppercase; letter-spacing: 0.5px; }
  .shift-data .shift-name { font-size: 16px; font-weight: 700; color: white; margin-top: 2px; }
  
  .coverage-circle-box {
    position: relative;
    width: 52px; height: 52px;
  }
  .coverage-circle-box svg { transform: rotate(-90deg); }
  
  #coverage-progress-arc {
    transition: stroke-dashoffset 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .coverage-value {
    position: absolute;
    inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 13.5px; font-weight: 800;
  }
  
  .glow-pulse-success {
    animation: success-glow-animation 1.5s infinite alternate;
  }
  @keyframes success-glow-animation {
    0% { filter: drop-shadow(0 0 2px rgba(34, 197, 150, 0.4)); }
    100% { filter: drop-shadow(0 0 12px rgba(34, 197, 150, 0.9)); }
  }

  .console-positions-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
  }
  .position-row {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
  }
  .position-info h5 { font-size: 13px; font-weight: 700; }
  .position-info p { font-size: 11px; color: var(--gray-muted); transition: color 0.3s ease; }
  
  .status-badge-floor {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 6px;
    display: flex; align-items: center; gap: 6px;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
  }
  .status-covered {
    background: rgba(34, 197, 94, 0.1);
    color: var(--green);
    border: 1px solid rgba(34, 197, 94, 0.2);
  }
  .status-alert {
    background: rgba(239, 68, 68, 0.1);
    color: var(--red);
    border: 1px solid rgba(239, 68, 68, 0.2);
    animation: flash-badge 2s infinite;
  }

  .operator-picker-modal {
    position: absolute;
    inset: 0;
    background: rgba(11, 14, 26, 0.95);
    border-radius: 24px;
    z-index: 10;
    padding: 24px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
  }
  .modal-title { font-size: 15px; font-weight: 800; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 10px; margin-bottom: 14px; }
  
  .operator-option-row {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 8px;
    min-height: 52px;
    position: relative;
    overflow: hidden;
  }
  .operator-option-row:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
  }
  .operator-option-row:active {
    transform: scale(0.98);
  }
  .op-meta h6 { font-size: 12.5px; font-weight: 700; }
  .op-meta p { font-size: 10px; color: var(--gray-muted); }
  
  .qualification-pill {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
  }
  .q-valid { background: rgba(34,197,94,0.15); color: var(--green); }
  .q-invalid { background: rgba(239,68,68,0.15); color: var(--red); }
  
  .row-spinner {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: none;
  }
  @keyframes spin {
    to { transform: rotate(360deg); }
  }
  
  .console-error-popover {
    position: absolute;
    bottom: 20px; left: 20px; right: 20px;
    background: rgba(18, 22, 43, 0.95);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: white;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 11px;
    display: none;
    z-index: 12;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: pop-up-anim 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  }
  @keyframes pop-up-anim {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  .error-popover-flex { display: flex; align-items: center; gap: 10px; }
  .error-dot-glow { width: 8px; height: 8px; background: var(--red); border-radius: 50%; box-shadow: 0 0 8px var(--red); }

  .console-logs {
    font-family: monospace;
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 12px;
  }
  .log-entry { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
  .log-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); }

  /* ── SECCIÓN ÚNICA: LA REALIDAD EN PISO ── */
  .reality-section {
    background: radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.03) 0%, rgba(255, 255, 255, 0) 50%), var(--white);
    background-image: 
      linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    position: relative;
  }
  .reality-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 56px;
  }
  .reality-header .section-subtitle {
    margin-bottom: 0;
  }

  .reality-grid-balanced {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: flex-start;
  }
  
  .compare-card-premium {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid var(--gray-border);
    border-radius: 28px;
    padding: 32px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  .compare-card-premium:hover {
    border-color: rgba(99, 102, 241, 0.15);
    box-shadow: var(--shadow-premium);
  }
  
  .compare-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1.5px solid var(--gray-border);
    padding-bottom: 16px;
    margin-bottom: 20px;
  }
  .compare-card-title {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-muted);
  }
  .compare-card-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: var(--purple);
  }
  .compare-card-status-dot {
    width: 6px; height: 6px;
    background: var(--purple);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
  }
  
  .compare-row-premium {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px dashed var(--gray-border);
  }
  .compare-row-premium:last-child { border-bottom: none; }
  
  .cr-left-badge {
    background: rgba(241, 245, 249, 0.8);
    color: var(--gray-text);
    border: 1px solid var(--gray-border);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
  }
  
  .cr-arrow-con {
    color: var(--purple-light);
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.06);
  }
  
  .cr-right-badge {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.06) 0%, rgba(34, 197, 94, 0.01) 100%);
    color: var(--green-dark);
    border: 1.5px solid rgba(34, 197, 94, 0.2);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 2px 4px rgba(34, 197, 94, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .problems-list-premium {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .problem-card-premium {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: var(--shadow-soft);
  }
  .problem-card-premium:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.25);
    box-shadow: 0 16px 36px rgba(99, 102, 241, 0.06);
  }
  
  .problem-num-badge-premium {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--purple-light) 0%, var(--purple) 100%);
    color: white;
    font-weight: 800;
    font-size: 14px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .problem-card-premium:hover .problem-num-badge-premium {
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.35);
  }
  
  .problem-content-premium h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .problem-content-premium p {
    font-size: 13.5px;
    color: var(--gray-text);
    line-height: 1.55;
  }

  /* ── CONSECUENCIAS / STATS ── */
  .stats-grid-section {
    background: var(--dark);
    color: white;
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  @media (min-width: 1025px) {
    .col-span-2-lg { grid-column: span 2; }
    .col-span-3-lg { grid-column: span 3; }
  }
  
  @media (min-width: 769px) and (max-width: 1024px) {
    .col-span-2-md { grid-column: span 2; }
  }

  .stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 36px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.3);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 16px 40px rgba(99, 102, 241, 0.12);
  }

  .stat-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-muted);
    margin-bottom: 20px;
  }

  .stat-number {
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: -1.5px;
    color: white;
  }
  .stat-number-gradient-brand {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .stat-number-gradient-purple {
    background: linear-gradient(135deg, var(--purple-light) 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .stat-number-gradient-cyan {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .stat-number-alert {
    color: #f97316;
    text-shadow: 0 0 20px rgba(249, 115, 22, 0.15);
  }

  .stat-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
  .stat-card p { font-size: 13.5px; color: rgba(255,255,255,0.6); line-height: 1.55; }

  @media (min-width: 769px) {
    .stat-card-horizontal {
      flex-direction: row !important;
      align-items: center;
      gap: 48px;
      text-align: left;
    }
    .stat-card-horizontal-left {
      flex-shrink: 0;
      border-right: 1px solid rgba(255, 255, 255, 0.08);
      padding-right: 48px;
      min-width: 180px;
    }
    .stat-card-horizontal-right {
      flex-grow: 1;
    }
  }

  /* ── CÓMO FUNCIONA ── */
  .steps-section {
    background: var(--white);
  }
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  .step-card {
    position: relative;
    z-index: 2;
  }
  .step-badge {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--gradient-brand);
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(99,102,241,0.2);
  }
  .step-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
  .step-card p { font-size: 13.5px; color: var(--gray-text); line-height: 1.6; }

  /* ── PLATAFORMA / ECOSISTEMA INTEGRAL ── */
  .platform-section {
    background-color: var(--gray-light);
    background-image: radial-gradient(rgba(99, 102, 241, 0.08) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    padding: 100px 48px;
  }
  .ecosystem-section-header {
    text-align: center;
    margin: 56px 0 32px 0;
  }
  .ecosystem-section-header h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
  }
  .ecosystem-section-header p {
    font-size: 13.5px;
    color: var(--gray-muted);
    max-width: 600px;
    margin: 0 auto;
  }
  .ecosystem-core-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: start;
    margin-top: 48px;
  }
  .ecosystem-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
    container-type: inline-size;
  }
  @container (max-width: 440px) {
    .ecosystem-subcard {
      padding: 20px !important;
    }
    .subcard-header {
      gap: 12px !important;
    }
    .subcard-chip {
      width: 36px !important;
      height: 36px !important;
      font-size: 16px !important;
    }
    .subcard-title-area h4 {
      font-size: 13.5px !important;
    }
    .subcard-desc {
      font-size: 12px !important;
      margin: 4px 0 12px 0 !important;
    }
    .subcard-feature-item {
      font-size: 11px !important;
      gap: 8px !important;
    }
  }
  .ecosystem-column-header {
    margin-bottom: 8px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(226, 232, 240, 0.8);
  }
  .ecosystem-column-header h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
    margin-top: 10px;
  }
  .ecosystem-subcard {
    background: white;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
  }
  .subcard-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 12px;
  }
  .subcard-chip {
    width: 42px; height: 42px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
    transition: all 0.3s ease;
  }
  .ecosystem-subcard:hover .subcard-chip {
    transform: scale(1.1) rotate(4deg);
  }
  .subcard-title-area {
    display: flex;
    flex-direction: column;
  }
  .subcard-title-area h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.25;
    margin: 0;
  }
  .subcard-desc {
    font-size: 12.5px;
    color: var(--gray-muted);
    line-height: 1.5;
    margin: 6px 0 16px 0;
  }
  .subcard-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 4px;
    padding: 0;
  }
  .subcard-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 12px;
    color: var(--gray-text);
    line-height: 1.5;
  }
  .subcard-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px; height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .subcard-feature-icon svg {
    width: 10px;
    height: 8px;
    stroke: currentColor;
    fill: none;
    display: block;
  }

  /* Badges de Categoría */
  .badge-category {
    display: inline-flex;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
  }
  .badge-independiente {
    background: rgba(34, 197, 94, 0.1);
    color: var(--green-dark);
  }
  .badge-enlazado {
    background: rgba(59, 130, 246, 0.1);
    color: var(--blue);
  }
  .badge-addon {
    background: rgba(99, 102, 241, 0.1);
    color: var(--purple);
  }
  .badge-soporte {
    background: rgba(234, 179, 8, 0.1);
    color: #a16207;
  }

  /* Colores de Acento y Resplandores */
  .esc-green .subcard-chip {
    background: rgba(34, 197, 94, 0.08);
    color: var(--green);
  }
  .esc-green:hover {
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 16px 36px -12px rgba(34, 197, 94, 0.12);
  }
  .esc-green .subcard-feature-icon {
    background: rgba(34, 197, 94, 0.1);
    color: var(--green);
  }

  .esc-blue .subcard-chip {
    background: rgba(59, 130, 246, 0.08);
    color: var(--blue);
  }
  .esc-blue:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 16px 36px -12px rgba(59, 130, 246, 0.12);
  }
  .esc-blue .subcard-feature-icon {
    background: rgba(59, 130, 246, 0.1);
    color: var(--blue);
  }

  .esc-purple .subcard-chip {
    background: rgba(99, 102, 241, 0.08);
    color: var(--purple);
  }
  .esc-purple:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 16px 36px -12px rgba(99, 102, 241, 0.12);
  }
  .esc-purple .subcard-feature-icon {
    background: rgba(99, 102, 241, 0.1);
    color: var(--purple);
  }

  .esc-yellow .subcard-chip {
    background: rgba(234, 179, 8, 0.08);
    color: #d97706;
  }
  .esc-yellow:hover {
    border-color: rgba(234, 179, 8, 0.3);
    box-shadow: 0 16px 36px -12px rgba(234, 179, 8, 0.12);
  }
  .esc-yellow .subcard-feature-icon {
    background: rgba(234, 179, 8, 0.1);
    color: #d97706;
  }

  /* Tarjeta Destacada Premium (CRO) */
  .subcard-featured {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.03);
  }
  .subcard-featured::after {
    content: 'Recomendado';
    position: absolute;
    top: 16px; right: 20px;
    background: var(--gradient-brand);
    color: white;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: 50px;
    box-shadow: 0 2px 6px rgba(99,102,241,0.15);
  }

  /* Grid de Add-Ons */
  .ecosystem-addons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px;
  }

  /* Rejilla Compacta para Características Enterprise */
  .addons-list-compact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 8px;
  }
  .addon-item-compact {
    background: var(--gray-light);
    border: 1px solid var(--gray-border);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
  }
  .addon-item-compact:hover {
    background: white;
    border-color: rgba(99, 102, 241, 0.3);
  }
  .addon-item-compact svg {
    color: var(--purple);
    flex-shrink: 0;
  }
  .addon-item-compact span {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--dark);
  }

  /* Grid Fundacional (Plataforma y Servicios) */
  .ecosystem-foundation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 32px;
  }
  .foundation-card {
    background: white;
    border-radius: 24px;
    padding: 36px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.01);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .foundation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    transition: all 0.3s ease;
  }
  .foundation-card.esc-purple::before {
    background: var(--purple);
  }
  .foundation-card.esc-yellow::before {
    background: var(--yellow);
  }
  .foundation-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.2);
    box-shadow: 0 20px 40px -15px rgba(99, 102, 241, 0.08);
  }
  .foundation-card:hover::before {
    width: 6px;
  }
  .foundation-card:hover .subcard-chip {
    transform: scale(1.1) rotate(4deg);
  }
  .foundation-card .subcard-desc {
    font-size: 13.5px;
    line-height: 1.55;
    margin: 6px 0 24px 0;
    color: var(--gray-text);
  }
  .foundation-card .subcard-features {
    gap: 10px;
  }

  /* CTA General de la sección */
  .ecosystem-cta-wrapper {
    margin-top: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .btn-module {
    text-align: center;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13.5px;
    transition: all 0.2s ease;
  }
  .btn-module-pri {
    background: var(--gradient-brand);
    color: white;
    box-shadow: 0 4px 12px rgba(99,102,241,0.2);
  }
  .btn-module-pri:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(99,102,241,0.35);
  }

  /* Responsive de la Reestructuración */
  @media (min-width: 769px) and (max-width: 1024px) {
    .platform-section {
      padding: 90px 24px !important;
    }
    .ecosystem-core-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .ecosystem-addons-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    .ecosystem-addons-grid > div:last-child {
      grid-column: span 2;
    }
    .ecosystem-foundation-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  }

  @media (max-width: 768px) {
    .platform-section {
      padding: 60px 20px !important;
    }
    .ecosystem-core-grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }
    .ecosystem-addons-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .ecosystem-addons-grid > div:last-child {
      grid-column: span 1;
    }
    .ecosystem-foundation-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .ecosystem-subcard {
      padding: 20px !important;
    }
    .subcard-header {
      gap: 12px !important;
    }
    .subcard-chip {
      width: 36px !important;
      height: 36px !important;
      font-size: 16px !important;
    }
    .subcard-title-area h4 {
      font-size: 13.5px !important;
    }
    .subcard-desc {
      font-size: 12px !important;
      margin: 4px 0 12px 0 !important;
    }
    .subcard-feature-item {
      font-size: 11px !important;
      gap: 8px !important;
    }
    .subcard-feature-icon {
      width: 14px !important;
      height: 14px !important;
      margin-top: 2px !important;
    }
    .subcard-feature-icon svg {
      width: 8px !important;
      height: 6px !important;
    }
    .foundation-card {
      padding: 24px !important;
      border-radius: 20px !important;
    }
    .foundation-card .subcard-desc {
      font-size: 12.5px !important;
      margin: 6px 0 16px 0 !important;
    }
  }

  /* ── RESULTADOS OPERATIVOS ── */
  .results-section {
    background: var(--white);
  }
  .results-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
  }
  .results-stats-cluster {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .cluster-card {
    background: var(--gray-light);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow-soft);
  }
  .cluster-num {
    font-size: 40px;
    font-weight: 800;
    color: var(--purple);
    line-height: 1.1;
    margin-bottom: 6px;
    letter-spacing: -1px;
  }
  .cluster-card h4 { font-size: 13.5px; font-weight: 700; margin-bottom: 6px; }
  .cluster-card p { font-size: 11.5px; color: var(--gray-muted); }

  .results-testimonial-cluster {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .results-quote-card {
    background: var(--dark);
    color: white;
    border-radius: 20px;
    padding: 32px;
    position: relative;
    box-shadow: var(--shadow-premium);
  }
  .results-quote-card p { font-size: 14.5px; font-style: italic; color: rgba(255,255,255,0.75); margin-bottom: 16px; line-height: 1.6; }
  .results-quote-author { font-size: 10.5px; font-weight: 700; color: var(--cyan); text-transform: uppercase; letter-spacing: 1px; }

  /* ── CTA BANNER ── */
  .cta-banner-section {
    background: var(--white);
    padding-bottom: 100px;
  }
  .cta-banner {
    border-radius: 32px;
    background: linear-gradient(135deg, #6366f1 0%, #3b82f6 50%, #1d4ed8 100%);
    padding: 64px 80px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 48px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(99,102,241,0.25);
  }
  .cta-banner::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
  }
  .cta-banner::after {
    content: '';
    position: absolute;
    bottom: -80px; right: 120px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
  }
  .cta-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    color: white;
    background: rgba(255, 255, 255, 0.03);
  }
  .cta-text { color: white; }
  .cta-text h2 {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
  }
  .cta-text p { color: rgba(255,255,255,0.8); font-size: 14.5px; max-width: 500px; }
  .btn-cta-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--purple);
    border-radius: 50px;
    padding: 16px 36px;
    font-size: 14.5px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s ease;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  .btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,0.25); }

  /* ── FOOTER ── */
  footer {
    background: var(--dark);
    padding: 64px 48px;
    color: white;
    border-top: 1px solid rgba(255,255,255,0.06);
    position: relative;
  }
  footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #22c55e 0%, #fbbf24 33%, #3b82f6 66%, #818cf8 100%);
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
  }
  .footer-nav {
    display: flex;
    gap: 36px;
    justify-content: center;
    list-style: none;
  }
  .footer-nav a {
    color: rgba(255,255,255,.45);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover { color: white; }
  .footer-hashtag {
    font-size: 14px;
    font-weight: 700;
    color: white;
  }
  .footer-hashtag span { color: #fbbf24; }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    section { padding: 90px 24px; }
    .hero-grid { grid-template-columns: 1fr; gap: 56px; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-buttons { justify-content: center; }
    .hero-console { max-width: 480px; margin: 0 auto; }
    .reality-grid-balanced { grid-template-columns: 1fr; gap: 48px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .modules-grid { grid-template-columns: 1fr; gap: 32px; }
    .results-grid { grid-template-columns: 1fr; gap: 48px; }
    .cta-banner { grid-template-columns: 1fr; text-align: center; justify-items: center; padding: 48px; gap: 28px; }
  }

  @media (max-width: 768px) {
    section { padding: 60px 20px; }
    .stats-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .results-stats-cluster { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; text-align: center; gap: 28px; }
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  /* ── TAGLINE BANNER ── */
  .tagline-banner-section {
    background: var(--dark2);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 24px 0;
    position: relative;
  }
  .tagline-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
  }
  .tagline-item {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, white 60%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .tagline-separator {
    color: var(--purple-light);
    font-weight: 800;
    font-size: 16px;
  }

  /* ── SECCIÓN: LOS 4 PILARES ── */
  .pilares-section {
    background: var(--white);
    padding-top: 100px;
    padding-bottom: 100px;
    border-bottom: 1px solid var(--gray-border);
  }
  .pilares-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 56px;
  }
  .pilar-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 20px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
  }
  .pilar-card::before {
    content: '';
    position: absolute;
    top: 0; left: 24px; right: 24px;
    height: 4px;
    border-radius: 0 0 4px 4px;
  }
  .pilar-purple::before { background: var(--purple-light); }
  .pilar-orange::before { background: var(--yellow); }
  .pilar-blue::before { background: var(--blue); }
  .pilar-green::before { background: var(--green); }

  .pilar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(11,14,26,0.06);
  }
  .pilar-purple:hover { border-color: rgba(129, 140, 248, 0.4); }
  .pilar-orange:hover { border-color: rgba(251, 191, 36, 0.4); }
  .pilar-blue:hover { border-color: rgba(59, 130, 246, 0.4); }
  .pilar-green:hover { border-color: rgba(34, 197, 94, 0.4); }

  .pilar-icon-wrapper {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
  }
  .pilar-purple .pilar-icon-wrapper { background: rgba(129, 140, 248, 0.08); color: var(--purple); }
  .pilar-orange .pilar-icon-wrapper { background: rgba(251, 191, 36, 0.08); color: var(--yellow); }
  .pilar-blue .pilar-icon-wrapper { background: rgba(59, 130, 246, 0.08); color: var(--blue); }
  .pilar-green .pilar-icon-wrapper { background: rgba(34, 197, 94, 0.08); color: var(--green); }

  .pilar-card h3 {
    font-size: 15.5px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.35;
  }
  .pilar-card p {
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.55;
  }

  /* ── SECCIÓN: BENEFICIOS POR ÁREA (TABS) ── */
  .beneficios-section {
    background: var(--white);
    padding-top: 100px;
    padding-bottom: 100px;
    border-bottom: 1px solid var(--gray-border);
  }
  .tabs-container {
    max-width: 800px;
    margin: 40px auto 0;
  }
  .tabs-selector {
    display: flex;
    justify-content: center;
    gap: 12px;
    border-bottom: 1.5px solid var(--gray-border);
    padding-bottom: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  .tab-btn {
    background: none;
    border: none;
    padding: 10px 24px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-muted);
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: 1;
  }
  .tab-btn:hover {
    color: var(--dark);
    background: rgba(99, 102, 241, 0.04);
  }
  .tab-btn.active {
    background: var(--gradient-brand);
    color: var(--white) !important;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  }
  .tab-content {
    display: none;
    animation: tabFadeIn 0.4s ease forwards;
  }
  .tab-content.active {
    display: block;
  }
  @keyframes tabFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .benefits-list-card {
    background: var(--gray-light);
    border: 1px solid var(--gray-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
  }
  .benefit-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
  }
  .benefit-row:last-child { margin-bottom: 0; }
  .benefit-check {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.08);
    color: var(--green);
    display: flex; align-items: center; justify-content: center;
    font-weight: bold;
    font-size: 13px;
    flex-shrink: 0;
    border: 1px solid rgba(34, 197, 94, 0.15);
  }
  .benefit-text h4 {
    font-size: 15.5px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
  }
  .benefit-text p {
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.5;
  }

  /* ── RESPONSIVE ADAPTATIONS FOR NEW SECTIONS ── */
  @media (max-width: 1024px) {
    .pilares-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  }
  @media (max-width: 640px) {
    .pilares-grid { grid-template-columns: 1fr; }
    .tabs-selector { flex-direction: column; align-items: stretch; }
    .tab-btn { text-align: center; width: 100%; }
    .benefits-list-card { padding: 24px; }
    .tagline-banner-container { gap: 16px; flex-direction: column; }
    .tagline-separator { display: none; }
  }

  /* ── SECCIÓN FAQ / OBJECIONES (CRO) ── */
  .faq-section {
    background: var(--gray-light);
    padding-top: 100px;
    padding-bottom: 100px;
    border-bottom: 1px solid var(--gray-border);
  }
  .faq-container {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .faq-item {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .faq-item[open] {
    border-color: rgba(99, 102, 241, 0.25);
    box-shadow: var(--shadow-soft);
  }
  .faq-item::details-content {
    transition: height 0.35s cubic-bezier(0.16, 1, 0.3, 1), content-visibility 0.35s allow-discrete, opacity 0.3s ease-out;
    height: 0;
    overflow: hidden;
    opacity: 0;
  }
  .faq-item[open]::details-content {
    height: auto;
    opacity: 1;
  }
  .faq-summary {
    padding: 24px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
  }
  .faq-summary::-webkit-details-marker {
    display: none;
  }
  .faq-summary::after {
    content: '+';
    font-size: 20px;
    font-weight: 400;
    color: var(--gray-muted);
    transition: transform 0.3s ease;
  }
  .faq-item[open] .faq-summary::after {
    transform: rotate(45deg);
    color: var(--purple);
  }
  .faq-content {
    padding: 0 24px 24px;
    font-size: 13.5px;
    color: var(--gray-text);
    line-height: 1.6;
    border-top: 1px solid transparent;
  }
  .faq-item[open] .faq-content {
    border-top-color: rgba(226, 232, 240, 0.5);
    padding-top: 16px;
  }

  /* Trust Bar en Hero */
  .hero-trust-bar {
    margin-top: 48px;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    max-width: 520px;
  }
  .trust-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-muted);
    margin-bottom: 12px;
    text-align: left;
  }
  .trust-logos {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    color: rgba(255,255,255,0.6);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
  }
  .trust-dot {
    color: var(--purple-light);
    font-weight: 800;
  }

  /* ── CONECTORES Y NODOS DE RED (ESTILO SAAS BROCHURE) ── */
  .hero-network-background {
    position: absolute;
    top: 50%; right: -80px;
    transform: translateY(-50%);
    width: 600px; height: 600px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.65;
    filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.1));
  }
  
  .pulse-node-1 { animation: nodePulse 3s infinite alternate ease-in-out; }
  .pulse-node-2 { animation: nodePulse 4s infinite alternate ease-in-out 0.5s; }
  .pulse-node-3 { animation: nodePulse 2.5s infinite alternate ease-in-out 1s; }
  .pulse-node-4 { animation: nodePulse 3.5s infinite alternate ease-in-out 1.5s; }
  .pulse-node-main { animation: nodePulseMain 5s infinite alternate ease-in-out; }

  @keyframes nodePulse {
    0% { r: 4px; opacity: 0.5; }
    100% { r: 7px; opacity: 1; }
  }
  @keyframes nodePulseMain {
    0% { r: 8px; opacity: 0.7; }
    100% { r: 12px; opacity: 1; }
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
  }
  .hero-console {
    z-index: 2;
  }
  
  /* Decs de conectores en secciones */
  .pilares-section {
    position: relative;
    overflow: hidden;
  }
  .section-network-dec {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
  }
  .dec-left {
    bottom: -30px; left: -40px;
  }
  .dec-right {
    top: -20px; right: -40px;
    transform: rotate(180deg);
  }
  .pilares-grid {
    position: relative;
    z-index: 2;
  }