            * {
                box-sizing: border-box;
                margin: 0;
                padding: 0;
            }
            html {
                scroll-behavior: smooth;
                overflow-x: clip;
            }
            body {
                font-family: "Inter", sans-serif;
                background: #f3f4f7;
                color: #0d1224;
                overflow-x: clip;
                width: 100%;
                position: relative;
                -webkit-font-smoothing: antialiased;
            }
            section,
            header,
            footer,
            nav {
                max-width: 100vw;
                overflow-x: clip;
            }
            img {
                max-width: 100%;
                height: auto;
            }

            :root {
                --jnp-blue: #1a35bb;
                --jnp-blue-dark: #142a8f;
                --jnp-blue-deep: #0f1f6b;
                --ink: #0d1224;
                --ink-soft: #3a3f56;
                --muted: #6b7187;
                --line: #dde0ea;
                --bg: #f3f4f7;
                --bg-soft: #e9ebf2;
                --max-w: 1360px;
                --gutter: clamp(20px, 4vw, 72px);
            }

            ::selection {
                background: var(--jnp-blue);
                color: #fff;
            }

            /* ─── Utilidades ─── */
            .img-zoom {
                overflow: hidden;
                position: relative;
            }
            .img-zoom img {
                transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
            }
            .img-zoom:hover img {
                transform: scale(1.05);
            }

            /* Tags con notación monospace técnica */
            .ctag {
                font-family: "JetBrains Mono", monospace;
                font-size: 10px;
                letter-spacing: 0.06em;
                text-transform: uppercase;
                font-weight: 500;
                padding: 6px 10px;
                border: 1px solid var(--ink);
                color: var(--ink);
                display: inline-flex;
                align-items: center;
                gap: 4px;
                white-space: nowrap;
                background: transparent;
                transition: all 0.25s ease;
            }
            .ctag::before {
                content: "[";
                opacity: 0.55;
            }
            .ctag::after {
                content: "]";
                opacity: 0.55;
            }
            .ctag:hover {
                background: var(--ink);
                color: #fff;
            }

            /* ─── NAV ─── */
            .nav {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                z-index: 100;
                padding: 20px var(--gutter);
                background: transparent;
                transition:
                    background 0.3s ease,
                    box-shadow 0.3s ease,
                    padding 0.3s ease;
            }
            .nav.scrolled {
                background: rgba(243, 244, 247, 0.96);
                backdrop-filter: blur(12px);
                box-shadow: 0 1px 0 var(--line);
                padding: 12px var(--gutter);
            }
            .nav-inner {
                max-width: var(--max-w);
                margin: 0 auto;
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 16px;
            }
            .nav .logo {
                height: 30px;
                width: auto;
                flex-shrink: 0;
            }
            .nav-links {
                display: flex;
                gap: clamp(14px, 2.2vw, 32px);
                align-items: center;
            }
            .nav-links a {
                color: rgba(255, 255, 255, 0.92);
                font-family: "JetBrains Mono", monospace;
                font-size: 11.5px;
                font-weight: 500;
                letter-spacing: 0.08em;
                text-decoration: none;
                transition: color 0.2s;
                white-space: nowrap;
                text-transform: uppercase;
            }
            .nav.scrolled .nav-links a {
                color: var(--ink);
            }
            .nav-links a:hover {
                color: #fff;
            }
            .nav.scrolled .nav-links a:hover {
                color: var(--jnp-blue);
            }
            .nav-cta {
                background: var(--jnp-blue);
                color: #fff !important;
                padding: 10px 20px;
                font-family: "JetBrains Mono", monospace;
                font-size: 10.5px !important;
                font-weight: 600;
                letter-spacing: 0.14em;
                text-transform: uppercase;
                transition: background 0.2s;
                display: inline-flex !important;
                align-items: center;
                gap: 8px;
                border: 1.5px solid var(--jnp-blue);
            }
            .nav-cta:hover {
                background: transparent;
                color: var(--jnp-blue) !important;
            }
            .nav.scrolled .nav-cta:hover {
                color: var(--jnp-blue) !important;
            }

            /* ─── HERO FULLWIDTH centrado ─── */
            .hero {
                position: relative;
                width: 100%;
                height: 100vh;
                min-height: 640px;
                overflow: hidden;
                background: #0a0a0a;
            }
            .hero-bg {
                position: absolute;
                inset: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                opacity: 0.7;
                pointer-events: none;
            }
            video.hero-bg {
                object-position: center;
            }
            .hero-gradient {
                position: absolute;
                inset: 0;
                background: linear-gradient(
                    180deg,
                    rgba(8, 11, 30, 0.6) 0%,
                    rgba(26, 53, 187, 0.45) 50%,
                    rgba(8, 11, 30, 0.85) 100%
                );
            }

            /* Subtle grid technical overlay */
            .hero::before {
                content: "";
                position: absolute;
                inset: 0;
                background-image:
                    linear-gradient(
                        rgba(255, 255, 255, 0.04) 1px,
                        transparent 1px
                    ),
                    linear-gradient(
                        90deg,
                        rgba(255, 255, 255, 0.04) 1px,
                        transparent 1px
                    );
                background-size: 80px 80px;
                pointer-events: none;
                z-index: 1;
            }

            /* Acentos angulares preservados de P1 */
            .hero-accent-tl {
                position: absolute;
                top: 0;
                left: 0;
                width: 280px;
                height: 280px;
                background: var(--jnp-blue);
                clip-path: polygon(0 0, 100% 0, 0 100%);
                opacity: 0.88;
                z-index: 2;
            }
            .hero-accent-br {
                position: absolute;
                bottom: 0;
                right: 0;
                width: 320px;
                height: 320px;
                background: var(--jnp-blue);
                clip-path: polygon(100% 0, 100% 100%, 0 100%);
                opacity: 0.88;
                z-index: 2;
            }

            /* Coordenadas técnicas — esquinas del hero */
            .hero-coord {
                position: absolute;
                font-family: "JetBrains Mono", monospace;
                font-size: 10.5px;
                font-weight: 500;
                letter-spacing: 0.1em;
                color: rgba(255, 255, 255, 0.65);
                z-index: 3;
                line-height: 1.6;
            }
            .hero-coord-tl {
                top: 96px;
                left: 24px;
                text-align: left;
            }
            .hero-coord-br {
                bottom: 96px;
                right: 24px;
                text-align: right;
            }
            .hero-coord b {
                color: #fff;
                font-weight: 600;
            }

            .hero-content {
                position: absolute;
                inset: 0;
                z-index: 5;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                text-align: center;
                padding: 0 var(--gutter);
            }
            .hero-inner {
                max-width: 920px;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 0;
            }
            .hero-eyebrow {
                display: inline-flex;
                align-items: center;
                gap: 14px;
                font-family: "JetBrains Mono", monospace;
                font-size: 11px;
                font-weight: 500;
                letter-spacing: 0.18em;
                text-transform: uppercase;
                color: rgba(255, 255, 255, 0.85);
                margin-bottom: 30px;
            }
            .hero-eyebrow::before,
            .hero-eyebrow::after {
                content: "";
                width: 32px;
                height: 1px;
                background: #fff;
            }
            .hero-h1 {
                font-family: "Archivo", sans-serif;
                font-size: clamp(2.6rem, 6.2vw, 5.2rem);
                font-weight: 800;
                color: #fff;
                line-height: 0.98;
                letter-spacing: -0.035em;
                margin-bottom: 28px;
                text-transform: none;
            }
            .hero-h1 strong {
                color: #fff;
                position: relative;
                display: inline-block;
                font-weight: 900;
            }
            .hero-h1 em {
                font-style: normal;
                color: rgba(255, 255, 255, 0.55);
                font-weight: 500;
            }
            .hero-sub {
                font-family: "Inter", sans-serif;
                font-size: 16px;
                color: rgba(255, 255, 255, 0.85);
                line-height: 1.78;
                max-width: 640px;
                margin-bottom: 44px;
                font-weight: 400;
            }
            .hero-btns {
                display: flex;
                gap: 12px;
                flex-wrap: wrap;
                justify-content: center;
                margin-bottom: 48px;
            }
            .btn-primary {
                background: #fff;
                color: var(--jnp-blue);
                padding: 16px 32px;
                font-family: "JetBrains Mono", monospace;
                font-size: 11px;
                font-weight: 600;
                letter-spacing: 0.16em;
                text-transform: uppercase;
                text-decoration: none;
                display: inline-flex;
                align-items: center;
                gap: 12px;
                transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
                border: 1.5px solid #fff;
            }
            .btn-primary .arr {
                transition: transform 0.3s ease;
            }
            .btn-primary:hover {
                background: transparent;
                color: #fff;
            }
            .btn-primary:hover .arr {
                transform: translateX(4px);
            }
            .btn-ghost {
                background: transparent;
                color: #fff;
                padding: 16px 32px;
                font-family: "JetBrains Mono", monospace;
                font-size: 11px;
                font-weight: 600;
                letter-spacing: 0.16em;
                text-transform: uppercase;
                text-decoration: none;
                display: inline-flex;
                align-items: center;
                gap: 12px;
                transition: all 0.25s;
                border: 1.5px solid rgba(255, 255, 255, 0.45);
            }
            .btn-ghost:hover {
                border-color: #fff;
                background: rgba(255, 255, 255, 0.08);
            }

            /* Tagline cinematic — bold con notación técnica */
            .hero-tagline {
                display: inline-flex;
                align-items: center;
                gap: 14px;
                background: #fff;
                padding: 14px 28px;
                position: relative;
                z-index: 4;
                border: 1.5px solid #fff;
            }
            .hero-tagline::before {
                content: "◆";
                font-family: "JetBrains Mono", monospace;
                color: var(--jnp-blue);
                font-size: 11px;
            }
            .hero-tagline p {
                font-family: "Archivo", sans-serif;
                font-size: 13px;
                font-weight: 700;
                letter-spacing: 0.06em;
                text-transform: uppercase;
                color: var(--jnp-blue);
                line-height: 1.4;
                white-space: nowrap;
            }

            .hero-scroll {
                position: absolute;
                bottom: 32px;
                left: 50%;
                transform: translateX(-50%);
                z-index: 5;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 12px;
                color: rgba(255, 255, 255, 0.65);
                font-family: "JetBrains Mono", monospace;
                font-size: 10px;
                letter-spacing: 0.28em;
                text-transform: uppercase;
                font-weight: 500;
            }
            .hero-scroll::after {
                content: "";
                width: 1px;
                height: 40px;
                background: linear-gradient(
                    180deg,
                    rgba(255, 255, 255, 0.55) 0%,
                    rgba(255, 255, 255, 0) 100%
                );
            }

            /* ─── SECTION base ─── */
            .section {
                padding: 120px var(--gutter);
                position: relative;
            }
            .section.bg-soft {
                background: var(--bg-soft);
            }
            .section-inner {
                max-width: var(--max-w);
                margin: 0 auto;
                width: 100%;
            }
            .section-head {
                max-width: 780px;
                margin-bottom: 64px;
            }
            .sec-label {
                display: inline-flex;
                align-items: center;
                gap: 14px;
                font-family: "JetBrains Mono", monospace;
                font-size: 11px;
                font-weight: 600;
                letter-spacing: 0.18em;
                text-transform: uppercase;
                color: var(--jnp-blue);
                margin-bottom: 24px;
            }
            .sec-label::before {
                content: "[ 01 ]";
                font-family: "JetBrains Mono", monospace;
                font-weight: 600;
                font-size: 11px;
                letter-spacing: 0.06em;
                color: var(--jnp-blue);
            }
            .sec-label::after {
                content: "";
                width: 32px;
                height: 1px;
                background: var(--jnp-blue);
            }
            .section[id="especialidades"] .sec-label::before {
                content: "[ 02 ]";
            }
            .contact-left .sec-label::before {
                content: "[ 05 ]";
                color: rgba(255, 255, 255, 0.85);
            }

            .sec-title {
                font-family: "Archivo", sans-serif;
                font-size: clamp(2rem, 3.8vw, 3rem);
                font-weight: 800;
                color: var(--ink);
                letter-spacing: -0.03em;
                line-height: 1.05;
                margin-bottom: 22px;
            }
            .sec-title span {
                color: var(--jnp-blue);
            }
            .sec-desc {
                font-family: "Inter", sans-serif;
                font-size: 15.5px;
                color: var(--muted);
                line-height: 1.78;
                max-width: 620px;
                font-weight: 400;
            }

            /* ─── SERVICIOS - Grid 2x2 ─── */
            .services-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .svc-card {
                position: relative;
                background: #fff;
                border: 1px solid var(--line);
                overflow: hidden;
                transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
            }
            .svc-card:hover {
                border-color: var(--jnp-blue);
                box-shadow: 0 28px 60px rgba(13, 18, 36, 0.12);
                transform: translateY(-4px);
            }
            .svc-img {
                position: relative;
                height: 230px;
                overflow: hidden;
            }
            .svc-img img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                filter: grayscale(0.35) brightness(0.82) contrast(1.05);
                transition: all 0.6s;
            }
            .svc-card:hover .svc-img img {
                filter: grayscale(0) brightness(1) contrast(1);
                transform: scale(1.05);
            }
            /* Overlay azul angular preservado de P1 */
            .svc-img::after {
                content: "";
                position: absolute;
                top: 0;
                right: 0;
                width: 45%;
                height: 100%;
                background: var(--jnp-blue);
                clip-path: polygon(60px 0, 100% 0, 100% 100%, 0 100%);
                opacity: 0.94;
                transition: opacity 0.3s;
            }
            .svc-card:hover .svc-img::after {
                opacity: 0.78;
            }
            .svc-num {
                position: absolute;
                top: 18px;
                right: 24px;
                z-index: 2;
                font-family: "Archivo", sans-serif;
                font-size: 42px;
                font-weight: 900;
                color: #fff;
                letter-spacing: -0.04em;
                line-height: 0.9;
            }
            .svc-num small {
                display: block;
                font-family: "JetBrains Mono", monospace;
                font-size: 9.5px;
                font-weight: 500;
                letter-spacing: 0.18em;
                color: rgba(255, 255, 255, 0.75);
                margin-top: 6px;
                text-transform: uppercase;
            }
            .svc-body {
                padding: 30px 32px 34px;
            }
            .svc-body h3 {
                font-family: "Archivo", sans-serif;
                font-size: 19px;
                font-weight: 700;
                color: var(--ink);
                margin-bottom: 14px;
                line-height: 1.2;
                letter-spacing: -0.018em;
            }
            .svc-body p {
                font-family: "Inter", sans-serif;
                font-size: 14px;
                color: var(--muted);
                line-height: 1.78;
                margin-bottom: 20px;
                font-weight: 400;
            }
            .tags {
                display: flex;
                flex-wrap: wrap;
                gap: 6px;
            }

            /* ─── EDITORIAL strip preservado de P1 ─── */
            .editorial-strip {
                position: relative;
                height: 300px;
                overflow: hidden;
                line-height: 0;
            }
            .editorial-strip img {
                position: absolute;
                top: -8%;
                left: 0;
                width: 100%;
                height: 116%;
                object-fit: cover;
                display: block;
                transform: translate3d(0, 0, 0) scale(1.06);
                will-change: transform;
                backface-visibility: hidden;
            }
            .editorial-strip::before {
                content: "";
                position: absolute;
                inset: 0;
                background: linear-gradient(
                    100deg,
                    rgba(26, 53, 187, 0.18) 0%,
                    transparent 60%
                );
            }
            /* Bloque azul lateral preservado */
            .editorial-accent {
                position: absolute;
                top: 0;
                right: 0;
                width: 34%;
                height: 100%;
                background: var(--jnp-blue);
                clip-path: polygon(80px 0, 100% 0, 100% 100%, 0 100%);
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 32px 48px 32px 110px;
            }
            .editorial-accent p {
                font-family: "Archivo", sans-serif;
                font-size: clamp(1.3rem, 2.1vw, 1.75rem);
                font-weight: 800;
                color: #fff;
                line-height: 1.1;
                letter-spacing: -0.025em;
            }
            .editorial-accent p em {
                font-style: normal;
                color: rgba(255, 255, 255, 0.55);
                font-weight: 500;
            }

            /* ─── ESPECIALIDADES ─── */
            .spec-slider-wrap {
                position: relative;
                margin-bottom: 24px;
            }
            .spec-slider-viewport {
                overflow: hidden;
            }
            .spec-grid {
                display: flex;
                gap: 24px;
                transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
                will-change: transform;
            }
            .spec-arrow {
                position: absolute;
                top: 105px;
                transform: translateY(-50%);
                width: 40px;
                height: 40px;
                background: #fff;
                border: 1px solid var(--line);
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                z-index: 10;
                padding: 0;
                transition: border-color 0.2s, background 0.2s, opacity 0.2s;
            }
            .spec-arrow svg {
                width: 16px;
                height: 16px;
                stroke: var(--ink);
                transition: stroke 0.2s;
                flex-shrink: 0;
            }
            .spec-arrow:hover {
                border-color: var(--jnp-blue);
                background: var(--jnp-blue);
            }
            .spec-arrow:hover svg {
                stroke: #fff;
            }
            .spec-prev {
                left: -20px;
            }
            .spec-next {
                right: -20px;
            }
            .spec-arrow:disabled {
                opacity: 0.28;
                cursor: default;
                pointer-events: none;
            }
            .spec-card {
                background: #fff;
                border: 1px solid var(--line);
                overflow: hidden;
                transition: all 0.3s;
            }
            .spec-card:hover {
                border-color: var(--jnp-blue);
                box-shadow: 0 18px 42px rgba(13, 18, 36, 0.1);
            }
            .spec-img {
                position: relative;
                height: 210px;
                overflow: hidden;
            }
            .spec-img img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.6s;
            }
            .spec-card:hover .spec-img img {
                transform: scale(1.06);
            }
            .spec-label {
                position: absolute;
                top: 0;
                left: 0;
                background: var(--jnp-blue);
                color: #fff;
                padding: 9px 22px 9px 18px;
                font-family: "JetBrains Mono", monospace;
                font-size: 10px;
                font-weight: 600;
                letter-spacing: 0.14em;
                text-transform: uppercase;
                clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
            }
            .spec-body {
                padding: 28px 28px 30px;
            }
            .spec-hd {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-bottom: 12px;
            }
            .spec-hd h3 {
                font-family: "Archivo", sans-serif;
                font-size: 1.4rem;
                font-weight: 800;
                color: var(--ink);
                letter-spacing: -0.025em;
                line-height: 1.1;
            }
            .expand-btn {
                font-family: "JetBrains Mono", monospace;
                font-size: 10px;
                font-weight: 600;
                color: var(--jnp-blue);
                cursor: pointer;
                background: none;
                border: none;
                padding: 0;
                letter-spacing: 0.06em;
                text-transform: uppercase;
                transition: opacity 0.2s;
            }
            .expand-btn:hover {
                opacity: 0.65;
            }
            .spec-body > p {
                font-family: "Inter", sans-serif;
                font-size: 13.5px;
                color: var(--muted);
                line-height: 1.72;
                margin-bottom: 16px;
                font-weight: 400;
            }
            .spec-list {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 6px 16px;
                list-style: none;
            }
            .spec-list li {
                font-family: "Inter", sans-serif;
                font-size: 13px;
                color: var(--ink-soft);
                display: flex;
                align-items: center;
                gap: 10px;
                font-weight: 500;
            }
            .spec-list li::before {
                content: "";
                width: 5px;
                height: 5px;
                background: var(--jnp-blue);
                flex-shrink: 0;
            }

            /* ─── TABULADOR ─── */
            .tbl-wrap {
                background: #fff;
                border: 1px solid var(--line);
                padding: 0;
                display: grid;
                grid-template-columns: 1fr 1.4fr;
            }
            .tbl-left {
                background: var(--jnp-blue);
                color: #fff;
                padding: 44px 46px;
                position: relative;
                overflow: hidden;
            }
            .tbl-left::before {
                content: "";
                position: absolute;
                bottom: -40px;
                right: -40px;
                width: 120px;
                height: 120px;
                background: rgba(255, 255, 255, 0.06);
                transform: rotate(45deg);
            }
            .tbl-left h3 {
                font-family: "Archivo", sans-serif;
                font-size: 24px;
                font-weight: 800;
                color: #fff;
                line-height: 1.18;
                letter-spacing: -0.025em;
                margin-bottom: 14px;
            }
            .tbl-left p {
                font-family: "Inter", sans-serif;
                font-size: 13.5px;
                color: rgba(255, 255, 255, 0.78);
                line-height: 1.78;
                margin-bottom: 22px;
                font-weight: 400;
            }
            .tbl-left .mini-tag {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                background: rgba(255, 255, 255, 0.12);
                padding: 7px 14px;
                font-family: "JetBrains Mono", monospace;
                font-size: 10px;
                font-weight: 600;
                letter-spacing: 0.14em;
                text-transform: uppercase;
            }
            .tbl-left .mini-tag::before {
                content: "§";
            }
            .tbl-right {
                padding: 0;
            }
            .tbl {
                width: 100%;
                border-collapse: collapse;
            }
            .tbl thead tr {
                background: var(--bg);
                border-bottom: 2px solid var(--jnp-blue);
            }
            .tbl thead th {
                font-family: "JetBrains Mono", monospace;
                color: var(--ink);
                font-size: 10.5px;
                letter-spacing: 0.14em;
                text-transform: uppercase;
                padding: 18px 28px;
                text-align: left;
                font-weight: 600;
            }
            .tbl tbody td {
                padding: 18px 28px;
                font-family: "Archivo", sans-serif;
                font-size: 15px;
                color: var(--ink);
                border-bottom: 1px solid var(--line);
                font-weight: 600;
                letter-spacing: -0.005em;
            }
            .tbl tbody tr:last-child td {
                border-bottom: none;
            }
            .tbl tbody td:last-child {
                color: var(--jnp-blue);
                font-weight: 800;
                text-align: right;
                font-family: "Archivo", sans-serif;
                font-size: 18px;
                letter-spacing: -0.02em;
            }
            .tbl tbody tr:last-child td:last-child {
                color: var(--muted);
                font-weight: 500;
                font-style: italic;
                font-size: 13px;
                font-family: "Inter", sans-serif;
            }

            /* ─── STATS oscuros con ángulo ─── */
            .stats {
                background: #08091e;
                position: relative;
                overflow: hidden;
                padding: 80px var(--gutter);
            }
            .stats::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 40%;
                height: 100%;
                background: var(--jnp-blue);
                clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
                opacity: 0.28;
            }
            /* Subtle grid technical overlay */
            .stats::after {
                content: "JNP";
                position: absolute;
                right: 48px;
                top: 50%;
                transform: translateY(-50%);
                font-family: "Archivo", sans-serif;
                font-size: 13rem;
                font-weight: 900;
                color: rgba(255, 255, 255, 0.025);
                letter-spacing: -0.04em;
                line-height: 0.9;
            }
            .stats-grid {
                position: relative;
                z-index: 2;
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                max-width: 1300px;
                margin: 0 auto;
            }
            .stat {
                padding: 20px 32px;
                border-right: 1px solid rgba(255, 255, 255, 0.1);
            }
            .stat:last-child {
                border-right: none;
            }
            .stat .stat-id {
                font-family: "JetBrains Mono", monospace;
                font-size: 9.5px;
                font-weight: 500;
                letter-spacing: 0.22em;
                text-transform: uppercase;
                color: rgba(255, 255, 255, 0.45);
                margin-bottom: 14px;
                display: flex;
                align-items: center;
                gap: 8px;
            }
            .stat .stat-id::before {
                content: "";
                width: 5px;
                height: 5px;
                background: var(--jnp-blue);
                flex-shrink: 0;
            }
            .stat .n {
                font-family: "Archivo", sans-serif;
                font-size: 54px;
                font-weight: 900;
                color: #fff;
                letter-spacing: -0.045em;
                line-height: 0.92;
                margin-bottom: 8px;
            }
            .stat .n span {
                color: #fff;
                font-size: inherit;
                font-weight: inherit;
                vertical-align: baseline;
            }
            .stat .l {
                font-family: "JetBrains Mono", monospace;
                font-size: 10.5px;
                color: rgba(255, 255, 255, 0.55);
                letter-spacing: 0.18em;
                text-transform: uppercase;
                font-weight: 500;
            }

            /* ─── CONTACTO ─── */
            .contact {
                display: grid;
                grid-template-columns: 1fr 1fr;
                min-height: 580px;
            }
            .contact-left {
                background: var(--jnp-blue);
                padding: 84px clamp(32px, 5vw, 72px);
                display: flex;
                flex-direction: column;
                justify-content: center;
                position: relative;
                overflow: hidden;
                color: #fff;
            }
            .contact-left::before {
                content: "";
                position: absolute;
                top: -80px;
                right: -80px;
                width: 260px;
                height: 260px;
                background: rgba(255, 255, 255, 0.04);
                transform: rotate(45deg);
            }
            .contact-left::after {
                content: "";
                position: absolute;
                bottom: -40px;
                left: -60px;
                width: 180px;
                height: 180px;
                background: rgba(255, 255, 255, 0.03);
                transform: rotate(45deg);
            }
            .contact-left > * {
                position: relative;
                z-index: 2;
            }
            .contact-left .sec-label {
                color: rgba(255, 255, 255, 0.85);
                margin-bottom: 24px;
            }
            .contact-left .sec-label::after {
                background: #fff;
            }
            .contact-left h2 {
                font-family: "Archivo", sans-serif;
                font-size: clamp(1.85rem, 2.8vw, 2.4rem);
                font-weight: 800;
                color: #fff;
                line-height: 1.08;
                letter-spacing: -0.028em;
                margin-bottom: 20px;
            }
            .contact-left > p {
                font-family: "Inter", sans-serif;
                font-size: 15px;
                color: rgba(255, 255, 255, 0.82);
                line-height: 1.78;
                margin-bottom: 38px;
                max-width: 440px;
                font-weight: 400;
            }
            .contact-details {
                display: flex;
                flex-direction: column;
                gap: 14px;
            }
            .cd {
                display: flex;
                align-items: center;
                gap: 14px;
                font-family: "Inter", sans-serif;
                font-size: 13.5px;
                color: rgba(255, 255, 255, 0.92);
                font-weight: 400;
            }
            .cd-icon {
                width: 36px;
                height: 36px;
                background: rgba(255, 255, 255, 0.1);
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 14px;
                flex-shrink: 0;
            }


            .cd-link {
                color: #fff;
                text-decoration: none;
            }
            .cd-link:hover {
                text-decoration: underline;
            }

            .hp-field {
                position: absolute;
                left: -9999px;
                opacity: 0;
                pointer-events: none;
            }

            .whatsapp-float {
                position: fixed;
                right: 22px;
                bottom: 22px;
                z-index: 999;
                width: 56px;
                height: 56px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                background: #25d366;
                text-decoration: none;
                border-radius: 50%;
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
                transition: filter 0.2s ease;
            }
            .whatsapp-float img {
                width: 30px;
                height: 30px;
                filter: brightness(0) invert(1);
            }
            .whatsapp-float:hover {
                filter: brightness(0.95);
            }

            .contact-right {
                background: #fff;
                padding: 84px clamp(32px, 5vw, 72px);
                display: flex;
                flex-direction: column;
                justify-content: center;
            }
            .form-title {
                font-family: "JetBrains Mono", monospace;
                font-size: 11px;
                font-weight: 600;
                color: var(--jnp-blue);
                letter-spacing: 0.14em;
                text-transform: uppercase;
                margin-bottom: 24px;
                display: flex;
                align-items: center;
                gap: 14px;
            }
            .form-title::before {
                content: "[ 06 ]";
                font-family: "JetBrains Mono", monospace;
            }
            .form-title::after {
                content: "";
                width: 32px;
                height: 1px;
                background: var(--jnp-blue);
            }
            .form-grid {
                display: flex;
                flex-direction: column;
                gap: 14px;
            }
            .form-row {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 14px;
            }
            .form-input {
                width: 100%;
                background: transparent;
                border: none;
                border-bottom: 1.5px solid var(--line);
                padding: 14px 2px;
                font-family: "Inter", sans-serif;
                font-size: 14.5px;
                color: var(--ink);
                transition: border-color 0.2s;
                outline: none;
                font-weight: 400;
            }
            .form-input:focus {
                border-bottom-color: var(--jnp-blue);
            }
            .form-input::placeholder {
                color: #aaa;
                font-weight: 400;
            }
            textarea.form-input {
                resize: none;
                min-height: 90px;
                font-family: "Inter", sans-serif;
            }
            .form-submit {
                background: var(--jnp-blue);
                color: #fff;
                padding: 17px 32px;
                font-family: "JetBrains Mono", monospace;
                font-size: 11px;
                font-weight: 600;
                letter-spacing: 0.16em;
                text-transform: uppercase;
                border: 1.5px solid var(--jnp-blue);
                cursor: pointer;
                margin-top: 18px;
                transition: all 0.25s ease;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 14px;
                align-self: flex-start;
            }
            .form-submit .arr {
                transition: transform 0.3s ease;
            }
            .form-submit:hover {
                background: transparent;
                color: var(--jnp-blue);
            }
            .form-submit:hover .arr {
                transform: translateX(4px);
            }

            /* ─── FOOTER ─── */
            .footer {
                background: #08091e;
                padding: 54px var(--gutter) 32px;
                color: #fff;
            }
            .footer-inner {
                max-width: var(--max-w);
                margin: 0 auto;
                width: 100%;
            }
            .footer-top {
                display: grid;
                grid-template-columns: 1fr 1fr 1fr;
                gap: 40px;
                padding-bottom: 32px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
                margin-bottom: 24px;
            }
            .footer-top img {
                height: 30px;
                opacity: 0.9;
                margin-bottom: 16px;
                filter: brightness(0) invert(1);
            }
            .footer-top p {
                font-family: "Inter", sans-serif;
                font-size: 13px;
                color: rgba(255, 255, 255, 0.55);
                line-height: 1.7;
                font-weight: 400;
            }
            .footer-col h5 {
                font-family: "JetBrains Mono", monospace;
                font-size: 10.5px;
                font-weight: 600;
                letter-spacing: 0.18em;
                text-transform: uppercase;
                color: #fff;
                margin-bottom: 16px;
            }
            .footer-col a {
                display: block;
                font-family: "Inter", sans-serif;
                font-size: 13px;
                color: rgba(255, 255, 255, 0.6);
                text-decoration: none;
                margin-bottom: 8px;
                transition: color 0.2s;
                font-weight: 400;
            }
            .footer-col a:hover {
                color: #fff;
            }
            .footer-bottom {
                display: flex;
                justify-content: space-between;
                align-items: center;
                flex-wrap: wrap;
                gap: 8px;
            }
            .footer-bottom span {
                font-family: "JetBrains Mono", monospace;
                font-size: 10.5px;
                color: rgba(255, 255, 255, 0.35);
                letter-spacing: 0.06em;
                font-weight: 400;
            }

            /* ─── Responsive ─── */
            @media (max-width: 900px) {
                :root {
                    --gutter: 20px;
                }
                .nav {
                    padding: 14px 20px;
                    width: 100vw;
                    max-width: 100vw;
                    left: 0;
                    right: auto;
                }
                .nav.scrolled {
                    padding: 10px 20px;
                }
                .nav-inner {
                    gap: 12px;
                    max-width: 100%;
                }
                .nav .logo {
                    height: 26px;
                }
                .nav-links {
                    gap: 14px;
                }
                .nav-links a:not(.nav-cta) {
                    display: none;
                }
                .nav-cta {
                    padding: 9px 16px;
                    font-size: 9.5px !important;
                    letter-spacing: 0.1em;
                }

                .hero {
                    min-height: 600px;
                    height: auto;
                    min-height: 100svh;
                }
                .hero-content {
                    padding: 90px 20px 80px;
                    justify-content: center;
                }
                .hero-inner {
                    width: 100%;
                }
                .hero-eyebrow {
                    font-size: 9.5px;
                    letter-spacing: 0.14em;
                    margin-bottom: 20px;
                }
                .hero-eyebrow::before,
                .hero-eyebrow::after {
                    width: 20px;
                }
                .hero-h1 {
                    font-size: clamp(2rem, 8vw, 2.8rem);
                    margin-bottom: 20px;
                }
                .hero-sub {
                    font-size: 14px;
                    margin-bottom: 30px;
                    padding: 0 4px;
                }
                .hero-btns {
                    gap: 10px;
                    margin-bottom: 32px;
                    flex-direction: column;
                    width: 100%;
                    max-width: 320px;
                }
                .hero-btns a {
                    width: 100%;
                    justify-content: center;
                    padding: 14px 24px;
                }
                .hero-tagline {
                    padding: 12px 22px;
                    max-width: 100%;
                }
                .hero-tagline p {
                    font-size: 11.5px;
                    letter-spacing: 0.04em;
                    white-space: normal;
                    text-align: center;
                }
                .hero-accent-tl {
                    width: 160px;
                    height: 160px;
                }
                .hero-accent-br {
                    width: 180px;
                    height: 180px;
                }
                .hero-coord {
                    display: none;
                }
                .hero-scroll {
                    display: none;
                }

                .section {
                    padding: 80px 20px;
                }
                .section-head {
                    margin-bottom: 44px;
                }
                .services-grid {
                    grid-template-columns: 1fr;
                    gap: 20px;
                }
                .svc-img {
                    height: 190px;
                }
                .svc-body {
                    padding: 24px 22px 26px;
                }
                .editorial-strip {
                    height: 240px;
                }
                .editorial-accent {
                    display: none;
                }
                .spec-prev {
                    left: -12px;
                }
                .spec-next {
                    right: -12px;
                }
                .tbl-wrap {
                    grid-template-columns: 1fr;
                }
                .tbl-left {
                    padding: 34px 28px;
                }
                .tbl thead th,
                .tbl tbody td {
                    padding: 14px 20px;
                }
                .tbl tbody td:last-child {
                    font-size: 16px;
                }
                .stats {
                    padding: 54px 20px;
                }
                .stats-grid {
                    grid-template-columns: 1fr 1fr;
                    gap: 0;
                }
                .stat {
                    border-right: none;
                    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                    padding: 24px 16px;
                }
                .stat:nth-child(odd) {
                    border-right: 1px solid rgba(255, 255, 255, 0.1);
                }
                .stat:nth-last-child(-n + 2) {
                    border-bottom: none;
                }
                .stat .n {
                    font-size: 42px;
                }
                .contact {
                    grid-template-columns: 1fr;
                }
                .contact-left,
    
            .cd-link {
                color: #fff;
                text-decoration: none;
            }
            .cd-link:hover {
                text-decoration: underline;
            }

            .hp-field {
                position: absolute;
                left: -9999px;
                opacity: 0;
                pointer-events: none;
            }

            .whatsapp-float {
                position: fixed;
                right: 22px;
                bottom: 22px;
                z-index: 999;
                width: 56px;
                height: 56px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                background: #25d366;
                text-decoration: none;
                border-radius: 50%;
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
                transition: filter 0.2s ease;
            }
            .whatsapp-float img {
                width: 30px;
                height: 30px;
                filter: brightness(0) invert(1);
            }
            .whatsapp-float:hover {
                filter: brightness(0.95);
            }

            .contact-right {
                    padding: 54px 24px;
                }
                .contact-left h2 {
                    font-size: 1.7rem;
                }
                .footer {
                    padding: 44px 20px 26px;
                }
                .footer-top {
                    grid-template-columns: 1fr;
                    gap: 28px;
                }
            }

            @media (max-width: 480px) {
                .hero-h1 {
                    font-size: 2rem;
                }
                .hero-content {
                    padding: 80px 16px 60px;
                }
                .section {
                    padding: 64px 16px;
                }
                .stats {
                    padding: 42px 16px;
                }
                .contact-left,
    
            .cd-link {
                color: #fff;
                text-decoration: none;
            }
            .cd-link:hover {
                text-decoration: underline;
            }

            .hp-field {
                position: absolute;
                left: -9999px;
                opacity: 0;
                pointer-events: none;
            }

            .whatsapp-float {
                position: fixed;
                right: 22px;
                bottom: 22px;
                z-index: 999;
                width: 56px;
                height: 56px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                background: #25d366;
                text-decoration: none;
                border-radius: 50%;
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
                transition: filter 0.2s ease;
            }
            .whatsapp-float img {
                width: 30px;
                height: 30px;
                filter: brightness(0) invert(1);
            }
            .whatsapp-float:hover {
                filter: brightness(0.95);
            }

            .contact-right {
                    padding: 46px 20px;
                }
            }
/* ─── Thank You Page · estilos específicos ─── */
            .ty-page {
                position: relative;
                min-height: 100vh;
                min-height: 100svh;
                width: 100%;
                background: #08091e;
                overflow: hidden;
                display: flex;
                flex-direction: column;
            }

            /* Grid técnico de fondo */
            .ty-page::before {
                content: "";
                position: absolute;
                inset: 0;
                background-image:
                    linear-gradient(
                        rgba(255, 255, 255, 0.04) 1px,
                        transparent 1px
                    ),
                    linear-gradient(
                        90deg,
                        rgba(255, 255, 255, 0.04) 1px,
                        transparent 1px
                    );
                background-size: 80px 80px;
                pointer-events: none;
                z-index: 1;
            }

            /* Marca de agua JNP */
            .ty-page::after {
                content: "JNP";
                position: absolute;
                right: -40px;
                bottom: -60px;
                font-family: "Archivo", sans-serif;
                font-size: clamp(14rem, 28vw, 26rem);
                font-weight: 900;
                color: rgba(255, 255, 255, 0.025);
                letter-spacing: -0.05em;
                line-height: 0.85;
                pointer-events: none;
                z-index: 1;
                white-space: nowrap;
            }

            /* Acentos angulares — esquinas opuestas */
            .ty-accent-tl {
                position: absolute;
                top: 0;
                left: 0;
                width: 280px;
                height: 280px;
                background: var(--jnp-blue);
                clip-path: polygon(0 0, 100% 0, 0 100%);
                opacity: 0.92;
                z-index: 2;
            }
            .ty-accent-br {
                position: absolute;
                bottom: 0;
                right: 0;
                width: 320px;
                height: 320px;
                background: var(--jnp-blue);
                clip-path: polygon(100% 0, 100% 100%, 0 100%);
                opacity: 0.92;
                z-index: 2;
            }

            /* Coordenadas técnicas */
            .ty-coord {
                position: absolute;
                font-family: "JetBrains Mono", monospace;
                font-size: 10.5px;
                font-weight: 500;
                letter-spacing: 0.1em;
                color: rgba(255, 255, 255, 0.65);
                z-index: 4;
                line-height: 1.6;
            }
            .ty-coord-tl {
                top: 96px;
                left: 24px;
                text-align: left;
            }
            .ty-coord-br {
                bottom: 96px;
                right: 24px;
                text-align: right;
            }
            .ty-coord b {
                color: #fff;
                font-weight: 600;
            }

            /* Contenido principal */
            .ty-content {
                position: relative;
                z-index: 5;
                flex: 1;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 120px var(--gutter) 80px;
                width: 100%;
            }
            .ty-inner {
                max-width: 880px;
                width: 100%;
                text-align: center;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            /* Marca de éxito (checkmark estilo angular) */
            .ty-mark {
                width: 84px;
                height: 84px;
                display: flex;
                align-items: center;
                justify-content: center;
                margin-bottom: 36px;
                position: relative;
                background: var(--jnp-blue);
            }
            .ty-mark::before {
                content: "";
                position: absolute;
                inset: -8px;
                border: 1px solid rgba(255, 255, 255, 0.2);
                pointer-events: none;
            }
            .ty-mark svg {
                width: 38px;
                height: 38px;
                stroke: #fff;
                stroke-width: 2.4;
                fill: none;
                stroke-linecap: square;
                stroke-linejoin: miter;
            }
            .ty-mark .check-path {
                stroke-dasharray: 60;
                stroke-dashoffset: 60;
            }

            .ty-eyebrow {
                display: inline-flex;
                align-items: center;
                gap: 14px;
                font-family: "JetBrains Mono", monospace;
                font-size: 11px;
                font-weight: 500;
                letter-spacing: 0.18em;
                text-transform: uppercase;
                color: rgba(255, 255, 255, 0.85);
                margin-bottom: 30px;
            }
            .ty-eyebrow::before,
            .ty-eyebrow::after {
                content: "";
                width: 32px;
                height: 1px;
                background: #fff;
            }

            .ty-h1 {
                font-family: "Archivo", sans-serif;
                font-size: clamp(2.4rem, 5.6vw, 4.6rem);
                font-weight: 800;
                color: #fff;
                line-height: 1;
                letter-spacing: -0.035em;
                margin-bottom: 28px;
            }
            .ty-h1 em {
                font-style: normal;
                color: rgba(255, 255, 255, 0.55);
                font-weight: 500;
            }
            .ty-h1 strong {
                font-weight: 900;
                color: #fff;
            }

            .ty-sub {
                font-family: "Inter", sans-serif;
                font-size: 16px;
                color: rgba(255, 255, 255, 0.82);
                line-height: 1.78;
                max-width: 600px;
                margin-bottom: 40px;
                font-weight: 400;
            }

            /* Bloque de pasos siguientes */
            .ty-steps {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 1px;
                background: rgba(255, 255, 255, 0.08);
                border: 1px solid rgba(255, 255, 255, 0.08);
                width: 100%;
                max-width: 760px;
                margin-bottom: 48px;
            }
            .ty-step {
                background: #08091e;
                padding: 28px 24px;
                text-align: left;
                position: relative;
            }
            .ty-step-num {
                font-family: "JetBrains Mono", monospace;
                font-size: 10px;
                font-weight: 600;
                letter-spacing: 0.18em;
                color: var(--jnp-blue);
                margin-bottom: 14px;
                display: flex;
                align-items: center;
                gap: 8px;
                text-transform: uppercase;
            }
            .ty-step-num::before {
                content: "";
                width: 5px;
                height: 5px;
                background: var(--jnp-blue);
                flex-shrink: 0;
            }
            .ty-step h4 {
                font-family: "Archivo", sans-serif;
                font-size: 15px;
                font-weight: 700;
                color: #fff;
                line-height: 1.2;
                letter-spacing: -0.018em;
                margin-bottom: 8px;
            }
            .ty-step p {
                font-family: "Inter", sans-serif;
                font-size: 13px;
                color: rgba(255, 255, 255, 0.6);
                line-height: 1.65;
                font-weight: 400;
            }

            /* Botones */
            .ty-btns {
                display: flex;
                gap: 12px;
                flex-wrap: wrap;
                justify-content: center;
                margin-bottom: 44px;
            }
            .ty-btn-primary {
                background: #fff;
                color: var(--jnp-blue);
                padding: 16px 32px;
                font-family: "JetBrains Mono", monospace;
                font-size: 11px;
                font-weight: 600;
                letter-spacing: 0.16em;
                text-transform: uppercase;
                text-decoration: none;
                display: inline-flex;
                align-items: center;
                gap: 12px;
                transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
                border: 1.5px solid #fff;
            }
            .ty-btn-primary .arr {
                transition: transform 0.3s ease;
                display: inline-block;
            }
            .ty-btn-primary:hover {
                background: transparent;
                color: #fff;
            }
            .ty-btn-primary:hover .arr {
                transform: translateX(-4px);
            }
            .ty-btn-ghost {
                background: transparent;
                color: #fff;
                padding: 16px 32px;
                font-family: "JetBrains Mono", monospace;
                font-size: 11px;
                font-weight: 600;
                letter-spacing: 0.16em;
                text-transform: uppercase;
                text-decoration: none;
                display: inline-flex;
                align-items: center;
                gap: 12px;
                transition: all 0.25s;
                border: 1.5px solid rgba(255, 255, 255, 0.45);
            }
            .ty-btn-ghost:hover {
                border-color: #fff;
                background: rgba(255, 255, 255, 0.08);
            }

            /* Tagline editorial */
            .ty-tagline {
                display: inline-flex;
                align-items: center;
                gap: 14px;
                background: #fff;
                padding: 14px 28px;
                position: relative;
                z-index: 4;
                border: 1.5px solid #fff;
            }
            .ty-tagline::before {
                content: "◆";
                font-family: "JetBrains Mono", monospace;
                color: var(--jnp-blue);
                font-size: 11px;
            }
            .ty-tagline p {
                font-family: "Archivo", sans-serif;
                font-size: 13px;
                font-weight: 700;
                letter-spacing: 0.06em;
                text-transform: uppercase;
                color: var(--jnp-blue);
                line-height: 1.4;
                white-space: nowrap;
            }

            /* Footer mínimo */
            .ty-footer {
                position: relative;
                z-index: 5;
                padding: 24px var(--gutter);
                border-top: 1px solid rgba(255, 255, 255, 0.08);
                display: flex;
                justify-content: space-between;
                align-items: center;
                flex-wrap: wrap;
                gap: 12px;
            }
            .ty-footer span {
                font-family: "JetBrains Mono", monospace;
                font-size: 10.5px;
                color: rgba(255, 255, 255, 0.4);
                letter-spacing: 0.1em;
                font-weight: 400;
                text-transform: uppercase;
            }
            .ty-footer a {
                color: rgba(255, 255, 255, 0.55);
                text-decoration: none;
                font-family: "JetBrains Mono", monospace;
                font-size: 10.5px;
                letter-spacing: 0.1em;
                text-transform: uppercase;
                transition: color 0.2s;
            }
            .ty-footer a:hover {
                color: #fff;
            }

            /* Logo en nav simplificado */
            .ty-nav {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                z-index: 10;
                padding: 24px var(--gutter);
            }
            .ty-nav-inner {
                max-width: var(--max-w);
                margin: 0 auto;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
            .ty-nav .logo {
                height: 30px;
                width: auto;
                filter: brightness(0) invert(1);
            }
            .ty-nav .nav-status {
                font-family: "JetBrains Mono", monospace;
                font-size: 10.5px;
                font-weight: 500;
                letter-spacing: 0.16em;
                text-transform: uppercase;
                color: rgba(255, 255, 255, 0.65);
                display: inline-flex;
                align-items: center;
                gap: 10px;
            }
            .ty-nav .nav-status::before {
                content: "";
                width: 8px;
                height: 8px;
                background: #25d366;
                border-radius: 50%;
                animation: pulse-dot 2s ease-in-out infinite;
            }
            @keyframes pulse-dot {
                0%,
                100% {
                    opacity: 1;
                    transform: scale(1);
                }
                50% {
                    opacity: 0.55;
                    transform: scale(0.85);
                }
            }

            /* Responsive */
            @media (max-width: 900px) {
                .ty-content {
                    padding: 100px 20px 60px;
                }
                .ty-accent-tl {
                    width: 160px;
                    height: 160px;
                }
                .ty-accent-br {
                    width: 180px;
                    height: 180px;
                }
                .ty-coord {
                    display: none;
                }
                .ty-h1 {
                    font-size: clamp(2rem, 8vw, 2.8rem);
                }
                .ty-sub {
                    font-size: 14.5px;
                    padding: 0 4px;
                }
                .ty-steps {
                    grid-template-columns: 1fr;
                }
                .ty-btns {
                    flex-direction: column;
                    width: 100%;
                    max-width: 320px;
                }
                .ty-btns a {
                    width: 100%;
                    justify-content: center;
                }
                .ty-tagline {
                    padding: 12px 22px;
                }
                .ty-tagline p {
                    font-size: 11.5px;
                    letter-spacing: 0.04em;
                    white-space: normal;
                    text-align: center;
                }
                .ty-footer {
                    padding: 20px;
                    justify-content: center;
                    text-align: center;
                }
                .ty-nav {
                    padding: 18px 20px;
                }
                .ty-nav .logo {
                    height: 26px;
                }
            }

            @media (max-width: 480px) {
                .ty-content {
                    padding: 90px 16px 50px;
                }
                .ty-mark {
                    width: 70px;
                    height: 70px;
                    margin-bottom: 28px;
                }
                .ty-mark svg {
                    width: 32px;
                    height: 32px;
                }
            }

            /* ─── Estilos sección Filosofía (Misión · Visión · Valores) ─── */
            .filosofia-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 24px;
                margin-bottom: 24px;
            }
            /* Bloque Misión — claro, sobre tarjeta */
            .fil-mv {
                position: relative;
                background: #fff;
                border: 1px solid var(--line);
                padding: 46px 48px;
                overflow: hidden;
                transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
            }
            .fil-mv:hover {
                border-color: var(--jnp-blue);
                box-shadow: 0 24px 54px rgba(13, 18, 36, 0.1);
                transform: translateY(-4px);
            }
            /* Acento angular azul superior derecho — preservado del lenguaje JNP */
            .fil-mv::after {
                content: "";
                position: absolute;
                top: 0;
                right: 0;
                width: 92px;
                height: 92px;
                background: var(--jnp-blue);
                clip-path: polygon(40px 0, 100% 0, 100% 60px);
                opacity: 0.94;
                transition: opacity 0.3s;
            }
            .fil-mv:hover::after {
                opacity: 0.78;
            }
            /* Variante Visión — azul de marca */
            .fil-mv.is-vision {
                background: var(--jnp-blue);
                border-color: var(--jnp-blue);
            }
            .fil-mv.is-vision::after {
                background: rgba(255, 255, 255, 0.1);
            }
            .fil-mv.is-vision::before {
                content: "";
                position: absolute;
                bottom: -40px;
                left: -40px;
                width: 140px;
                height: 140px;
                background: rgba(255, 255, 255, 0.05);
                transform: rotate(45deg);
            }
            .fil-mv-id {
                font-family: "JetBrains Mono", monospace;
                font-size: 10px;
                font-weight: 600;
                letter-spacing: 0.18em;
                text-transform: uppercase;
                color: var(--jnp-blue);
                margin-bottom: 18px;
                display: flex;
                align-items: center;
                gap: 10px;
                position: relative;
                z-index: 2;
            }
            .fil-mv-id::before {
                content: "";
                width: 5px;
                height: 5px;
                background: var(--jnp-blue);
                flex-shrink: 0;
            }
            .fil-mv.is-vision .fil-mv-id {
                color: rgba(255, 255, 255, 0.85);
            }
            .fil-mv.is-vision .fil-mv-id::before {
                background: #fff;
            }
            .fil-mv h3 {
                font-family: "Archivo", sans-serif;
                font-size: clamp(1.6rem, 2.4vw, 2rem);
                font-weight: 800;
                color: var(--ink);
                line-height: 1.08;
                letter-spacing: -0.028em;
                margin-bottom: 18px;
                position: relative;
                z-index: 2;
            }
            .fil-mv.is-vision h3 {
                color: #fff;
            }
            .fil-mv p {
                font-family: "Inter", sans-serif;
                font-size: 15px;
                color: var(--muted);
                line-height: 1.78;
                font-weight: 400;
                position: relative;
                z-index: 2;
            }
            .fil-mv.is-vision p {
                color: rgba(255, 255, 255, 0.82);
            }

            /* Valores */
            .fil-values-head {
                display: flex;
                align-items: center;
                gap: 14px;
                font-family: "JetBrains Mono", monospace;
                font-size: 11px;
                font-weight: 600;
                letter-spacing: 0.18em;
                text-transform: uppercase;
                color: var(--jnp-blue);
                margin-bottom: 28px;
            }
            .fil-values-head::before {
                content: "[ 03·C ]";
                font-family: "JetBrains Mono", monospace;
                font-weight: 600;
                font-size: 11px;
                letter-spacing: 0.06em;
            }
            .fil-values-head::after {
                content: "";
                flex: 1;
                height: 1px;
                background: var(--line);
            }
            .fil-values {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 1px;
                background: var(--line);
                border: 1px solid var(--line);
            }
            .fil-value {
                background: #fff;
                padding: 32px 30px 34px;
                position: relative;
                transition: background 0.3s ease;
            }
            .fil-value:hover {
                background: var(--bg-soft);
            }
            .fil-value-num {
                font-family: "JetBrains Mono", monospace;
                font-size: 10px;
                font-weight: 600;
                letter-spacing: 0.18em;
                color: var(--jnp-blue);
                margin-bottom: 16px;
                display: flex;
                align-items: center;
                gap: 8px;
                text-transform: uppercase;
            }
            .fil-value-num::before {
                content: "";
                width: 5px;
                height: 5px;
                background: var(--jnp-blue);
                flex-shrink: 0;
            }
            .fil-value h4 {
                font-family: "Archivo", sans-serif;
                font-size: 1.15rem;
                font-weight: 800;
                color: var(--ink);
                line-height: 1.12;
                letter-spacing: -0.022em;
                margin-bottom: 12px;
            }
            .fil-value p {
                font-family: "Inter", sans-serif;
                font-size: 13.5px;
                color: var(--muted);
                line-height: 1.72;
                font-weight: 400;
            }

            @media (max-width: 900px) {
                .filosofia-grid {
                    grid-template-columns: 1fr;
                    gap: 20px;
                }
                .fil-mv {
                    padding: 34px 28px;
                }
                .fil-values {
                    grid-template-columns: 1fr;
                }
                .fil-values-head::before {
                    content: "[ 03·C ]";
                }
            }