       <style>
            /* ===================================================
           Company Page – Premium Redesign (.cp- namespace)
        =================================================== */

            /* --- 0. Page Tabs --- */
            html {
                scroll-behavior: smooth;
                scroll-padding-top: 140px;
            }
            .cp-page-tabs {
                background: #ffffff;
                border-bottom: 1px solid #e0e0e0;
                position: sticky;
                top: 80px;
                z-index: 100;
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
            }
            .cp-tabs-list {
                display: flex;
                list-style: none;
                margin: 0;
                padding: 0;
                justify-content: center;
                overflow-x: auto;
            }
            .cp-tabs-list li {
                flex-shrink: 0;
            }
            .cp-tabs-list a {
                display: block;
                padding: 18px 30px;
                font-size: 16px;
                font-weight: 700;
                color: #666;
                text-decoration: none;
                position: relative;
                transition: 0.3s;
            }
            .cp-tabs-list a:hover {
                color: #01419a;
            }
            .cp-tabs-list a::after {
                content: "";
                position: absolute;
                bottom: 0;
                left: 50%;
                transform: translateX(-50%);
                width: 0;
                height: 3px;
                background: #01419a;
                transition: 0.3s;
            }
            .cp-tabs-list a:hover::after {
                width: 100%;
            }
            @media (max-width: 768px) {
                .cp-tabs-list {
                    justify-content: flex-start;
                }
                .cp-tabs-list a {
                    padding: 15px 20px;
                    font-size: 15px;
                }
            }

            /* --- 1. Cinematic Hero --- */
            .cp-hero {
                position: relative;
                height: 520px;
                display: flex;
                align-items: center;
                justify-content: center;
                text-align: center;
                color: #fff;
                overflow: hidden;
                background: #0a0e24;
            }
            .cp-hero::before {
                content: "";
                position: absolute;
                inset: 0;
                background: url("../images/hero-commercial-space.webp") no-repeat center center;
                background-size: cover;
                opacity: 0.35;
                filter: blur(2px);
            }
            .cp-hero::after {
                content: "";
                position: absolute;
                inset: 0;
                background: linear-gradient(180deg, rgba(10, 14, 36, 0.5) 0%, rgba(10, 14, 36, 0.95) 100%);
            }
            .cp-hero-inner {
                position: relative;
                z-index: 3;
                padding: 0 24px;
            }
            .cp-hero-label {
                display: inline-block;
                font-size: 13px;
                font-weight: 700;
                letter-spacing: 4px;
                text-transform: uppercase;
                color: rgba(255, 255, 255, 0.7);
                border: 1px solid rgba(255, 255, 255, 0.2);
                padding: 8px 24px;
                border-radius: 30px;
                margin-bottom: 28px;
                margin-top:80px;
            }
            .cp-hero h1 {
                font-size: 48px;
                font-weight: 700;
                line-height: 1.4;
                margin-bottom: 20px;
            }
            .cp-hero-desc {
                font-size: 19px;
                color: rgba(255, 255, 255, 0.75);
                max-width: 580px;
                margin: 0 auto 40px;
                line-height: 1.7;
            }
            .cp-scroll-icon {
                display: inline-flex;
                flex-direction: column;
                align-items: center;
                gap: 6px;
                color: rgba(255, 255, 255, 0.45);
                font-size: 12px;
                letter-spacing: 2px;
                animation: cp-bounce 2s infinite;
            }
            .cp-scroll-icon i {
                font-size: 22px;
            }
            @keyframes cp-bounce {
                0%,
                100% {
                    transform: translateY(0);
                }
                50% {
                    transform: translateY(8px);
                }
            }
            @media (max-width: 768px) {
                .cp-hero {
                    height: 380px;
                }
                .cp-hero-label {
                    margin-bottom: 18px;
                    font-size: 10px;
                    letter-spacing: 1px;
                }
                .cp-hero {
                    height: 420px;
                }
                .cp-hero h1 {
                    font-size: 32px;
                }
                .cp-hero-desc {
                    font-size: 15px;
                }
            }

            /* --- 2. Stats Counter --- */
            .cp-stats {
                background: #0a0e24;
                padding: 60px 0;
                border-top: 1px solid rgba(255, 255, 255, 0.06);
            }
            .cp-stats-grid {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 30px;
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 24px;
            }
            .cp-stat-item {
                text-align: center;
                padding: 30px 10px;
                border-radius: 16px;
                background: rgba(255, 255, 255, 0.04);
                border: 1px solid rgba(255, 255, 255, 0.06);
                transition: 0.3s;
            }
            .cp-stat-item:hover {
                background: rgba(255, 255, 255, 0.08);
                transform: translateY(-5px);
            }
            .cp-stat-num {
                font-size: 48px;
                font-weight: 800;
                color: #fff;
                line-height: 1;
                margin-bottom: 5px;
            }
            .cp-stat-num span {
                background: linear-gradient(135deg, #4a9fff, #00d2ff);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
            }
            .cp-stat-unit {
                font-size: 18px;
                color: rgba(255, 255, 255, 0.5);
                font-weight: 600;
            }
            .cp-stat-label {
                font-size: 15px;
                color: rgba(255, 255, 255, 0.45);
                margin-top: 10px;
            }
            @media (max-width: 1024px) {
                .cp-stats-grid {
                    grid-template-columns: repeat(2, 1fr);
                    gap: 20px;
                }
            }
            @media (max-width: 480px) {
                .cp-stats-grid {
                    grid-template-columns: repeat(2, 1fr);
                    gap: 12px;
                }
                .cp-stat-num {
                    font-size: 36px;
                }
                .cp-stat-item {
                    padding: 20px 8px;
                }
            }

            /* --- Shared Section Styles --- */
            .cp-section {
                padding: 120px 0;
            }
            .cp-container {
                max-width: 1400px;
                margin: 0 auto;
                padding: 0 24px;
            }
            .cp-sec-header {
                text-align: center;
                margin-bottom: 60px;
            }
            .cp-sec-tag {
                display: inline-block;
                font-size: 16px;
                font-weight: 700;
                letter-spacing: 2px;
                text-transform: uppercase;
                color: #01419a;
                margin-bottom: 15px;
            }
            .cp-sec-title {
                font-size: 48px;
                font-weight: 800;
                color: #111;
                margin-bottom: 16px;
                line-height: 1.2;
            }
            .cp-sec-desc {
                font-size: 18px;
                color: #555;
                max-width: 650px;
                margin: 0 auto;
                line-height: 1.7;
            }
            @media (max-width: 1024px) {
                .cp-section {
                    padding: 80px 0;
                }
            }
            @media (max-width: 768px) {
                .cp-section {
                    padding: 60px 0;
                }
                .cp-sec-header {
                    margin-bottom: 40px;
                }
                .cp-sec-title {
                    font-size: 28px;
                }
                .cp-sec-desc {
                    font-size: 16px;
                }
            }

            /* --- 3. CEO Message --- */
            .cp-ceo {
                background: #fff;
            }
            .cp-ceo-grid {
                display: grid;
                grid-template-columns: 1fr 1.2fr;
                gap: 70px;
                align-items: center;
            }
            .cp-ceo-photo {
                position: relative;
                border-radius: 20px;
                overflow: hidden;
            }
            .cp-ceo-photo img {
                width: 100%;
                height: 520px;
                object-fit: cover;
                display: block;
            }
            .cp-ceo-photo::after {
                content: "";
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 40%;
                background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
            }
            .cp-ceo-body {
                position: relative;
            }
            .cp-ceo-quote {
                font-size: 60px;
                font-family: Georgia, serif;
                color: #01419a;
                opacity: 0.15;
                line-height: 1;
                margin-bottom: -10px;
            }
            .cp-ceo-body p {
                font-size: 17px;
                line-height: 1.9;
                color: #444;
                margin-bottom: 18px;
                word-break: keep-all;
            }
            .cp-ceo-body p:first-of-type {
                font-size: 20px;
                font-weight: 600;
                color: #111;
            }
            .cp-ceo-sig {
                margin-top: 36px;
                padding-top: 28px;
                border-top: 2px solid #eee;
                text-align: left;
            }
            .cp-ceo-sig strong {
                font-size: 22px;
                color: #111;
            }
            .cp-ceo-sig span {
                display: block;
                font-size: 14px;
                color: #888;
                margin-top: 4px;
            }
            @media (max-width: 1024px) {
                .cp-ceo-grid {
                    grid-template-columns: 1fr;
                    gap: 40px;
                }
                .cp-ceo-photo img {
                    height: 380px;
                }
            }
            @media (max-width: 768px) {
                .cp-ceo-body p {
                    font-size: 15px;
                }
                .cp-ceo-body p:first-of-type {
                    font-size: 17px;
                }
            }

            /* --- 4. Core Values --- */
            .cp-values {
                background: #f8f9fa;
            }
            .cp-values-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
            }
            .cp-vcard {
                background: #fff;
                padding: 40px 28px;
                border-radius: 12px;
                text-align: center;
                position: relative;
                overflow: hidden;
                border: 1px solid #f0f0f0;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
                transition: all 0.3s ease;
            }
            .cp-vcard::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 3px;
                background: #01419a;
                transform: scaleX(0);
                transform-origin: left;
                transition: transform 0.3s ease;
            }
            .cp-vcard:hover {
                transform: translateY(-6px);
                box-shadow: 0 15px 40px rgba(1, 65, 154, 0.1);
                border-color: #01419a;
            }
            .cp-vcard:hover::before {
                transform: scaleX(1);
            }
            .cp-vcard-icon {
                width: 68px;
                height: 68px;
                border-radius: 50%;
                background: #01419a;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto 20px;
                font-size: 30px;
                color: #fff;
                transition: 0.3s;
            }
            .cp-vcard:hover .cp-vcard-icon {
                background: #002d6b;
                transform: scale(1.05);
            }
            .cp-vcard h3 {
                font-size: 20px;
                font-weight: 700;
                color: #111;
                margin-bottom: 10px;
            }
            .cp-vcard p {
                font-size: 16px;
                color: #666;
                line-height: 1.6;
                word-break: keep-all;
            }
            @media (max-width: 1024px) {
                .cp-values-grid {
                    grid-template-columns: repeat(2, 1fr);
                }
            }
            @media (max-width: 600px) {
                .cp-values-grid {
                    grid-template-columns: 1fr;
                }
            }

            /* --- 5. Organization (Master Group Cards) --- */
            .cp-org-master {
                background: #ffffff;
            }
            .cp-org-master-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
            }
            .cp-master-card {
                background: #f8fcfe;
                border-radius: 12px;
                padding: 40px 32px;
                text-align: left;
                position: relative;
                overflow: hidden;
                border: 1px solid #f0f0f0;
            }
            .cp-master-icon {
                position: absolute;
                top: 32px;
                right: 32px;
                font-size: 68px;
                color: #a6e4ff;
                opacity: 0.8;
            }
            .cp-master-title {
                font-size: 22px;
                font-weight: 800;
                color: #111;
                margin-bottom: 20px;
                padding-right: 50px;
            }
            .cp-master-tags {
                display: flex;
                flex-direction: column;
                gap: 12px;
            }
            .cp-master-tags span {
                display: flex;
                align-items: center;
                font-size: 15px;
                font-weight: 500;
                color: #333;
                background: transparent;
                padding: 0;
                border: none;
                border-radius: 0;
            }
            .cp-master-tags span i {
                color: #0ab0f5;
                font-size: 18px;
                margin-right: 8px;
            }
            @media (max-width: 1024px) {
                .cp-org-master-grid {
                    grid-template-columns: repeat(2, 1fr);
                }
            }
            @media (max-width: 600px) {
                .cp-org-master-grid {
                    grid-template-columns: 1fr;
                }
                .cp-master-card {
                    padding: 30px 20px;
                }
            }

            /* --- 6. Certifications --- */
            .cp-cert {
                background: #f7f8fc;
            }
            .cp-cert-grid {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 24px;
            }
            .cp-cert-card {
                background: #fff;
                border-radius: 14px;
                overflow: hidden;
                border: 1px solid #eee;
                transition: all 0.3s;
            }

            .cp-cert-img {
                width: 100%;
                height: 440px;
                overflow: hidden;
                position: relative;
                background: #f8f9fa;
                padding: 20px;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            .cp-cert-img img {
                width: 100%;
                height: 100%;
                object-fit: contain;
                transition: transform 0.5s;
                filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.06));
            }

            .cp-cert-info {
                padding: 20px 22px;
                border-top: 1px solid #f0f0f0;
            }
            .cp-cert-name {
                font-size: 17px;
                font-weight: 700;
                color: #111;
                margin-bottom: 4px;
                text-align: center;
            }
            .cp-cert-year {
                font-size: 13px;
                color: #999;
            }
            @media (max-width: 1024px) {
                .cp-cert-grid {
                    grid-template-columns: repeat(2, 1fr);
                }
            }
            @media (max-width: 480px) {
                .cp-cert-grid {
                    grid-template-columns: 1fr;
                }
            }

            /* --- 7. Contact + CTA --- */
            .cp-contact {
                background: #ffffff;
                border-top: 1px solid #eee;
            }
            .cp-contact-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 50px;
            }
            .cp-info-cards {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }
            .cp-info-cards--spaced {
                margin-top: 36px;
            }
            .cp-info-card {
                background: #f8f9fa;
                border-radius: 12px;
                padding: 24px 28px;
                text-align: left;
                text-decoration: none;
                border: 1px solid #e8e8e8;
                box-shadow: 0 3px 12px rgba(0, 0, 0, 0.03);
                transition: 0.3s;
                display: flex;
                align-items: center;
                gap: 18px;
            }
            .cp-info-card:hover {
                border-color: #01419a;
                transform: translateY(-4px);
                box-shadow: 0 10px 30px rgba(1, 65, 154, 0.08);
            }
            .cp-info-icon {
                width: 50px;
                height: 50px;
                min-width: 50px;
                background: #01419a;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0;
                font-size: 20px;
                color: #fff;
            }
            .cp-info-text h4 {
                font-size: 14px;
                font-weight: 600;
                color: #888;
                letter-spacing: 0.5px;
                margin-bottom: 6px;
            }
            .cp-info-text p,
            .cp-info-card p {
                font-size: 18px;
                font-weight: 700;
                color: #222;
                line-height: 1.4;
                word-break: keep-all;
                margin: 0;
            }
            .cp-info-card h4 {
                font-size: 14px;
                font-weight: 600;
                color: #888;
                letter-spacing: 0.5px;
                margin-bottom: 6px;
            }
            .cp-map-area {
                border-radius: 12px;
                overflow: hidden;
                background: #e9ecef;
                min-height: 380px;
                display: flex;
                align-items: center;
                justify-content: center;
                position: relative;
                border: 1px solid #e0e0e0;
            }
            .cp-map-area--large {
                min-height: 450px;
            }
            .cp-map-frame {
                border: 0;
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
            }
            .cp-map-area .material-icons {
                font-size: 72px;
                color: rgba(0, 0, 0, 0.06);
            }
            @media (max-width: 1024px) {
                .cp-contact-grid {
                    grid-template-columns: 1fr;
                }
            }
            @media (max-width: 768px) {
                .cp-info-cards {
                    grid-template-columns: 1fr;
                }
            }

            /* --- Bottom CTA --- */
            .cp-cta {
                position: relative;
                padding: 100px 0;
                text-align: center;
                color: #fff;
                overflow: hidden;
            }
            .cp-cta::before {
                content: "";
                position: absolute;
                inset: 0;
                background: url("../images/hero-commercial-space.webp") center center;
                background-size: cover;
                z-index: 0;
            }
            .cp-cta::after {
                content: "";
                position: absolute;
                inset: 0;
                background: linear-gradient(135deg, rgba(0, 20, 80, 0.88) 0%, rgba(10, 14, 36, 0.92) 100%);
                z-index: 1;
            }
            .cp-cta-inner {
                position: relative;
                z-index: 2;
            }
            .cp-cta h2 {
                font-size: 40px;
                font-weight: 800;
                margin-bottom: 16px;
            }
            .cp-cta p {
                font-size: 18px;
                opacity: 0.8;
                margin-bottom: 40px;
            }
            .cp-cta-btns {
                display: flex;
                gap: 14px;
                justify-content: center;
                flex-wrap: wrap;
            }
            .cp-cta-btn {
                display: inline-flex;
                align-items: center;
                gap: 10px;
                height: 58px;
                padding: 0 36px;
                font-size: 17px;
                font-weight: 700;
                border-radius: 50px;
                transition: 0.3s;
                text-decoration: none;
            }
            .cp-cta-btn.primary {
                background: #fff;
                color: #01419a;
            }
            .cp-cta-btn.primary:hover {
                background: #01419a;
                color: #fff;
                transform: translateY(-3px);
            }
            .cp-cta-btn.outline {
                background: transparent;
                color: #fff;
                border: 2px solid rgba(255, 255, 255, 0.4);
            }
            .cp-cta-btn.outline:hover {
                border-color: #fff;
                background: rgba(255, 255, 255, 0.1);
                transform: translateY(-3px);
            }
            .cp-cta-btn.kakao {
                background: #fee500;
                color: #3c1e1e;
            }
            .cp-cta-btn.kakao:hover {
                transform: translateY(-3px);
                box-shadow: 0 8px 24px rgba(254, 229, 0, 0.3);
            }
            @media (max-width: 768px) {
                .cp-cta {
                    padding: 70px 0;
                }
                .cp-cta h2 {
                    font-size: 26px;
                }
                .cp-cta p {
                    font-size: 15px;
                }
                .cp-cta-btn {
                    height: 50px;
                    padding: 0 26px;
                    font-size: 15px;
                }
            }
        </style>
