/* ═══════════════════════════════════════════════
   TOKENS — dark-first, alineado a dot LXP
═══════════════════════════════════════════════ */
    :root {
      --talent: #E8636F;
      --acompanamiento: #7B61FF;
      --lxp: #00C9A7;
      --axon: #F3C969;
      --link: #4A7BF7;
      --ink: #0B0C10;
      --ink-soft: #12132A;
      --paper: #F0F0F5;
      --paper-off: #F7F8FA;
      --muted: #8A8A9A;
      --border: rgba(240, 240, 245, 0.09);
      --border-light: rgba(255, 255, 255, 0.08);
      --radius: 20px;
      --nav-h: 72px;
      --ff-display: 'Inter', system-ui, sans-serif;
      --ff-body: 'Inter', system-ui, sans-serif;
      --ff-mono: ui-monospace, 'SF Mono', Menlo, monospace;
    }

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

    html {
      scroll-behavior: smooth;
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }
    }

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

    ::selection {
      background: var(--axon);
      color: var(--ink);
    }

    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: 800;
      line-height: 1.1;
      letter-spacing: -0.03em;
      color: var(--paper);
    }

    .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);
    }

    @media (prefers-reduced-motion: reduce) {

      .reveal,
      .reveal-left,
      .reveal-right {
        opacity: 1;
        transform: none;
        transition: none;
      }
    }

    /* ═══════════════════════════════════════════════
   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(11, 12, 16, 0.86);
      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 {
      display: inline-flex;
      align-items: center;
    }

    .logo-img {
      height: 26px;
      width: auto;
      display: block;
    }

    .nav-links {
      display: flex;
      align-items: center;
      /* Reducido de 2.5rem al sumar "Mis cursos" y "Salir": con el espaciado
         anterior, esos dos ítems de más hacían que el texto de otros se partiera
         en dos líneas en portátiles de ~1200-1280px, un ancho real y frecuente. */
      gap: 1.85rem;
      list-style: none;
    }

    .nav-links li { flex-shrink: 0; }

    .nav-links a {
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(240, 240, 245, 0.72);
      white-space: nowrap;
      transition: color 0.3s;
    }

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

    /* El botón de salir tiene que verse igual que los demás ítems del nav —es
       un <form>/<button> porque LogoutView sólo acepta POST, no un <a>. */
    .nav-logout-form { display: contents; }
    .nav-links .nav-logout {
      font: inherit; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em;
      text-transform: uppercase; color: rgba(240, 240, 245, 0.72); white-space: nowrap;
      background: none; border: none; padding: 0; cursor: pointer;
      transition: color 0.3s;
    }
    .nav-links .nav-logout:hover { color: var(--paper); }

    .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(--link) !important;
      color: white !important;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(74, 123, 247, 0.35);
    }

    /* ═══════════════════════════════════════════════
   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;
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-bg {
        animation: none;
      }
    }

    @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(232, 99, 111, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 80% 60%, rgba(74, 123, 247, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 50% 10%, rgba(0, 201, 167, 0.12) 0%, transparent 70%);
      animation: heroAura 12s ease-in-out infinite alternate;
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-bg::before {
        animation: none;
      }
    }

    @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(--axon);
      animation: pulse 2s ease-in-out infinite;
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-badge-dot {
        animation: none;
      }
    }

    @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(232, 99, 111, 0.85);
      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(--link);
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 16px 48px rgba(74, 123, 247, 0.4);
    }

    .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);
    }

    .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;
    }

    @media (prefers-reduced-motion: reduce) {
      .scroll-line {
        animation: none;
      }
    }

    @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(--ink-soft);
      padding: 9rem 0;
    }

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

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

    .reveal-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;
    }

    .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(232, 99, 111, 0.1);
      border: 1px solid rgba(232, 99, 111, 0.25);
    }

    .problem-item:nth-child(2) .p-icon {
      background: rgba(74, 123, 247, 0.1);
      border: 1px solid rgba(74, 123, 247, 0.25);
    }

    .problem-item:nth-child(3) .p-icon {
      background: rgba(0, 201, 167, 0.1);
      border: 1px solid rgba(0, 201, 167, 0.25);
    }

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

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

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

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

    .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: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border);
      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(--lxp);
    }

    /* ═══════════════════════════════════════════════
   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;
    }

    @media (prefers-reduced-motion: reduce) {
      .ds-dot {
        animation: none;
      }
    }

    .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 (servicios + productos)
═══════════════════════════════════════════════ */
    .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(2, 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.r::after {
      background: var(--acompanamiento);
    }

    .sol-card.l::after {
      background: var(--lxp);
    }

    .sol-card.x::after {
      background: var(--axon);
    }

    .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-top-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1.75rem;
    }

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

    .sol-chip {
      font-family: var(--ff-mono);
      font-size: 0.62rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 0.3rem 0.7rem;
      border-radius: 50px;
      border: 1px solid;
    }

    .sol-card.t .sol-chip,
    .sol-card.r .sol-chip {
      color: rgba(255, 255, 255, 0.55);
      border-color: rgba(255, 255, 255, 0.18);
    }

    .sol-card.l .sol-chip {
      color: var(--lxp);
      border-color: rgba(0, 201, 167, 0.35);
    }

    .sol-card.x .sol-chip {
      color: var(--axon);
      border-color: rgba(243, 201, 105, 0.4);
    }

    .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(232, 99, 111, 0.12);
      border: 1px solid rgba(232, 99, 111, 0.28);
    }

    .sol-card.r .sol-icon {
      background: rgba(123, 97, 255, 0.12);
      border: 1px solid rgba(123, 97, 255, 0.28);
    }

    .sol-card.l .sol-icon {
      background: rgba(0, 201, 167, 0.12);
      border: 1px solid rgba(0, 201, 167, 0.28);
    }

    .sol-card.x .sol-icon {
      background: rgba(243, 201, 105, 0.14);
      border: 1px solid rgba(243, 201, 105, 0.32);
    }

    .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.r .sol-label {
      color: var(--acompanamiento);
    }

    .sol-card.l .sol-label {
      color: var(--lxp);
    }

    .sol-card.x .sol-label {
      color: var(--axon);
    }

    .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.45);
      margin-bottom: 2rem;
      line-height: 1.6;
    }

    .sol-intro {
      font-size: 0.88rem;
      color: rgba(255, 255, 255, 0.55);
      margin-bottom: 1rem;
    }

    .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.r .sol-list li::before {
      color: var(--acompanamiento);
    }

    .sol-card.l .sol-list li::before {
      color: var(--lxp);
    }

    .sol-card.x .sol-list li::before {
      color: var(--axon);
    }

    .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(232, 99, 111, 0.35);
    }

    .sol-card.r .sol-card-cta {
      color: var(--acompanamiento);
      border-color: rgba(123, 97, 255, 0.35);
    }

    .sol-card.l .sol-card-cta {
      color: var(--lxp);
      border-color: rgba(0, 201, 167, 0.35);
    }

    .sol-card.x .sol-card-cta {
      color: var(--axon);
      border-color: rgba(243, 201, 105, 0.4);
    }

    .sol-card.t .sol-card-cta:hover {
      background: rgba(232, 99, 111, 0.1);
    }

    .sol-card.r .sol-card-cta:hover {
      background: rgba(123, 97, 255, 0.1);
    }

    .sol-card.l .sol-card-cta:hover {
      background: rgba(0, 201, 167, 0.1);
    }

    .sol-card.x .sol-card-cta:hover {
      background: rgba(243, 201, 105, 0.12);
    }

    .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.r {
      background: var(--acompanamiento);
    }

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

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

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

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

    /* ═══════════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════════ */
    .process-section {
      background: var(--ink);
      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(--link), var(--lxp), var(--axon));
      opacity: 0.5;
    }

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

    .step-node {
      width: 80px;
      height: 80px;
      background: rgba(255, 255, 255, 0.04);
      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(0, 0, 0, 0.25);
    }

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

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

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

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

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

    .step-lock {
      position: absolute;
      bottom: -4px;
      right: -4px;
      width: 22px;
      height: 22px;
      background: var(--ink);
      border: 1px solid var(--border);
      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;
      color: var(--paper);
    }

    .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(0, 201, 167, 0.08);
      border: 1px solid rgba(0, 201, 167, 0.25);
      border-radius: var(--radius);
      max-width: 760px;
    }

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

    /* ═══════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════ */
    .faq-section {
      background: var(--ink-soft);
      padding: 9rem 0;
    }

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

    .faq-list {
      max-width: 820px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .faq-item {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
    }

    .faq-item summary {
      list-style: none;
      cursor: pointer;
      padding: 1.4rem 1.75rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      font-family: var(--ff-display);
      font-size: 1.02rem;
      font-weight: 600;
      color: var(--paper);
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-icon {
      flex-shrink: 0;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.95rem;
      color: var(--muted);
      transition: transform 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    }

    .faq-item[open] .faq-icon {
      transform: rotate(45deg);
      color: var(--axon);
      border-color: rgba(243, 201, 105, 0.4);
    }

    .faq-answer {
      padding: 0 1.75rem 1.5rem;
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.8;
    }

    /* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
    .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(74, 123, 247, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 20% 50%, rgba(232, 99, 111, 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(--link);
      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(232, 99, 111, 0.08);
    }

    .form-alert {
      display: none;
      margin-bottom: 1rem;
      padding: 0.75rem 1rem;
      border-radius: 10px;
      border: 1px solid rgba(232, 99, 111, 0.3);
      background: rgba(232, 99, 111, 0.1);
      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(--link);
      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: #2f5fd1;
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(74, 123, 247, 0.4);
    }

    /* ═══════════════════════════════════════════════
   PÁGINAS DE CONTENIDO (pilares, nosotros)
═══════════════════════════════════════════════ */
    .page-hero {
      background: var(--ink);
      padding: calc(var(--nav-h) + 6rem) 5% 5rem;
      text-align: center;
    }

    .page-hero .section-tag {
      display: flex;
      justify-content: center;
    }

    .page-accent-bar {
      width: 56px;
      height: 4px;
      border-radius: 4px;
      margin: 0 auto 2rem;
    }

    .page-hero h1 {
      font-family: var(--ff-display);
      font-size: clamp(2.4rem, 5.5vw, 4.2rem);
      font-weight: 900;
      line-height: 1.1;
      letter-spacing: -0.03em;
      color: var(--paper);
      max-width: 900px;
      margin: 0 auto 1.5rem;
    }

    .page-tagline {
      font-size: 1.15rem;
      color: rgba(255, 255, 255, 0.65);
      max-width: 640px;
      margin: 0 auto 2.5rem;
      line-height: 1.75;
      font-weight: 300;
    }

    .page-hero .hero-ctas {
      justify-content: center;
    }

    .content-section {
      padding: 6rem 0;
    }

    .content-section.alt {
      background: var(--ink-soft);
    }

    .content-section .section-lead {
      max-width: 720px;
      margin: 0 auto 3.5rem;
      text-align: center;
    }

    .content-section .section-lead p {
      color: var(--muted);
      font-size: 1.05rem;
      line-height: 1.85;
      margin-top: 1.25rem;
    }

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

    .content-inner .section-h {
      max-width: 380px;
    }

    .content-inner-lead p {
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.85;
      margin-top: 1.25rem;
      max-width: 380px;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

    .feature-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 2.25rem;
    }

    .feature-num {
      font-family: var(--ff-mono);
      font-size: 0.7rem;
      color: var(--muted);
      display: block;
      margin-bottom: 1rem;
    }

    .feature-card h3 {
      font-family: var(--ff-display);
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--paper);
      margin-bottom: 0.6rem;
      letter-spacing: -0.01em;
    }

    .feature-card p {
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.75;
    }

    .cta-band {
      margin: 0 auto;
      max-width: 900px;
      text-align: center;
      padding: 3.5rem 3rem;
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border);
    }

    .cta-band h2 {
      margin-bottom: 1rem;
    }

    .cta-band p {
      color: var(--muted);
      font-size: 1rem;
      margin-bottom: 2rem;
      line-height: 1.75;
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-band .hero-ctas {
      justify-content: center;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      margin-top: 1rem;
    }

    .team-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 2.5rem;
    }

    .team-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--ff-display);
      font-weight: 800;
      font-size: 1.25rem;
      margin-bottom: 1.25rem;
      color: var(--ink);
    }

    .team-card h3 {
      font-family: var(--ff-display);
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--paper);
    }

    .team-role {
      font-family: var(--ff-mono);
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      margin: 0.4rem 0 1.15rem;
    }

    .team-card p.bio {
      color: rgba(255, 255, 255, 0.68);
      font-size: 0.92rem;
      line-height: 1.8;
    }

    @media (max-width: 1024px) {

      .content-inner,
      .feature-grid,
      .team-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
    }

    @media (max-width: 768px) {
      .cta-band {
        padding: 2.5rem 1.5rem;
      }
    }

    /* ═══════════════════════════════════════════════
   BLOG
═══════════════════════════════════════════════ */
    .blog-list {
      max-width: 820px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .blog-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 2rem 2.25rem;
      transition: border-color 0.3s, background 0.3s;
    }

    .blog-card:hover {
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(255, 255, 255, 0.13);
    }

    .blog-card-meta {
      font-family: var(--ff-mono);
      font-size: 0.68rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 0.75rem;
    }

    .blog-card h2 {
      font-family: var(--ff-display);
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--paper);
      margin-bottom: 0.6rem;
      letter-spacing: -0.01em;
    }

    .blog-card h2 a {
      transition: color 0.2s;
    }

    .blog-card h2 a:hover {
      color: var(--lxp);
    }

    .blog-card p {
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.75;
    }

    .blog-empty {
      text-align: center;
      color: var(--muted);
      font-size: 1rem;
      padding: 3rem 0;
    }

    .post-header {
      max-width: 760px;
      margin: 0 auto;
    }

    .post-meta {
      font-family: var(--ff-mono);
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 1.5rem;
    }

    .post-image {
      width: 100%;
      border-radius: var(--radius);
      margin-bottom: 2.5rem;
      max-width: 820px;
      margin-left: auto;
      margin-right: auto;
    }

    .post-body {
      max-width: 720px;
      margin: 0 auto;
      color: rgba(255, 255, 255, 0.78);
      font-size: 1.02rem;
      line-height: 1.9;
    }

    .post-body p {
      margin-bottom: 1.5rem;
    }

    .post-body h2 {
      font-family: var(--ff-display);
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--paper);
      margin: 2.5rem 0 1rem;
    }

    .post-body h3 {
      font-family: var(--ff-display);
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--paper);
      margin: 2rem 0 0.85rem;
    }

    .post-body ul,
    .post-body ol {
      margin: 0 0 1.5rem 1.25rem;
    }

    .post-body li {
      margin-bottom: 0.5rem;
    }

    .post-body a {
      color: var(--lxp);
      text-decoration: underline;
    }

    .post-body strong {
      color: var(--paper);
    }

    .post-body blockquote {
      border-left: 3px solid var(--axon);
      padding-left: 1.5rem;
      margin: 2rem 0;
      color: var(--muted);
      font-style: italic;
    }

    .post-body img {
      border-radius: 16px;
      margin: 2rem 0;
    }

    /* ═══════════════════════════════════════════════
   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-logo-img {
      height: 28px;
      width: auto;
      opacity: 0.55;
      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-acompanamiento {
      color: var(--acompanamiento);
    }

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

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

    .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);
      flex-wrap: wrap;
      gap: 1.5rem;
    }

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

    .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(--link);
      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,
      .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;
      }

      .faq-item summary {
        padding: 1.15rem 1.25rem;
        font-size: 0.95rem;
      }

      .faq-answer {
        padding: 0 1.25rem 1.25rem;
      }
    }

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



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