﻿:root {
      --navy: #071424;
      --navy-2: #0d2035;
      --paper: #f6f8fb;
      --white: #ffffff;
      --muted: #667789;
      --line: rgba(7, 20, 36, .13);
      --green: #18a663;
      --blue: #1c63ff;
      --cyan: #18b8b2;
      --orange: #ff7a1a;
      --shadow: 0 24px 70px rgba(7, 20, 36, .28);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--navy);
      background: var(--paper);
      letter-spacing: 0;
    }
    a { color: inherit; text-decoration: none; }
    button, input { font: inherit; }

    .topbar {
      position: fixed;
      inset: 0 0 auto;
      z-index: 40;
      background: rgba(7, 20, 36, .88);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255,255,255,.12);
    }
    .nav {
      width: min(1180px, calc(100% - 32px));
      height: 72px;
      margin: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
      color: var(--white);
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 1.25rem;
      font-weight: 900;
      white-space: nowrap;
    }
    .brand-mark {
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      background: linear-gradient(135deg, var(--green), var(--blue));
      box-shadow: 0 10px 24px rgba(28, 99, 255, .28);
    }
    .brand span span { color: var(--orange); }
    .links {
      display: flex;
      align-items: center;
      gap: 22px;
      color: rgba(255,255,255,.78);
      font-size: .94rem;
      font-weight: 800;
    }
    .links a:hover { color: var(--white); }
    .nav-cta {
      min-height: 42px;
      padding: 0 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      background: var(--green);
      color: var(--white);
      font-weight: 900;
    }

    .hero {
      position: relative;
      min-height: 100vh;
      overflow: hidden;
      color: var(--white);
      /* Gradiente revelado al hacer scroll: azul profundo → verde/cyan de marca */
      background:
        radial-gradient(ellipse 80% 60% at 20% 100%, rgba(24,166,99,.55), transparent),
        radial-gradient(ellipse 70% 50% at 80% 0%, rgba(28,99,255,.45), transparent),
        radial-gradient(ellipse 60% 50% at 50% 50%, rgba(24,184,178,.30), transparent),
        linear-gradient(160deg, #071424 0%, #091c38 50%, #071c14 100%);
      isolation: isolate;
    }
    .hero-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: -3;
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      /* Overlay oscuro sólido que desaparece al hacer scroll via --overlay-op */
      background: #071424;
      opacity: var(--overlay-op, 1);
      transition: none;
    }
    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
      background-size: 72px 72px;
      mask-image: linear-gradient(180deg, rgba(0,0,0,.7), transparent 84%);
      opacity: var(--overlay-op, 1);
    }

    /* ═══════════════════════════════════════════
       HERO FULL — estilo editorial watchhouse
    ═══════════════════════════════════════════ */
    .hero-full {
      position: relative;
      width: 100%;
      height: 100dvh;
      min-height: 600px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      color: var(--white);
    }
    .hf-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .hf-img {
      width: 100%;
      height: 115%;
      object-fit: cover;
      object-position: center 20%;
      display: block;
      will-change: transform;
    }
    .hf-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to right, rgba(5,14,28,.75) 0%, rgba(5,14,28,.30) 60%, rgba(5,14,28,.10) 100%),
        linear-gradient(to top, rgba(5,14,28,.92) 0%, rgba(5,14,28,.10) 50%, rgba(5,14,28,.50) 100%);
    }
    .hf-body {
      position: relative;
      z-index: 2;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 0 clamp(24px, 6vw, 96px);
    }
    .hf-top {
      padding-top: 104px;
    }
    .hf-eyebrow {
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(255,255,255,.58);
    }
    .hf-center {
      flex: 1;
      display: flex;
      align-items: flex-end;
      padding-bottom: 2.5rem;
    }
    .hf-title {
      margin: 0;
      font-size: clamp(3rem, 8vw, 7.5rem);
      font-weight: 900;
      line-height: .96;
      letter-spacing: -.02em;
      display: flex;
      flex-direction: column;
      gap: .06em;
    }
    .hf-line {
      display: block;
      overflow: hidden;
    }
    .hf-line-indent {
      padding-left: clamp(40px, 8vw, 140px);
    }
    .hf-line-accent { color: var(--green); }
    .hf-line-inner {
      display: block;
      transform: translateY(105%);
      opacity: 0;
    }
    .hf-bottom {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 2rem;
      padding-bottom: clamp(32px, 5vh, 64px);
      flex-wrap: wrap;
    }
    .hf-sub {
      margin: 0;
      font-size: clamp(.88rem, 1.4vw, 1.05rem);
      line-height: 1.65;
      color: rgba(255,255,255,.68);
      max-width: 28rem;
      opacity: 0;
      transform: translateY(14px);
    }
    .hf-actions {
      display: flex;
      align-items: center;
      gap: 2rem;
      flex-shrink: 0;
      opacity: 0;
      transform: translateY(14px);
    }
    .hf-btn {
      display: inline-flex;
      align-items: center;
      height: 52px;
      padding: 0 28px;
      border-radius: 4px;
      background: var(--green);
      color: var(--white);
      font-size: .94rem;
      font-weight: 800;
      letter-spacing: .04em;
      white-space: nowrap;
      transition: background .2s;
    }
    .hf-btn:hover { background: #15924f; }
    .hf-link {
      font-size: .88rem;
      font-weight: 700;
      letter-spacing: .06em;
      color: rgba(255,255,255,.60);
      display: flex;
      align-items: center;
      gap: 6px;
      transition: color .2s;
    }
    .hf-link:hover { color: var(--white); }
    .hf-arrow {
      display: inline-block;
      animation: hf-bounce 1.8s ease-in-out infinite;
    }
    @keyframes hf-bounce {
      0%,100% { transform: translateY(0); }
      50%      { transform: translateY(6px); }
    }
    /* Eyebrow inicial invisible */
    .hf-eyebrow {
      opacity: 0;
      transform: translateY(10px);
    }
    /* Scroll hint */
    .hf-scroll-hint {
      position: absolute;
      right: clamp(20px, 3vw, 48px);
      bottom: clamp(28px, 5vh, 60px);
      z-index: 3;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
    .hf-scroll-hint span {
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(255,255,255,.38);
      writing-mode: vertical-rl;
    }
    .hf-scroll-line {
      width: 1px;
      height: 52px;
      background: rgba(255,255,255,.22);
      position: relative;
      overflow: hidden;
    }
    .hf-scroll-line::after {
      content: '';
      position: absolute;
      top: -100%;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--green);
      animation: hf-line-slide 2s ease-in-out infinite;
    }
    @keyframes hf-line-slide {
      0%   { top: -100%; }
      100% { top: 200%; }
    }
    @media (max-width: 767px) {
      .hf-bottom { flex-direction: column; align-items: flex-start; }
      .hf-title  { font-size: clamp(2.6rem, 12vw, 3.8rem); }
      .hf-line-indent { padding-left: clamp(20px, 5vw, 48px); }
      .hf-scroll-hint { display: none; }
    }

    /* ═══════════════════════════════════════════
       HERO SPLIT — estilo WatchHouse
    ═══════════════════════════════════════════ */
    .hs {
      position: relative;
      width: 100%;
      height: 100dvh;
      min-height: 560px;
      overflow: hidden;
      background: #000;
    }

    /* Contador de slides — top left */
    .hs-counter {
      position: absolute;
      top: 88px;
      left: clamp(20px, 3vw, 48px);
      z-index: 10;
      display: flex;
      gap: 12px;
    }
    .hs-num {
      background: none;
      border: none;
      cursor: pointer;
      font-size: .82rem;
      font-weight: 700;
      letter-spacing: .08em;
      color: rgba(255,255,255,.42);
      padding: 4px 0;
      border-bottom: 1.5px solid transparent;
      transition: color .3s, border-color .3s;
    }
    .hs-num.active {
      color: var(--white);
      border-bottom-color: var(--white);
    }

    /* Track (contiene todos los slides, solo 1 visible) */
    .hs-track {
      width: 100%;
      height: 100%;
      position: relative;
    }

    /* Slide individual */
    .hs-slide {
      position: absolute;
      inset: 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      opacity: 0;
      visibility: hidden;
      transition: opacity .9s cubic-bezier(.4,0,.2,1), visibility 0s .9s;
      will-change: opacity;
    }
    .hs-slide.active {
      opacity: 1;
      visibility: visible;
      transition: opacity .9s cubic-bezier(.4,0,.2,1), visibility 0s 0s;
      z-index: 2;
    }

    /* ── Panel IZQUIERDO — proceso/problema ── */
    .hs-left {
      position: relative;
      overflow: hidden;
    }
    .hs-left img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      filter: brightness(.72) saturate(.85);
      transition: transform 7s ease;
    }
    .hs-slide.active .hs-left img {
      transform: scale(1.04);
    }
    /* Overlay gradiente oscuro izquierda */
    .hs-left-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to right, rgba(0,0,0,.18), transparent 70%),
        linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 50%);
    }
    /* Texto descriptivo izquierda — bottom left */
    .hs-left-caption {
      position: absolute;
      bottom: clamp(28px, 4vh, 52px);
      left: clamp(20px, 3vw, 48px);
      margin: 0;
      font-size: clamp(.78rem, 1.2vw, .92rem);
      line-height: 1.55;
      color: rgba(255,255,255,.80);
      max-width: 22rem;
      font-weight: 400;
    }

    /* ── Panel DERECHO — resultado/solución ── */
    .hs-right {
      position: relative;
      overflow: hidden;
    }
    .hs-right img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      filter: brightness(.78);
      transition: transform 7s ease;
    }
    .hs-slide.active .hs-right img {
      transform: scale(1.04);
    }
    /* Contenido derecho — bottom left del panel */
    .hs-right-content {
      position: absolute;
      bottom: clamp(28px, 4vh, 52px);
      left: clamp(24px, 3vw, 48px);
      right: clamp(24px, 3vw, 48px);
    }
    .hs-heading {
      margin: 0 0 .6em;
      font-size: clamp(2.4rem, 5vw, 5rem);
      font-weight: 900;
      line-height: 1.0;
      color: var(--white);
      letter-spacing: -.02em;
      word-break: keep-all;
      overflow-wrap: normal;
      hyphens: none;
    }
    /* Línea divisor bajo el heading */
    .hs-right-content::before {
      content: '';
      display: block;
      width: clamp(60px, 10%, 120px);
      height: 2px;
      background: var(--white);
      margin-bottom: 1rem;
    }
    .hs-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: .88rem;
      font-weight: 700;
      letter-spacing: .08em;
      color: var(--white);
      text-transform: uppercase;
      border-bottom: 1px solid rgba(255,255,255,.4);
      padding-bottom: 2px;
      transition: border-color .2s, gap .2s;
    }
    .hs-cta:hover { gap: 16px; border-color: var(--white); }
    .hs-cta span { font-size: 1.1em; }

    /* Línea divisora vertical entre paneles */
    .hs-slide::after {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      left: 50%;
      width: 1px;
      background: rgba(255,255,255,.18);
      z-index: 3;
      pointer-events: none;
    }

    /* Mobile: apilados verticalmente */
    @media (max-width: 767px) {
      .hs-slide { grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; }
      .hs-heading { font-size: clamp(1.8rem, 7vw, 2.6rem); }
      .hs-counter { top: 80px; }
    }

    .hero-shell {
      width: min(1180px, calc(100% - 32px));
      min-height: 100vh;
      margin: auto;
      padding: 104px 0 46px;
      display: grid;
      align-items: center;
    }
    .carousel {
      position: relative;
      width: 100%;
      height: clamp(500px, calc(100vh - 170px), 620px);
      min-height: 0;
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 18px;
      overflow: hidden;
      box-shadow: var(--shadow);
      background: #071321;
      backdrop-filter: blur(8px);
    }
    .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      visibility: hidden;
      transform: scale(1.018);
      transition: opacity 1.05s cubic-bezier(.22, 1, .36, 1), transform 1.05s cubic-bezier(.22, 1, .36, 1), visibility 0s linear 1.05s;
      display: grid;
      grid-template-columns: minmax(0, .76fr) minmax(320px, .5fr);
      gap: 0;
      overflow: hidden;
      background: #071321;
    }
    .slide::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      background:
        radial-gradient(circle at 70% 28%, rgba(24,184,178,.30), transparent 28%),
        radial-gradient(circle at 28% 72%, rgba(255,122,26,.18), transparent 30%),
        linear-gradient(125deg, #06111f 0%, #0b1e35 55%, #071424 100%);
      background-size: cover;
      background-position: center;
      transform: scale(1.055);
      transition: transform 7s ease;
    }
    .slide::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      background:
        radial-gradient(circle at 24% 20%, rgba(24,184,178,.16), transparent 28%),
        linear-gradient(180deg, rgba(6,17,31,.12), rgba(6,17,31,.88));
      pointer-events: none;
    }
    .slide.active::before {
      transform: scale(1);
    }
    .slide.ai-business {
      --slide-image: url("https://images.pexels.com/photos/36765701/pexels-photo-36765701.jpeg?auto=compress&cs=tinysrgb&w=1800");
    }
    .slide.automation-business {
      --slide-image: url("https://images.pexels.com/photos/3931504/pexels-photo-3931504.jpeg?auto=compress&cs=tinysrgb&w=1800");
    }
    .slide.data-institutional {
      --slide-image: url("https://images.pexels.com/photos/2880897/pexels-photo-2880897.jpeg?auto=compress&cs=tinysrgb&w=1800");
    }
    .slide > * {
      position: relative;
      z-index: 1;
    }
    .slide.active {
      opacity: 1;
      visibility: visible;
      transform: scale(1);
      transition-delay: 0s;
      z-index: 2;
    }
    .slide.leaving {
      opacity: 0;
      visibility: visible;
      transform: scale(.992);
      z-index: 1;
    }
    .slide-copy > * {
      transform: translateY(14px);
      opacity: 0;
      transition: opacity .72s ease, transform .72s ease;
    }
    .slide.active .slide-copy > * {
      transform: translateY(0);
      opacity: 1;
    }
    .slide.active .slide-copy > *:nth-child(2) { transition-delay: .08s; }
    .slide.active .slide-copy > *:nth-child(3) { transition-delay: .14s; }
    .slide.active .slide-copy > *:nth-child(4) { transition-delay: .20s; }
    .slide-panel {
      opacity: .7;
      transition: opacity 1.05s cubic-bezier(.22, 1, .36, 1), transform 1.05s cubic-bezier(.22, 1, .36, 1);
      transform: translateX(12px);
    }
    .slide.active .slide-panel {
      opacity: 1;
      transform: translateX(0);
    }
    .slide-copy {
      padding: clamp(30px, 4.2vw, 52px);
      display: grid;
      align-content: center;
      background:
        linear-gradient(90deg, rgba(7,20,36,.96), rgba(7,20,36,.82), rgba(7,20,36,.44));
    }
    .eyebrow {
      margin: 0 0 15px;
      color: var(--orange);
      font-size: .74rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .1em;
    }
    h1 {
      margin: 0;
      max-width: 720px;
      font-size: clamp(2.25rem, 4.25vw, 4.35rem);
      line-height: 1;
      font-weight: 950;
      letter-spacing: 0;
    }
    .slide-copy p:not(.eyebrow) {
      max-width: 620px;
      margin: 20px 0 0;
      color: #ffd2b2;
      font-size: clamp(.98rem, 1.08vw, 1.08rem);
      line-height: 1.62;
    }
    .slide-copy p:not(.eyebrow) strong {
      color: var(--orange);
      font-weight: 950;
    }
    .slide-copy p:not(.eyebrow) em {
      color: #b4ffe2;
      font-style: normal;
      font-weight: 900;
    }
    .word-reveal .word {
      display: inline-block;
      opacity: 0;
      transform: translateY(12px);
    }
    .word-reveal .accent-orange { color: var(--orange); font-weight: 950; }
    .word-reveal .accent-cyan { color: #b4ffe2; font-weight: 950; }
    .word-reveal .accent-blue { color: #9fc7ff; font-weight: 950; }
    .slide.active .word-reveal .word {
      animation: wordIn .42s ease forwards;
      animation-delay: calc(.24s + var(--i) * .075s);
    }
    @keyframes wordIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .slide-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 26px;
    }
    .btn {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 16px;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,.18);
      font-weight: 900;
    }
    .btn.primary {
      color: var(--navy);
      background: var(--white);
      border-color: transparent;
    }
    .btn.secondary {
      color: var(--white);
      background: rgba(255,255,255,.08);
    }
    .slide-panel {
      position: relative;
      padding: 24px;
      display: grid;
      grid-template-rows: minmax(0, 1fr);
      align-content: stretch;
      gap: 14px;
      background:
        radial-gradient(circle at 34% 26%, rgba(24,184,178,.24), transparent 35%),
        radial-gradient(circle at 72% 72%, rgba(28,99,255,.18), transparent 34%),
        rgba(255,255,255,.08);
      overflow: hidden;
    }
    .slide-panel::before {
      content: "";
      position: absolute;
      inset: 20px;
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 14px;
      transform: perspective(700px) rotateY(-12deg) rotateX(7deg);
      background:
        linear-gradient(135deg, rgba(180,255,226,.08), rgba(255,255,255,.025));
    }
    .slide-panel::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 28% 18%, rgba(180,255,226,.10), transparent 30%),
        linear-gradient(135deg, rgba(255,255,255,.05), transparent 48%);
      pointer-events: none;
    }
    .metric-stack {
      position: relative;
      z-index: 1;
      display: none;
      gap: 9px;
    }
    .media-preview {
      position: relative;
      z-index: 1;
      min-height: 100%;
      border-radius: 12px;
      border: 1px solid rgba(255,255,255,.18);
      overflow: hidden;
      background: rgba(7,20,36,.44);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
    }
    .media-sequence {
      position: absolute;
      inset: 0;
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      grid-template-rows: repeat(6, 1fr);
      gap: 10px;
      padding: 10px;
      background: rgba(6,17,31,.48);
    }
    .media-sequence img {
      position: relative;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: .96;
      border-radius: 10px;
      filter: saturate(1.08) contrast(1.04);
      transform: scale(1.02);
      transition: opacity .72s ease;
      box-shadow: 0 14px 36px rgba(0,0,0,.24);
      animation: photoDrift 8.5s ease-in-out infinite;
      animation-delay: calc(var(--p, 0) * -.9s);
    }
    .slide.active .media-sequence img {
      animation-name: photoEnter, photoDrift;
      animation-duration: .78s, 8.5s;
      animation-timing-function: ease, ease-in-out;
      animation-iteration-count: 1, infinite;
      animation-fill-mode: both, none;
      animation-delay: calc(var(--p, 0) * .08s), calc(var(--p, 0) * -.9s);
    }
    .media-sequence img:first-child {
      grid-column: 1 / span 3;
      grid-row: 1 / span 4;
    }
    .media-sequence img:nth-child(2) {
      grid-column: 4 / span 3;
      grid-row: 1 / span 2;
      --p: 1;
    }
    .media-sequence img:nth-child(3) {
      grid-column: 4 / span 3;
      grid-row: 3 / span 2;
      --p: 2;
    }
    .media-sequence img:nth-child(4) {
      grid-column: 1 / span 2;
      grid-row: 5 / span 2;
      --p: 3;
    }
    .media-sequence img:nth-child(5) {
      grid-column: 3 / span 4;
      grid-row: 5 / span 2;
      --p: 4;
    }
    .media-preview img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: .86;
      filter: saturate(1.08) contrast(1.06);
    }
    .media-preview::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(6,17,31,.04), rgba(6,17,31,.54));
      opacity: .88;
      z-index: 1;
    }
    .media-preview::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 70% 30%, rgba(180,255,226,.12), transparent 32%);
      z-index: 3;
    }
    .media-title {
      position: absolute;
      left: 16px;
      top: 14px;
      z-index: 4;
      display: none;
      align-items: center;
      gap: 8px;
      color: #b4ffe2;
      font-size: .78rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .08em;
    }
    .media-title::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 14px var(--green);
    }
    .media-core {
      position: absolute;
      inset: 42px 18px 18px;
      z-index: 1;
      display: none;
    }
    .media-node {
      position: absolute;
      width: 54px;
      height: 54px;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,.22);
      background: rgba(255,255,255,.12);
      backdrop-filter: blur(8px);
      display: grid;
      place-items: center;
      color: var(--white);
      font-weight: 900;
      text-shadow: 0 1px 12px rgba(0,0,0,.45);
      box-shadow: 0 12px 26px rgba(0,0,0,.22);
    }
    .media-node.small {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      font-size: .76rem;
    }
    .media-line {
      position: absolute;
      height: 2px;
      background: linear-gradient(90deg, transparent, rgba(180,255,226,.82), transparent);
      transform-origin: left center;
      animation: linePulse 2.8s ease-in-out infinite;
    }
    .media-dashboard {
      position: absolute;
      inset: 0;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      align-items: end;
    }
    .bar {
      border-radius: 8px 8px 0 0;
      background: linear-gradient(180deg, rgba(24,184,178,.92), rgba(28,99,255,.65));
      min-height: 28px;
      animation: barGrow 3.2s ease-in-out infinite;
    }
    .bar:nth-child(2) { animation-delay: .4s; background: linear-gradient(180deg, rgba(255,122,26,.92), rgba(24,166,99,.7)); }
    .bar:nth-child(3) { animation-delay: .8s; }
    .media-map {
      position: absolute;
      inset: 0;
      border-radius: 14px;
      background:
        radial-gradient(circle at 30% 35%, rgba(24,184,178,.82) 0 4px, transparent 5px),
        radial-gradient(circle at 62% 42%, rgba(255,122,26,.82) 0 4px, transparent 5px),
        radial-gradient(circle at 48% 72%, rgba(28,99,255,.9) 0 5px, transparent 6px),
        linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
    }
    .media-map svg {
      width: 100%;
      height: 100%;
      opacity: .78;
    }
    @keyframes linePulse {
      0%, 100% { opacity: .32; }
      50% { opacity: 1; }
    }
    @keyframes photoDrift {
      0%, 100% { transform: scale(1.02) translate3d(0, 0, 0); filter: saturate(1.06) contrast(1.02); }
      38% { transform: scale(1.075) translate3d(-6px, 4px, 0); filter: saturate(1.14) contrast(1.05); }
      72% { transform: scale(1.045) translate3d(5px, -5px, 0); filter: saturate(1.10) contrast(1.04); }
    }
    @keyframes photoEnter {
      from { opacity: 0; transform: scale(.96) translateY(12px); }
      to { opacity: .96; transform: scale(1.02) translateY(0); }
    }
    @keyframes barGrow {
      0%, 100% { height: 36%; }
      50% { height: 88%; }
    }
    .metric-card {
      position: relative;
      min-height: 68px;
      padding: 12px 14px 12px 18px;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,.70);
      background:
        linear-gradient(135deg, rgba(255,255,255,.96), rgba(235,247,255,.88));
      backdrop-filter: blur(8px);
      box-shadow: 0 14px 30px rgba(0,0,0,.18);
      overflow: hidden;
    }
    .metric-card::before {
      content: "";
      position: absolute;
      left: 0;
      top: 12px;
      bottom: 12px;
      width: 4px;
      border-radius: 0 999px 999px 0;
      background: linear-gradient(180deg, var(--blue), var(--cyan));
      box-shadow: 0 0 18px rgba(28,99,255,.22);
    }
    .metric-card strong {
      display: block;
      font-size: 1.28rem;
      line-height: 1;
      color: var(--blue);
    }
    .metric-card span {
      display: block;
      margin-top: 7px;
      color: #173554;
      font-size: .80rem;
      line-height: 1.36;
    }
    @keyframes scan {
      to { transform: translateX(100%); }
    }
    .carousel-control {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 5;
      width: 50px;
      height: 50px;
      border: 1px solid rgba(180,255,226,.26);
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(24,184,178,.18), rgba(7,20,36,.62));
      color: var(--white);
      cursor: pointer;
      font-size: 1.6rem;
      font-weight: 900;
      backdrop-filter: blur(10px);
      box-shadow: 0 14px 30px rgba(0,0,0,.20);
    }
    .carousel-control:hover { background: linear-gradient(135deg, rgba(24,184,178,.30), rgba(7,20,36,.70)); }
    .prev { left: 18px; }
    .next { right: 18px; }
    .dots {
      position: absolute;
      left: 50%;
      bottom: 28px;
      z-index: 6;
      transform: translateX(-50%);
      display: flex;
      justify-content: center;
      gap: 10px;
    }
    .dot {
      width: 38px;
      height: 5px;
      border: 0;
      border-radius: 999px;
      background: rgba(255,255,255,.3);
      cursor: pointer;
    }
    .dot.active { background: var(--green); }

    .slogan {
      background: var(--white);
      padding: 20px 0;
      border-bottom: 1px solid var(--line);
      overflow: hidden;
      white-space: nowrap;
    }
    .slogan-track {
      display: flex;
      justify-content: center;
      width: 100%;
      align-items: center;
    }
    .slogan strong {
      font-size: clamp(1.5rem, 4vw, 2.5rem);
      color: var(--navy);
      flex: 0 0 auto;
    }
    .slogan span { color: var(--orange); font-style: italic; }
    .letter-reveal .letter {
      display: inline-block;
      opacity: 0;
      transform: translateY(12px);
      color: var(--navy);
      font-style: normal;
      animation: letterLoop 6.4s ease-in-out infinite;
      animation-delay: calc(var(--i) * .045s);
    }
    .letter-reveal .space {
      width: .28em;
    }
    .letter-reveal .accent {
      color: var(--orange);
      font-style: italic;
    }
    @keyframes letterLoop {
      0%, 6% {
        opacity: 0;
        transform: translateY(12px);
      }
      16%, 72% {
        opacity: 1;
        transform: translateY(0);
      }
      90%, 100% {
        opacity: 0;
        transform: translateY(-8px);
      }
    }

    .about-creinti {
      display: grid;
      grid-template-columns: 340px minmax(0, 1fr);
      gap: 44px;
      align-items: center;
      padding: 56px 0;
    }
    .logo-orbit {
      width: 300px;
      height: 300px;
      margin: auto;
      border-radius: 50%;
      padding: 18px;
      background:
        radial-gradient(circle at center, rgba(24,184,178,.18), transparent 58%),
        linear-gradient(135deg, rgba(7,20,36,.08), rgba(7,20,36,.02));
      box-shadow: 0 24px 60px rgba(7,20,36,.22);
      position: relative;
    }
    .logo-orbit::before {
      content: "";
      position: absolute;
      inset: -12px;
      border-radius: 50%;
      border: 1px solid rgba(28,99,255,.16);
      border-top-color: rgba(24,166,99,.5);
      animation: orbit 10s linear infinite;
    }
    .logo-orbit img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
      display: block;
      animation: logoSpin 13s cubic-bezier(.45, 0, .25, 1) infinite alternate;
      transform-style: preserve-3d;
    }
    .about-copy h2 {
      margin-bottom: 12px;
    }
    .about-copy p {
      color: var(--muted);
      line-height: 1.7;
      max-width: 900px;
    }
    .about-points {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 24px;
    }
    .about-point {
      position: relative;
      display: block;
      padding: 16px;
      border: 1px solid var(--line);
      border-radius: 10px;
      background: var(--white);
      overflow: hidden;
      box-shadow: 0 10px 24px rgba(7,20,36,.06);
      transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
      animation: pointActive 6s ease-in-out infinite;
    }
    .about-point:nth-child(2) { animation-delay: 2s; }
    .about-point:nth-child(3) { animation-delay: 4s; }
    .about-point:nth-child(1) strong,
    .about-point:nth-child(1) span { animation: pointTextActive 6s ease-in-out infinite; }
    .about-point:nth-child(2) strong,
    .about-point:nth-child(2) span { animation: pointTextActive 6s ease-in-out infinite 2s; }
    .about-point:nth-child(3) strong,
    .about-point:nth-child(3) span { animation: pointTextActive 6s ease-in-out infinite 4s; }
    .about-point::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(110deg, transparent 0 30%, rgba(24,184,178,.16) 46%, rgba(255,122,26,.12) 54%, transparent 70% 100%);
      transform: translateX(-120%);
      animation: pointSweep 6s ease-in-out infinite;
      pointer-events: none;
    }
    .about-point:nth-child(2)::after { animation-delay: 2s; }
    .about-point:nth-child(3)::after { animation-delay: 4s; }
    .about-point:hover {
      transform: translateY(-3px);
      border-color: rgba(24,184,178,.42);
      box-shadow: 0 18px 34px rgba(7,20,36,.12);
    }
    .about-point strong {
      position: relative;
      z-index: 1;
      display: block;
      margin-bottom: 6px;
      color: var(--navy);
      transition: color .24s ease;
    }
    .about-point span {
      position: relative;
      z-index: 1;
      color: var(--muted);
      font-size: .9rem;
      line-height: 1.45;
      transition: color .24s ease;
    }
    @keyframes pointActive {
      0%, 28%, 100% {
        background: var(--white);
        border-color: var(--line);
        box-shadow: 0 10px 24px rgba(7,20,36,.06);
        color: var(--navy);
      }
      10%, 20% {
        background: linear-gradient(135deg, #031b34, #075985 52%, #18b8b2);
        border-color: rgba(24,184,178,.48);
        box-shadow: 0 18px 38px rgba(24,184,178,.24);
        color: var(--white);
      }
    }
    @keyframes pointTextActive {
      0%, 28%, 100% { color: inherit; }
      10%, 20% { color: var(--white); }
    }
    .about-point:hover {
      background: linear-gradient(135deg, #031b34, #075985 52%, #18b8b2);
      color: var(--white);
    }
    .about-point.manual-active {
      background: linear-gradient(135deg, #031b34, #075985 52%, #18b8b2);
      border-color: rgba(24,184,178,.48);
      box-shadow: 0 18px 38px rgba(24,184,178,.24);
      color: var(--white);
    }
    .about-point:hover strong,
    .about-point:hover span,
    .about-point.manual-active strong,
    .about-point.manual-active span {
      color: var(--white);
    }
    .about-point:is(:hover) span {
      color: rgba(255,255,255,.84);
    }
    @keyframes pointSweep {
      0%, 30%, 100% { transform: translateX(-120%); }
      10%, 16% { transform: translateX(120%); }
    }
    .infographic-overlay {
      position: fixed;
      inset: 0;
      z-index: 120;
      display: grid;
      place-items: center;
      padding: 24px;
      background: rgba(3,13,25,.70);
      backdrop-filter: blur(14px);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity .26s ease, visibility .26s ease;
    }
    .infographic-overlay.open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }
    .infographic-panel {
      position: relative;
      width: min(980px, 100%);
      max-height: min(760px, calc(100vh - 48px));
      overflow: auto;
      border-radius: 14px;
      border: 1px solid rgba(180,255,226,.22);
      background:
        radial-gradient(circle at 12% 12%, rgba(24,184,178,.18), transparent 28%),
        radial-gradient(circle at 86% 18%, rgba(28,99,255,.16), transparent 30%),
        linear-gradient(135deg, #ffffff, #edf7fb);
      box-shadow: 0 28px 90px rgba(0,0,0,.34);
      padding: clamp(22px, 4vw, 38px);
      transform: translateY(18px) scale(.98);
      transition: transform .26s ease;
    }
    .infographic-overlay.open .infographic-panel {
      transform: translateY(0) scale(1);
    }
    .infographic-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 38px;
      height: 38px;
      border: 0;
      border-radius: 50%;
      background: #061323;
      color: var(--white);
      cursor: pointer;
      font-weight: 950;
    }
    .infographic-head {
      display: grid;
      grid-template-columns: 84px minmax(0, 1fr);
      gap: 18px;
      align-items: center;
      margin-bottom: 18px;
      padding-right: 42px;
    }
    .infographic-head > span {
      width: 78px;
      height: 78px;
      display: grid;
      place-items: center;
      border-radius: 22px;
      color: var(--white);
      font-weight: 950;
      font-size: 1.25rem;
      background: linear-gradient(135deg, #031b34, #075985 52%, #18b8b2);
      box-shadow: 0 18px 38px rgba(24,184,178,.24);
    }
    .infographic-head .kicker {
      margin-bottom: 6px;
    }
    .infographic-head h2 {
      margin: 0;
      font-size: clamp(2rem, 4vw, 3.4rem);
      line-height: 1;
    }
    .infographic-lead {
      max-width: 820px;
      margin: 0 0 22px;
      color: #40566b;
      font-size: 1.03rem;
      line-height: 1.65;
    }
    .infographic-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }
    .info-capability {
      position: relative;
      min-height: 136px;
      padding: 16px;
      border-radius: 10px;
      border: 1px solid rgba(7,20,36,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 14px 28px rgba(7,20,36,.08);
      display: grid;
      align-content: start;
      gap: 9px;
      overflow: hidden;
      transition: background .28s ease, border-color .28s ease, box-shadow .28s ease, transform .28s ease;
    }
    .info-capability::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(115deg, transparent 0 34%, rgba(28,99,255,.28) 48%, transparent 62% 100%);
      transform: translateX(-120%);
      pointer-events: none;
      opacity: 0;
    }
    .info-capability.active {
      background:
        linear-gradient(135deg, rgba(28,99,255,.14), rgba(24,184,178,.10)),
        rgba(255,255,255,.90);
      border-color: rgba(28,99,255,.58);
      box-shadow: 0 18px 40px rgba(28,99,255,.24);
      transform: translateY(-3px);
    }
    .info-capability.active::after {
      opacity: 1;
      animation: blueSweep 1.25s ease forwards;
    }
    .info-capability b {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      background: rgba(24,184,178,.13);
      color: #075985;
      font-size: .82rem;
    }
    .info-capability strong {
      color: var(--navy);
      font-size: 1rem;
      line-height: 1.22;
    }
    .info-capability span {
      color: #596b7d;
      line-height: 1.45;
      font-size: .9rem;
    }
    @keyframes blueSweep {
      from { transform: translateX(-120%); }
      to { transform: translateX(120%); }
    }
    @keyframes orbit {
      to { transform: rotate(360deg); }
    }
    @keyframes logoSpin {
      0% { transform: rotateY(-18deg) rotateZ(0deg) scale(1); }
      45% { transform: rotateY(18deg) rotateZ(2deg) scale(1.015); }
      100% { transform: rotateY(360deg) rotateZ(0deg) scale(1); }
    }

    .command {
      display: grid;
      grid-template-columns: minmax(0, .72fr) minmax(360px, .48fr);
      gap: 18px;
      align-items: stretch;
    }
    .command-main {
      position: relative;
      min-height: 420px;
      overflow: hidden;
      border-radius: 12px;
      border: 1px solid rgba(255,255,255,.14);
      color: var(--white);
      background:
        radial-gradient(circle at 72% 22%, rgba(24,184,178,.38), transparent 24%),
        radial-gradient(circle at 16% 72%, rgba(28,99,255,.34), transparent 28%),
        linear-gradient(135deg, #061323, #0b2746);
      padding: 30px;
      box-shadow: var(--shadow);
    }
    .command-main::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
      background-size: 42px 42px;
      opacity: .55;
    }
    .command-content {
      position: relative;
      z-index: 1;
      max-width: 720px;
    }
    .command-content p {
      color: rgba(255,255,255,.76);
      line-height: 1.7;
    }
    .command-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 28px;
    }
    .command-tile {
      min-height: 112px;
      padding: 16px;
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 10px;
      background: rgba(255,255,255,.08);
      backdrop-filter: blur(12px);
      color: var(--white);
      text-align: left;
      cursor: pointer;
      font: inherit;
      transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
    }
    .command-tile i {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      margin-bottom: 12px;
      border-radius: 10px;
      background: rgba(180,255,226,.16);
      color: #b4ffe2;
      font-size: 1rem;
    }
    .command-tile:hover,
    .command-tile:focus {
      transform: translateY(-5px);
      border-color: rgba(180,255,226,.78);
      background: linear-gradient(145deg, rgba(4,84,127,.95), rgba(24,184,178,.72));
      box-shadow: 0 18px 38px rgba(24,184,178,.20);
      outline: none;
    }
    .command-tile:hover strong,
    .command-tile:hover span,
    .command-tile:hover i,
    .command-tile:focus strong,
    .command-tile:focus span,
    .command-tile:focus i {
      color: var(--white);
    }
    @keyframes commandButtonPulse {
      0%, 12%, 100% {
        transform: translateY(0);
        border-color: rgba(255,255,255,.15);
        background: rgba(255,255,255,.08);
        color: var(--white);
        box-shadow: none;
      }
      5% {
        transform: translateY(-7px);
        border-color: rgba(255,196,63,.9);
        background: linear-gradient(145deg, #ffd84f, #ff7a1a);
        color: #071424;
        box-shadow: 0 20px 42px rgba(255,122,26,.28), 0 0 0 1px rgba(255,230,118,.32);
      }
    }
    .command-tile strong {
      display: block;
      font-size: 1.55rem;
    }
    .command-tile span {
      display: block;
      margin-top: 8px;
      color: currentColor;
      opacity: .72;
      font-size: .86rem;
      line-height: 1.35;
    }
    .command-side {
      position: relative;
      display: grid;
      grid-template-rows: repeat(3, minmax(0, 1fr));
      gap: 14px;
      padding-left: 48px;
    }
    .command-side::before {
      content: "";
      position: absolute;
      left: 22px;
      top: 83px;
      bottom: 83px;
      width: 3px;
      border-radius: 999px;
      background: linear-gradient(180deg, #18b8b2, #ff7a1a);
      box-shadow: 0 0 0 5px rgba(24,184,178,.08);
    }
    .system-card {
      position: relative;
      overflow: visible;
      display: grid;
      grid-template-columns: 64px minmax(0, 1fr);
      column-gap: 18px;
      align-items: center;
      min-height: 166px;
      padding: 18px 22px 18px 18px;
      border-radius: 10px;
      border: 1px solid var(--line);
      background: var(--white);
      box-shadow: 0 16px 34px rgba(7,20,36,.06);
      transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
      animation: processStepPulse 9s ease-in-out infinite;
    }
    .system-card:nth-child(2) { animation-delay: 3s; }
    .system-card:nth-child(3) { animation-delay: 6s; }
    .system-card:hover {
      transform: translateX(4px);
      border-color: rgba(24,184,178,.45);
      box-shadow: 0 22px 46px rgba(7,20,36,.10);
      animation-play-state: paused;
    }
    @keyframes processStepPulse {
      0%, 12%, 100% {
        transform: translateX(0);
        border-color: var(--line);
        box-shadow: 0 16px 34px rgba(7,20,36,.06);
      }
      5% {
        transform: translateX(6px);
        border-color: rgba(24,184,178,.65);
        box-shadow: 0 24px 52px rgba(24,184,178,.18), 0 0 0 1px rgba(255,122,26,.12);
      }
    }
    .system-card::before {
      content: "";
      position: absolute;
      left: -26px;
      top: 50%;
      width: 26px;
      height: 3px;
      border-radius: 999px;
      background: linear-gradient(90deg, #18b8b2, #ff7a1a);
      box-shadow: 0 0 16px rgba(24,184,178,.24);
      transform: translateY(-50%);
    }
    .system-card .card-step::before {
      display: none;
    }
    .system-card::after {
      content: "";
      position: absolute;
      left: -8px;
      top: 50%;
      width: 10px;
      height: 10px;
      border-top: 3px solid #ff7a1a;
      border-right: 3px solid #ff7a1a;
      transform: translateY(-50%) rotate(45deg);
    }
    .card-step {
      position: relative;
      width: 64px;
      height: 64px;
      display: grid;
      place-items: center;
      grid-row: span 2;
      margin: 0;
      border-radius: 18px;
      background: linear-gradient(145deg, #04547f, #18b8b2);
      color: #fff;
      font-weight: 950;
      font-size: .82rem;
      box-shadow: 0 12px 24px rgba(4,84,127,.18);
      transition: transform .22s ease, box-shadow .22s ease;
      animation: processIconPulse 9s ease-in-out infinite;
    }
    .system-card:nth-child(2) .card-step { animation-delay: 3s; }
    .system-card:nth-child(3) .card-step { animation-delay: 6s; }
    .system-card:hover .card-step {
      transform: scale(1.08);
      box-shadow: 0 18px 32px rgba(4,84,127,.24);
    }
    @keyframes processIconPulse {
      0%, 12%, 100% {
        transform: scale(1);
        background: linear-gradient(145deg, #04547f, #18b8b2);
        box-shadow: 0 12px 24px rgba(4,84,127,.18);
      }
      5% {
        transform: scale(1.1);
        background: linear-gradient(145deg, #ffd84f, #ff7a1a);
        box-shadow: 0 20px 38px rgba(255,122,26,.28);
      }
    }
    .card-step i {
      font-size: 1.58rem;
    }
    .system-card strong {
      display: block;
      margin: 2px 0 8px;
      font-size: 1.08rem;
    }
    .system-card p {
      grid-column: 2;
      margin: 0;
      color: var(--muted);
      line-height: 1.58;
      font-size: .95rem;
    }

    .architecture {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 12px;
    }
    .arch-step {
      position: relative;
      min-height: 250px;
      padding: 20px;
      border-radius: 10px;
      border: 1px solid var(--line);
      background: var(--white);
      overflow: hidden;
    }
    .arch-step::after {
      content: "";
      position: absolute;
      right: -38px;
      top: 36px;
      width: 86px;
      height: 86px;
      border-radius: 50%;
      border: 1px solid rgba(28,99,255,.16);
      background: rgba(28,99,255,.06);
    }
    .arch-step b {
      display: grid;
      place-items: center;
      width: 40px;
      height: 40px;
      border-radius: 8px;
      color: var(--white);
      background: var(--blue);
      margin-bottom: 20px;
    }
    .arch-step:nth-child(2) b { background: var(--cyan); }
    .arch-step:nth-child(3) b { background: var(--green); }
    .arch-step:nth-child(4) b { background: var(--orange); }
    .arch-step h3 {
      margin: 0 0 10px;
      font-size: 1.08rem;
    }
    .arch-step p {
      margin: 0;
      color: var(--muted);
      line-height: 1.58;
      font-size: .94rem;
    }

    .outcomes {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }
    .outcome {
      min-height: 190px;
      padding: 22px;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 10px;
      background: linear-gradient(160deg, rgba(255,255,255,.1), rgba(255,255,255,.04));
    }
    .outcome strong {
      display: block;
      color: #b4ffe2;
      font-size: 1.9rem;
      line-height: 1;
    }
    .outcome span {
      display: block;
      margin-top: 12px;
      color: rgba(255,255,255,.74);
      line-height: 1.5;
    }

    .section {
      padding: 72px 0;
      background: var(--paper);
    }
    .section.white { background: var(--white); }
    .wrap {
      width: min(1180px, calc(100% - 32px));
      margin: auto;
    }
    .section-head {
      display: grid;
      grid-template-columns: minmax(0, .86fr) minmax(280px, .54fr);
      gap: 34px;
      align-items: end;
      margin-bottom: 30px;
    }
    .kicker {
      margin: 0 0 10px;
      color: var(--blue);
      font-size: .78rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .1em;
    }
    h2 {
      margin: 0;
      font-size: clamp(2rem, 4vw, 3.25rem);
      line-height: 1.05;
      font-weight: 950;
      letter-spacing: 0;
    }
    .section-head p {
      margin: 0;
      color: var(--muted);
      line-height: 1.7;
    }
    .services {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }
    .service {
      min-height: 238px;
      padding: 22px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--white);
      transition: transform .25s ease, box-shadow .25s ease;
    }
    .service:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 42px rgba(7, 20, 36, .09);
    }
    .service b {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      color: var(--white);
      background: var(--green);
    }
    .service:nth-child(2) b,
    .service:nth-child(5) b { background: var(--blue); }
    .service:nth-child(3) b,
    .service:nth-child(6) b { background: var(--orange); }
    .service h3 {
      margin: 22px 0 10px;
      font-size: 1.15rem;
      line-height: 1.25;
    }
    .service p {
      margin: 0;
      color: var(--muted);
      line-height: 1.62;
      font-size: .96rem;
    }
    .ecosystem-gallery {
      display: flex;
      min-height: 520px;
      overflow: hidden;
      border-radius: 8px;
      background: var(--ink);
      box-shadow: 0 26px 60px rgba(7,20,36,.18);
    }
    .ecosystem-intro {
      display: grid;
      gap: 14px;
      align-items: start;
    }
    .ecosystem-intro .service-offer-reveal {
      max-width: 620px;
      color: #04547f;
    }
    .ecosystem-toggle {
      display: none;
      border: 0;
      cursor: pointer;
      font-weight: 950;
    }
    .ecosystem-card {
      position: relative;
      display: flex;
      flex: 1;
      min-width: 0;
      padding: 28px 24px;
      align-items: flex-end;
      color: var(--white);
      text-decoration: none;
      isolation: isolate;
      border-right: 3px solid rgba(255,255,255,.86);
      overflow: hidden;
      transition: flex .42s ease, filter .3s ease;
      animation: ecosystemPulse 18s ease-in-out infinite;
    }
    .ecosystem-card:nth-child(2) { animation-delay: 3s; }
    .ecosystem-card:nth-child(3) { animation-delay: 6s; }
    .ecosystem-card:nth-child(4) { animation-delay: 9s; }
    .ecosystem-card:nth-child(5) { animation-delay: 12s; }
    .ecosystem-card:nth-child(6) { animation-delay: 15s; }
    .ecosystem-card:last-child {
      border-right: 0;
    }
    .ecosystem-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: var(--eco-img);
      background-size: cover;
      background-position: center;
      transform: scale(1.03);
      transition: transform .55s ease;
      z-index: -2;
    }
    .ecosystem-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(5, 22, 38, .08), rgba(4, 35, 56, .72) 58%, rgba(2, 43, 68, .98));
      z-index: -1;
    }
    .ecosystem-card:hover {
      flex: 1.28;
      filter: saturate(1.08);
    }
    .ecosystem-card:hover::before {
      transform: scale(1.1);
    }
    .ecosystem-feature {
      flex: 2.45;
      padding: 34px 32px;
    }
    .ecosystem-feature:hover {
      flex: 2.7;
    }
    .ecosystem-tag {
      position: absolute;
      left: 24px;
      top: 24px;
      max-width: calc(100% - 48px);
      color: #b4ffe2;
      font-size: .78rem;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
      text-shadow: 0 2px 12px rgba(0,0,0,.45);
    }
    .ecosystem-card h3 {
      margin: 0;
      max-width: 340px;
      color: var(--white);
      font-size: clamp(1.05rem, 1.45vw, 1.7rem);
      line-height: 1.08;
      letter-spacing: 0;
      text-shadow: 0 3px 18px rgba(0,0,0,.44);
    }
    .ecosystem-feature h3 {
      font-size: clamp(2.2rem, 4vw, 4.15rem);
    }
    .ecosystem-feature p {
      max-width: 620px;
      margin: 18px 0 24px;
      color: rgba(255,255,255,.92);
      font-size: 1.06rem;
      line-height: 1.65;
    }
    .ecosystem-link {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      border-bottom: 2px solid rgba(255,255,255,.86);
      color: var(--white);
      font-weight: 900;
    }
    .ecosystem-card:not(.ecosystem-feature) > div {
      display: flex;
      width: 100%;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
    }
    .ecosystem-plus {
      display: grid;
      width: 34px;
      height: 34px;
      flex: 0 0 auto;
      place-items: center;
      border: 2px solid #25b8ff;
      border-radius: 50%;
      color: var(--white);
      font-size: 1.28rem;
      font-weight: 700;
      box-shadow: 0 0 0 rgba(37,184,255,0);
      transition: background .25s ease, box-shadow .25s ease;
    }
    .ecosystem-card:hover .ecosystem-plus {
      background: #078bd3;
      box-shadow: 0 0 24px rgba(37,184,255,.72);
    }
    @keyframes ecosystemPulse {
      0%, 13%, 100% {
        filter: saturate(1);
        box-shadow: none;
      }
      4%, 9% {
        filter: saturate(1.18) brightness(1.08);
        box-shadow: inset 0 0 0 2px rgba(180,255,226,.75), 0 0 32px rgba(24,184,178,.24);
      }
    }

    .data-service {
      display: grid;
      grid-template-columns: minmax(0, .6fr) minmax(360px, .55fr);
      gap: 28px;
      align-items: center;
    }
    .data-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 22px;
    }
    .data-tab {
      padding: 10px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.16);
      background: rgba(255,255,255,.08);
      color: rgba(255,255,255,.84);
      font-weight: 900;
      font-size: .85rem;
    }
    .data-panel {
      padding: 26px;
      border-radius: 12px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.16);
    }
    .data-number {
      display: block;
      color: #b4ffe2;
      font-size: clamp(2.4rem, 5vw, 4.6rem);
      line-height: 1;
      font-weight: 950;
    }
    .data-panel p {
      color: rgba(255,255,255,.76);
      line-height: 1.64;
      margin-bottom: 0;
    }

    .strategic-services {
      display: grid;
      gap: 28px;
    }
    .strategic-head {
      align-items: end;
    }
    .strategic-head p {
      max-width: 520px;
      color: #4c6177;
    }
    .service-offer-reveal {
      min-height: 96px;
      font-size: 1.16rem;
      line-height: 1.68;
      color: #04547f;
    }
    .service-word {
      display: inline-block;
      margin-right: .34em;
      opacity: 0;
      transform: translateY(12px) rotateX(65deg);
      animation: serviceTyping 8.8s ease-in-out infinite;
      animation-delay: calc(var(--i) * .11s);
      transform-origin: 50% 90%;
    }
    .service-word.tone-blue,
    .service-word.tone-green,
    .service-word.tone-orange,
    .service-word.tone-cyan { color: #04547f; }
    .service-word.tone-light { color: rgba(255,255,255,.92); }
    .service-offer-reveal.light .service-word.tone-orange { color: #ff7a1a; font-weight: 950; }
    @keyframes serviceTyping {
      0%, 8% { opacity: 0; transform: translateY(12px) rotateX(65deg); filter: blur(3px); }
      18%, 74% { opacity: 1; transform: translateY(0) rotateX(0); filter: blur(0); }
      90%, 100% { opacity: 0; transform: translateY(-8px) rotateX(-30deg); filter: blur(2px); }
    }
    .strategic-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
      grid-auto-flow: dense;
    }
    .strategic-card {
      position: relative;
      display: block;
      color: inherit;
      text-decoration: none;
      overflow: hidden;
      min-height: 0;
      padding: 0 18px 18px;
      border-radius: 12px;
      border: 1px solid rgba(255,255,255,.12);
      background:
        linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03)),
        #071424;
      box-shadow: 0 18px 42px rgba(7, 20, 36, .12);
      transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
      animation: serviceCardPulse 16s ease-in-out infinite;
    }
    .strategic-card h3,
    .strategic-card p {
      position: relative;
      z-index: 1;
      transition: color .24s ease;
    }
    .strategic-card::after {
      content: "";
      position: absolute;
      inset: auto -30% -42% -30%;
      height: 160px;
      background: radial-gradient(circle at 50% 0, rgba(24,184,178,.18), transparent 68%);
      pointer-events: none;
    }
    .strategic-card:hover {
      transform: translateY(-8px);
      border-color: rgba(4,84,127,.38);
      box-shadow: 0 24px 56px rgba(7, 20, 36, .14);
    }
    .strategic-card:nth-child(2) { animation-delay: 2s; }
    .strategic-card:nth-child(3) { animation-delay: 4s; }
    .strategic-card:nth-child(4) { animation-delay: 6s; }
    .strategic-card:nth-child(5) { animation-delay: 8s; }
    .strategic-card:nth-child(6) { animation-delay: 10s; }
    .strategic-card:nth-child(7) { animation-delay: 12s; }
    .strategic-card:nth-child(8) { animation-delay: 14s; }
    .strategic-card:nth-child(1),
    .strategic-card:nth-child(2),
    .strategic-card:nth-child(3),
    .strategic-card:nth-child(4),
    .strategic-card:nth-child(5),
    .strategic-card:nth-child(6),
    .strategic-card:nth-child(7),
    .strategic-card:nth-child(8) {
      animation-name: serviceCardBright;
    }
    @keyframes serviceCardPulse {
      0%, 8%, 100% {
        transform: translateY(0) scale(1);
        border-color: rgba(255,255,255,.12);
        box-shadow: 0 18px 42px rgba(7, 20, 36, .12);
      }
      3.5% {
        transform: translateY(-10px) scale(1.025);
        border-color: rgba(255,185,35,.92);
        background:
          linear-gradient(145deg, rgba(255,192,40,.98), rgba(255,122,26,.92)),
          #ff9d1f;
        box-shadow: 0 30px 64px rgba(255,122,26,.32), 0 0 0 1px rgba(255,207,86,.42);
      }
    }
    .strategic-card:nth-child(1) { animation-name: serviceCardPulseConsulting; }
    .strategic-card:nth-child(2) { animation-name: serviceCardPulseData; }
    .strategic-card:nth-child(3) { animation-name: serviceCardPulsePdot; }
    .strategic-card:nth-child(4) { animation-name: serviceCardPulseAutomation; }
    .strategic-card:nth-child(5) { animation-name: serviceCardPulseSystems; }
    .strategic-card:nth-child(6) { animation-name: serviceCardPulseAcademy; }
    .strategic-card:nth-child(7) { animation-name: serviceCardPulseBooks; }
    .strategic-card:nth-child(8) { animation-name: serviceCardPulseDocuments; }
    @keyframes serviceCardPulseConsulting { 0%,8%,100% { transform: translateY(0) scale(1); border-color: rgba(255,255,255,.12); box-shadow: 0 18px 42px rgba(7,20,36,.12); background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03)), #071424; } 3.5% { transform: translateY(-10px) scale(1.025); border-color: rgba(255,185,35,.92); background: linear-gradient(145deg, rgba(255,204,54,.98), rgba(255,122,26,.92)), #ff9d1f; box-shadow: 0 30px 64px rgba(255,122,26,.32), 0 0 0 1px rgba(255,207,86,.42); } }
    @keyframes serviceCardPulseData { 0%,8%,100% { transform: translateY(0) scale(1); border-color: rgba(255,255,255,.12); box-shadow: 0 18px 42px rgba(7,20,36,.12); background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03)), #071424; } 3.5% { transform: translateY(-10px) scale(1.025); border-color: rgba(255,214,74,.95); background: linear-gradient(145deg, #ffd84f, #ff9f1c), #ffc43d; box-shadow: 0 30px 64px rgba(255,180,36,.34), 0 0 0 1px rgba(255,230,118,.48); } }
    @keyframes serviceCardPulsePdot { 0%,8%,100% { transform: translateY(0) scale(1); border-color: rgba(255,255,255,.12); box-shadow: 0 18px 42px rgba(7,20,36,.12); background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03)), #071424; } 3.5% { transform: translateY(-10px) scale(1.025); border-color: rgba(255,185,35,.92); background: linear-gradient(145deg, #ffc83d, #ff7a1a), #ff9d1f; box-shadow: 0 30px 64px rgba(255,122,26,.32), 0 0 0 1px rgba(255,207,86,.42); } }
    @keyframes serviceCardPulseAutomation { 0%,8%,100% { transform: translateY(0) scale(1); border-color: rgba(255,255,255,.12); box-shadow: 0 18px 42px rgba(7,20,36,.12); background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03)), #071424; } 3.5% { transform: translateY(-10px) scale(1.025); border-color: rgba(255,196,63,.95); background: linear-gradient(145deg, #ffc83d, #ff7a1a), #ff8d16; box-shadow: 0 30px 64px rgba(255,122,26,.35), 0 0 0 1px rgba(255,207,86,.45); } }
    @keyframes serviceCardPulseSystems { 0%,8%,100% { transform: translateY(0) scale(1); border-color: rgba(255,255,255,.12); box-shadow: 0 18px 42px rgba(7,20,36,.12); background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03)), #071424; } 3.5% { transform: translateY(-10px) scale(1.025); border-color: rgba(255,214,74,.95); background: linear-gradient(145deg, #ffe15a, #ff9f1c), #ffc43d; box-shadow: 0 30px 64px rgba(255,180,36,.34), 0 0 0 1px rgba(255,230,118,.48); } }
    @keyframes serviceCardPulseAcademy { 0%,8%,100% { transform: translateY(0) scale(1); border-color: rgba(255,255,255,.12); box-shadow: 0 18px 42px rgba(7,20,36,.12); background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03)), #071424; } 3.5% { transform: translateY(-10px) scale(1.025); border-color: rgba(255,185,35,.92); background: linear-gradient(145deg, #ffc83d, #ff7a1a), #ff9d1f; box-shadow: 0 30px 64px rgba(255,122,26,.32), 0 0 0 1px rgba(255,207,86,.42); } }
    @keyframes serviceCardPulseBooks { 0%,8%,100% { transform: translateY(0) scale(1); border-color: rgba(255,255,255,.12); box-shadow: 0 18px 42px rgba(7,20,36,.12); background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03)), #071424; } 3.5% { transform: translateY(-10px) scale(1.025); border-color: rgba(255,214,74,.95); background: linear-gradient(145deg, #ffd84f, #ff9f1c), #ffc43d; box-shadow: 0 30px 64px rgba(255,180,36,.34), 0 0 0 1px rgba(255,230,118,.48); } }
    @keyframes serviceCardPulseDocuments { 0%,8%,100% { transform: translateY(0) scale(1); border-color: rgba(255,255,255,.12); box-shadow: 0 18px 42px rgba(7,20,36,.12); background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03)), #071424; } 3.5% { transform: translateY(-10px) scale(1.025); border-color: rgba(255,196,63,.95); background: linear-gradient(145deg, #ffc83d, #ff7a1a), #ff8d16; box-shadow: 0 30px 64px rgba(255,122,26,.35), 0 0 0 1px rgba(255,207,86,.45); } }
    .strategic-card:hover {
      animation-play-state: paused;
    }
    .strategic-card:hover h3,
    .strategic-card:hover p,
    .strategic-card:focus h3,
    .strategic-card:focus p,
    .strategic-card:active h3,
    .strategic-card:active p {
      color: var(--white);
    }
    .service-visual {
      min-height: 170px;
      margin: 0 -18px 18px;
      padding: 18px;
      display: grid;
      place-items: center;
      align-content: center;
      gap: 10px;
      color: var(--white);
      background:
        linear-gradient(145deg, rgba(3,19,41,.72), rgba(4,84,127,.50)),
        var(--service-img),
        linear-gradient(145deg, var(--service-a, #031329), var(--service-b, #04547f));
      background-size: cover;
      background-position: center;
      filter: saturate(.8) brightness(.9);
      transform: scale(1);
      transition: filter .28s ease, transform .28s ease;
    }
    .strategic-card:hover .service-visual {
      filter: saturate(1.35) brightness(1.08);
      transform: scale(1.025);
    }
    .strategic-card:nth-child(1) .service-visual { animation: serviceVisualGlow 16s ease-in-out infinite; }
    .strategic-card:nth-child(2) .service-visual { animation: serviceVisualGlow 16s ease-in-out infinite 2s; }
    .strategic-card:nth-child(3) .service-visual { animation: serviceVisualGlow 16s ease-in-out infinite 4s; }
    .strategic-card:nth-child(4) .service-visual { animation: serviceVisualGlow 16s ease-in-out infinite 6s; }
    .strategic-card:nth-child(5) .service-visual { animation: serviceVisualGlow 16s ease-in-out infinite 8s; }
    .strategic-card:nth-child(6) .service-visual { animation: serviceVisualGlow 16s ease-in-out infinite 10s; }
    .strategic-card:nth-child(7) .service-visual { animation: serviceVisualGlow 16s ease-in-out infinite 12s; }
    .strategic-card:nth-child(8) .service-visual { animation: serviceVisualGlow 16s ease-in-out infinite 14s; }
    @keyframes serviceVisualGlow {
      0%, 8%, 100% {
        filter: saturate(.8) brightness(.9);
        transform: scale(1);
      }
      3.5% {
        filter: saturate(1.8) brightness(1.16) contrast(1.08);
        transform: scale(1.035);
      }
    }
    .service-visual i {
      width: 74px;
      height: 74px;
      display: grid;
      place-items: center;
      border: 2px solid rgba(255,255,255,.68);
      border-radius: 50%;
      font-size: 1.65rem;
      box-shadow: 0 18px 38px rgba(0,0,0,.16);
    }
    .service-visual span {
      color: var(--white);
      font-size: .82rem;
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: .04em;
      text-align: center;
    }
    .strategic-card.consulting { --service-a: #031329; --service-b: #00a7ce; --service-img: url("https://www.creinti.com/img/servicios/1.consultoria2.png"); }
    .strategic-card.data { --service-a: #ffbf00; --service-b: #f19b00; --service-img: url("https://www.creinti.com/img/servicios/8.datos2.png"); }
    .strategic-card.pdot { --service-a: #20282c; --service-b: #727a80; --service-img: url("https://www.creinti.com/img/servicios/6.pdot2.png"); }
    .strategic-card.automation { --service-a: #e0312f; --service-b: #b91518; --service-img: url("https://www.creinti.com/img/servicios/7.automatizaciones2.png"); }
    .strategic-card.systems { --service-a: #0c6b3d; --service-b: #063d29; --service-img: url("https://www.creinti.com/img/servicios/5.sistemas2.png"); }
    .strategic-card.academy { --service-a: #76082f; --service-b: #081a36; --service-img: url("https://www.creinti.com/img/servicios/2.academia2.png"); }
    .strategic-card.books { --service-a: #ff9922; --service-b: #ff6f1c; --service-img: url("https://www.creinti.com/img/servicios/3.libros2.png"); }
    .strategic-card.documents { --service-a: #d24431; --service-b: #a52822; --service-img: url("https://www.creinti.com/img/servicios/4.Tesis2.png"); }
    .strategic-card h3 {
      margin: 0 0 10px;
      font-size: 1.02rem;
      line-height: 1.25;
      color: var(--orange);
    }
    .strategic-card p {
      margin: 0;
      color: rgba(255,255,255,.72);
      line-height: 1.62;
      font-size: .9rem;
    }

    .strategic-card {
      border: 2px solid #fff;
      background: #fff;
      box-shadow: 0 18px 44px rgba(7,20,36,.08);
      animation: serviceCardBright 16s ease-in-out infinite;
    }
    .strategic-card::after {
      background: radial-gradient(circle at 70% 30%, rgba(24,184,178,.10), transparent 62%);
    }
    .strategic-card:nth-child(2) { animation-delay: 2s; }
    .strategic-card:nth-child(3) { animation-delay: 4s; }
    .strategic-card:nth-child(4) { animation-delay: 6s; }
    .strategic-card:nth-child(5) { animation-delay: 8s; }
    .strategic-card:nth-child(6) { animation-delay: 10s; }
    .strategic-card:nth-child(7) { animation-delay: 12s; }
    .strategic-card:nth-child(8) { animation-delay: 14s; }
    @keyframes serviceCardBright {
      0%, 8%, 100% {
        transform: translateY(0) scale(1);
        border-color: #fff;
        background: #fff;
        box-shadow: 0 18px 44px rgba(7,20,36,.08);
      }
      3.5% {
        transform: translateY(-9px) scale(1.02);
        border-color: rgba(255,122,26,.58);
        background: #fff8ef;
        box-shadow: 0 28px 58px rgba(255,122,26,.18), 0 0 0 1px rgba(255,184,83,.22);
      }
    }
    .strategic-card:nth-child(1),
    .strategic-card:nth-child(2),
    .strategic-card:nth-child(3),
    .strategic-card:nth-child(4),
    .strategic-card:nth-child(5),
    .strategic-card:nth-child(6),
    .strategic-card:nth-child(7),
    .strategic-card:nth-child(8) {
      animation-name: serviceCardBright;
    }
    .service-visual {
      background:
        var(--service-img),
        linear-gradient(145deg, var(--service-a, #031329), var(--service-b, #04547f));
      background-size: cover;
      background-position: center;
      filter: none;
    }
    .service-visual i,
    .service-visual span {
      display: none;
    }
    .service-visual i {
      background: transparent;
      border-color: rgba(255,255,255,.76);
      box-shadow: none;
    }
    .strategic-card h3 {
      color: #071424;
    }
    .strategic-card p {
      color: #334b63;
    }
    .strategic-card:hover h3,
    .strategic-card:hover p,
    .strategic-card:focus h3,
    .strategic-card:focus p,
    .strategic-card:active h3,
    .strategic-card:active p {
      color: #071424;
    }

    .program {
      display: grid;
      grid-template-columns: minmax(0, .7fr) minmax(330px, .48fr);
      gap: 34px;
      align-items: stretch;
    }
    .program-main {
      padding: 34px;
      border-radius: 10px;
      background: var(--navy);
      color: var(--white);
      display: grid;
      align-content: center;
      min-height: 380px;
    }
    .program-main p {
      color: rgba(255,255,255,.75);
      line-height: 1.72;
    }
    .program-services {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin: 18px 0;
    }
    .program-services article {
      min-height: 118px;
      padding: 16px;
      border-radius: 10px;
      border: 1px solid rgba(255,255,255,.15);
      background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.045));
      box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
    }
    .program-services strong {
      display: block;
      color: var(--white);
      font-size: .98rem;
      line-height: 1.24;
      margin-bottom: 8px;
    }
    .program-services span {
      display: block;
      color: rgba(255,255,255,.72);
      font-size: .84rem;
      line-height: 1.45;
    }
    .program-list {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 12px;
    }
    .program-list li {
      padding: 16px;
      border-radius: 8px;
      border: 1px solid var(--line);
      background: var(--white);
      line-height: 1.5;
    }

    .articles {
      display: grid;
      grid-template-columns: 1.12fr repeat(2, minmax(0, .72fr));
      gap: 16px;
    }
    .article-card {
      min-height: 280px;
      padding: 26px;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: var(--white);
      display: grid;
      align-content: space-between;
      transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    }
    .article-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 22px 50px rgba(7,20,36,.11);
      border-color: rgba(255,122,26,.25);
    }
    .article-card.featured {
      color: var(--white);
      background:
        radial-gradient(circle at 88% 14%, rgba(24,184,178,.32), transparent 34%),
        radial-gradient(circle at 12% 82%, rgba(28,99,255,.18), transparent 38%),
        linear-gradient(145deg, rgba(7,20,36,.99), rgba(10,32,58,.96));
      border-color: rgba(255,255,255,.1);
    }
    .article-card.featured:hover {
      border-color: rgba(255,122,26,.45);
      box-shadow: 0 24px 56px rgba(0,0,0,.28), 0 0 0 1px rgba(255,122,26,.2);
    }
    .tag {
      display: inline-flex;
      width: fit-content;
      padding: 5px 11px;
      border-radius: 999px;
      background: rgba(28,99,255,.1);
      color: var(--blue);
      font-size: .72rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .07em;
    }
    .article-card.featured .tag {
      background: rgba(255,255,255,.12);
      color: #b4ffe2;
    }
    .article-meta {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: .74rem;
      color: var(--muted);
      margin-top: 6px;
    }
    .article-card.featured .article-meta { color: rgba(255,255,255,.46); }
    .article-meta-dot { color: var(--line); }
    .article-card h3 {
      margin: 14px 0 8px;
      font-size: clamp(1.15rem, 1.9vw, 1.7rem);
      line-height: 1.18;
    }
    .article-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
      font-size: .94rem;
    }
    .article-card.featured p { color: rgba(255,255,255,.72); }
    .article-link {
      margin-top: 20px;
      color: var(--blue);
      font-weight: 900;
      font-size: .92rem;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      transition: color .2s, gap .2s;
    }
    .article-link:hover { color: var(--orange); gap: 8px; }
    .article-card.featured .article-link { color: #b4ffe2; }
    .article-card.featured .article-link:hover { color: var(--white); }

    /* ── Tarjeta activa — sube una a la vez (JS) ──────────────── */
    .article-card.card-active {
      transform: translateY(-6px);
      box-shadow: 0 22px 50px rgba(7,20,36,.11);
      border-color: rgba(7,20,36,.18);
    }

    .dark-section {
      background: var(--navy);
      color: var(--white);
    }
    .dark-section .section-head p {
      color: rgba(255,255,255,.7);
    }
    .dark-section .kicker {
      color: #b4ffe2;
    }
    .sectors {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }
    /* ── Sector flip-card ─────────────────────────────────── */
    .sector {
      min-height: 210px;
      border-radius: 10px;
      perspective: 800px;
      cursor: pointer;
    }
    .sector-inner {
      position: relative;
      width: 100%; height: 100%; min-height: 210px;
      transform-style: preserve-3d;
      transition: transform .65s cubic-bezier(.4,0,.2,1),
                  box-shadow .4s ease;
      border-radius: 10px;
    }
    /* Cara delantera */
    .sector-front {
      position: absolute; inset: 0;
      backface-visibility: hidden;
      border-radius: 10px;
      padding: 22px;
      border: 1px solid rgba(255,255,255,.14);
      background: linear-gradient(160deg, rgba(255,255,255,.1), rgba(255,255,255,.045));
      display: flex; flex-direction: column;
      transition: border-color .4s ease;
    }
    .sector-icon {
      font-size: 1.6rem;
      margin-bottom: 10px;
      display: block;
    }
    .sector-front strong {
      display: block;
      margin-bottom: 10px;
      font-size: 1.05rem;
      transition: color .4s ease;
    }
    .sector-front p {
      margin: 0;
      color: rgba(255,255,255,.72);
      line-height: 1.58;
      font-size: .9rem;
    }
    /* Cara trasera */
    .sector-back {
      position: absolute; inset: 0;
      backface-visibility: hidden;
      border-radius: 10px;
      transform: rotateY(180deg);
      background: linear-gradient(145deg, rgba(255,122,26,.14), rgba(255,122,26,.04));
      border: 1px solid rgba(255,122,26,.4);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center; gap: .8rem;
      padding: 22px;
    }
    .sector-back-q {
      font-size: .9rem; font-weight: 700;
      color: rgba(255,255,255,.88);
      line-height: 1.4;
    }
    .sector-back-sub {
      font-size: .78rem;
      color: rgba(255,255,255,.52);
      margin-top: -.3rem;
    }
    .sector-btns {
      display: flex; gap: .55rem; width: 100%;
    }
    .sector-btn {
      flex: 1; padding: .5rem .4rem;
      border-radius: 8px; font-size: .75rem; font-weight: 700;
      display: flex; align-items: center; justify-content: center; gap: .3rem;
      text-decoration: none; transition: background .2s, border-color .2s;
    }
    .sector-btn-wa {
      background: rgba(37,211,102,.14);
      border: 1px solid rgba(37,211,102,.3);
      color: #25d366;
    }
    .sector-btn-wa:hover { background: rgba(37,211,102,.26); }
    .sector-btn-agenda {
      background: rgba(255,122,26,.14);
      border: 1px solid rgba(255,122,26,.35);
      color: var(--orange);
    }
    .sector-btn-agenda:hover { background: rgba(255,122,26,.26); }
    /* Estado activo — flip + naranja */
    .sector.sector-active .sector-inner {
      transform: rotateY(180deg);
      box-shadow: 0 0 32px rgba(255,122,26,.22);
    }
    .sector.sector-active .sector-front {
      border-color: rgba(255,122,26,.45);
    }
    .sector.sector-active .sector-front strong {
      color: var(--orange);
    }

    /* ── Line-reveal animation (párrafo sector) ──────────────── */
    .section-head p .line-reveal {
      display: block;
      overflow: hidden;
      line-height: 1.55;
    }
    .line-reveal {
      display: block;
      overflow: hidden;
    }
    .line-reveal-inner {
      display: block;
      transform: translateY(115%);
      transition: transform .55s cubic-bezier(.4,0,.2,1);
      transition-delay: var(--d, 0s);
    }
    #sectores.lines-visible .line-reveal-inner,
    #articulos.lines-visible .line-reveal-inner {
      transform: translateY(0);
    }
    #sectores.lines-hidden .line-reveal-inner,
    #articulos.lines-hidden .line-reveal-inner {
      transform: translateY(-115%);
      transition-delay: var(--d2, 0s);
    }

    .resource-band {
      display: grid;
      grid-template-columns: minmax(0, .82fr) minmax(280px, .42fr);
      gap: 28px;
      align-items: center;
      padding: 30px;
      border-radius: 10px;
      color: var(--white);
      background:
        radial-gradient(circle at 82% 25%, rgba(255,122,26,.28), transparent 28%),
        linear-gradient(135deg, var(--navy), var(--navy-2));
    }
    .resource-band .kicker { color: #b4ffe2; }
    .resource-band p {
      max-width: 740px;
      color: rgba(255,255,255,.74);
      line-height: 1.68;
    }
    .resource-actions {
      display: grid;
      gap: 10px;
    }
    .resource-actions a {
      min-height: 54px;
      padding: 0 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,.16);
      background: rgba(255,255,255,.08);
      font-weight: 900;
    }

    .subscribe-box {
      display: grid;
      grid-template-columns: minmax(0, .55fr) minmax(360px, .7fr);
      gap: 46px;
      align-items: center;
      padding: clamp(28px, 5vw, 58px) clamp(24px, 5vw, 64px);
      border-radius: 10px;
      background: #e8eef5;
      color: #0a3048;
    }
    .subscribe-copy h2 {
      font-size: clamp(2rem, 4vw, 3.25rem);
      line-height: 1.08;
      text-transform: uppercase;
    }
    .subscribe-copy h2 strong {
      font-weight: 950;
    }
    .subscribe-copy p {
      max-width: 520px;
      color: #516170;
      line-height: 1.55;
      font-size: 1.02rem;
    }
    .subscribe-form {
      display: grid;
      gap: 16px;
    }
    .subscribe-fields {
      display: grid;
      grid-template-columns: 1fr 1fr;
      overflow: hidden;
      border: 1px solid #b9c8d6;
      border-radius: 999px;
      background: var(--white);
    }
    .subscribe-fields input {
      min-height: 56px;
      border: 0;
      outline: 0;
      padding: 0 18px;
      color: var(--navy);
      background: transparent;
      font-size: 1rem;
    }
    .subscribe-fields input + input {
      border-left: 1px solid #b9c8d6;
    }
    .consent {
      display: grid;
      grid-template-columns: 18px 1fr;
      gap: 12px;
      align-items: start;
      color: #4e5d6c;
      font-size: .88rem;
      line-height: 1.45;
    }
    .consent input {
      width: 16px;
      height: 16px;
      margin-top: 2px;
    }
    .consent a {
      color: #075985;
      text-decoration: underline;
    }
    .subscribe-button {
      width: fit-content;
      min-height: 56px;
      padding: 0 32px;
      border: 0;
      border-radius: 999px;
      background: #04547f;
      color: var(--white);
      font-weight: 900;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }
    .subscribe-button:hover {
      background: #063e5e;
    }
    .subscribe-status {
      min-height: 22px;
      margin: 0;
      color: #04547f;
      font-size: .92rem;
      font-weight: 800;
    }
    .subscribe-status.error {
      color: #b91c1c;
    }
    .subscribe-status.success {
      color: #047857;
    }

    .chat-widget {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 60;
      display: grid;
      justify-items: end;
      gap: 12px;
    }
    .social-float {
      position: fixed;
      right: 22px;
      bottom: 98px;
      z-index: 59;
      display: grid;
      justify-items: end;
      gap: 10px;
    }
    .social-icons {
      display: grid;
      gap: 8px;
      opacity: 1;
      transform: translateY(0);
      transition: opacity .24s ease, transform .24s ease;
      pointer-events: auto;
    }
    .social-icons.hidden {
      opacity: 0;
      transform: translateY(10px);
      pointer-events: none;
    }
    .social-icon,
    .toggle-social,
    .whatsapp-icon {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.22);
      background: rgba(7,20,36,.72);
      color: var(--white);
      font-size: 1.1rem;
      font-weight: 950;
      box-shadow: 0 14px 32px rgba(7,20,36,.24);
      backdrop-filter: blur(10px);
      transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
    }
    .social-icon:hover,
    .toggle-social:hover,
    .whatsapp-icon:hover {
      transform: translateY(-2px);
      background: rgba(13,32,53,.88);
      box-shadow: 0 18px 38px rgba(7,20,36,.30);
    }
    .whatsapp-icon {
      background: #18a663;
      border-color: rgba(255,255,255,.34);
      font-size: 1.35rem;
    }
    .toggle-social {
      background: linear-gradient(135deg, var(--blue), var(--cyan));
      border-color: rgba(255,255,255,.32);
    }
    .social-icon.facebook { background: #1877f2; }
    .social-icon.instagram {
      background: linear-gradient(135deg, #833ab4, #fd1d1d 52%, #fcb045);
    }
    .social-icon.linkedin { background: #0a66c2; }
    .social-icon.x { background: #111827; }
    .social-icon.youtube { background: #ff0000; }
    .social-icon.tiktok { background: linear-gradient(135deg, #111827, #00f2ea 48%, #ff0050); }
    .chat-panel {
      width: min(390px, calc(100vw - 28px));
      height: min(560px, calc(100vh - 100px));
      display: none;
      grid-template-rows: auto 1fr auto auto;
      overflow: hidden;
      border-radius: 10px;
      border: 1px solid rgba(7,20,36,.12);
      background: var(--white);
      box-shadow: 0 24px 60px rgba(7,20,36,.28);
    }
    .chat-panel.open { display: grid; }
    .chat-head {
      padding: 16px;
      background: var(--navy);
      color: var(--white);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
    }
    .chat-head span {
      display: block;
      color: #b4ffe2;
      font-size: .82rem;
      margin-top: 2px;
    }
    .chat-close {
      width: 34px;
      height: 34px;
      border: 0;
      border-radius: 8px;
      background: rgba(255,255,255,.12);
      color: var(--white);
      cursor: pointer;
      font-weight: 900;
    }
    .messages {
      padding: 14px;
      overflow-y: auto;
      background: #f4f7fb;
      display: grid;
      align-content: start;
      gap: 10px;
    }
    .msg {
      max-width: 88%;
      padding: 11px 12px;
      border-radius: 8px;
      line-height: 1.42;
      font-size: .92rem;
    }
    .msg.bot {
      justify-self: start;
      background: var(--white);
      border: 1px solid var(--line);
    }
    .msg.user {
      justify-self: end;
      background: var(--blue);
      color: var(--white);
    }
    .quick {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      padding: 0 14px 12px;
      background: #f4f7fb;
    }
    .quick button {
      border: 1px solid var(--line);
      border-radius: 999px;
      background: var(--white);
      padding: 8px 10px;
      cursor: pointer;
      font-size: .82rem;
      font-weight: 800;
    }
    .chat-form {
      display: grid;
      grid-template-columns: 1fr 48px;
      gap: 8px;
      padding: 12px;
      border-top: 1px solid var(--line);
    }
    .chat-form input {
      min-height: 44px;
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 0 12px;
      outline: 0;
    }
    .chat-form button,
    .chat-toggle {
      border: 0;
      cursor: pointer;
      font-weight: 900;
    }
    .chat-form button {
      border-radius: 8px;
      background: var(--green);
      color: var(--white);
    }
    .chat-toggle {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: var(--green);
      color: var(--white);
      box-shadow: 0 16px 34px rgba(24,166,99,.32);
    }

    .contact {
      padding: 68px 0;
      color: var(--white);
      background: var(--navy);
    }
    .contact-row {
      display: grid;
      grid-template-columns: minmax(0, .8fr) minmax(280px, .4fr);
      gap: 30px;
      align-items: center;
    }
    .contact p {
      color: rgba(255,255,255,.72);
      line-height: 1.7;
    }
    .contact-actions {
      display: grid;
      gap: 10px;
    }
    .contact-actions a {
      min-height: 56px;
      padding: 0 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,.16);
      background: rgba(255,255,255,.08);
      font-weight: 900;
    }
    footer {
      padding: 22px 0;
      background: var(--white);
      color: var(--muted);
      border-top: 1px solid var(--line);
    }
    .footer-inner {
      width: min(1180px, calc(100% - 32px));
      margin: auto;
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      font-size: .92rem;
    }

    @media (max-width: 980px) {
      .links { display: none; }
      .carousel {
        height: auto;
        min-height: 760px;
      }
      .slide {
        grid-template-columns: 1fr;
        grid-template-rows: minmax(440px, auto) 280px;
      }
      .slide-panel { padding: 18px; }
      .media-preview { min-height: 150px; }
      .section-head,
      .program,
      .about-creinti,
      .data-service,
      .command,
      .resource-band,
      .subscribe-box,
      .contact-row { grid-template-columns: 1fr; }
      .services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .strategic-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
        align-items: start;
      }
      .strategic-card {
        min-height: 118px;
        padding: 0 6px 8px;
        border-radius: 10px;
        transform-origin: center;
      }
      .strategic-card:hover,
      .strategic-card:focus,
      .strategic-card:active {
        transform: translateY(-6px) scale(1.15);
        z-index: 6;
        box-shadow: 0 24px 52px rgba(7,20,36,.24);
        outline: none;
      }
      .service-visual {
        min-height: 68px;
        margin: 0 -6px 7px;
        padding: 8px 4px;
        gap: 4px;
      }
      .service-visual i {
        width: 36px;
        height: 36px;
        font-size: .9rem;
        border-width: 1.5px;
      }
      .strategic-card:focus .service-visual i,
      .strategic-card:active .service-visual i {
        transform: scale(1.24);
      }
      .service-visual span {
        font-size: .52rem;
        line-height: 1.05;
      }
      .strategic-card h3 {
        font-size: .58rem;
        line-height: 1.1;
        text-align: center;
        margin: 0;
      }
      .strategic-card p { display: none; }
      .service-offer-reveal {
        min-height: 154px;
        font-size: 1.08rem;
      }
      .about-points { grid-template-columns: 1fr; }
      .about-creinti {
        display: grid;
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 14px;
        align-items: start;
        padding-top: 8px;
      }
      .logo-orbit {
        width: 64px;
        height: 64px;
        padding: 4px;
        margin: 4px 0 0;
      }
      .logo-orbit::before { inset: -3px; }
      .about-points {
        position: relative;
        display: block;
        width: min(340px, 100%);
        aspect-ratio: 1;
        margin: 22px auto 0;
        border-radius: 50%;
        background: conic-gradient(from -90deg, #04547f 0 120deg, #18b8b2 120deg 240deg, #ff7a1a 240deg 360deg);
        box-shadow: 0 22px 55px rgba(7,20,36,.16);
        isolation: isolate;
      }
      .about-points::before {
        content: "CREINTI";
        position: absolute;
        inset: 34%;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: rgba(255,255,255,.94);
        color: var(--navy);
        font-weight: 950;
        letter-spacing: .02em;
        box-shadow: inset 0 0 0 1px rgba(7,20,36,.08), 0 12px 28px rgba(7,20,36,.12);
        z-index: 3;
      }
      .about-point {
        position: absolute;
        inset: 0;
        display: grid;
        place-items: center;
        width: 100%;
        height: 100%;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: transparent;
        box-shadow: none;
        overflow: hidden;
        animation: none;
      }
      .about-point::before {
        content: "";
        position: absolute;
        inset: 0;
        clip-path: polygon(50% 50%, 50% 0, 100% 0, 100% 64%);
        transition: filter .25s ease, transform .25s ease;
      }
      .about-point:nth-child(1)::before {
        transform: rotate(0deg);
        background: #04547f;
      }
      .about-point:nth-child(2)::before {
        transform: rotate(120deg);
        background: #18b8b2;
      }
      .about-point:nth-child(3)::before {
        transform: rotate(240deg);
        background: #ff7a1a;
      }
      .about-point:hover,
      .about-point.manual-active {
        transform: none;
        background: transparent;
        box-shadow: none;
      }
      .about-point:hover::before,
      .about-point.manual-active::before {
        filter: brightness(1.16) saturate(1.12);
      }
      .about-point strong,
      .about-point span {
        position: absolute;
        z-index: 2;
        width: 112px;
        margin: 0;
        color: #fff;
        text-align: center;
        text-shadow: 0 2px 12px rgba(0,0,0,.32);
        animation: none !important;
      }
      .about-point strong {
        font-size: .82rem;
        line-height: 1;
      }
      .about-point span {
        display: none;
      }
      .about-point:nth-child(1) strong {
        top: 17%;
        left: 50%;
        transform: translateX(-50%);
      }
      .about-point:nth-child(2) strong {
        right: 9%;
        top: 64%;
        transform: translateY(-50%);
      }
      .about-point:nth-child(3) strong {
        left: 9%;
        top: 64%;
        transform: translateY(-50%);
      }
      .about-point:nth-child(1)::after,
      .about-point:nth-child(2)::after,
      .about-point:nth-child(3)::after {
        display: none;
      }
      .ecosystem-gallery {
        display: flex;
        min-height: 430px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
      }
      .ecosystem-intro {
        grid-template-columns: minmax(0, 1fr) 46px;
        align-items: start;
      }
      .ecosystem-toggle {
        display: grid;
        width: 46px;
        height: 46px;
        place-items: center;
        border-radius: 50%;
        background: #04547f;
        color: #fff;
        font-size: 1.35rem;
        box-shadow: 0 16px 30px rgba(4,84,127,.24);
      }
      #ecosistema.ecosystem-expanded .ecosystem-toggle {
        position: fixed;
        right: 18px;
        top: 82px;
        z-index: 90;
        background: #07172a;
        box-shadow: 0 18px 40px rgba(7,23,42,.28);
      }
      .ecosystem-card,
      .ecosystem-card:hover,
      .ecosystem-feature,
      .ecosystem-feature:hover {
        flex: 0 0 118px;
        min-height: 430px;
        scroll-snap-align: center;
      }
      .ecosystem-feature {
        flex-basis: 118px;
      }
      .ecosystem-card {
        border-right: 3px solid rgba(255,255,255,.86);
        border-bottom: 0;
      }
      .ecosystem-card:not(.ecosystem-feature) > div {
        position: static;
        display: block;
        width: 100%;
      }
      .ecosystem-plus {
        position: absolute;
        right: 18px;
        bottom: 18px;
        z-index: 5;
        width: 36px;
        height: 36px;
        background: rgba(4,35,56,.5);
      }
      .ecosystem-card:focus,
      .ecosystem-card:hover {
        flex-basis: min(520px, 72vw);
        outline: 0;
      }
      .ecosystem-card h3 {
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        max-height: 230px;
      }
      .ecosystem-card:focus h3,
      .ecosystem-card:hover h3 {
        writing-mode: horizontal-tb;
        transform: none;
        max-height: none;
        padding-right: 46px;
      }
      .ecosystem-feature p,
      .ecosystem-feature .ecosystem-link {
        display: none;
      }
      .ecosystem-feature:focus p,
      .ecosystem-feature:hover p,
      .ecosystem-feature:focus .ecosystem-link,
      .ecosystem-feature:hover .ecosystem-link {
        display: block;
      }
      .command-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .architecture { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .outcomes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .articles { grid-template-columns: 1fr; }
      .sectors { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (max-width: 640px) {
      .nav { height: 64px; }
      .nav-cta { display: none; }
      .brand-mark {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        font-size: 1.28rem;
      }
      .brand {
        gap: 10px;
        font-size: 1.42rem;
      }
      .hero-shell {
        min-height: auto;
        padding: 78px 0 22px;
      }
      .carousel {
        height: auto;
        min-height: 0;
        border-radius: 12px;
      }
      .slide {
        position: relative;
        min-height: 735px;
        grid-template-columns: 1fr;
        grid-template-rows: minmax(455px, auto) 250px;
      }
      .slide:not(.active) {
        position: absolute;
      }
      .slide-copy {
        padding: 26px 22px 34px;
        align-content: center;
      }
      h1 {
        font-size: clamp(2rem, 11vw, 3.25rem);
        line-height: 1.03;
      }
      .slide-copy p:not(.eyebrow) {
        font-size: .98rem;
        line-height: 1.55;
        margin-top: 18px;
      }
      .slide-actions {
        margin-top: 22px;
      }
      .slide-panel {
        min-height: 250px;
        padding: 10px 14px 18px;
      }
      .media-preview {
        display: block;
        min-height: 220px;
        max-height: 230px;
        border-radius: 10px;
      }
      .media-sequence {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(6, 1fr);
        gap: 5px;
        padding: 5px;
      }
      .media-sequence img {
        border-radius: 7px;
      }
      .media-sequence img:first-child {
        grid-column: 1 / span 3;
        grid-row: 1 / span 4;
      }
      .media-sequence img:nth-child(2) {
        grid-column: 4 / span 3;
        grid-row: 1 / span 2;
      }
      .media-sequence img:nth-child(3) {
        grid-column: 4 / span 3;
        grid-row: 3 / span 2;
      }
      .media-sequence img:nth-child(4) {
        display: block;
        grid-column: 1 / span 2;
        grid-row: 5 / span 2;
      }
      .media-sequence img:nth-child(5) {
        display: block;
        grid-column: 3 / span 4;
        grid-row: 5 / span 2;
      }
      .carousel-control { width: 42px; height: 42px; top: auto; bottom: 22px; transform: none; }
      .prev { left: 18px; }
      .next { right: 18px; }
      .dots { bottom: 36px; }
      .services { grid-template-columns: 1fr; }
      .program-services { grid-template-columns: 1fr; }
      .strategic-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
        align-items: start;
      }
      .strategic-card {
        min-height: 118px;
        padding: 0 6px 8px;
        border-radius: 10px;
        transform-origin: center;
      }
      .strategic-card:hover,
      .strategic-card:focus,
      .strategic-card:active {
        transform: translateY(-6px) scale(1.15);
        z-index: 6;
        box-shadow: 0 24px 52px rgba(7,20,36,.24);
        outline: none;
      }
      .service-visual {
        min-height: 68px;
        margin: 0 -6px 7px;
        padding: 8px 4px;
        gap: 4px;
      }
      .service-visual i {
        width: 36px;
        height: 36px;
        font-size: .9rem;
        border-width: 1.5px;
      }
      .strategic-card:focus .service-visual i,
      .strategic-card:active .service-visual i {
        transform: scale(1.24);
      }
      .service-visual span {
        font-size: .52rem;
        line-height: 1.05;
      }
      .strategic-card h3 {
        font-size: .58rem;
        line-height: 1.1;
        text-align: center;
        margin: 0;
      }
      .strategic-card p { display: none; }
      .service-offer-reveal {
        min-height: 154px;
        font-size: 1.08rem;
      }
      .ecosystem-gallery {
        min-height: 360px;
      }
      .ecosystem-gallery.expanded {
        display: grid;
        grid-template-columns: 1fr;
        min-height: 0;
        overflow: visible;
        border-radius: 12px;
      }
      .ecosystem-feature,
      .ecosystem-card {
        min-height: 360px;
        flex-basis: 82px;
        padding: 18px 14px;
      }
      .ecosystem-card:focus,
      .ecosystem-card:hover {
        flex-basis: min(310px, 76vw);
      }
      .ecosystem-gallery.expanded .ecosystem-card,
      .ecosystem-gallery.expanded .ecosystem-feature {
        min-height: 170px;
        flex-basis: auto;
        padding: 20px;
        border-right: 0;
        border-bottom: 3px solid rgba(255,255,255,.86);
      }
      .ecosystem-gallery.expanded .ecosystem-card h3 {
        writing-mode: horizontal-tb;
        transform: none;
        max-height: none;
        padding-right: 48px;
        font-size: clamp(1.25rem, 7vw, 2rem);
      }
      .ecosystem-gallery.expanded .ecosystem-feature p,
      .ecosystem-gallery.expanded .ecosystem-feature .ecosystem-link {
        display: block;
      }
      .ecosystem-feature h3 {
        font-size: .98rem;
      }
      .ecosystem-feature:focus h3,
      .ecosystem-feature:hover h3 {
        font-size: clamp(1.85rem, 11vw, 2.75rem);
      }
      .ecosystem-feature p {
        font-size: .92rem;
        line-height: 1.5;
      }
      .ecosystem-card:not(.ecosystem-feature) h3 {
        font-size: .98rem;
      }
      .ecosystem-card:not(.ecosystem-feature) > div {
        gap: 0;
      }
      .ecosystem-plus {
        right: 12px;
        bottom: 14px;
        width: 34px;
        height: 34px;
      }
      #ecosistema.ecosystem-expanded .ecosystem-toggle {
        right: 14px;
        top: 74px;
      }
      .subscribe-fields { grid-template-columns: 1fr; border-radius: 18px; }
      .subscribe-fields input + input { border-left: 0; border-top: 1px solid #b9c8d6; }
      .slogan {
        padding: 12px 0;
        white-space: normal;
        overflow: hidden;
      }
      .slogan-track {
        width: min(100% - 28px, 520px);
        margin: auto;
        justify-content: flex-start;
      }
      .slogan strong {
        font-size: clamp(1.15rem, 6vw, 1.55rem);
        line-height: 1.15;
      }
      .about-creinti {
        display: grid;
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 14px;
        align-items: start;
        padding-top: 8px;
      }
      .logo-orbit {
        width: 64px;
        height: 64px;
        padding: 4px;
        margin: 4px 0 0;
      }
      .logo-orbit::before { inset: -3px; }
      .about-copy h2 {
        font-size: clamp(2rem, 9.5vw, 2.85rem);
      }
      .about-points {
        width: min(310px, 100%);
      }
      .about-point strong {
        width: 104px;
        font-size: .78rem;
      }
      .infographic-overlay {
        padding: 14px;
      }
      .infographic-panel {
        max-height: calc(100vh - 28px);
        padding: 22px 16px;
      }
      .infographic-head {
        grid-template-columns: 1fr;
        gap: 12px;
        padding-right: 42px;
      }
      .infographic-head > span {
        width: 58px;
        height: 58px;
        border-radius: 16px;
      }
      .infographic-grid {
        grid-template-columns: 1fr;
      }
      .command-grid,
      .architecture,
      .outcomes { grid-template-columns: 1fr; }
      .command-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
      }
      .command-tile {
        min-height: 116px;
        padding: 10px 7px;
        text-align: center;
      }
      .command-tile i {
        width: 32px;
        height: 32px;
        margin: 0 auto 8px;
        font-size: .88rem;
      }
      .command-tile strong {
        font-size: .86rem;
        line-height: 1.05;
      }
      .command-tile span {
        margin-top: 6px;
        font-size: .62rem;
        line-height: 1.25;
      }
      .sectors { grid-template-columns: 1fr; }
      .section { padding: 60px 0; }
      .chat-widget { right: 14px; bottom: 14px; }
      .chat-toggle { width: 58px; height: 58px; }
      .social-float { right: 14px; bottom: 84px; gap: 8px; }
      .social-icon,
      .toggle-social,
      .whatsapp-icon { width: 44px; height: 44px; }
    }

    @media (min-width: 1440px) {
      .hero-shell,
      .nav,
      .wrap,
      .footer-inner {
        width: min(1240px, calc(100% - 96px));
      }
      .carousel {
        height: min(590px, calc(100vh - 190px));
      }
      h1 {
        font-size: clamp(2.7rem, 3.2vw, 4.25rem);
        max-width: 760px;
      }
      .slide-copy p:not(.eyebrow) {
        max-width: 600px;
        font-size: 1.04rem;
      }
      .slide-copy {
        padding: 48px 54px;
      }
      .slide-panel {
        padding: 28px;
      }
    }

    @media (min-width: 1800px) {
      .hero-shell,
      .nav,
      .wrap,
      .footer-inner {
        width: 1320px;
      }
      .carousel {
        height: 600px;
      }
      h1 {
        font-size: 4rem;
      }
      .slide-copy p:not(.eyebrow) {
        font-size: 1.03rem;
      }
    }

