    /* ============================================================
       4GTM — Manual de Identidad Corporativa
       55-65% claro · 20-30% azul · 8-12% dorado
       ============================================================ */
    :root {
      --night:    #061426;   /* Azul noche — fondos premium, autoridad */
      --deep:     #0B2341;   /* Azul profundo — navegación, títulos */
      --deep-2:   #112e54;
      --gold:     #D6A63F;   /* Dorado 4GTM — logo, acentos, CTAs */
      --gold-dk:  #BE8E2D;
      --gold-lt:  #F4D27A;   /* Dorado luz — brillos, highlights */
      --ivory:    #F7F3EA;   /* Marfil — fondo principal */
      --white:    #FFFFFF;
      --graphite: #1F2933;   /* Gris grafito — texto sobre claro */
      --mist:     #E9EDF2;   /* Gris suave — tarjetas, separadores */
      --slate:    #5A6678;   /* texto secundario sobre claro */
      --line:     #E2E6EC;
      --line-d:   rgba(214,166,63,.22);
      --radius:    16px;
      --radius-sm: 10px;
      --shadow:    0 18px 50px -18px rgba(6, 20, 38, .30);
      --shadow-sm: 0 6px 20px -10px rgba(6, 20, 38, .22);
      --maxw:      1160px;
      --ease:      cubic-bezier(.4, 0, .2, 1);
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; scroll-padding-top: 80px; }
    body {
      margin: 0;
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      color: var(--graphite);
      background: var(--white);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }
    h1, h2, h3, .font-display { font-family: 'Montserrat', system-ui, sans-serif; font-weight: 700; line-height: 1.15; letter-spacing: -.01em; margin: 0; }
    p { margin: 0; }
    a { color: inherit; text-decoration: none; }
    img, svg { display: block; max-width: 100%; }
    .container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

    /* ---------- Botones ---------- */
    .btn {
      display: inline-flex; align-items: center; gap: 9px;
      font-family: 'Inter', sans-serif; font-weight: 600; font-size: 15px; line-height: 1;
      padding: 14px 24px; border-radius: 10px;
      border: 1.5px solid transparent; cursor: pointer;
      transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), color .18s var(--ease);
      white-space: nowrap;
    }
    .btn svg { width: 17px; height: 17px; }
    /* Dorado: CTA principal (texto azul noche para contraste premium) */
    .btn-gold { background: var(--gold); color: var(--night); box-shadow: 0 10px 26px -10px rgba(214,166,63,.6); }
    .btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); }
    /* Azul profundo: CTA alternativo sobre fondo claro */
    .btn-deep { background: var(--deep); color: #fff; }
    .btn-deep:hover { background: var(--deep-2); transform: translateY(-2px); }
    /* Ghost sobre oscuro */
    .btn-ghost-d { background: transparent; color: #fff; border-color: rgba(255,255,255,.32); }
    .btn-ghost-d:hover { border-color: var(--gold); color: var(--gold-lt); transform: translateY(-2px); }
    /* Ghost sobre claro */
    .btn-ghost-l { background: transparent; color: var(--deep); border-color: rgba(11,35,65,.22); }
    .btn-ghost-l:hover { border-color: var(--deep); background: rgba(11,35,65,.04); transform: translateY(-2px); }

    /* ---------- Logo: solo isotipo ---------- */
    .brand { display: inline-flex; align-items: center; }
    .brand .iso { height: 40px; width: auto; flex: none; display: block; }
    header .brand .iso { height: 38px; }

    /* ============================================================
       Header  (azul profundo — navegación)
       ============================================================ */
    header.site {
      position: sticky; top: 0; z-index: 50;
      background: rgba(6, 20, 38, .9);
      backdrop-filter: saturate(160%) blur(14px);
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
    .nav-links { display: flex; align-items: center; gap: 30px; }
    .nav-links a.link { font-size: 15px; font-weight: 500; color: #c3cedd; transition: color .15s; }
    .nav-links a.link:hover { color: var(--gold-lt); }
    .nav-cta { display: flex; align-items: center; gap: 14px; }
    .nav-cta .login { font-size: 15px; font-weight: 600; color: #fff; }
    .nav-cta .login:hover { color: var(--gold-lt); }
    .lang-sel {
      appearance: none; -webkit-appearance: none;
      background-color: rgba(255,255,255,.08); color: #e8eef7;
      border: 1px solid rgba(255,255,255,.2); border-radius: 8px;
      font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600;
      padding: 7px 26px 7px 11px; cursor: pointer; letter-spacing: .03em;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23c3cedd' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: right 9px center;
      transition: border-color .15s;
    }
    .lang-sel:hover { border-color: var(--gold); }
    .lang-sel option { color: #0B2341; background: #fff; }
    /* ---------- Banner de cookies ---------- */
    .cookie-banner {
      position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90;
      max-width: 580px; margin: 0 auto;
      background: #0B2341; color: #d6e0ee; border: 1px solid rgba(214,166,63,.35);
      border-radius: 14px; padding: 15px 18px; box-shadow: 0 18px 50px -18px rgba(0,0,0,.65);
      display: flex; flex-direction: column; gap: 12px; font-size: 13.5px; line-height: 1.5;
    }
    .cookie-banner[hidden] { display: none; }
    .cookie-banner p { margin: 0; }
    .cookie-actions { display: flex; gap: 10px; justify-content: flex-end; }
    .btn-ck { font-family:'Inter',sans-serif; font-weight:600; font-size:13.5px; padding:9px 18px; border-radius:8px; cursor:pointer; border:1px solid transparent; transition:.15s; white-space:nowrap; }
    .btn-ck.accept { background: var(--gold); color: var(--night); }
    .btn-ck.accept:hover { background: var(--gold-lt); }
    .btn-ck.reject { background: transparent; color: #d6e0ee; border-color: rgba(255,255,255,.25); }
    .btn-ck.reject:hover { border-color: #fff; }
    @media (min-width:560px) { .cookie-banner { flex-direction:row; align-items:center; justify-content:space-between; } .cookie-actions { flex-shrink:0; } }
    .burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
    .burger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: .25s; }
    .burger span + span { margin-top: 5px; }

    /* ============================================================
       Hero  (azul noche — logo dorado con luz)
       ============================================================ */
    .hero { position: relative; overflow: hidden; background: radial-gradient(150% 135% at 63% 45%, #06204a 0%, #010f29 47%, #00081d 100%); color: #fff; padding: 76px 0 88px; }
    .hero::before {
      content: ""; position: absolute; inset: 0; z-index: 0;
      background: radial-gradient(560px 380px at 60% 62%, rgba(214,166,63,.10), transparent 60%);
      pointer-events: none;
    }
    .hero .container { position: relative; z-index: 1; }
    .hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
    .eyebrow {
      display: inline-flex; align-items: center; gap: 9px;
      font-size: 12.5px; font-weight: 600; letter-spacing: .4px; text-transform: uppercase;
      color: var(--gold-lt); background: rgba(214,166,63,.1); border: 1px solid rgba(214,166,63,.3);
      padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
    }
    .eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
    .hero h1 { font-size: clamp(38px, 5vw, 56px); color: #fff; margin-bottom: 16px; font-weight: 800; }
    .hero h1 em { font-style: normal; color: var(--gold-lt); }
    .hero .tagline { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 17px; color: var(--gold); margin-bottom: 18px; }
    .hero .lead { font-size: 18px; color: #b9c5d6; max-width: 540px; margin-bottom: 30px; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
    .hero-trust { display: flex; gap: 28px; margin-top: 38px; flex-wrap: wrap; }
    .hero-trust .item { display: flex; flex-direction: column; }
    .hero-trust .num { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 26px; color: #fff; }
    .hero-trust .num em { font-style: normal; color: var(--gold-lt); }
    .hero-trust .lbl { font-size: 13px; color: #8ea0b8; }

    /* Isotipo grande con halo de luz (hero) */
    .hero-emblem { position: relative; display: grid; place-items: center; min-height: 360px; }
    .hero-emblem .hero-iso {
      position: relative; width: min(470px, 94%); height: auto;
      -webkit-mask: radial-gradient(66% 64% at 52% 47%, #000 48%, transparent 88%);
              mask: radial-gradient(66% 64% at 52% 47%, #000 48%, transparent 88%);
    }

    /* ============================================================
       Secciones genéricas
       ============================================================ */
    section { padding: 94px 0; }
    .section-head { max-width: 700px; margin: 0 auto 54px; text-align: center; }
    .tag { display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-dk); margin-bottom: 14px; }
    .section-head h2 { font-size: clamp(30px, 4vw, 43px); color: var(--deep); margin-bottom: 16px; font-weight: 800; }
    .section-head p { font-size: 18px; color: var(--slate); }

    .bg-ivory { background: var(--ivory); }
    .bg-white { background: var(--white); }

    /* ---------- Cards de valor ---------- */
    .cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .card {
      background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
      padding: 30px 26px; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s;
    }
    .card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-d); }
    .card .ic-wrap { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 18px; background: rgba(214,166,63,.12); color: var(--gold-dk); }
    .card .ic-wrap svg { width: 24px; height: 24px; }
    .card h3 { font-size: 20px; color: var(--deep); margin-bottom: 10px; font-weight: 700; }
    .card p { color: var(--slate); font-size: 15.5px; }

    /* ---------- Cómo funciona ---------- */
    .steps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
    .steps { display: flex; flex-direction: column; gap: 14px; }
    .step { display: flex; gap: 18px; padding: 18px 20px; border-radius: var(--radius); border: 1px solid transparent; transition: .2s var(--ease); }
    .step:hover { background: var(--ivory); border-color: var(--line); }
    .step .n { flex: none; width: 38px; height: 38px; border-radius: 11px; background: var(--deep); color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 700; display: grid; place-items: center; font-size: 16px; }
    .step:nth-child(2) .n, .step:nth-child(4) .n { background: var(--deep-2); }
    .step:nth-child(3) .n { background: var(--gold); color: var(--night); }
    .step h3 { font-size: 18px; color: var(--deep); margin-bottom: 5px; font-weight: 700; }
    .step p { color: var(--slate); font-size: 15px; }

    /* ---------- Mockup del editor (recreado, sin datos reales) ---------- */
    .mockup { position: relative; border-radius: 16px; background: #fff; box-shadow: var(--shadow); border: 1px solid var(--line); overflow: hidden; }
    .mk-bar { display: flex; align-items: center; gap: 8px; padding: 11px 14px; background: var(--deep); }
    .mk-bar .dots { display: flex; gap: 6px; }
    .mk-bar .dots i { width: 11px; height: 11px; border-radius: 50%; display: block; }
    .mk-bar .url { margin-left: 10px; font-size: 12px; color: #cfe0f5; background: rgba(255,255,255,.1); padding: 5px 12px; border-radius: 6px; font-family: ui-monospace, monospace; }
    .mk-body { display: grid; grid-template-columns: 150px 1fr; min-height: 300px; }
    .mk-side { background: var(--ivory); border-right: 1px solid var(--line); padding: 14px 12px; }
    .mk-side .mk-progress { height: 6px; border-radius: 6px; background: var(--mist); overflow: hidden; margin-bottom: 14px; }
    .mk-side .mk-progress i { display: block; height: 100%; width: 78%; background: linear-gradient(90deg, var(--gold), var(--gold-lt)); }
    .mk-nav { display: flex; flex-direction: column; gap: 3px; }
    .mk-nav .row { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--slate); padding: 7px 9px; border-radius: 8px; }
    .mk-nav .row .ic { width: 14px; height: 14px; border-radius: 4px; background: #cbd5e1; flex: none; }
    .mk-nav .row.active { background: #fff; color: var(--deep); font-weight: 600; box-shadow: var(--shadow-sm); }
    .mk-nav .row.active .ic { background: var(--gold); }
    .mk-main { padding: 16px 18px; }
    .mk-h { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
    .mk-h .title { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 16px; color: var(--deep); }
    .mk-tools { display: flex; gap: 6px; }
    .mk-tools .chip { font-size: 10.5px; font-weight: 600; padding: 5px 9px; border-radius: 6px; }
    .mk-tools .gen { background: var(--gold); color: var(--night); }
    .mk-tools .dep { background: var(--deep); color: #fff; }
    .mk-tools .apr { background: var(--mist); color: var(--deep); }
    .mk-lines i { display: block; height: 9px; border-radius: 5px; background: var(--mist); margin-bottom: 9px; }
    .mk-lines i:nth-child(1) { width: 92%; } .mk-lines i:nth-child(2) { width: 100%; } .mk-lines i:nth-child(3) { width: 84%; }
    .mk-card { margin-top: 12px; border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: 10px; padding: 12px 13px; background: #fff; }
    .mk-card .ct { font-size: 11.5px; font-weight: 700; color: var(--deep); margin-bottom: 7px; }
    .mk-card .cl { display: block; height: 7px; border-radius: 4px; background: var(--mist); margin-bottom: 6px; }
    .mk-card .cl.w1 { width: 95%; } .mk-card .cl.w2 { width: 70%; }

    /* ---------- Capacidades ---------- */
    .feat { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .feat .col h3 { font-size: 14px; text-transform: uppercase; letter-spacing: .06em; color: var(--slate); margin-bottom: 16px; font-family: 'Inter', sans-serif; font-weight: 700; }
    .pills { display: flex; flex-wrap: wrap; gap: 9px; }
    .pill { font-size: 14px; font-weight: 500; color: var(--deep); background: #fff; border: 1px solid var(--line); padding: 9px 15px; border-radius: 999px; transition: .15s; }
    .pill:hover { border-color: var(--gold); color: var(--gold-dk); }
    .pill.premium { background: #fff; border-color: var(--line-d); }
    .pill.premium::before { content: "★"; color: var(--gold); margin-right: 6px; font-size: 12px; }

    /* ---------- Por qué (bloque azul noche — autoridad) ---------- */
    .why { background: var(--night); color: #fff; position: relative; overflow: hidden; }
    .why::before { content:""; position:absolute; inset:0; background: radial-gradient(700px 400px at 85% 10%, rgba(214,166,63,.16), transparent 60%); }
    .why .container { position: relative; }
    .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .why h2 { font-size: clamp(30px, 4vw, 43px); color: #fff; margin-bottom: 22px; font-weight: 800; }
    .why h2 em { font-style: normal; color: var(--gold-lt); }
    .why p { color: #b9c5d6; font-size: 17px; margin-bottom: 18px; }
    .why .quote { border-left: 3px solid var(--gold); padding-left: 20px; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 20px; color: #fff; }
    .why-stats { display: grid; gap: 18px; }
    .why-stat { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 26px; }
    .why-stat .big { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 38px; color: var(--gold-lt); line-height: 1; margin-bottom: 8px; }
    .why-stat p { color: #b9c5d6; font-size: 15px; margin: 0; }

    /* ---------- Nosotros ---------- */
    .about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
    .about p { color: var(--slate); font-size: 17px; margin-bottom: 16px; }
    .partners { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; }
    .partner { display: flex; align-items: center; gap: 14px; }
    .partner .av { width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px; flex: none; border: 1.5px solid var(--gold); color: var(--deep); background: rgba(214,166,63,.1); }
    .partner .meta b { color: var(--deep); display: block; font-size: 15.5px; }
    .partner .meta span { color: var(--slate); font-size: 14px; }
    .placeholder-note { font-size: 13px; color: var(--gold-dk); background: rgba(214,166,63,.08); border: 1px dashed var(--gold); border-radius: 10px; padding: 10px 14px; margin-top: 20px; }
    /* ---------- Bio: enlace + modal ---------- */
    .bio-link { display:block; background:none; border:none; padding:0; margin-top:5px; cursor:pointer; color:var(--gold-dk); font-family:'Inter',sans-serif; font-weight:600; font-size:13px; text-align:left; }
    .bio-link:hover { text-decoration:underline; }
    .bio-modal { position:fixed; inset:0; z-index:100; display:grid; place-items:center; padding:20px; }
    .bio-modal[hidden] { display:none; }
    .bio-backdrop { position:absolute; inset:0; background:rgba(6,20,38,.66); backdrop-filter:blur(3px); }
    .bio-dialog { position:relative; background:#fff; border-radius:18px; max-width:640px; width:100%; max-height:86vh; overflow:auto; padding:30px 32px; box-shadow:0 30px 80px -20px rgba(0,0,0,.5); }
    .bio-x { position:absolute; top:12px; right:16px; background:none; border:none; font-size:26px; line-height:1; color:var(--slate); cursor:pointer; }
    .bio-x:hover { color:var(--deep); }
    .bio-head { display:flex; align-items:center; gap:16px; margin-bottom:18px; padding-right:24px; }
    .bio-head .av { width:60px; height:60px; border-radius:50%; display:grid; place-items:center; font-family:'Montserrat',sans-serif; font-weight:700; font-size:20px; border:1.5px solid var(--gold); color:var(--deep); background:rgba(214,166,63,.1); flex:none; }
    .bio-head b { display:block; font-family:'Montserrat',sans-serif; font-size:20px; color:var(--deep); }
    .bio-head span { color:var(--slate); font-size:14px; }
    .bio-body p { color:var(--graphite); font-size:15px; line-height:1.65; margin:0 0 13px; }
    .bio-close-btn { margin-top:10px; }

    /* misión card */
    .mission { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
    .mission .mhead { background: var(--deep); padding: 11px 14px; display: flex; gap: 8px; align-items: center; }
    .mission .mhead .dots { display: flex; gap: 6px; } .mission .mhead .dots i { width: 11px; height: 11px; border-radius: 50%; display: block; }
    .mission .mhead .url { margin-left: 10px; font-size: 12px; color: #cfe0f5; background: rgba(255,255,255,.1); padding: 5px 12px; border-radius: 6px; font-family: ui-monospace, monospace; }
    .mission .mbody { background: var(--night); color: #fff; padding: 36px 32px; position: relative; overflow: hidden; }
    .mission .mbody::before { content:""; position:absolute; inset:0; background: radial-gradient(360px 220px at 80% 0%, rgba(214,166,63,.2), transparent 60%); }
    .mission .mbody > * { position: relative; }
    .mission .iso { height: 66px; width: auto; margin-bottom: 18px; filter: drop-shadow(0 10px 26px rgba(214,166,63,.4)); }
    .mission h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 22px; line-height: 1.32; color: #fff; margin-bottom: 14px; }
    .mission p { color: #b9c5d6; font-size: 15px; }

    /* ---------- CTA final ---------- */
    .cta { text-align: center; background: linear-gradient(140deg, var(--night), var(--deep)); color: #fff; border-radius: 24px; padding: 70px 30px; position: relative; overflow: hidden; }
    .cta::before { content:""; position:absolute; inset:0; background: radial-gradient(600px 300px at 50% -10%, rgba(214,166,63,.24), transparent 60%); }
    .cta > * { position: relative; }
    .cta h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; font-weight: 800; color: #fff; }
    .cta p { color: #b9c5d6; font-size: 18px; max-width: 540px; margin: 0 auto 30px; }
    .cta .hero-actions { justify-content: center; }

    /* ---------- Footer ---------- */
    footer.site { background: var(--night); color: #9fb0c6; padding: 54px 0 30px; border-top: 3px solid var(--gold); }
    .foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
    footer .fdesc { color: #8293ab; font-size: 14.5px; max-width: 330px; margin-top: 16px; }
    footer h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .06em; margin: 0 0 16px; }
    footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
    footer ul a { color: #9fb0c6; font-size: 14.5px; transition: color .15s; }
    footer ul a:hover { color: var(--gold-lt); }
    .foot-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 13.5px; color: #8293ab; }

    /* ---------- Reveal ---------- */
    .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
    .reveal.in { opacity: 1; transform: none; }

    @media (max-width: 920px) {
      .hero-grid, .steps-grid, .why-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
      .hero-emblem { min-height: 240px; order: -1; }
      .hero .lead { max-width: none; }
      .cards { grid-template-columns: 1fr; }
      .why-stats { grid-template-columns: 1fr 1fr; }
      section { padding: 70px 0; }
    }
    @media (max-width: 720px) {
      .nav-links { display: none; }
      .nav-cta .login { display: none; }
      .burger { display: block; }
      .nav-links.open { display: flex; flex-direction: column; gap: 4px; position: absolute; top: 70px; left: 0; right: 0; background: var(--night); border-bottom: 1px solid rgba(255,255,255,.1); padding: 14px 24px 22px; }
      .nav-links.open a.link { padding: 10px 0; }
      .feat { grid-template-columns: 1fr; }
      .foot-grid { grid-template-columns: 1fr; gap: 28px; }
      .why-stats { grid-template-columns: 1fr; }
    }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .reveal { transition: none; opacity: 1; transform: none; }
    }

    /* ============================================================
       Módulo Emprendimiento (/emprendimiento)
       ============================================================ */
    .cycle { background:#fff; border:1px solid var(--line); border-radius:16px; padding:22px 24px; box-shadow:var(--shadow); }
    .cycle .ct { font-family:'Montserrat',sans-serif; font-weight:700; font-size:13px; color:var(--gold-dk); text-transform:uppercase; letter-spacing:.07em; margin-bottom:14px; }
    .cycle ol { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; }
    .cycle li { display:flex; align-items:center; gap:14px; padding:10px 0; position:relative; }
    .cycle li + li::before { content:''; position:absolute; left:17px; top:-10px; height:20px; width:2px; background:var(--line); }
    .cycle .num { flex:none; width:36px; height:36px; border-radius:10px; background:var(--deep); color:#fff; display:grid; place-items:center; font-family:'Montserrat',sans-serif; font-weight:700; font-size:15px; }
    .cycle li:last-child .num { background:var(--gold); color:var(--night); }
    .cycle .lbl { font-weight:600; color:var(--deep); font-size:15.5px; }
    .who-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(238px,1fr)); gap:20px; }
    .benefits { display:grid; grid-template-columns:1fr 1fr; gap:24px; }
    .benefit { display:flex; gap:14px; }
    .benefit .bi { flex:none; width:36px; height:36px; border-radius:10px; background:rgba(214,166,63,.14); color:var(--gold-dk); display:grid; place-items:center; }
    .benefit .bi svg { width:19px; height:19px; }
    .benefit h3 { font-size:17px; color:var(--deep); margin:0 0 5px; font-weight:700; }
    .benefit p { color:var(--slate); font-size:15px; margin:0; }
    .route-wrap { margin-top:40px; }
    .route-label { font-size:12.5px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--slate); margin-bottom:16px; text-align:center; }
    .route { display:flex; flex-wrap:wrap; gap:8px; justify-content:center; align-items:center; }
    .route .step { background:#fff; border:1px solid var(--line); border-radius:999px; padding:9px 16px; font-weight:600; font-size:14px; color:var(--deep); }
    .route .step.gold { background:var(--gold); color:var(--night); border-color:var(--gold); }
    .route .arrow { color:var(--gold-dk); font-weight:800; }
    .emp-close { margin-top:36px; background:var(--night); color:#fff; border-radius:16px; padding:26px 30px; border-left:4px solid var(--gold); font-size:17px; line-height:1.55; }
    .emp-close b { color:var(--gold-lt); }
    @media (max-width:820px){ .benefits { grid-template-columns:1fr; } }
