        /* Modernized Design based on Tailwind React Component */
        body.premium-subpage {
            background-color: #050c12;
            color: #ffffff;
        }
        .ct-main { position: relative; z-index: 10; font-family: 'Inter', sans-serif; -webkit-font-smoothing: antialiased; }
        .text-cyan-400 { color: #22d3ee; }
        .text-cyan-500 { color: #06b6d4; }
        .bg-cyan-500-10 { background-color: rgba(6, 182, 212, 0.1); }
        .text-slate-400 { color: #94a3b8; }
        .uppercase { text-transform: uppercase; }
        
        /* HERO SECTION */
        .ct-hero-bg-blur {
            position: absolute; top: 0; left: 50%; transform: translateX(-50%);
            width: 100%; height: 500px;
            background-color: rgba(6, 182, 212, 0.1);
            filter: blur(120px); border-radius: 9999px; opacity: 0.5; pointer-events: none;
        }
        .ct-hero {
            position: relative; padding-top: 10rem; padding-bottom: 6rem; overflow: hidden; text-align: center;
        }
        .ct-hero-content {
            max-width: 56rem; margin: 0 auto; padding: 0 1.5rem; position: relative; z-index: 10;
        }
        .ct-hero h1 {
            font-size: clamp(2.2rem, 8vw, 6rem); font-weight: 800; letter-spacing: -0.05em; line-height: 0.9; margin-bottom: 2rem; text-transform: uppercase;
        }
        .ct-hero-gradient-text {
            background: linear-gradient(to right, #22d3ee, #3b82f6); -webkit-background-clip: text; background-clip: text; color: transparent;
        }
        .ct-hero-subtitle {
            font-size: clamp(1.25rem, 2.5vw, 1.5rem); color: #22d3ee; font-weight: 600; margin-bottom: 2rem; line-height: 1.25; max-width: 42rem; margin-inline: auto;
        }
        .ct-hero-grid {
            display: grid; grid-template-columns: 1fr; gap: 3rem; color: #94a3b8; line-height: 1.625; text-align: justify;
        }
        @media (min-width: 768px) { .ct-hero-grid { grid-template-columns: 1fr 1fr; } }
        
        .scroll-indicator {
            margin-top: 4rem; display: flex; flex-direction: column; align-items: center; gap: 1rem;
        }
        .scroll-indicator span {
            font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.3em; font-weight: 700; color: #ffffff;
        }
        .scroll-indicator i {
            color: #22d3ee; animation: arrow-flow 1.5s infinite; font-size: 1.8rem; text-shadow: 0 0 15px rgba(6, 182, 212, 0.8);
        }
        @keyframes arrow-flow {
            0% { opacity: 0; transform: translateY(-10px); }
            50% { opacity: 1; transform: translateY(0px); }
            100% { opacity: 0; transform: translateY(10px); }
        }
        
        .section-padding { padding-top: 8rem; padding-bottom: 8rem; }
        .container-px { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
        .bg-slate-900-50 {
            background-color: rgba(15, 23, 42, 0.5);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        /* VALORES */
        .values-header { text-align: center; margin-bottom: 5rem; }
        .values-header h2 {
            font-size: clamp(1.8rem, 5vw, 3rem); font-weight: 700; letter-spacing: -0.025em; margin-bottom: 1.5rem; text-transform: uppercase;
        }
        .values-header p {
            color: #94a3b8; font-size: 1.25rem; max-width: 48rem; margin: 0 auto 1.5rem; line-height: 1.6; text-align: justify;
        }
        .values-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
        @media (min-width: 768px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
        
        .value-card {
            padding: 2.5rem; border-radius: 1.5rem; 
            background: linear-gradient(180deg, rgba(20, 26, 33, 0.8) 0%, rgba(13, 19, 25, 0.6) 100%);
            backdrop-filter: blur(25px);
            border: 1px solid rgba(0, 150, 255, 1);
            box-shadow: 0 0 45px rgba(0, 150, 255, 0.45), inset 0 0 20px rgba(0, 150, 255, 0.2);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .value-card:hover {
            transform: translateY(-8px);
        }
        .value-icon-wrapper {
            width: 4rem; height: 4rem; border-radius: 1rem; 
            display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
            margin-bottom: 2rem; transition: all 0.4s ease;
            background-color: rgba(0, 150, 255, 0.15);
            box-shadow: 0 0 25px rgba(0, 150, 255, 0.5), inset 0 0 10px rgba(0, 150, 255, 0.2);
            color: #ffffff;
            text-shadow: 0 0 12px rgba(0, 150, 255, 1), 0 0 25px rgba(0, 150, 255, 0.6);
            border: 1px solid rgba(0, 150, 255, 0.6);
        }
        .value-card:hover .value-icon-wrapper { 
            transform: scale(1.1); 
        }
        .value-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; }
        .value-card p { color: #94a3b8; line-height: 1.625; font-size: 1rem; text-align: justify; }

        /* PROCESS */
        .process-title h2 { font-size: clamp(2rem, 6vw, 3.75rem); font-weight: 800; letter-spacing: -0.05em; text-transform: uppercase; }
        .process-steps { display: flex; flex-direction: column; gap: 6rem; }
        .step-row { display: flex; flex-direction: column; gap: 3rem; align-items: center; }
        @media (min-width: 768px) { .step-row { flex-direction: row; gap: 6rem; } .step-row.reverse { flex-direction: row-reverse; } }
        .step-img-col, .step-txt-col { width: 100%; }
        @media (min-width: 768px) { .step-img-col, .step-txt-col { width: 50%; } }
        .step-img-wrapper { 
            position: relative; aspect-ratio: 4/3; border-radius: 2rem; overflow: hidden; 
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .step-glow {
            position: absolute; top: -1rem; right: -1rem; bottom: -1rem; left: -1rem;
            background-color: rgba(6, 182, 212, 0.1); filter: blur(24px); border-radius: 2rem; opacity: 0; transition: opacity 0.7s ease; z-index: -1;
        }
        .step-img-col:hover .step-glow { opacity: 1; }
        .step-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease, filter 0.7s ease; }
        .step-img-col:hover .step-img { transform: scale(1.1); }
        .step-overlay { position: absolute; inset: 0; background: transparent; }
        .step-number-bg { position: absolute; bottom: 2rem; left: 2rem; font-size: 6rem; font-weight: 900; color: rgba(255, 255, 255, 0.1); line-height: 1; user-select: none; }
        .step-icon { width: 2.5rem; height: 2.5rem; border-radius: 0.75rem; background-color: rgba(6, 182, 212, 0.1); border: 1px solid rgba(6, 182, 212, 0.2); display: flex; align-items: center; justify-content: center; color: #22d3ee; }
        .step-txt-col h3 { font-size: clamp(1.5rem, 4vw, 2.25rem); font-weight: 700; margin-bottom: 1.5rem; line-height: 1.25; }
        .step-txt-col p { color: #94a3b8; font-size: 1.125rem; line-height: 1.625; margin-bottom: 1rem; text-align: justify; }

        /* RESULTADOS */
        .results-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; max-width: 56rem; margin: 0 auto; }
        @media (min-width: 640px) { .results-grid { grid-template-columns: repeat(2, 1fr); } }
        .result-card { 
            display: flex; align-items: center; gap: 1rem; padding: 1.5rem; border-radius: 1rem; 
            background: linear-gradient(180deg, rgba(20, 26, 33, 0.8) 0%, rgba(13, 19, 25, 0.6) 100%);
            backdrop-filter: blur(25px);
            border: 1px solid rgba(0, 150, 255, 1);
            box-shadow: 0 0 45px rgba(0, 150, 255, 0.45), inset 0 0 20px rgba(0, 150, 255, 0.2);
            transition: all 0.4s ease;
        }
        .result-card:hover {
            transform: translateY(-5px);
        }
        .result-card i { 
            font-size: 1.25rem; 
            color: #ffffff;
            text-shadow: 0 0 12px rgba(0, 150, 255, 1), 0 0 25px rgba(0, 150, 255, 0.6);
        }
        .result-card span { font-weight: 600; font-size: 1rem; margin-left: 0.5rem;}

        /* CTA */
        .cta-section { position: relative; padding-top: 6rem; padding-bottom: 10rem; overflow: hidden; }
        .cta-bg { position: absolute; inset: 0; }
        .cta-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.2; }
        .cta-gradient { position: absolute; inset: 0; background: linear-gradient(to bottom, #020617, rgba(2, 6, 23, 0.8), #020617); }
        .cta-content { position: relative; z-index: 10; max-width: 56rem; margin: 0 auto; text-align: center; padding: 0 1.5rem; }
        .cta-content h2 { font-size: clamp(2rem, 6vw, 3.75rem); font-weight: 800; text-transform: uppercase; letter-spacing: -0.05em; margin-bottom: 2rem; }
        .cta-content p { font-size: 1.25rem; color: #94a3b8; margin-bottom: 3rem; line-height: 1.625; text-align: justify; }

        /* Brillo Inferior */
        .ct-bottom-glow {
            position: fixed;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            height: 1px;
            background: linear-gradient(to right, transparent, rgba(6, 182, 212, 0.5), transparent);
            box-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
            z-index: 50;
        }

        /* TIPOGRAFÍA AUMENTADA SÓLO PARA MONITORES GRANDES (>1400px) */
        @media (min-width: 1400px) {
            .ct-hero-grid { line-height: 1.7; font-size: 1.125rem; }
            .values-header p { font-size: 1.35rem; line-height: 1.65; }
            .value-card h3 { font-size: 1.4rem; }
            .value-card p { line-height: 1.7; font-size: 1.1rem; }
            .step-txt-col h3 { font-size: clamp(1.75rem, 4vw, 2.5rem); line-height: 1.35; }
            .step-txt-col p { font-size: 1.25rem; line-height: 1.7; }
            .result-card span { font-size: 1.15rem; }
            .cta-content p { font-size: 1.4rem; line-height: 1.7; }
        }

        /* =======================================================
           RESPONSIVE — como-trabajamos.html
           ======================================================= */

        /* ---------- MÓVIL (< 768px) ---------- */
        @media (max-width: 767px) {
            .ct-hero {
                padding-top: 7rem;
                padding-bottom: 3rem;
            }

            .ct-hero h1 {
                font-size: clamp(2rem, 10vw, 3rem);
                line-height: 1;
                margin-bottom: 1.25rem;
            }

            .ct-hero-subtitle {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }

            .ct-hero-content {
                padding: 0 1rem;
            }

            .ct-hero-grid {
                grid-template-columns: 1fr !important;
                gap: 1.5rem;
                text-align: left;
            }

            .section-padding {
                padding-top: 4rem;
                padding-bottom: 4rem;
            }

            .container-px {
                padding: 0 1rem;
            }

            /* Valores */
            .values-header h2 {
                font-size: clamp(1.5rem, 6vw, 2rem);
            }

            .values-header p {
                font-size: 1rem;
            }

            .values-grid {
                grid-template-columns: 1fr !important;
                gap: 1.25rem;
            }

            .value-card {
                padding: 1.75rem 1.5rem;
            }

            /* Proceso — pasos verticales */
            .process-steps {
                gap: 3.5rem;
            }

            .step-row {
                flex-direction: column !important;
                gap: 1.5rem !important;
            }

            .step-row.reverse {
                flex-direction: column !important;
            }

            .step-img-col,
            .step-txt-col {
                width: 100% !important;
            }

            .step-txt-col h3 {
                font-size: 1.4rem;
            }

            .step-txt-col p {
                font-size: 1rem;
            }

            .step-number-bg {
                font-size: 4rem;
                bottom: 1rem;
                left: 1rem;
            }

            /* Resultados */
            .results-grid {
                grid-template-columns: 1fr !important;
                gap: 0.75rem;
            }

            .result-card {
                padding: 1.25rem;
            }

            /* CTA */
            .cta-content h2 {
                font-size: clamp(1.75rem, 7vw, 2.5rem);
            }

            .cta-content p {
                font-size: 1rem;
            }

            /* Scroll indicator */
            .scroll-indicator {
                margin-top: 2.5rem;
            }
        }

        /* ---------- TABLET (768px – 1023px) ---------- */
        @media (min-width: 768px) and (max-width: 1023px) {
            .ct-hero {
                padding-top: 8rem;
                padding-bottom: 4rem;
            }

            .ct-hero h1 {
                font-size: clamp(2.5rem, 6vw, 4rem);
            }

            .ct-hero-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }

            /* Valores — 2 columnas en tablet */
            .values-grid {
                grid-template-columns: repeat(3, 1fr) !important;
                gap: 1.5rem;
            }

            /* Proceso */
            .step-row {
                flex-direction: row;
                gap: 3rem;
            }

            .step-row.reverse {
                flex-direction: row-reverse;
            }

            .step-img-col,
            .step-txt-col {
                width: 50%;
            }

            /* Resultados — 2 columnas */
            .results-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* ---------- PORTÁTIL (1024px – 1439px) ---------- */
        @media (min-width: 1024px) and (max-width: 1439px) {
            .ct-hero {
                padding-top: 9rem;
                padding-bottom: 5rem;
            }

            .values-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.75rem;
            }

            .results-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .step-txt-col h3 {
                font-size: clamp(1.5rem, 3vw, 2rem);
            }
        }

