    :root {
      --navy-950: #004F85;
      --navy-800: #003D68;
      --navy-700: #004F85;
      --navy-600: #0080B8;
      --chartreuse: #CFCD38;
      --chartreuse-dim: #B6B42F;
      --mint: #00F5D4;
      --mint-dim: #00F5D4;
      --success: #00F5D4;
      --sky: #3BA7CA;
      --slate: #4A6077;
      --white: #ffffff;
      --ink: #1F2937;
      --mist: #F3F4F6;
      --line: rgba(255, 255, 255, .14);
      --line-dark: rgba(14, 26, 47, .12);
      --maxw: 1240px;
      --radius: 14px;
      --ease: cubic-bezier(.22, .68, 0, 1);
      /* Tipografía de titulares — Anton por defecto.
       Para probar Archivo Black en su lugar, comenta la línea de Anton
       y descomenta la de Archivo Black. */
      --font-display: 'Anton', 'Archivo Black', Impact, sans-serif;
      /* --font-display:'Archivo Black', 'Anton', Impact, sans-serif; */
      /* Paleta de marca (usada en las shapes del menú kinético) */
      --brand-navy: #004F85;
      --brand-mint: #00F5D4;
      --brand-gray-100: #F3F4F6;
      --brand-gray-800: #1F2937;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      background: var(--mist);
      color: var(--ink);
      font-family: 'Inter', system-ui, sans-serif;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4,
    h5 {
      font-family: var(--font-display);
      font-weight: 400;
      line-height: 1.02;
      margin: 0;
      letter-spacing: .005em;
      text-transform: uppercase;
    }

    p {
      margin: 0;
    }

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

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

    .eyebrow {
      font-family: 'Montserrat', sans-serif;
      font-size: 12px;
      letter-spacing: .14em;
      text-transform: uppercase;
      font-weight: 700;
    }

    .wrap {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 0 32px;
    }

    section {
      position: relative;
    }

    ::selection {
      background: var(--mint);
      color: #004F85;
    }

    /* -------- reveal -------- */
    [data-reveal] {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity .7s var(--ease), transform .7s var(--ease);
    }

    [data-reveal].is-in {
      opacity: 1;
      transform: none;
    }

    .scroll-title-word {
      display: inline-block;
      opacity: 0;
      transform: translateY(.55em);
      will-change: transform, opacity;
    }

    .scroll-title.is-title-in .scroll-title-word {
      animation: title-word-in .52s cubic-bezier(.22, 1, .36, 1) var(--title-delay, 0ms) both;
    }

    @keyframes title-word-in {
      from { opacity: 0; transform: translateY(.55em); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media (prefers-reduced-motion:reduce) {
      [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
      }

      html {
        scroll-behavior: auto;
      }

      .scroll-title-word {
        opacity: 1;
        transform: none;
      }

      .scroll-title.is-title-in .scroll-title-word {
        animation: none;
      }
    }

    /* -------- placeholder image blocks -------- */
    .ph {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      background:
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .05) 0 2px, transparent 2px 14px),
        linear-gradient(160deg, var(--navy-700), var(--navy-950));
      border: 1.5px dashed rgba(255, 255, 255, .35);
      border-radius: var(--radius);
      color:#fff;
      overflow: hidden;
    }

    .ph.light {
      background:
        repeating-linear-gradient(135deg, rgba(13, 34, 69, .05) 0 2px, transparent 2px 14px),
        linear-gradient(160deg, var(--mist), #e2e7f0);
      border-color: rgba(13, 34, 69, .28);
      color: var(--navy-800);
    }

    .ph .ph-label {
      font-family: 'Montserrat', sans-serif;
      font-size: 11.5px;
      letter-spacing: .04em;
      line-height: 1.5;
      padding: 14px 18px;
      max-width: 80%;
    }

    .ph .ph-label b {
      display: block;
      font-size: 12.5px;
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-bottom: 4px;
      color: var(--mint);
    }

    .ph.light .ph-label b {
      color: var(--navy-600);
    }

    .ph::before {
      content: "◆";
      position: absolute;
      top: 10px;
      left: 12px;
      font-size: 10px;
      color: var(--mint-dim);
      opacity: .8;
    }

    /* -------- signature: angular corner mark -------- */
    .corner-mark {
      position: absolute;
      width: 0;
      height: 0;
      border-style: solid;
    }

    .corner-mark.tl {
      top: 0;
      left: 0;
      border-width: 0 0 46px 46px;
      border-color: transparent transparent var(--mint) transparent;
    }

    .corner-mark.br {
      bottom: 0;
      right: 0;
      border-width: 46px 46px 0 0;
      border-color: var(--mint) transparent transparent transparent;
    }

    /* ================= TOPBAR ================= */
    .topbar {
      background: var(--navy-950);
      color:#fff;
      font-family: 'Montserrat', sans-serif;
      font-size: 11.5px;
      letter-spacing: .04em;
      text-align: center;
      padding: 8px 16px;
    }

    .topbar b {
      color: var(--mint);
    }

    /* ================= HEADER ================= */
    header {
      position: sticky;
      top: 0;
      z-index: 150;
      background: #ffffff;
      border-bottom: 1px solid rgba(14, 26, 47, .08);
      transition: box-shadow .3s;
    }

    header.scrolled {
      box-shadow: 0 10px 26px rgba(14, 26, 47, .08);
    }

    .nav {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 0 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 82px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

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

    .nav-right {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .phone-link {
      font-family: 'Montserrat', sans-serif;
      font-size: 13px;
      color: var(--navy-800);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-weight: 600;
      font-size: 14.5px;
      padding: 12px 22px;
      border-radius: 999px;
      cursor: pointer;
      border: none;
      transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--mint);
      color: #004F85;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(0, 245, 212, .35);
    }

    .btn-ghost {
      background: transparent;
      color: #fff;
      border: 1.5px solid rgba(255, 255, 255, .35);
    }

    .btn-ghost:hover {
      border-color: #fff;
      background: rgba(255, 255, 255, .06);
    }

    .btn-dark {
      background: var(--navy-950);
      color: #fff;
    }

    .btn-dark:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(8, 20, 40, .35);
    }

    /* ---- botón Menu / Close (kinético) ---- */
    .menu-toggle-btn {
      display: flex;
      align-items: center;
      gap: 4px;
      background: none;
      border: none;
      cursor: pointer;
      color: #004F85;
      padding: 8px 4px;
    }

    .menu-toggle-btn .mt-text {
      position: relative;
      overflow: hidden;
      height: 18px;
      width: 63px;
      text-align: left;
    }

    .menu-toggle-btn .mt-text p {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: .06em;
      text-transform: uppercase;
      margin: 0;
      line-height: 18px;
      transition: transform .4s var(--ease);
    }

    .menu-toggle-btn.is-active .mt-text p {
      transform: translateY(-100%);
    }

    .menu-toggle-btn .icon-wrap {
      width: 16px;
      height: 16px;
    }

    .menu-toggle-btn .icon-wrap svg {
      width: 100%;
      height: 100%;
      display: block;
      color: #004F85;
      transition: transform .4s var(--ease);
    }

    .menu-toggle-btn.is-active .icon-wrap svg {
      transform: rotate(315deg);
    }

    /* ================= MENÚ KINÉTICO =================
     Abre/cierra con transiciones CSS puras (fiables en cualquier
     navegador, sin depender de que GSAP cargue a tiempo). GSAP solo
     se usa como mejora opcional para las shapes en hover. */
    .kinetic-overlay {
      position: fixed;
      inset: 0;
      z-index: 300;
      visibility: hidden;
      pointer-events: none;
    }

    .kinetic-overlay.is-open {
      visibility: visible;
      pointer-events: auto;
    }

    .kinetic-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(3, 8, 18, .6);
      opacity: 0;
      transition: opacity .5s var(--ease);
    }

    .kinetic-overlay.is-open .kinetic-backdrop {
      opacity: 1;
    }

    .kinetic-menu {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      width: min(100%, 720px);
      transform: translateX(100%);
      transition: transform .6s var(--ease);
      background: #004F85;
      overflow: hidden;
      box-shadow: -30px 0 60px rgba(0, 0, 0, .35);
    }

    .kinetic-overlay.is-open .kinetic-menu {
      transform: translateX(0);
    }

    .kinetic-menu-bg {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }

    .backdrop-layer {
      position: absolute;
      inset: 0;
      transform: translateX(101%);
      transition: transform .6s var(--ease);
    }

    .backdrop-layer.first {
      background: #040b18;
      transition-delay: 0s;
    }

    .backdrop-layer.second {
      background: var(--brand-navy);
      opacity: .55;
      transition-delay: .08s;
    }

    .backdrop-layer.third {
      background: linear-gradient(160deg, #0080B8, #004F85);
      transition-delay: .16s;
    }

    .kinetic-overlay.is-open .backdrop-layer {
      transform: translateX(0);
    }

    .ambient-shapes {
      position: absolute;
      inset: 0;
    }

    .bg-shape {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
    }

    .bg-shape.active {
      opacity: 1;
    }

    .kinetic-menu-inner {
      position: relative;
      z-index: 2;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 40px 64px;
    }

    .kinetic-list {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .kinetic-item {
      overflow: hidden;
      padding: 6px 0;
    }

    .kinetic-link {
      position: relative;
      display: block;
      font-family: var(--font-display);
      font-size: clamp(30px, 5.6vw, 58px);
      text-transform: uppercase;
      color: #fff;
      line-height: 1.06;
      padding: 6px 4px;
      transform: translateY(140%) rotate(6deg);
      transition: transform .55s var(--ease), color .2s;
    }

    .kinetic-overlay.is-open .kinetic-link {
      transform: translateY(0) rotate(0);
    }

    .kinetic-link-text {
      position: relative;
      z-index: 2;
    }

    .kinetic-link-bg {
      position: absolute;
      left: -6px;
      right: -6px;
      top: 0;
      bottom: 0;
      background: rgba(0, 245, 212, .12);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .35s var(--ease);
      z-index: 1;
      border-radius: 6px;
    }

    .kinetic-link:hover {
      color: var(--mint);
    }

    .kinetic-link:hover .kinetic-link-bg {
      transform: scaleX(1);
    }

    .kinetic-academy-item {
      margin-top: 22px;
      overflow: hidden;
    }

    .kinetic-academy-link {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 13px 18px;
      border: 1px solid var(--mint);
      border-radius: 999px;
      background: var(--mint);
      color: #004F85;
      font: 800 12px 'Montserrat', sans-serif;
      letter-spacing: .04em;
      text-transform: uppercase;
      transform: translateY(160%);
      transition: transform .55s var(--ease) .76s, background .2s ease, color .2s ease;
    }

    .kinetic-overlay.is-open .kinetic-academy-link { transform: translateY(0); }
    .kinetic-academy-link:hover,
    .kinetic-academy-link:focus-visible { background: transparent; color: var(--mint); outline: none; }
    .kinetic-academy-link span { font-size: 16px; }

    /* ================= UPCOMING EVENTS ================= */
    .event-spotlight { margin-top: clamp(56px, 8vw, 104px); padding: 144px 0 152px; background: #004F85; color: #fff; overflow: hidden; }
    .section-divider { height: 56px; background: var(--mist); }
    .event-spotlight-head { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 64px; }
    .event-spotlight .eyebrow { color: var(--mint); }
    .event-spotlight h2 { margin-top: 14px; font-size: clamp(42px, 5.8vw, 76px); line-height: 1.02; letter-spacing: .035em; }
    .event-spotlight-head p { max-width: 340px; color:#fff; font-size: 15px; line-height: 1.65; }
    .event-carousel { position: relative; }
    .event-carousel-stage { display: grid; }
    .event-feature { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 390px; background: #fff; color: #004F85; border-radius: 18px; overflow: hidden; }
    .event-carousel-slide { grid-area: 1 / 1; opacity: 0; visibility: hidden; transform: translateX(26px); pointer-events: none; transition: opacity .55s ease, transform .55s cubic-bezier(.22, 1, .36, 1), visibility 0s linear .55s; }
    .event-carousel-slide.is-active { opacity: 1; visibility: visible; transform: translateX(0); pointer-events: auto; transition-delay: 0s; }
    .event-feature-image { position: relative; min-height: 330px; background: linear-gradient(135deg, #075d62, #133660); background-size: cover; background-position: center; }
    .event-image-wash { position:absolute; inset:0; background: linear-gradient(135deg, rgba(14,32,56,.1), rgba(14,32,56,.58)); }
    .event-date-block { position:absolute; z-index:1; top:22px; left:22px; min-width:78px; padding:12px 14px; background:var(--mint); color:#004F85; text-align:center; border-radius:10px; }
    .event-date-block b,.event-date-block span { display:block; font-family:'Montserrat',sans-serif; font-weight:800; }
    .event-date-block b { font-size:28px; line-height:1; }.event-date-block span { margin-top:4px; font-size:10px; letter-spacing:.1em; }
    .event-feature-content { display:flex; flex-direction:column; justify-content:center; padding:54px clamp(30px,5vw,72px); }
    .event-location { color:var(--mint-dim); font:800 11px 'Montserrat',sans-serif; letter-spacing:.13em; text-transform:uppercase; }
    .event-feature h3 { margin:16px 0; font-size:clamp(32px,4vw,52px); line-height:.98; }
    .event-feature p { color:#526278; font-size:15px; line-height:1.65; }
    .event-cta { display:inline-flex; align-items:center; gap:8px; align-self:flex-start; margin-top:28px; padding-bottom:5px; border-bottom:2px solid var(--mint); color:#004F85; font:800 12px 'Montserrat',sans-serif; letter-spacing:.03em; }
    .event-cta span { font-size:18px; transition:transform .2s ease; }.event-cta:hover span { transform:translateX(4px); }
    .event-rail { display:grid; grid-template-columns:repeat(3,1fr); border:1px solid rgba(255,255,255,.18); border-top:0; border-radius:0 0 18px 18px; overflow:hidden; }
    .event-rail-item { display:flex; align-items:center; gap:13px; min-height:100px; padding:18px 20px; border-right:1px solid rgba(255,255,255,.18); color:#fff; transition:background .2s ease; }.event-rail-item:last-child{border-right:0}.event-rail-item:hover{background:rgba(255,255,255,.08)}
    .event-rail-date { color:var(--mint); font:800 11px 'Montserrat',sans-serif; letter-spacing:.08em; }.event-rail-item b,.event-rail-item small{display:block}.event-rail-item b{font-size:14px;line-height:1.25}.event-rail-item small{margin-top:5px;color:#fff;font-size:11px}.event-rail-item i{margin-left:auto;color:var(--mint);font-size:18px;font-style:normal}
    .event-carousel-controls { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 22px; }
    .event-carousel-controls button { display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.26); background: transparent; color: #fff; cursor: pointer; transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease; }
    .event-carousel-toggle,.event-carousel-prev,.event-carousel-next { width: 38px; height: 38px; border-radius: 50%; font-size: 16px; }
    .event-carousel-controls button:hover,.event-carousel-controls button:focus-visible { background: var(--mint); border-color: var(--mint); color: #004F85; outline: none; transform: translateY(-2px); }
    .event-carousel-dots { display: flex; align-items: center; gap: 7px; padding: 0 4px; }
    .event-carousel-dots .event-carousel-dot { width: 8px; height: 8px; padding: 0; border-radius: 999px; background: rgba(255,255,255,.34); border-color: transparent; }
    .event-carousel-dots .event-carousel-dot.is-active { width: 28px; background: var(--mint); border-color: var(--mint); }
    .event-empty { position:relative; display:grid; grid-template-columns:minmax(0,1.15fr) minmax(260px,.85fr); align-items:center; min-height:360px; padding:68px clamp(28px,7vw,96px); border:1px solid rgba(0,245,212,.52); border-radius:24px; background:linear-gradient(115deg, rgba(0,245,212,.18), rgba(0,245,212,.035) 58%, rgba(3,30,53,.28)); overflow:hidden; isolation:isolate; }
    .event-empty::before { content:''; position:absolute; inset:14px; border:1px solid rgba(255,255,255,.12); border-radius:17px; pointer-events:none; }
    .event-empty-copy { position:relative; z-index:2; max-width:650px; }
    .event-empty-kicker { color:var(--mint); font:800 11px 'Montserrat',sans-serif; letter-spacing:.16em; text-transform:uppercase; }
    .event-empty h3 { position:relative; z-index:1; max-width:620px; margin:18px 0 20px; font-size:clamp(38px,5vw,72px); line-height:1.40; letter-spacing: .035em; }
    .event-empty p { position:relative; z-index:1; max-width:500px; color:rgba(255,255,255,.8); font-size:15px; line-height:1.65; }
    .event-empty .event-cta { position:relative; z-index:1; color:#fff; margin-top:30px; }
    .event-empty-art { position:relative; z-index:1; min-height:290px; }
    .event-empty-art::before { content:''; position:absolute; width:270px; height:270px; top:50%; left:50%; transform:translate(-34%,-50%); border:1px solid rgba(0,245,212,.55); border-radius:50%; box-shadow:0 0 0 22px rgba(0,245,212,.035), 0 0 0 44px rgba(0,245,212,.025); }
    .event-empty-art-line { position:absolute; left:8%; width:92%; height:1px; background:linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent); }
    .event-empty-art-line--one { top:32%; transform:rotate(-18deg); }
    .event-empty-art-line--two { top:69%; transform:rotate(18deg); }
    .event-empty-art-caption { position:absolute; right:0; bottom:5%; color:rgba(255,255,255,.58); font:700 10px/1.45 'Montserrat',sans-serif; letter-spacing:.16em; text-align:right; text-transform:uppercase; }

    /* Agenda administrable: cada evento publicado se presenta como un panel
       comprimido y el seleccionado se expande como pieza principal. */
    .event-carousel-stage { display:flex; gap:10px; min-height:420px; }
    .event-feature.event-carousel-slide { position:relative; display:block; flex:0 1 9%; min-width:58px; min-height:420px; grid-area:auto; opacity:1; visibility:visible; transform:none; pointer-events:auto; border-radius:16px; transition:flex-basis .75s cubic-bezier(.16,1,.3,1), min-width .75s cubic-bezier(.16,1,.3,1); }
    .event-feature.event-carousel-slide.is-active { flex-basis:57%; }
    .event-feature-image { position:absolute; inset:0; min-height:0; background-position:center; }
    .event-feature-content { position:absolute; z-index:2; inset:auto 0 0; min-height:46%; justify-content:flex-end; padding:42px clamp(20px,3vw,42px) 30px; background:linear-gradient(0deg,rgba(2,20,36,.94),rgba(2,20,36,.68) 48%,transparent); color:#fff; opacity:0; transform:translateY(14px); transition:opacity .45s ease .08s, transform .55s cubic-bezier(.16,1,.3,1) .08s; }
    .event-feature-slide.is-active .event-feature-content,
    .event-feature.event-carousel-slide.is-active .event-feature-content { opacity:1; transform:translateY(0); }
    .event-feature h3 { color:#fff; max-width:560px; font-size:clamp(28px,3.6vw,54px); }
    .event-feature p { color:rgba(255,255,255,.82); max-width:520px; }
    .event-feature .event-cta { color:#fff; }
    .event-carousel-stage .event-image-wash { background:linear-gradient(135deg,rgba(4,25,44,.08),rgba(4,25,44,.7)); }
    .event-feature:not(.is-active) .event-image-wash { background:linear-gradient(135deg,rgba(4,25,44,.26),rgba(4,25,44,.82)); }
    .event-feature:not(.is-active) .event-feature-image { filter:saturate(.72); }

    @media (prefers-reduced-motion: reduce) {
      .event-carousel-slide { transition: none; }
    }

    /* ================= HERO ================= */
    .hero {
      position: relative;
      color: #fff;
      padding: 136px 0 68px;
      overflow: hidden;
      min-height: 680px;
      display: flex;
      align-items: flex-end;
    }

    .hero-video-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
      background: var(--navy-950);
    }

    .hero-video-bg video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 62%;
      opacity: 0;
      transition: opacity 1.1s ease;
    }

    .hero-video-bg video.is-active {
      opacity: 1;
    }

    .hero-video-bg::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(100deg, rgba(0, 79, 133, .55) 0%, rgba(0, 79, 133, .4) 42%, rgba(0, 79, 133, .16) 68%, rgba(0, 79, 133, .05) 100%),
        linear-gradient(0deg, rgba(0, 61, 104, .42) 0%, rgba(0, 61, 104, 0) 34%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 620px;
      margin-bottom: 60px;
    }

    .hero h1 {
      font-size: clamp(32px, 4.4vw, 56px);
      color: #fff;
      /* reserva espacio para hasta 4 líneas para que el cambio de palabra
       en el ciclo no empuje ni recorte el resto del contenido */
      min-height: 0;
      text-shadow: 0 3px 16px rgba(0, 43, 74, .42);
    }

    .hero h1 .cycle-wrap {
      display: block;
      min-height: 1.08em;
      position: relative;
      color: var(--mint);
      white-space: nowrap;
    }

    .hero .eyebrow {
      color: var(--mint);
      margin-bottom: 18px;
      display: inline-block;
    }

    .hero .lede {
      margin-top: 22px;
      font-size: 18px;
      line-height: 1.6;
      color:#fff;
      max-width: 560px;
      text-shadow: 0 2px 12px rgba(0, 43, 74, .35);
    }

    .hero-ctas {
      display: flex;
      gap: 14px;
      margin-top: 34px;
      flex-wrap: wrap;
    }

    /* ---- franja de stats centrada, ahora dentro de la sección de clientes ---- */
    .hero-stats-bar {
      padding-bottom: 34px;
      margin-bottom: 34px;
      border-bottom: 1px solid var(--line);
    }

    .hero-stats {
      display: flex;
      justify-content: center;
      gap: 64px;
      flex-wrap: wrap;
      text-align: center;
    }

    .hero-stats div b {
      display: block;
      font-family: var(--font-display);
      text-transform: uppercase;
      font-size: 28px;
      color: #fff;
    }

    .hero-stats div span {
      font-size: 12.5px;
      color:#fff;
    }

    /* ---- franja de clientes (sección independiente, debajo del hero) ---- */
    .clients-strip {
      background: #004F85;
      padding: 44px 0 46px;
    }

    .clients-strip .label {
      text-align: center;
      color:#fff;
      font-size: 12.5px;
      letter-spacing: .1em;
      text-transform: uppercase;
      font-family: 'Montserrat', sans-serif;
      margin-bottom: 26px;
    }

    .marquee {
      overflow: hidden;
      -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    }

    .marquee-track {
      display: flex;
      gap: 56px;
      width: max-content;
      animation: scroll 32s linear infinite;
      align-items: center;
    }

    @keyframes scroll {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-50%)
      }
    }

    .client-logo {
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      color:#fff;
      letter-spacing: .03em;
      white-space: nowrap;
      padding: 8px 4px;
    }

    .client-logo img {
      height: 32px;
      width: auto;
      display: block;
      filter: brightness(0) invert(1);
      opacity: .86;
      filter: brightness(0) invert(1) drop-shadow(0 1px 5px rgba(255,255,255,.16));
    }

    .challenges { background: var(--mist); }
    .challenges .section-head p { color: #586576; line-height: 1.65; }
    .challenge-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
    .challenge-card { display: flex; flex-direction: column; min-height: 280px; padding: 26px; background: #fff; border: 1px solid var(--line); color: #004F85; text-decoration: none; transition: transform .22s ease, background .22s ease, box-shadow .22s ease; }
    .challenge-card:hover { transform: translateY(-6px); box-shadow: 0 18px 36px rgba(15,30,55,.11); }
    .challenge-card span { color: var(--mint-dim); font: 700 11px 'Montserrat',sans-serif; letter-spacing: .12em; }
    .challenge-card h3 { margin: 28px 0 12px; font: 700 22px/1.1 'Montserrat',sans-serif; letter-spacing: -.04em; }
    .challenge-card p { margin: 0; color: #5b6778; font-size: 14px; line-height: 1.6; }
    .challenge-card b { margin-top: auto; padding-top: 22px; font-size: 12px; }
    .challenge-card--accent { background: var(--navy-950); color: #fff; border-color: #004F85; }
    .challenge-card--accent p { color:#fff; }
    .challenge-card--accent b { color: var(--mint); }

    /* ================= GENERIC SECTION ================= */
    .section {
      padding: 100px 0;
    }

    .section.tight {
      padding: 72px 0;
    }

    .section-head {
      max-width: 640px;
      margin-bottom: 52px;
    }

    .section-head .eyebrow {
      color: var(--navy-600);
      margin-bottom: 14px;
      display: inline-block;
    }

    .section-head h2 {
      font-size: clamp(28px, 3.4vw, 42px);
      color: #004F85;
    }

    .section-head p {
      margin-top: 16px;
      font-size: 16.5px;
      line-height: 1.65;
      color: #4a5568;
    }

    .on-dark .section-head .eyebrow {
      color: var(--mint);
    }

    .on-dark .section-head h2 {
      color: #fff;
    }

    .on-dark .section-head p {
      color:#fff;
    }

    /* ---- nosotros ---- */
    .nosotros {
      background: var(--white);
    }

    .nosotros-grid {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 64px;
      align-items: center;
    }

    .values {
      display: flex;
      gap: 14px;
      margin-top: 30px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .value-chip {
      font-family: 'Montserrat', sans-serif;
      font-size: 12.5px;
      letter-spacing: .05em;
      padding: 9px 16px;
      border-radius: 999px;
      background: var(--mist);
      color: var(--navy-800);
      border: 1px solid var(--line-dark);
    }

    .lead-text {
      font-size: 19px;
      line-height: 1.6;
      color: #004F85;
      font-weight: 500;
    }

    .body-text {
      margin-top: 18px;
      font-size: 15.5px;
      line-height: 1.75;
      color: #4a5568;
    }

    /* ---- imagen real (reemplaza los placeholders .ph) ---- */
    .img-frame {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      height: 420px;
      box-shadow: 0 20px 46px rgba(15, 30, 55, .14);
    }

    .img-frame.tall {
      height: 520px;
    }

    .img-frame--motion { background: transparent; border-radius: 0; box-shadow: none; height: auto; overflow: visible; }
    .nosotros-motion { width: 100%; height: auto; display: block; object-fit: contain; }
    .value-chip--animated { transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease; cursor: default; }
    .value-chip--animated:hover, .value-chip--animated:focus-visible { background: var(--mint); border-color: var(--mint); color: #004F85; transform: translateY(-2px); }

    .img-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .why-airam-image { object-position: 50% 22%; }

    /* ---- por qué elegirnos ---- */
    .why-choose {
      background: var(--white);
    }

    .why-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 64px;
      align-items: center;
    }

    .why-list {
      display: flex;
      flex-direction: column;
      gap: 22px;
    }

    .why-item {
      display: flex;
      gap: 18px;
      align-items: flex-start;
    }

    .why-item b {
      font-family: var(--font-display);
      font-size: 22px;
      color: var(--mint-dim);
      flex: none;
      width: 40px;
    }

    .why-item h4 {
      font-size: 17px;
      color: #004F85;
      margin-bottom: 6px;
    }

    .why-item p {
      font-size: 14.5px;
      line-height: 1.6;
      color: #4a5568;
      margin: 0;
    }

    /* ---- quote bridge ---- */
    .quote-bridge {
      position: relative;
      overflow: hidden;
      padding: 64px 0 68px;
      background: #004F85;
    }

    .quote-bridge-inner {
      position: relative;
      max-width: 850px;
      margin: 0 auto;
      padding: 34px 54px 31px;
      border-left: 3px solid var(--mint);
      text-align: center;
    }

    .quote-bridge-inner::before {
      content: '“';
      position: absolute;
      top: -8px;
      left: 20px;
      color: rgba(0, 245, 212, .22);
      font-family: Georgia, serif;
      font-size: 104px;
      line-height: .8;
    }

    .quote-bridge blockquote {
      position: relative;
      margin: 0;
      color: #fff;
      font-family: Georgia, 'Times New Roman', serif;
      font-size: clamp(25px, 3vw, 39px);
      font-style: italic;
      font-weight: 500;
      line-height: 1.27;
      letter-spacing: -.025em;
    }

    .quote-bridge figcaption {
      position: relative;
      margin-top: 18px;
      color: var(--mint);
      font: 800 11px 'Montserrat', sans-serif;
      letter-spacing: .13em;
      text-transform: uppercase;
    }

    /* ---- methodology ---- */
    .metodologia {
      background: var(--mist);
    }

    .metodologia-head {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 56px;
      align-items: center;
      margin-bottom: 52px;
    }

    .metodologia-head .img-frame {
      height: 280px;
    }

    .how-wrap {
      position: relative;
      max-width: 1000px;
      margin: 0 auto;
    }

    .how-path {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      display: none;
    }

    .how-path path {
      fill: none;
      stroke: var(--navy-600);
      stroke-width: 2;
      stroke-dasharray: 8 6;
      stroke-linecap: round;
      vector-effect: non-scaling-stroke;
      animation: how-dash 3s linear infinite;
    }

    @keyframes how-dash {
      to {
        stroke-dashoffset: -140;
      }
    }

    .how-step {
      position: relative;
      width: 100%;
      margin-bottom: 20px;
    }

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

    .how-card {
      background: #fff;
      padding: 8px;
      border-radius: 22px;
      box-shadow: 0 10px 20px 0 rgba(14, 26, 47, .08);
      border: 1px solid var(--line-dark);
      height: 100%;
    }

    .how-pin {
      display: block;
      width: 30px;
      height: 30px;
      margin: 2px auto 18px;
    }

    .how-inner {
      border-radius: 14px;
      padding: 18px 16px;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .how-num {
      font-family: var(--font-display);
      text-transform: uppercase;
      font-size: 32px;
      margin-bottom: 12px;
      display: block;
      line-height: 1;
    }

    .how-step h4 {
      font-family: var(--font-display);
      text-transform: uppercase;
      font-weight: 400;
      font-size: 19px;
      color: #004F85;
      line-height: 1.15;
      margin-bottom: 10px;
      letter-spacing: .005em;
    }

    .how-step p {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: 13.5px;
      line-height: 1.55;
      color: #4a5568;
      margin: 0;
    }

    .how-step.theme-navy .how-inner {
      background: rgba(26, 54, 93, .06);
      border: 1px solid rgba(26, 54, 93, .15);
    }

    .how-step.theme-navy .how-num,
    .how-step.theme-navy .how-pin {
      color: var(--navy-700);
    }

    .how-step.theme-mint .how-inner {
      background: rgba(0, 245, 212, .08);
      border: 1px solid rgba(0, 245, 212, .25);
    }

    .how-step.theme-mint .how-num,
    .how-step.theme-mint .how-pin {
      color: var(--mint-dim);
    }

    .how-step.theme-chartreuse .how-inner {
      background: rgba(215, 225, 74, .14);
      border: 1px solid rgba(215, 225, 74, .3);
    }

    .how-step.theme-chartreuse .how-num,
    .how-step.theme-chartreuse .how-pin {
      color: #B6B42F;
    }

    @media(min-width:860px) {
      .how-wrap {
        height: 1130px;
      }

      .how-path {
        display: block;
      }

      .how-step {
        position: absolute;
        width: 280px;
        margin-bottom: 0;
        transition: transform .3s var(--ease);
      }

      .how-step:hover {
        z-index: 30;
        transform: scale(1.05) !important;
      }

      .how-step-1 {
        top: 0;
        left: 15%;
        transform: rotate(8deg);
      }

      .how-step-2 {
        top: 120px;
        right: 15%;
        transform: rotate(-8deg);
      }

      .how-step-3 {
        top: 450px;
        left: 15%;
        transform: rotate(8deg);
      }

      .how-step-4 {
        top: 570px;
        right: 10%;
        transform: rotate(-8deg);
      }

      .how-step-5 {
        top: 850px;
        left: 15%;
        transform: rotate(8deg);
      }
    }

    /* ---- servicios (tabs like betterup product grid) ---- */
    .servicios {
      background: #004F85;
      color: #fff;
    }

    .svc-tabs {
      display: flex;
      gap: 10px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }

    .svc-tab {
      position: relative;
      font-family: 'Montserrat', sans-serif;
      font-size: 12.5px;
      letter-spacing: .05em;
      padding: 12px 18px;
      border-radius: 10px;
      cursor: pointer;
      background: rgba(255, 255, 255, .05);
      border: 1px solid var(--line);
      color:#fff;
      transition: background-color .28s ease, border-color .28s ease, color .28s ease, transform .28s ease;
    }

    .svc-tab b {
      color: var(--mint);
      margin-right: 6px;
    }

    .svc-tab.active {
      background: rgba(0, 245, 212, .14);
      border-color: var(--mint);
      color: #fff;
    }

    .svc-tab:hover,
    .svc-tab:focus-visible {
      border-color: rgba(0, 245, 212, .75);
      color: #fff;
      transform: translateY(-2px);
      outline: none;
    }

    .svc-tab::after {
      content: "";
      position: absolute;
      right: 16px;
      bottom: 7px;
      left: 16px;
      height: 2px;
      border-radius: 999px;
      background: var(--mint);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .34s cubic-bezier(.22, 1, .36, 1);
    }

    .svc-tab.active::after {
      transform: scaleX(1);
    }

    .svc-panel {
      display: none;
    }

    .svc-panel.active {
      display: grid;
      animation: svc-panel-in .5s cubic-bezier(.22, 1, .36, 1) both;
    }

    .svc-panel {
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: start;
    }

    .svc-panel--animated.active .svc-media,
    .svc-panel--animated.active > .img-frame {
      animation: svc-media-in .65s cubic-bezier(.22, 1, .36, 1) both;
    }

    @keyframes svc-panel-in {
      from { opacity: 0; transform: translateY(18px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes svc-media-in {
      from { opacity: 0; transform: translateX(22px) scale(.985); }
      to { opacity: 1; transform: translateX(0) scale(1); }
    }

    @media (prefers-reduced-motion: reduce) {
      .svc-tab,
      .svc-tab::after {
        transition: none;
      }

      .svc-panel.active,
      .svc-panel--animated.active .svc-media,
      .svc-panel--animated.active > .img-frame {
        animation: none;
      }

      .stat.is-counted .stat-lettermark span,
      .stat.is-counted .stat-lettermark i {
        animation: none;
      }
    }

    .svc-panel .img-frame {
      height: 380px;
      box-shadow: 0 24px 50px rgba(0, 0, 0, .35);
    }

    .svc-media {
      position: relative;
    }

    .svc-media-badge {
      position: absolute;
      left: -24px;
      bottom: -24px;
      width: 150px;
      height: 110px;
      border-radius: 12px;
      overflow: hidden;
      border: 4px solid var(--navy-950);
      box-shadow: 0 16px 30px rgba(0, 0, 0, .4);
    }

    .svc-media-badge img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .svc-panel h3 {
      font-size: clamp(24px, 2.6vw, 32px);
      color: #fff;
      margin-bottom: 14px;
    }

    .svc-panel .desc {
      font-size: 15.5px;
      line-height: 1.7;
      color:#fff;
      margin-bottom: 26px;
    }

    .taglist {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px 20px;
      list-style: none;
      padding: 0;
      margin: 0 0 26px;
    }

    .taglist li {
      font-size: 14px;
      color:#fff;
      padding-left: 18px;
      position: relative;
      line-height: 1.4;
    }

    .taglist li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 7px;
      width: 7px;
      height: 7px;
      background: var(--mint);
      border-radius: 2px;
    }

    .subgroup-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 11.5px;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--mint);
      margin: 20px 0 10px;
    }

    /* ---- evaluación tools grid ---- */
    .tools-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 8px;
    }

    .tool-card {
      background: rgba(255, 255, 255, .04);
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 20px;
    }

    .tool-card h5 {
      font-family: var(--font-display);
      text-transform: uppercase;
      font-size: 16.5px;
      color: #fff;
      margin: 0 0 8px;
    }

    .tool-card p {
      font-size: 13px;
      line-height: 1.55;
      color:#fff;
      margin: 0;
    }

    .tool-card.is-interactive {
      min-height: 220px;
      padding: 0;
      border: 0;
      background: transparent;
      cursor: pointer;
      perspective: 900px;
      outline: none;
    }

    .tool-card.is-interactive:focus-visible .tool-card-face {
      box-shadow: 0 0 0 2px var(--mint), 0 14px 28px rgba(0, 0, 0, .2);
    }

    .tool-card-inner {
      position: relative;
      width: 100%;
      min-height: 220px;
      transform-style: preserve-3d;
      transition: transform .62s cubic-bezier(.22, 1, .36, 1);
    }

    .tool-card.is-flipped .tool-card-inner {
      transform: rotateY(180deg);
    }

    .tool-card-face {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: 16px;
      border: 1px solid var(--line);
      border-radius: 12px;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      overflow: hidden;
    }

    .tool-card-face--front {
      justify-content: space-between;
      background: linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .025));
    }

    .tool-card-face--back {
      justify-content: flex-start;
      background: linear-gradient(145deg, var(--mint), #00F5D4);
      border-color: var(--mint);
      transform: rotateY(180deg);
    }

    .tool-card-logo {
      width: 58px;
      height: 58px;
      object-fit: contain;
      object-position: center;
      filter: brightness(0) invert(1);
      opacity: .94;
    }

    .tool-card-logo--disc,
    .tool-card-logo--inteligencia-emocional {
      filter: grayscale(1) brightness(1.25) contrast(1.18);
      opacity: 1;
    }

    .tool-card-logo--axes-360 {
      width: 100px;
      height: 64px;
      object-position: left center;
    }

    .tool-card-face h5 {
      margin: 8px 0 0;
      line-height: .98;
    }

    .tool-card-back-label {
      font-family: 'Montserrat', sans-serif;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .1em;
      color: #004F85;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .tool-card-face--back p {
      color: #004F85;
      font-size: 12px;
      line-height: 1.42;
      font-weight: 600;
    }

    .tool-card-hint {
      font-family: 'Montserrat', sans-serif;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .09em;
      color:#fff;
      text-transform: uppercase;
    }

    .tool-card-face--back .tool-card-hint {
      color: rgba(14, 32, 56, .65);
      margin-top: auto;
    }

    @media (prefers-reduced-motion: reduce) {
      .tool-card-inner {
        transition: none;
      }
    }

    /* ---- stats band ---- */
    .stats-band {
      position: relative;
      color: #fff;
      padding: 80px 0;
      overflow: hidden;
      background: #004F85;
    }

    .stats-band .bg-img {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: .28;
    }

    .stats-band::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, rgba(0, 79, 133, .94), rgba(0, 111, 178, .88));
    }

    .stats-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .stat {
      border-left: 2px solid var(--mint);
      padding-left: 18px;
    }

    .stat b {
      font-family: var(--font-display);
      text-transform: uppercase;
      font-size: 40px;
      display: block;
      color: #fff;
      font-variant-numeric: tabular-nums;
    }

    .stat-lettermark {
      display: flex !important;
      align-items: baseline;
      gap: .08em;
    }

    .stat-lettermark span {
      display: inline-block;
      margin: 0;
      color: inherit;
      font-family: inherit;
      font-size: inherit;
      line-height: 1;
    }

    .stat-lettermark i {
      font-style: normal;
      margin: 0 .09em;
      color: var(--mint);
    }

    .stat.is-counted .stat-lettermark span,
    .stat.is-counted .stat-lettermark i {
      animation: stat-letter-in .42s cubic-bezier(.22, 1, .36, 1) both;
    }

    .stat.is-counted .stat-lettermark span:nth-child(1) { animation-delay: .05s; }
    .stat.is-counted .stat-lettermark span:nth-child(2) { animation-delay: .13s; }
    .stat.is-counted .stat-lettermark i { animation-delay: .21s; }
    .stat.is-counted .stat-lettermark span:nth-child(4) { animation-delay: .29s; }
    .stat.is-counted .stat-lettermark span:nth-child(5) { animation-delay: .37s; }

    @keyframes stat-letter-in {
      from { opacity: 0; transform: translateY(13px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .stat > span {
      font-size: 13.5px;
      color:#fff;
      line-height: 1.4;
      display: block;
      margin-top: 4px;
    }

    /* ---- testimonios (carrusel circular) ---- */
    .testimonials {
      background: var(--white);
      overflow: hidden;
    }

    .tcarousel {
      display: grid;
      grid-template-columns: 440px 1fr;
      gap: 100px;
      align-items: center;
    }

    .tcarousel-images {
      position: relative;
      height: 540px;
      width: 100%;
      perspective: 1400px;
    }

    .tc-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      border-radius: 20px;
      box-shadow: 0 20px 45px rgba(15, 30, 55, .22);
      filter: grayscale(1);
    }

    .tcarousel-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 320px;
      padding-left: 6px;
    }

    .tc-name {
      font-size: 26px;
      color: #004F85;
      margin-bottom: 4px;
      text-transform: none;
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
    }

    .tc-role {
      color: #5b6b82;
      font-size: 14.5px;
      margin-bottom: 26px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
    }

    .tc-quote {
      font-size: 18px;
      line-height: 1.8;
      color: #334155;
      min-height: 170px;
      max-width: 480px;
    }

    .tc-quote .w {
      display: inline-block;
      opacity: 0;
      filter: blur(8px);
      transform: translateY(6px);
      animation: wordIn .5s forwards;
    }

    @keyframes wordIn {
      to {
        opacity: 1;
        filter: blur(0);
        transform: none;
      }
    }

    .tc-arrows {
      display: flex;
      gap: 14px;
      margin-top: 32px;
    }

    .tc-arrow {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: none;
      background: var(--navy-950);
      color: #fff;
      font-size: 18px;
      cursor: pointer;
      transition: background .2s, transform .2s, color .2s;
    }

    .tc-arrow:hover {
      background: var(--mint);
      color: #004F85;
      transform: translateY(-2px);
    }

    /* ---- NOM-037 banner ---- */
    .nom {
      background: var(--white);
    }

    .nom-card {
      background: #004F85;
      border-radius: 24px;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr 1fr;
      color: #fff;
      position: relative;
    }

    .nom-copy {
      padding: 56px;
    }

    .nom-copy .eyebrow {
      color: var(--mint);
    }

    .nom-copy h2 {
      font-size: clamp(24px, 2.8vw, 34px);
      margin: 16px 0 18px;
      color: #fff;
    }

    .nom-copy p {
      font-size: 15px;
      line-height: 1.7;
      color:#fff;
      margin-bottom: 14px;
    }

    .nom-visual {
      position: relative;
      min-height: 340px;
    }

    .nom-visual img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* ---- final CTA ---- */
    .cta-final {
      position: relative;
      color: #fff;
      text-align: center;
      padding: 120px 0;
      overflow: hidden;
    }

    .cta-final .bg-img {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center 30%;
    }

    .cta-final::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(8, 20, 40, .88), rgba(4, 11, 24, .94));
    }

    .cta-final .wrap {
      position: relative;
      z-index: 2;
    }

    .cta-final h2 {
      font-size: clamp(30px, 4.4vw, 52px);
      color: #fff;
      max-width: 760px;
      margin: 0 auto;
      line-height: 1.16;
      letter-spacing: .012em;
      padding: .12em 0 .08em;
    }

    .cta-final p {
      margin: 20px auto 0;
      max-width: 520px;
      color:#fff;
      font-size: 16.5px;
      line-height: 1.6;
    }

    .cta-final .hero-ctas {
      justify-content: center;
      margin-top: 36px;
    }

    .cta-final .contact-line {
      margin-top: 34px;
      font-family: 'Montserrat', sans-serif;
      font-size: 13.5px;
      color:#fff;
    }

    .cta-final .contact-line a {
      color: var(--mint);
    }

    /* ---- footer ---- */
    footer {
      background: #004F85;
      color:#fff;
      padding: 64px 0 28px;
      border-top: 1px solid var(--line);
    }

    .foot-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 48px;
    }

    .foot-grid h5 {
      font-family: 'Montserrat', sans-serif;
      font-size: 12px;
      letter-spacing: .08em;
      text-transform: uppercase;
      color:#fff;
      margin-bottom: 14px;
    }

    .foot-grid a {
      display: block;
      font-size: 14px;
      padding: 6px 0;
      color:#fff;
    }

    .foot-grid a:hover {
      color: #fff;
    }

    .foot-social {
      display: flex;
      gap: 12px;
      margin-top: 22px;
    }

    .foot-social a {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .08);
      border: 1px solid var(--line);
      display: flex;
      align-items: center;
      justify-content: center;
      color:#fff;
      transition: background .2s, color .2s, transform .2s;
      padding: 0;
    }

    .foot-social a svg {
      width: 17px;
      height: 17px;
    }

    .foot-social a:hover {
      background: var(--mint);
      color: #004F85;
      transform: translateY(-2px);
    }

    .footer-top {
      display: grid;
      grid-template-columns: minmax(185px, .85fr) minmax(330px, 1.7fr) minmax(250px, 1fr);
      gap: 34px;
      padding-bottom: 48px;
    }

    .footer-logo img {
      height: 92px;
      width: auto;
    }

    .footer-brand p {
      max-width: 265px;
      font-size: 13.5px;
      line-height: 1.65;
      color:#fff;
      margin-top: 16px;
    }

    .footer-nav-groups {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
    }

    .footer-nav-groups h5,
    .footer-newsletter h5 {
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #fff;
      margin: 0 0 14px;
    }

    .footer-nav-groups a {
      display: block;
      padding: 5px 0;
      font-size: 13px;
      line-height: 1.35;
      color:#fff;
      transition: color .2s ease, transform .2s ease;
    }

    .footer-nav-groups a:hover {
      color: var(--mint);
      transform: translateX(3px);
    }

    .footer-academy-card,
    .footer-newsletter {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, .14);
      border-radius: 14px;
    }

    .footer-academy-card {
      grid-column: 2 / -1;
      padding: 19px 22px;
      background: linear-gradient(135deg, rgba(0, 245, 212, .18), rgba(0, 245, 212, .045));
    }

    .footer-academy-card::after {
      content: '';
      position: absolute;
      width: 92px;
      height: 92px;
      right: -38px;
      bottom: -50px;
      border: 1px solid rgba(0, 245, 212, .28);
      border-radius: 50%;
    }

    .footer-academy-card h5 {
      margin: 0 0 8px;
      color: #fff;
      font-family: var(--font-display);
      font-size: 23px;
      letter-spacing: .01em;
      line-height: 1.02;
    }

    .footer-academy-card p {
      max-width: 245px;
      font-size: 12px;
      line-height: 1.48;
      color:#fff;
    }

    .footer-academy-card a {
      position: relative;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 13px;
      color: var(--mint);
      font: 800 10px 'Montserrat', sans-serif;
      letter-spacing: .03em;
    }

    .footer-academy-card a span { font-size: 14px; transition: transform .2s ease; }
    .footer-academy-card a:hover span { transform: translate(2px, -2px); }

    .footer-newsletter {
      align-self: start;
      padding: 22px;
      background: linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .035));
    }

    .footer-kicker {
      display: block;
      margin-bottom: 10px;
      color: var(--mint);
      font-family: 'Montserrat', sans-serif;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .footer-newsletter h5 {
      font-family: var(--font-display);
      font-size: 23px;
      letter-spacing: .01em;
      line-height: 1.02;
      margin-bottom: 10px;
    }

    .footer-newsletter p {
      font-size: 12.5px;
      line-height: 1.55;
      color:#fff;
    }

    .footer-newsletter-form {
      margin-top: 17px;
    }

    .footer-newsletter-form label {
      display: block;
      margin-bottom: 7px;
      font-family: 'Montserrat', sans-serif;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .04em;
      color:#fff;
    }

    .footer-newsletter-fields { display: flex; gap: 8px; }

    .footer-newsletter-fields input {
      min-width: 0;
      flex: 1;
      height: 42px;
      padding: 0 12px;
      border: 1px solid transparent;
      border-radius: 7px;
      background: #fff;
      color: #004F85;
      font: 500 12px 'Montserrat', sans-serif;
      outline: none;
      transition: border-color .2s ease, box-shadow .2s ease;
    }

    .footer-newsletter-fields input::placeholder { color: #8290a5; }
    .footer-newsletter-fields input:focus { border-color: var(--mint); box-shadow: 0 0 0 3px rgba(0, 245, 212, .18); }

    .footer-newsletter-fields button {
      height: 42px;
      padding: 0 12px;
      border: 0;
      border-radius: 7px;
      background: var(--mint);
      color: #004F85;
      font: 800 10px 'Montserrat', sans-serif;
      letter-spacing: .02em;
      cursor: pointer;
      transition: background .2s ease, transform .2s ease;
    }

    .footer-newsletter-fields button:hover { background: #fff; transform: translateY(-1px); }
    .footer-newsletter-fields button span { margin-left: 3px; font-size: 14px; }

    .footer-newsletter-status {
      margin-top: 10px;
      font-size: 11px !important;
      color:#fff !important;
    }

    .footer-newsletter-status.is-success { color: var(--success) !important; }
    .footer-newsletter-status.is-error { color: #ffb6a8 !important; }

    .footer-blog-invite {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: 17px;
      padding-top: 15px;
      border-top: 1px solid rgba(255, 255, 255, .15);
    }

    .footer-blog-invite > span {
      color:#fff;
      font-size: 10px;
    }

    .footer-blog-invite a {
      color: var(--mint);
      font: 800 10px 'Montserrat', sans-serif;
      letter-spacing: .02em;
      text-align: right;
    }

    .footer-blog-invite b { display: inline-block; margin-left: 4px; font-size: 14px; transition: transform .2s ease; }
    .footer-blog-invite a:hover b { transform: translateX(4px); }

    .foot-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 24px;
      border-top: 1px solid var(--line);
      font-size: 12.5px;
      color:#fff;
      flex-wrap: wrap;
      gap: 12px;
    }

    .foot-bottom a {
      margin-left: auto;
      color:#fff;
      font-size: 18px;
      transition: color .2s ease;
    }

    .foot-bottom a:hover { color: var(--mint); }

    .footer-legal,
    .footer-bottom-actions {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-legal a {
      margin-left: 0;
      font-size: 11px;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .footer-bottom-actions { margin-left: auto; }

    .foot-bottom .footer-credit {
      margin-left: auto;
      color:#fff;
      font-family: 'Montserrat', sans-serif;
      font-size: 10px;
      letter-spacing: .03em;
    }

    .footer-credit strong { color: var(--mint); }

    .foot-bottom .footer-admin-key {
      width: 30px;
      height: 30px;
      margin-left: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: 50%;
    }

    .footer-admin-key svg { width: 14px; height: 14px; }

    /* ================= RESPONSIVE ================= */
    @media (max-width:980px) {
      .nosotros-grid {
        grid-template-columns: 1fr;
      }

      .svc-panel {
        grid-template-columns: 1fr;
      }

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

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

      .nom-card {
        grid-template-columns: 1fr;
      }

      .tcarousel {
        grid-template-columns: 1fr;
        gap: 44px;
      }

      .tcarousel-images {
        height: 360px;
        max-width: 420px;
        margin: 0 auto;
      }

      .tcarousel-content {
        min-height: auto;
        padding-left: 0;
        text-align: center;
      }

      .tc-quote {
        max-width: none;
      }

      .tc-arrows {
        justify-content: center;
      }

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

      .footer-top {
        grid-template-columns: 1fr 1fr;
      }

      .footer-nav-groups {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 28px;
      }

      .footer-academy-card { grid-column: span 2; }

      .event-spotlight { padding: 78px 0; }
      .event-feature { grid-template-columns: 1fr; }
      .event-feature-image { min-height: 300px; }
      .event-rail { grid-template-columns: 1fr; }
      .event-rail-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
      .event-rail-item:last-child { border-bottom: 0; }


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

      .quote-bridge { padding-bottom: 58px; }

      .metodologia-head {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width:760px) {
      #siteHeader .nav {
        height: 72px;
        padding: 0 16px;
        gap: 10px;
      }

      /* Keep the full visible mark while trimming only the transparent canvas. */
      #siteHeader .logo {
        flex: 1 1 auto;
        min-width: 0;
        width: min(190px, calc(100vw - 120px));
        max-width: 190px;
        height: 56px;
        overflow: hidden;
        align-items: flex-start;
      }

      #siteHeader .logo img {
        flex: 0 0 auto;
        width: 190px;
        max-width: none;
        height: 190px;
        transform: translate(-2px, -76px);
      }

      #siteHeader .nav-right {
        flex: 0 0 auto;
        gap: 8px;
      }

      #siteHeader .nav-right .btn-primary {
        display: none;
        padding: 10px 14px;
        font-size: 12px;
      }

      .nav-right .phone-link {
        display: none;
      }

      .menu-toggle-btn .mt-text {
        width: 44px;
      }

      .wrap {
        padding: 0 20px;
      }

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

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

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

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

      .footer-top {
        grid-template-columns: 1fr;
        gap: 34px;
        padding-bottom: 34px;
      }

      .footer-newsletter {
        grid-column: auto;
      }

      .footer-newsletter-fields { flex-direction: column; }
      .footer-newsletter-fields button { width: 100%; }

      .footer-academy-card { grid-column: span 2; }

      .event-spotlight { padding: 64px 0; }
      .event-spotlight-head { display: block; margin-bottom: 30px; }
      .event-spotlight-head p { margin-top: 18px; }
      .event-feature-content { padding: 34px 24px 38px; }
      .event-feature-image { min-height: 240px; }
      .event-empty { padding: 44px 25px; }
      .event-empty { grid-template-columns: 1fr; min-height: 0; padding: 46px 26px 34px; }
      .event-empty-art { min-height: 190px; margin-top: 24px; }
      .event-empty-art::before { width: 170px; height: 170px; }
      .event-empty-art-line { left: 0; width: 100%; }
      .event-empty-art-caption { right: 4%; bottom: 0; }
      .event-empty h3 { font-size: clamp(38px, 12vw, 58px); }
      .event-carousel-stage { min-height: 360px; gap: 6px; }
      .event-feature.event-carousel-slide { min-width: 44px; min-height: 360px; flex-basis: 12%; }
      .event-feature.event-carousel-slide.is-active { flex-basis: 64%; }
      .event-feature-content { padding: 30px 18px 22px; }
      .event-feature h3 { font-size: clamp(24px, 8vw, 38px); }
      .event-feature p { font-size: 13px; }
      .event-carousel-controls { margin-top: 16px; }

      .quote-bridge-inner { padding: 30px 26px 27px; }
      .quote-bridge-inner::before { left: 5px; font-size: 82px; }
      .quote-bridge blockquote br { display: none; }

      .foot-grid img[alt="InspiringTalent"] {
        height: 90px !important;
      }

      .kinetic-menu {
        width: 100%;
      }

      .kinetic-menu-inner {
        padding: 28px 24px;
      }

      .kinetic-link {
        font-size: clamp(28px, 9vw, 40px);
      }

      .hero {
        padding: 120px 0 70px;
        min-height: auto;
      }

      .hero-video-bg video {
        object-position: center 58%;
      }

      .hero h1 {
        min-height: 0;
      }

      .hero-stats {
        gap: 32px;
      }

      .hero-stats-bar {
        margin-bottom: 26px;
        padding-bottom: 26px;
      }

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

      .svc-media-badge {
        display: none;
      }
    }

    @media (max-width:390px) {
      #siteHeader .logo {
        width: min(190px, calc(100vw - 120px));
        max-width: 190px;
      }

      #siteHeader .nav-right .btn-primary {
        padding-inline: 10px;
        font-size: 11px;
      }

      #siteHeader .menu-toggle-btn {
        padding-inline: 2px;
      }

      #siteHeader .menu-toggle-btn .mt-text {
        width: 36px;
      }
    }
