/* ═══════════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════════ */
    :root {
      --talent: #FB7185;
      --academy: #2563EB;
      --digital: #10B981;
      --ink: #0B0C10;
      --ink-soft: #1A1C23;
      --paper: #FFFFFF;
      --paper-off: #F7F8FA;
      --muted: #6B7280;
      --border: rgba(11, 12, 16, 0.08);
      --border-light: rgba(255, 255, 255, 0.08);
      --radius: 20px;
      --nav-h: 72px;
      --ff-display: 'Fraunces', Georgia, serif;
      --ff-body: 'DM Sans', system-ui, sans-serif;
      --ff-mono: 'DM Mono', monospace;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--ff-body);
      background: var(--paper);
      color: var(--ink);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

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

    a {
      color: inherit;
      text-decoration: none;
    }

    /* ═══════════════════════════════════════════════
   UTILITY
═══════════════════════════════════════════════ */
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 5%;
    }

    .section-tag {
      display: inline-block;
      font-family: var(--ff-mono);
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 1.25rem;
    }

    .section-h {
      font-family: var(--ff-display);
      font-size: clamp(2.2rem, 4.5vw, 3.8rem);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -0.03em;
    }

    .section-h em {
      font-style: italic;
      font-weight: 300;
    }

    .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity 0.75s cubic-bezier(.22, .8, .22, 1), transform 0.75s cubic-bezier(.22, .8, .22, 1);
    }

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

    .reveal-left {
      opacity: 0;
      transform: translateX(-36px);
      transition: opacity 0.75s cubic-bezier(.22, .8, .22, 1), transform 0.75s cubic-bezier(.22, .8, .22, 1);
    }

    .reveal-left.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .reveal-right {
      opacity: 0;
      transform: translateX(36px);
      transition: opacity 0.75s cubic-bezier(.22, .8, .22, 1), transform 0.75s cubic-bezier(.22, .8, .22, 1);
    }

    .reveal-right.visible {
      opacity: 1;
      transform: translateX(0);
    }

    /* ═══════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════ */
    #nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 900;
      height: var(--nav-h);
      display: flex;
      align-items: center;
      transition: background 0.4s, box-shadow 0.4s;
    }

    #nav.scrolled {
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(24px);
      box-shadow: 0 1px 0 var(--border);
    }

    #nav.hero-zone {
      background: transparent;
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }

    .logo {
      font-family: var(--ff-display);
      font-size: 2rem;
      font-weight: 900;
      color: var(--paper);
      letter-spacing: -0.05em;
      transition: color 0.4s;
    }

    .logo .dot {
      color: var(--talent);
    }

    #nav.scrolled .logo {
      color: var(--ink);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2.5rem;
      list-style: none;
    }

    .nav-links a {
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.75);
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: var(--paper);
    }

    #nav.scrolled .nav-links a {
      color: var(--muted);
    }

    #nav.scrolled .nav-links a:hover {
      color: var(--ink);
    }

    .nav-cta {
      padding: 0.6rem 1.5rem;
      background: var(--paper);
      color: var(--ink) !important;
      border-radius: 50px;
      font-weight: 600 !important;
      font-size: 0.8rem !important;
      letter-spacing: 0.04em !important;
      text-transform: none !important;
      transition: background 0.3s, transform 0.3s, box-shadow 0.3s !important;
    }

    .nav-cta:hover {
      background: var(--digital) !important;
      color: white !important;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
    }

    #nav.scrolled .nav-cta {
      background: var(--ink);
      color: var(--paper) !important;
    }

    /* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
    .hero {
      min-height: 100svh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: calc(var(--nav-h) + 2rem) 5% 8rem;
      position: relative;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(-45deg, #0B0C10, #1a0a1e, #0a1a2e, #0a2a1e, #1a0a10);
      background-size: 400% 400%;
      animation: heroGradient 18s ease infinite;
    }

    @keyframes heroGradient {
      0% {
        background-position: 0% 50%;
      }

      50% {
        background-position: 100% 50%;
      }

      100% {
        background-position: 0% 50%;
      }
    }

    .hero-bg::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 20% 40%, rgba(251, 113, 133, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 80% 60%, rgba(37, 99, 235, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 50% 10%, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
      animation: heroAura 12s ease-in-out infinite alternate;
    }

    @keyframes heroAura {
      0% {
        opacity: 0.7;
        transform: scale(1);
      }

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

    .chaos-container {
      position: absolute;
      inset: 0;
      overflow: hidden;
      opacity: 0.12;
    }

    .chaos-line {
      position: absolute;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      animation: chaosDrift linear infinite;
    }

    @keyframes chaosDrift {
      0% {
        transform: translateX(-120%) rotate(var(--rot, 0deg));
        opacity: 0;
      }

      20% {
        opacity: 1;
      }

      80% {
        opacity: 0.5;
      }

      100% {
        transform: translateX(120vw) rotate(var(--rot, 0deg));
        opacity: 0;
      }
    }

    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      background-repeat: repeat;
      background-size: 200px;
      opacity: 0.2;
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 10;
      max-width: 960px;
      margin-top: 0;
      margin-bottom: 0;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.45rem 1.1rem;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 50px;
      font-family: var(--ff-mono);
      font-size: 0.66rem;
      font-weight: 500;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.62);
      margin-bottom: 2.5rem;
      backdrop-filter: blur(8px);
    }


    .hero-badge-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--digital);
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {

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

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

    .hero h1 {
      font-family: var(--ff-display);
      font-size: clamp(3rem, 7vw, 6rem);
      font-weight: 900;
      line-height: 1.0;
      letter-spacing: -0.04em;
      color: var(--paper);
      margin-bottom: 2rem;
    }

    .hero h1 .strike {
      color: rgba(251, 113, 133, 0.8);
      text-decoration: line-through;
      text-decoration-thickness: 5px;
      text-decoration-color: var(--talent);
    }

    .hero h1 .accent {
      font-style: italic;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.9);
    }

    .hero-subtitle {
      font-size: 1.2rem;
      color: rgba(255, 255, 255, 0.6);
      max-width: 640px;
      margin: 0 auto 3rem;
      font-weight: 300;
      line-height: 1.8;
    }

    .hero-ctas {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn-hero-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 1rem 2.25rem;
      background: var(--paper);
      color: var(--ink);
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.95rem;
      transition: all 0.3s cubic-bezier(.22, .8, .22, 1);
      cursor: pointer;
      border: none;
    }

    .btn-hero-primary:hover {
      background: var(--digital);
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 16px 48px rgba(16, 185, 129, 0.35);
    }

    .btn-hero-secondary {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 1rem 2.25rem;
      background: transparent;
      color: rgba(255, 255, 255, 0.75);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 50px;
      font-weight: 500;
      font-size: 0.95rem;
      transition: all 0.3s;
      cursor: pointer;
    }

    .btn-hero-secondary:hover {
      background: rgba(255, 255, 255, 0.07);
      color: white;
      border-color: rgba(255, 255, 255, 0.4);
    }

    /* FIX 1: Scroll indicator — más abajo, más visible */
    .scroll-indicator {
      position: absolute;
      left: 50%;
      bottom: 1.5rem;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
      z-index: 10;
      color: rgba(255, 255, 255, 0.55);
      font-family: var(--ff-mono);
      font-size: 0.68rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      pointer-events: none;
      white-space: nowrap;
    }

    .scroll-line {
      width: 1px;
      height: 56px;
      background: linear-gradient(to bottom, rgba(255, 255, 255, 0.55), transparent);
      animation: scrollAnim 2.2s ease-in-out infinite;
    }

    @keyframes scrollAnim {
      0% {
        transform: scaleY(0);
        transform-origin: top;
        opacity: 0;
      }

      30% {
        transform: scaleY(1);
        transform-origin: top;
        opacity: 1;
      }

      60% {
        transform: scaleY(1);
        transform-origin: bottom;
        opacity: 1;
      }

      100% {
        transform: scaleY(0);
        transform-origin: bottom;
        opacity: 0;
      }
    }

    /* ═══════════════════════════════════════════════
   PROBLEM
═══════════════════════════════════════════════ */
    .problem-section {
      background: var(--paper);
      padding: 9rem 0;
    }

    .problem-inner {
      display: grid;
      grid-template-columns: 5fr 7fr;
      gap: 7rem;
      align-items: start;
    }

    .problem-left .section-h {
      max-width: 380px;
    }

    .problem-left p {
      margin-top: 1.5rem;
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.8;
      max-width: 340px;
    }

    .problem-items {
      display: flex;
      flex-direction: column;
    }

    /* FIX 2: Problem items con icono SVG */
    .problem-item {
      display: grid;
      grid-template-columns: 2.5rem 1fr;
      gap: 1.5rem;
      align-items: start;
      padding: 2rem 0;
      border-bottom: 1px solid var(--border);
      transition: padding-left 0.3s ease;
      cursor: default;
    }

    .problem-item:first-child {
      border-top: 1px solid var(--border);
    }

    .problem-item:hover {
      padding-left: 0.75rem;
    }

    .p-num {
      font-family: var(--ff-mono);
      font-size: 0.7rem;
      color: var(--muted);
      padding-top: 4px;
    }

    .p-body {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .p-icon-row {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .p-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .p-icon svg {
      width: 22px;
      height: 22px;
    }

    .problem-item:nth-child(1) .p-icon {
      background: rgba(251, 113, 133, 0.08);
      border: 1px solid rgba(251, 113, 133, 0.2);
    }

    .problem-item:nth-child(2) .p-icon {
      background: rgba(37, 99, 235, 0.08);
      border: 1px solid rgba(37, 99, 235, 0.2);
    }

    .problem-item:nth-child(3) .p-icon {
      background: rgba(16, 185, 129, 0.08);
      border: 1px solid rgba(16, 185, 129, 0.2);
    }

    .problem-item:nth-child(1) .p-icon svg {
      stroke: var(--talent);
    }

    .problem-item:nth-child(2) .p-icon svg {
      stroke: var(--academy);
    }

    .problem-item:nth-child(3) .p-icon svg {
      stroke: var(--digital);
    }

    .p-content h3 {
      font-family: var(--ff-display);
      font-size: 1.2rem;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    .p-content p {
      font-size: 0.95rem;
      color: var(--muted);
      line-height: 1.75;
      margin-top: 0.4rem;
    }

    .problem-close {
      margin-top: 3rem;
      padding: 2.5rem;
      background: var(--ink);
      border-radius: var(--radius);
      color: var(--paper);
    }

    .problem-close p {
      font-family: var(--ff-display);
      font-size: 1.7rem;
      font-weight: 700;
      font-style: italic;
      line-height: 1.35;
      color: var(--paper);
    }

    .problem-close span {
      color: var(--digital);
    }

    /* ═══════════════════════════════════════════════
   SYSTEM DIAGRAM
═══════════════════════════════════════════════ */
    .diagram-section {
      background: var(--ink);
      padding: 9rem 0;
      position: relative;
      overflow: hidden;
    }

    .diagram-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
      background-size: 64px 64px;
    }

    .diagram-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: end;
      margin-bottom: 5rem;
    }

    .diagram-header .section-tag {
      color: rgba(255, 255, 255, 0.3);
    }

    .diagram-header .section-h {
      color: var(--paper);
    }

    .diagram-header-right p {
      color: rgba(255, 255, 255, 0.5);
      font-size: 1rem;
      line-height: 1.8;
    }

    .system-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 28px;
      padding: 4rem;
      position: relative;
    }

    .system-quote {
      font-family: var(--ff-display);
      font-size: 1.1rem;
      font-style: italic;
      color: rgba(255, 255, 255, 0.4);
      text-align: center;
      margin-bottom: 3rem;
      font-weight: 300;
    }

    .system-svg {
      width: 100%;
      height: auto;
      display: block;
      overflow: visible;
    }

    .ds-dot {
      animation: dotPulse 3s ease-in-out infinite;
    }

    .ds-dot:nth-child(2) {
      animation-delay: 0.5s;
    }

    .ds-dot:nth-child(3) {
      animation-delay: 1s;
    }

    .ds-dot:nth-child(4) {
      animation-delay: 1.5s;
    }

    .ds-dot:nth-child(5) {
      animation-delay: 2s;
    }

    .ds-dot:nth-child(6) {
      animation-delay: 2.5s;
    }

    @keyframes dotPulse {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0.5;
      }
    }

    /* ═══════════════════════════════════════════════
   SOLUTIONS
═══════════════════════════════════════════════ */
    .solutions-section {
      background: var(--ink-soft);
      padding: 9rem 0;
      position: relative;
      overflow: hidden;
    }

    .solutions-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
    }

    .solutions-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: end;
      margin-bottom: 5rem;
    }

    .solutions-header .section-tag {
      color: rgba(255, 255, 255, 0.3);
    }

    .solutions-header .section-h {
      color: var(--paper);
    }

    .solutions-header-right p {
      color: rgba(255, 255, 255, 0.5);
      font-size: 1.05rem;
      line-height: 1.85;
    }

    .sol-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.75rem;
    }

    .sol-card {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 24px;
      padding: 2.75rem;
      position: relative;
      overflow: hidden;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .sol-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      transition: height 0.4s ease;
    }

    .sol-card.t::after {
      background: var(--talent);
    }

    .sol-card.a::after {
      background: var(--academy);
    }

    .sol-card.d::after {
      background: var(--digital);
    }

    .sol-card:hover {
      background: rgba(255, 255, 255, 0.07);
      border-color: rgba(255, 255, 255, 0.13);
      transform: translateY(-10px);
    }

    .sol-card:hover::after {
      height: 5px;
    }

    .sol-num {
      font-family: var(--ff-mono);
      font-size: 0.7rem;
      color: rgba(255, 255, 255, 0.2);
      display: block;
      margin-bottom: 1.75rem;
    }

    .sol-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .sol-card.t .sol-icon {
      background: rgba(251, 113, 133, 0.12);
      border: 1px solid rgba(251, 113, 133, 0.25);
    }

    .sol-card.a .sol-icon {
      background: rgba(37, 99, 235, 0.12);
      border: 1px solid rgba(37, 99, 235, 0.25);
    }

    .sol-card.d .sol-icon {
      background: rgba(16, 185, 129, 0.12);
      border: 1px solid rgba(16, 185, 129, 0.25);
    }

    .sol-label {
      font-family: var(--ff-mono);
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 0.4rem;
    }

    .sol-card.t .sol-label {
      color: var(--talent);
    }

    .sol-card.a .sol-label {
      color: var(--academy);
    }

    .sol-card.d .sol-label {
      color: var(--digital);
    }

    .sol-card h3 {
      font-family: var(--ff-display);
      font-size: 1.7rem;
      font-weight: 700;
      color: var(--paper);
      margin-bottom: 0.4rem;
      line-height: 1.15;
    }

    .sol-card .tagline {
      font-size: 0.88rem;
      color: rgba(255, 255, 255, 0.4);
      margin-bottom: 2rem;
    }

    .sol-list {
      list-style: none;
    }

    .sol-list li {
      padding: 0.65rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      color: rgba(255, 255, 255, 0.72);
      font-size: 0.88rem;
      line-height: 1.6;
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
    }

    .sol-list li:last-child {
      border-bottom: none;
    }

    .sol-list li::before {
      content: '→';
      font-size: 0.88rem;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .sol-card.t .sol-list li::before {
      color: var(--talent);
    }

    .sol-card.a .sol-list li::before {
      color: var(--academy);
    }

    .sol-card.d .sol-list li::before {
      color: var(--digital);
    }

    .sol-card-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: 2rem;
      padding: 0.65rem 1.5rem;
      border-radius: 50px;
      font-size: 0.82rem;
      font-weight: 600;
      border: 1px solid;
      transition: all 0.3s;
      cursor: pointer;
      background: transparent;
      font-family: var(--ff-body);
    }

    .sol-card.t .sol-card-cta {
      color: var(--talent);
      border-color: rgba(251, 113, 133, 0.3);
    }

    .sol-card.a .sol-card-cta {
      color: var(--academy);
      border-color: rgba(37, 99, 235, 0.3);
    }

    .sol-card.d .sol-card-cta {
      color: var(--digital);
      border-color: rgba(16, 185, 129, 0.3);
    }

    .sol-card.t .sol-card-cta:hover {
      background: rgba(251, 113, 133, 0.1);
    }

    .sol-card.a .sol-card-cta:hover {
      background: rgba(37, 99, 235, 0.1);
    }

    .sol-card.d .sol-card-cta:hover {
      background: rgba(16, 185, 129, 0.1);
    }

    .sol-integration {
      margin-top: 2.5rem;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 18px;
      padding: 2.5rem;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 2rem;
      align-items: center;
      background: rgba(255, 255, 255, 0.025);
    }

    .sol-int-dots {
      display: flex;
      gap: 0.5rem;
      flex-direction: column;
    }

    .int-d {
      width: 10px;
      height: 10px;
      border-radius: 50%;
    }

    .int-d.t {
      background: var(--talent);
    }

    .int-d.a {
      background: var(--academy);
    }

    .int-d.d {
      background: var(--digital);
    }

    .sol-int-text {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.72);
      line-height: 1.85;
    }

    .sol-int-text strong {
      color: var(--paper);
    }

    /* ═══════════════════════════════════════════════
   SECTORS
═══════════════════════════════════════════════ */
    .sector-section {
      background: var(--paper-off);
      padding: 9rem 0;
    }

    .sector-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: center;
    }

    .sector-left p {
      font-size: 1rem;
      color: var(--muted);
      line-height: 1.85;
      margin-top: 1.5rem;
      max-width: 380px;
    }

    .sector-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(37, 99, 235, 0.08);
      border: 1px solid rgba(37, 99, 235, 0.2);
      padding: 0.45rem 1rem;
      border-radius: 50px;
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--academy);
      margin-top: 2rem;
    }

    .sector-cards {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .sector-card {
      background: var(--paper);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 1.5rem 2rem;
      display: flex;
      align-items: center;
      gap: 1.5rem;
      transition: all 0.3s;
      box-shadow: 0 2px 8px rgba(11, 12, 16, 0.04);
    }

    .sector-card:hover {
      box-shadow: 0 8px 32px rgba(11, 12, 16, 0.1);
      transform: translateX(6px);
      border-color: rgba(11, 12, 16, 0.15);
    }

    .sector-card-icon {
      font-size: 2rem;
      flex-shrink: 0;
      width: 56px;
      height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--paper-off);
      border-radius: 12px;
    }

    .sector-card-info h4 {
      font-family: var(--ff-display);
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 0.25rem;
      letter-spacing: -0.01em;
    }

    .sector-card-info p {
      font-size: 0.85rem;
      color: var(--muted);
    }

    /* ═══════════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════════ */
    .process-section {
      background: var(--paper);
      padding: 9rem 0;
    }

    .process-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 5rem;
    }

    .process-header p {
      margin-top: 1.25rem;
      font-size: 1.05rem;
      color: var(--muted);
      line-height: 1.8;
    }

    .process-timeline {
      max-width: 1000px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      position: relative;
    }

    .process-timeline::before {
      content: '';
      position: absolute;
      top: 40px;
      left: 10%;
      width: 80%;
      height: 1px;
      background: linear-gradient(90deg, var(--talent), var(--academy), var(--digital));
      opacity: 0.5;
    }

    .process-step {
      text-align: center;
      flex: 1;
      position: relative;
      padding: 0 1rem;
    }

    .step-node {
      width: 80px;
      height: 80px;
      background: var(--paper);
      border: 2px solid var(--border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.75rem;
      font-family: var(--ff-display);
      font-weight: 900;
      font-size: 1.6rem;
      position: relative;
      z-index: 1;
      transition: all 0.3s;
      box-shadow: 0 4px 16px rgba(11, 12, 16, 0.07);
    }

    .step-node:hover {
      transform: scale(1.08);
      box-shadow: 0 12px 32px rgba(11, 12, 16, 0.12);
    }

    .process-step:nth-child(1) .step-node {
      border-color: var(--talent);
      color: var(--talent);
    }

    .process-step:nth-child(2) .step-node {
      border-color: var(--academy);
      color: var(--academy);
    }

    .process-step:nth-child(3) .step-node {
      border-color: var(--digital);
      color: var(--digital);
    }

    .process-step:nth-child(4) .step-node {
      border-color: var(--ink);
      color: var(--ink);
    }

    .step-lock {
      position: absolute;
      bottom: -4px;
      right: -4px;
      width: 22px;
      height: 22px;
      background: var(--ink);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
    }

    .process-step h4 {
      font-family: var(--ff-display);
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      letter-spacing: -0.01em;
    }

    .process-step p {
      font-size: 0.85rem;
      color: var(--muted);
      max-width: 180px;
      margin: 0 auto;
      line-height: 1.65;
    }

    .process-guarantee {
      text-align: center;
      margin: 4rem auto 0;
      padding: 2.25rem 3rem;
      background: rgba(16, 185, 129, 0.05);
      border: 1px solid rgba(16, 185, 129, 0.2);
      border-radius: var(--radius);
      max-width: 760px;
    }

    .process-guarantee p {
      font-size: 0.95rem;
      color: var(--digital);
      font-weight: 600;
      line-height: 1.7;
    }

    /* ═══════════════════════════════════════════════
   CONTACT — FIX 3: texto izquierdo legible
═══════════════════════════════════════════════ */
    .contact-section {
      background: var(--ink);
      padding: 9rem 0;
      position: relative;
      overflow: hidden;
    }

    .contact-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 70% at 80% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 20% 50%, rgba(251, 113, 133, 0.08) 0%, transparent 70%);
    }

    .contact-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 7rem;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .contact-left .section-tag {
      color: rgba(255, 255, 255, 0.45);
    }

    .contact-left .section-h {
      color: var(--paper);
      margin-bottom: 1.5rem;
    }

    .contact-left>p {
      color: rgba(255, 255, 255, 0.65);
      font-size: 1rem;
      line-height: 1.85;
      margin-bottom: 2.5rem;
    }

    .contact-stat-row {
      display: flex;
      gap: 3rem;
      margin-top: 2.5rem;
    }

    .contact-stat h4 {
      font-family: var(--ff-display);
      font-size: 3rem;
      font-weight: 900;
      color: var(--paper);
      line-height: 1;
      margin-bottom: 0.25rem;
    }

    .contact-stat p {
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.5;
    }

    .contact-form-card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 24px;
      padding: 3rem;
    }

    .contact-form-card h3 {
      font-family: var(--ff-display);
      font-size: 1.5rem;
      color: var(--paper);
      margin-bottom: 0.5rem;
      font-weight: 700;
    }

    .contact-form-card .form-sub {
      font-size: 0.88rem;
      color: rgba(255, 255, 255, 0.45);
      margin-bottom: 2rem;
    }

    .form-group {
      margin-bottom: 1.25rem;
    }

    .form-group label {
      display: block;
      font-family: var(--ff-mono);
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.4);
      margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      padding: 0.85rem 1rem;
      color: var(--paper);
      font-family: var(--ff-body);
      font-size: 0.92rem;
      transition: border-color 0.3s, background 0.3s;
      outline: none;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--digital);
      background: rgba(255, 255, 255, 0.07);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: rgba(255, 255, 255, 0.25);
    }

    .form-group select option {
      background: var(--ink);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 90px;
    }

    .form-group.error input,
    .form-group.error select,
    .form-group.error textarea {
      border-color: var(--talent);
      background: rgba(251, 113, 133, 0.08);
    }

    .form-alert {
      display: none;
      margin-bottom: 1rem;
      padding: 0.75rem 1rem;
      border-radius: 10px;
      border: 1px solid rgba(251, 113, 133, 0.25);
      background: rgba(251, 113, 133, 0.08);
      color: #fca5a5;
      font-size: 0.85rem;
      line-height: 1.5;
    }

    .form-alert.show {
      display: block;
    }

    .form-grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .btn-submit {
      width: 100%;
      padding: 1rem;
      background: var(--digital);
      color: white;
      border: none;
      border-radius: 10px;
      font-family: var(--ff-body);
      font-weight: 700;
      font-size: 0.95rem;
      cursor: pointer;
      transition: all 0.3s;
      margin-top: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }

    .btn-submit:hover {
      background: #0da672;
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(16, 185, 129, 0.35);
    }

    /* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
    footer {
      background: #070809;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding: 5rem 0 3rem;
      color: rgba(255, 255, 255, 0.35);
      font-size: 0.85rem;
    }

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

    .footer-brand-block .footer-logo {
      font-family: var(--ff-display);
      font-size: 3rem;
      font-weight: 900;
      color: rgba(255, 255, 255, 0.15);
      letter-spacing: -0.05em;
      line-height: 1;
      margin-bottom: 1.25rem;
    }

    .footer-brand-block p {
      font-size: 0.88rem;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.35);
      max-width: 280px;
    }

    .footer-brand-block .footer-location {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: 1.25rem;
      font-family: var(--ff-mono);
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.25);
    }

    .footer-col h5 {
      font-size: 0.72rem;
      font-family: var(--ff-mono);
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 1.25rem;
    }

    .footer-col a,
    .footer-col p {
      display: block;
      margin-bottom: 0.75rem;
      font-size: 0.88rem;
      color: rgba(255, 255, 255, 0.35);
      transition: color 0.2s;
    }

    .footer-col a:hover {
      color: rgba(255, 255, 255, 0.7);
    }

    .footer-col .fc-talent {
      color: var(--talent);
    }

    .footer-col .fc-digital {
      color: var(--digital);
    }

    .footer-col .fc-academy {
      color: var(--academy);
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 2.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-modules {
      display: flex;
      gap: 2rem;
    }

    .footer-module {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.25);
    }

    .footer-module span {
      font-weight: 700;
    }

    .footer-copy {
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.2);
    }

    /* ═══════════════════════════════════════════════
   MODAL
═══════════════════════════════════════════════ */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(7, 8, 10, 0.85);
      backdrop-filter: blur(16px);
      z-index: 2000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      opacity: 0;
      visibility: hidden;
      transition: all 0.35s cubic-bezier(.22, .8, .22, 1);
    }

    .modal-overlay.open {
      opacity: 1;
      visibility: visible;
    }

    .modal-box {
      background: #111318;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 28px;
      width: 100%;
      max-width: 560px;
      padding: 3rem;
      position: relative;
      transform: translateY(24px);
      transition: transform 0.35s cubic-bezier(.22, .8, .22, 1);
      max-height: 90vh;
      overflow-y: auto;
    }

    .modal-overlay.open .modal-box {
      transform: translateY(0);
    }

    .modal-close {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      background: rgba(255, 255, 255, 0.06);
      border: none;
      color: rgba(255, 255, 255, 0.5);
      width: 36px;
      height: 36px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
    }

    .modal-close:hover {
      background: rgba(255, 255, 255, 0.12);
      color: white;
    }

    .modal-tag {
      font-family: var(--ff-mono);
      font-size: 0.68rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--digital);
      margin-bottom: 0.75rem;
    }

    .modal-box h2 {
      font-family: var(--ff-display);
      font-size: 2rem;
      font-weight: 700;
      color: var(--paper);
      margin-bottom: 0.5rem;
      letter-spacing: -0.03em;
      line-height: 1.2;
    }

    .modal-box .modal-sub {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.45);
      margin-bottom: 2rem;
      line-height: 1.7;
    }

    .modal-tabs {
      display: flex;
      gap: 0.5rem;
      background: rgba(255, 255, 255, 0.04);
      border-radius: 10px;
      padding: 4px;
      margin-bottom: 2rem;
    }

    .modal-tab {
      flex: 1;
      padding: 0.6rem;
      border: none;
      background: transparent;
      color: rgba(255, 255, 255, 0.4);
      border-radius: 8px;
      font-family: var(--ff-body);
      font-size: 0.82rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.25s;
    }

    .modal-tab.active {
      background: var(--paper);
      color: var(--ink);
    }

    .tab-pane {
      display: none;
    }

    .tab-pane.active {
      display: block;
    }

    .modal-success {
      text-align: center;
      padding: 3rem 0;
      display: none;
    }

    .modal-success.show {
      display: block;
    }

    .modal-success .success-icon {
      font-size: 3rem;
      margin-bottom: 1rem;
    }

    .modal-success h3 {
      font-family: var(--ff-display);
      font-size: 1.5rem;
      color: var(--paper);
      margin-bottom: 0.75rem;
    }

    .modal-success p {
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.9rem;
      line-height: 1.7;
    }

    /* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
    @media (max-width: 1024px) {

      .problem-inner,
      .diagram-header,
      .solutions-header,
      .sector-inner,
      .contact-inner {
        grid-template-columns: 1fr;
        gap: 3.5rem;
      }

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

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

    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .process-timeline {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
      }

      .process-timeline::before {
        display: none;
      }

      .footer-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
      }

      .form-grid-2 {
        grid-template-columns: 1fr;
      }

      .hero h1 {
        font-size: clamp(2.5rem, 10vw, 4rem);
        letter-spacing: -0.03em;
      }

      .contact-stat-row {
        gap: 2rem;
      }

      .modal-box {
        padding: 2rem;
      }

      .modal-tabs {
        flex-direction: column;
      }

      .hero {
        padding: calc(var(--nav-h) + 1.25rem) 5% 7rem;
      }

      .hero-content {
        margin: 0;
      }

      .scroll-indicator {
        bottom: 1rem;
      }

      .system-card {
        padding: 2rem 1.25rem;
      }

      #dsLabels text {
        font-size: 13px;
      }

      .system-quote {
        font-size: 0.95rem;
        margin-bottom: 2rem;
      }
    }

    @media (max-height: 760px) {
      .scroll-indicator {
        display: none;
      }
    }



    #dsLabels text {
      text-anchor: middle;
      dominant-baseline: middle;
    }
