/* =========================================================
   DMI Mobile CSS
   - Entire file scoped to mobile viewport
   - Safe even if loaded without link media attribute
========================================================= */

@media screen and (max-width: 768px) {
    /* =========================================================
       DMI Mobile CSS
       - Mobile complete styles
       - Load with: media="screen and (max-width: 768px)"
       - Contains base styles + mobile responsive overrides
    ========================================================= */

    :root {
        --dmi-blue: #0068ff;
        --dmi-blue-dark: #004bd1;
        --dmi-navy: #062b61;
        --dmi-dark: #071525;
        --dmi-text: #111827;
        --dmi-gray: #667085;
        --dmi-line: #e5eaf2;
        --dmi-bg: #f3f6fa;
    }

    * {
        box-sizing: border-box;
    }

    body {
        margin: 0;
        font-family: "Pretendard", "Noto Sans KR", sans-serif;
        color: var(--dmi-text);
        word-break: keep-all;
    }

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

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

    .inner {
        width: 100%;
        max-width: 1440px;
        margin: 0 auto;
        padding: 0 40px;
    }

    /* =========================
       DMI Header - Sub Default
       - 서브페이지 기본값: 흰색 헤더 / 항상 노출
       - 메인페이지는 main.css의 .main_h에서만 덮어씀
    ========================= */

    .dmi-header {
        display: block;
        position: fixed;
        left: 0;
        top: 0;
        z-index: 1000;
        width: 100%;
        height: 92px;
        color: #111827;
        background: #fff;
        border-bottom: 1px solid #e5e7eb;
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
        backdrop-filter: none;
        transform: translateY(0);
        opacity: 1;
        transition: 0.28s ease;
    }

    .dmi-header.is-scroll,
    .dmi-header.is-open {
        background: #fff;
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    }

    .dmi-header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 100%;
    }

    .dmi-logo {
        display: flex;
        align-items: center;
        width: 118px;
    }

    .dmi-logo img {
        width: 100%;
        height: auto;
    }

    /* 로고를 흰색/컬러 2개로 넣었을 때 기본값은 서브용 컬러 로고 */
    .dmi-header .logo-white {
        display: none;
    }

    .dmi-header .logo-color {
        display: block;
    }

    .dmi-gnb {
        height: 100%;
    }

    .dmi-gnb > ul {
        display: flex;
        align-items: center;
        height: 100%;
        gap: 52px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .dmi-gnb > ul > li {
        position: relative;
        display: flex;
        align-items: center;
        height: 100%;
    }

    .dmi-gnb > ul > li > a {
        position: relative;
        display: flex;
        align-items: center;
        height: 100%;
        font-size: 15px;
        font-weight: 650;
        letter-spacing: -0.04em;
        color: #111827;
    }

    .dmi-gnb > ul > li > a::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 21px;
        width: 0;
        height: 2px;
        background: var(--dmi-blue);
        transform: translateX(-50%);
        transition: 0.25s ease;
    }

    .dmi-gnb > ul > li:hover > a::after {
        width: 100%;
    }

    .dmi-gnb > ul > li > ul {
        position: absolute;
        left: 50%;
        top: 82px;
        min-width: 180px;
        margin: 0;
        padding: 14px 0;
        list-style: none;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.06);
        box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
        transform: translateX(-50%) translateY(12px);
        opacity: 0;
        visibility: hidden;
        transition: 0.22s ease;
    }

    .dmi-gnb > ul > li:hover > ul {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .dmi-gnb > ul > li > ul > li > a {
        display: block;
        padding: 11px 22px;
        font-size: 14px;
        font-weight: 500;
        letter-spacing: -0.04em;
        color: #1f2937;
        white-space: nowrap;
        transition: 0.2s ease;
    }

    .dmi-gnb > ul > li > ul > li > a:hover {
        color: var(--dmi-blue);
        background: #f2f7ff;
    }

    .dmi-header-right {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .dmi-lang {
        position: relative;
    }

    .dmi-lang-current {
        height: 42px;
        padding: 0 13px;
        border: 1px solid #d1d5db;
        border-radius: 999px;
        background: transparent;
        color: #111827;
        font-size: 12px;
        font-weight: 600;
        cursor: pointer;
    }

    .dmi-lang-current span {
        margin-left: 5px;
        font-size: 10px;
    }

    .dmi-lang ul {
        position: absolute;
        right: 0;
        top: 42px;
        min-width: 82px;
        margin: 0;
        padding: 8px 0;
        list-style: none;
        background: #fff;
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.15);
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: 0.2s ease;
    }

    .dmi-lang:hover ul {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dmi-lang ul a {
        display: block;
        padding: 8px 14px;
        font-size: 13px;
        font-weight: 600;
        color: #111827;
    }

    .dmi-header-contact {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 42px;
        padding: 0 17px;
        border-radius: 999px;
        background: #09213f;
        color: #fff;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: -0.04em;
        transition: 0.22s ease;
    }

    .dmi-header-contact i {
        margin-right: 7px;
        font-size: 16px;
        color: #fff;
    }

    .dmi-header-contact:hover {
        transform: translateY(-2px);
    }

    .dmi-mobile-btn {
        display: none;
        width: 42px;
        height: 42px;
        padding: 0;
        border: 0;
        background: transparent;
        cursor: pointer;
    }

    .dmi-mobile-btn span {
        display: block;
        width: 24px;
        height: 2px;
        margin: 6px auto;
        background: #111827;
    }

    @media (max-width: 1180px) {
        .dmi-gnb,
        .dmi-lang,
        .dmi-header-contact {
            display: none;
        }

        .dmi-mobile-btn {
            display: block;
        }
    }

    @media (max-width: 900px) {
        .dmi-header {
            height: 76px;
        }

        .dmi-logo {
            width: 108px;
        }
    }


    /* =========================
       DMI Mobile Menu
    ========================= */

    .dmi-mobile-menu {
        position: fixed;
        inset: 0;
        z-index: 1200;
        pointer-events: none;
    }

    .dmi-mobile-menu.is-active {
        pointer-events: auto;
    }

    .dmi-mobile-dim {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        opacity: 0;
        transition: 0.25s ease;
    }

    .dmi-mobile-menu.is-active .dmi-mobile-dim {
        opacity: 1;
    }

    .dmi-mobile-panel {
        position: absolute;
        right: 0;
        top: 0;
        width: min(420px, 86vw);
        height: 100%;
        background: #071525;
        color: #fff;
        transform: translateX(100%);
        transition: 0.28s ease;
    }

    .dmi-mobile-menu.is-active .dmi-mobile-panel {
        transform: translateX(0);
    }

    .dmi-mobile-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 82px;
        padding: 0 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .dmi-mobile-logo {
        width: 112px;
    }

    .dmi-mobile-close {
        position: relative;
        width: 42px;
        height: 42px;
        border: 0;
        background: transparent;
        cursor: pointer;
    }

    .dmi-mobile-close span {
        position: absolute;
        left: 9px;
        top: 20px;
        width: 24px;
        height: 2px;
        background: #fff;
    }

    .dmi-mobile-close span:first-child {
        transform: rotate(45deg);
    }

    .dmi-mobile-close span:last-child {
        transform: rotate(-45deg);
    }

    .dmi-mobile-nav > ul {
        margin: 0;
        padding: 12px 24px 40px;
        list-style: none;
    }

    .dmi-mobile-nav > ul > li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .dmi-mobile-nav button {
        position: relative;
        width: 100%;
        padding: 21px 0;
        border: 0;
        background: transparent;
        color: #fff;
        font-size: 20px;
        font-weight: 700;
        letter-spacing: -0.05em;
        text-align: left;
        cursor: pointer;
    }

    .dmi-mobile-nav button::after {
        content: "+";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 22px;
        font-weight: 300;
    }

    .dmi-mobile-nav li.is-open button::after {
        content: "−";
    }

    .dmi-mobile-nav ul ul {
        display: none;
        margin: 0;
        padding: 0 0 18px;
        list-style: none;
    }

    .dmi-mobile-nav li.is-open ul {
        display: block;
    }

    .dmi-mobile-nav ul ul a {
        display: block;
        padding: 9px 0;
        font-size: 15px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.7);
    }


    /* =========================
       DMI Footer
    ========================= */

    .dmi-footer {
        padding: 72px 0 42px;
        background: #062b61;
        color: #fff;
    }

    .dmi-footer-top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 50px;
    }

    .dmi-footer-logo {
        display: block;
        width: 128px;
    }

    .dmi-footer-logo img {
        width: 100%;
    }

    .dmi-footer-desc {
        margin: 22px 0 0;
        font-size: 15px;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.68);
    }

    .dmi-footer-menu {
        display: flex;
        gap: 28px;
        flex-wrap: wrap;
    }

    .dmi-footer-menu a {
        font-size: 14px;
        font-weight: 800;
        color: rgba(255, 255, 255, 0.86);
    }

    .dmi-footer-info {
        margin-top: 42px;
        padding-top: 34px;
        border-top: 1px solid rgba(255, 255, 255, 0.16);
    }

    .dmi-footer-info p {
        margin: 7px 0;
        font-size: 14px;
        line-height: 1.65;
        color: rgba(255, 255, 255, 0.72);
    }

    .dmi-footer-info strong {
        color: #fff;
        font-size: 16px;
    }

    .dmi-footer-bottom {
        margin-top: 32px;
    }

    .dmi-footer-bottom p {
        margin: 0;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.38);
    }


    /* ==============================
       COMMON SUB TOP
    ============================== */

    .inner {
        width: 100%;
        max-width: 1440px;
        margin: 0 auto;
        padding: 0 40px;
    }

    /* sub top */

    .sub-top {
        position: relative;
        height: 460px;
        overflow: hidden;
        background: #040f1e;
    }

    .sub-top__bg {
        position: absolute;
        inset: 0;
    }

    .sub-top__bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* 어둡게 덮는 부분 */
    .sub-top__overlay {
        position: absolute;
        inset: 0;
        background:
                linear-gradient(
                        90deg,
                        rgba(4, 15, 30, 0.84) 0%,
                        rgba(4, 15, 30, 0.68) 42%,
                        rgba(4, 15, 30, 0.32) 100%
                );
    }

    /* 원형 장식 */

    .sub-top__circle {
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
    }

    .sub-top__circle--lg {
        width: 540px;
        height: 540px;
        right: -150px;
        top: -70px;
        border: 72px solid rgba(255, 255, 255, 0.08);
    }

    .sub-top__circle--sm {
        width: 180px;
        height: 180px;
        right: 260px;
        bottom: 46px;
        border: 22px solid rgba(255, 255, 255, 0.08);
    }

    .sub-top .inner {
        position: relative;
        z-index: 2;
        height: 100%;
    }

    .sub-top__content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
        max-width: 760px;
        padding-top: 40px;
    }

    /* breadcrumb */

    .breadcrumb {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 28px;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.68);
    }

    .breadcrumb a {
        color: rgba(255, 255, 255, 0.68);
        text-decoration: none;
    }

    .breadcrumb a:hover {
        color: #fff;
    }

    .breadcrumb strong {
        color: #fff;
        font-weight: 500;
    }

    .breadcrumb span {
        width: 5px;
        height: 5px;
        border-top: 1px solid rgba(255, 255, 255, 0.55);
        border-right: 1px solid rgba(255, 255, 255, 0.55);
        transform: rotate(45deg);
    }

    /* title */

    .sub-top__eyebrow {
        display: none;
        margin: 0 0 10px;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.16em;
        color: rgba(255, 255, 255, 0.72);
    }

    .sub-top__title {
        margin: 0;
        font-size: 52px;
        line-height: 1.2;
        font-weight: 700;
        letter-spacing: -0.035em;
        color: #fff;
    }

    .sub-top__desc {
        max-width: 640px;
        margin: 18px 0 0;
        font-size: 17px;
        line-height: 1.8;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.78);
        word-break: keep-all;
    }

    /* sub nav */

    .sub-nav-wrap {
        position: relative;
        z-index: 5;
        margin-top: -34px;
        display: none;
    }

    .sub-nav {
        display: flex;
        flex-wrap: wrap;
        overflow: hidden;
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 14px;
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.07);
    }

    .sub-nav a {
        flex: 1 1 0;
        min-width: 160px;
        height: 68px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 22px;
        border-right: 1px solid #e5e7eb;
        background: #fff;
        color: #222;
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        transition: background 0.2s ease, color 0.2s ease;
    }

    .sub-nav a:last-child {
        border-right: 0;
    }

    .sub-nav a:hover {
        background: #f8fafc;
    }

    .sub-nav a.is-active {
        background: #040f1e;
        color: #fff;
        font-weight: 600;
    }

    /* responsive */

    @media (max-width: 900px) {
        .inner {
            padding: 0 24px;
        }

        .sub-top {
            height: 400px;
        }

        .sub-top__content {
            padding-top: 30px;
        }

        .sub-top__title {
            font-size: 40px;
        }

        .sub-top__desc {
            font-size: 16px;
        }

        .sub-top__circle--lg {
            width: 420px;
            height: 420px;
            right: -180px;
            top: -60px;
            border-width: 58px;
        }

        .sub-top__circle--sm {
            display: none;
        }

        .sub-nav a {
            flex: 1 1 50%;
            border-bottom: 1px solid #e5e7eb;
        }

        .sub-nav a:nth-child(2n) {
            border-right: 0;
        }
    }

    @media (max-width: 640px) {
        .sub-top {
            height: 360px;
        }

        .breadcrumb {
            margin-bottom: 22px;
            font-size: 12px;
        }

        .sub-top__title {
            font-size: 32px;
        }

        .sub-top__desc {
            font-size: 15px;
            line-height: 1.7;
        }

        .sub-nav {
            border-radius: 10px;
        }

        .sub-nav a {
            flex: 1 1 100%;
            height: 56px;
            min-width: 100%;
            border-right: 0;
        }

        .sub-nav a:last-child {
            border-bottom: 0;
        }
    }


    .about-page {
        --color-navy: #040f1e;
        --color-blue: #1f4fa3;
        --color-red: #d72f3a;
        --color-text: #222;
        --color-text2: #666;
        --color-line: #e5e7eb;
        --color-bg: #f7f8fa;
        --color-white: #fff;

        color: var(--color-text);
        font-family: "Pretendard", "Noto Sans KR", sans-serif;
    }

    .about-page * {
        box-sizing: border-box;
    }

    .about-page .inner {
        width: 100%;
        max-width: 1440px;
        margin: 0 auto;
        padding: 0 40px;
    }

    .about-page .section {
        padding: 110px 0;
    }

    .about-page .section-head {
        margin-bottom: 48px;
    }

    .about-page .section-label {
        margin: 0 0 14px;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.12em;
        color: var(--color-blue);
    }

    .about-page .section-head h2 {
        margin: 0;
        font-size: 42px;
        line-height: 1.3;
        font-weight: 700;
        color: var(--color-navy);
        letter-spacing: -0.03em;
    }


    /* intro */

    .about-intro {
        padding-top: 90px;
    }

    .about-intro__wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 56px;
        align-items: center;
    }

    .about-intro__image img {
        width: 100%;
        border-radius: 20px;
        display: block;
    }

    .about-intro__text p {
        margin: 0 0 18px;
        font-size: 17px;
        line-height: 1.9;
        color: var(--color-text2);
        word-break: keep-all;
    }

    .about-intro__info {
        margin-top: 34px;
        border-top: 1px solid var(--color-line);
    }

    .about-intro__info dl {
        display: grid;
        grid-template-columns: 140px 1fr;
        gap: 20px;
        margin: 0;
        padding: 18px 0;
        border-bottom: 1px solid var(--color-line);
    }

    .about-intro__info dt {
        font-size: 15px;
        font-weight: 600;
        color: var(--color-navy);
    }

    .about-intro__info dd {
        margin: 0;
        font-size: 15px;
        color: var(--color-text2);
    }

    /* core */

    .about-core {
        background: var(--color-bg);
    }

    .about-core__list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .core-card {
        padding: 38px 32px;
        background: #fff;
        border: 1px solid var(--color-line);
        border-radius: 18px;
    }

    .core-card__num {
        display: inline-block;
        margin-bottom: 18px;
        font-size: 14px;
        font-weight: 700;
        color: var(--color-red);
    }

    .core-card h3 {
        margin: 0 0 14px;
        font-size: 24px;
        font-weight: 700;
        color: var(--color-navy);
    }

    .core-card p {
        margin: 0;
        font-size: 16px;
        line-height: 1.8;
        color: var(--color-text2);
    }

    /* business */

    .about-business__grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .about-business__grid article {
        overflow: hidden;
        border-radius: 18px;
        background: #fff;
        border: 1px solid var(--color-line);
    }

    .about-business__grid img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        display: block;
    }

    .about-business__grid h3 {
        margin: 0;
        padding: 22px 20px;
        font-size: 18px;
        font-weight: 600;
        color: var(--color-navy);
    }

    /* responsive */

    @media (max-width: 1200px) {
        .about-business__grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .about-core__list {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 900px) {
        .about-page .inner {
            padding: 0 24px;
        }

        .sub-top {
            height: 400px;
        }

        .sub-top__title {
            font-size: 40px;
        }

        .about-page .section {
            padding: 80px 0;
        }

        .about-page .section-head h2 {
            font-size: 32px;
        }

        .about-intro__wrap {
            grid-template-columns: 1fr;
            gap: 32px;
        }

        .sub-nav a {
            flex: 1 1 50%;
        }
    }

    @media (max-width: 640px) {
        .sub-top {
            height: 360px;
        }

        .sub-top__title {
            font-size: 32px;
        }

        .sub-top__desc {
            font-size: 15px;
            line-height: 1.7;
        }

        .about-business__grid {
            grid-template-columns: 1fr;
        }

        .sub-nav a {
            flex: 1 1 100%;
            min-width: 100%;
            border-right: 0;
            border-bottom: 1px solid var(--color-line);
        }

        .sub-nav a:last-child {
            border-bottom: 0;
        }

        .about-intro__info dl {
            grid-template-columns: 1fr;
            gap: 8px;
        }
    }

    /* 기본값: 서브페이지 로고 */
    .dmi-logo {
        display: block;
    }

    .dmi-logo img {
        display: block;
        width: 100%;
        height: auto;
    }

    .dmi-logo .logo-main {
        display: none;
    }

    .dmi-logo .logo-sub {
        display: block;
    }

    /* 메인페이지 헤더일 때 */
    .dmi-header.main_h .dmi-logo .logo-sub {
        display: none;
    }

    .dmi-header.main_h .dmi-logo .logo-main {
        display: block;
        height: 55px;
        width: auto;
    }

    /* ==============================
        Core Technology Page
    ============================== */

    .core-tech-page {
        width: 100%;
        color: #111827;
        background: #fff;
    }

    .core-inner {
        width: 100%;
        max-width: 1440px;
        margin: 0 auto;
        padding: 0 40px;
    }

    .core-tech-page span {
        display: inline-block;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.14em;
        color: #0b4f9f;
    }

    .core-tech-page h2,
    .core-tech-page h3,
    .core-tech-page h4,
    .core-tech-page p {
        margin: 0;
    }


    /* Intro */

    .core-intro {
        padding: 120px 0 90px;
        background: #fff;
    }

    .core-title {
        max-width: 980px;
        margin-bottom: 56px;
    }

    .core-title h2 {
        margin-top: 20px;
        font-size: clamp(38px, 5vw, 68px);
        line-height: 1.18;
        font-weight: 700;
        letter-spacing: -0.055em;
        color: #07111f;
    }

    .core-title p {
        max-width: 760px;
        margin-top: 28px;
        font-size: 19px;
        line-height: 1.85;
        font-weight: 400;
        color: #4b5563;
    }




    /* Summary */

    .core-summary {
        padding: 110px 0;
        background: #f6f8fb;
    }

    .summary-head {
        max-width: 820px;
        margin-bottom: 54px;
    }

    .summary-head h3 {
        margin-top: 18px;
        font-size: clamp(32px, 4vw, 52px);
        line-height: 1.28;
        font-weight: 700;
        letter-spacing: -0.045em;
        color: #07111f;
    }

    .summary-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        border-top: 1px solid #dfe5ee;
        border-left: 1px solid #dfe5ee;
        background: #fff;
    }

    .summary-grid article {
        min-height: 300px;
        padding: 34px 30px;
        border-right: 1px solid #dfe5ee;
        border-bottom: 1px solid #dfe5ee;
        background: #fff;
    }

    .summary-grid article strong {
        display: block;
        margin-bottom: 72px;
        font-size: 14px;
        font-weight: 700;
        color: #0b4f9f;
    }

    .summary-grid article h4 {
        font-size: 25px;
        line-height: 1.35;
        font-weight: 700;
        letter-spacing: -0.04em;
        color: #07111f;
    }

    .summary-grid article p {
        margin-top: 18px;
        font-size: 16px;
        line-height: 1.75;
        color: #5b6678;
    }


    /* Detail */

    .core-detail {
        padding: 120px 0;
        background: #fff;
    }

    .detail-grid {
        display: grid;
        grid-template-columns: 1.05fr 0.95fr;
        gap: 80px;
        align-items: center;
    }

    .detail-img {
        height: 620px;
        border-radius: 26px;
        overflow: hidden;
        background: #e5e7eb;
    }

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

    .detail-text h3 {
        margin-top: 18px;
        font-size: clamp(32px, 4vw, 54px);
        line-height: 1.28;
        font-weight: 700;
        letter-spacing: -0.045em;
        color: #07111f;
    }

    .detail-text p {
        margin-top: 28px;
        font-size: 18px;
        line-height: 1.85;
        color: #4b5563;
    }

    .detail-text ul {
        margin: 34px 0 0;
        padding: 0;
        list-style: none;
        border-top: 1px solid #dfe5ee;
    }

    .detail-text li {
        position: relative;
        padding: 18px 0 18px 26px;
        border-bottom: 1px solid #dfe5ee;
        font-size: 17px;
        line-height: 1.6;
        color: #1f2937;
    }

    .detail-text li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 29px;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #0b4f9f;
    }


    /* Process */

    /* ==============================
        Core Process - Timeline Type
    ============================== */

    .core-process {
        position: relative;
        padding: 120px 0;
        background: #07111f;
        overflow: hidden;
    }

    .core-process::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
                radial-gradient(circle at 15% 20%, rgba(11, 79, 159, 0.28), transparent 34%),
                radial-gradient(circle at 85% 80%, rgba(125, 178, 255, 0.14), transparent 30%);
        pointer-events: none;
    }

    .core-process .core-inner {
        position: relative;
        z-index: 2;
    }

    .process-title {
        max-width: 760px;
        margin-bottom: 72px;
    }

    .process-title span {
        display: inline-block;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.14em;
        color: #7db2ff;
    }

    .process-title h3 {
        margin-top: 18px;
        font-size: clamp(32px, 4vw, 52px);
        line-height: 1.28;
        font-weight: 700;
        letter-spacing: -0.045em;
        color: #fff;
    }

    .process-title p {
        max-width: 720px;
        margin-top: 20px;
        font-size: 18px;
        line-height: 1.75;
        color: rgba(255, 255, 255, 0.68);
    }


    /* timeline */

    .process-timeline {
        position: relative;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 34px;
    }

    .process-timeline::before {
        content: "";
        position: absolute;
        left: 68px;
        right: 68px;
        top: 42px;
        height: 1px;
        background: rgba(255, 255, 255, 0.22);
    }

    .process-step {
        position: relative;
        z-index: 2;
    }

    .step-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 84px;
        height: 84px;
        margin-bottom: 28px;
        border-radius: 50%;
        background: #fff;
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
    }

    .step-icon i {
        font-size: 30px;
        color: #0b4f9f;
    }

    .step-content {
        min-height: 250px;
        padding: 30px 28px;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.055);
        backdrop-filter: blur(10px);
        box-sizing: border-box;
    }

    .step-content em {
        display: block;
        margin-bottom: 34px;
        font-style: normal;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.08em;
        color: #7db2ff;
    }

    .step-content h4 {
        margin: 0;
        font-size: 24px;
        line-height: 1.35;
        font-weight: 700;
        letter-spacing: -0.04em;
        color: #fff;
    }

    .step-content p {
        margin-top: 16px;
        font-size: 16px;
        line-height: 1.75;
        color: rgba(255, 255, 255, 0.68);
    }


    /* Effect */

    .core-effect {
        padding: 120px 0;
        background: #f6f8fb;
    }

    .effect-grid {
        display: grid;
        grid-template-columns: 0.8fr 1.2fr;
        gap: 70px;
        align-items: start;
    }

    .effect-title h3 {
        margin-top: 18px;
        font-size: clamp(32px, 4vw, 52px);
        line-height: 1.28;
        font-weight: 700;
        letter-spacing: -0.045em;
        color: #07111f;
    }

    .effect-list {
        display: grid;
        gap: 18px;
    }

    .effect-list article {
        padding: 34px 36px;
        border-radius: 22px;
        background: #fff;
        border: 1px solid #e3e8f0;
    }

    .effect-list h4 {
        font-size: 25px;
        line-height: 1.35;
        font-weight: 700;
        letter-spacing: -0.035em;
        color: #07111f;
    }

    .effect-list p {
        margin-top: 14px;
        font-size: 17px;
        line-height: 1.75;
        color: #5b6678;
    }


    /* Application */

    .core-application {
        padding: 120px 0;
        background: #fff;
    }

    .application-head {
        max-width: 860px;
        margin-bottom: 54px;
    }

    .application-head h3 {
        margin-top: 18px;
        font-size: clamp(32px, 4vw, 52px);
        line-height: 1.28;
        font-weight: 700;
        letter-spacing: -0.045em;
        color: #07111f;
    }

    .application-head p {
        margin-top: 22px;
        font-size: 18px;
        line-height: 1.8;
        color: #5b6678;
    }

    .application-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 22px;
    }

    .application-grid div {
        background: #f6f8fb;
        border-radius: 22px;
        overflow: hidden;
    }

    .application-grid img {
        width: 100%;
        height: 230px;
        display: block;
        object-fit: cover;
    }

    .application-grid strong {
        display: block;
        padding: 24px 26px 28px;
        font-size: 22px;
        line-height: 1.35;
        font-weight: 700;
        letter-spacing: -0.035em;
        color: #07111f;
    }


    /* FAQ */

    .core-faq {
        padding: 120px 0;
        background: #f6f8fb;
    }

    .faq-grid {
        display: grid;
        grid-template-columns: 0.8fr 1.2fr;
        gap: 70px;
    }

    .faq-title h3 {
        margin-top: 18px;
        font-size: clamp(32px, 4vw, 52px);
        line-height: 1.28;
        font-weight: 700;
        letter-spacing: -0.045em;
        color: #07111f;
    }

    .faq-list {
        border-top: 1px solid #cfd8e5;
    }

    .faq-list details {
        border-bottom: 1px solid #cfd8e5;
        background: transparent;
    }

    .faq-list summary {
        cursor: pointer;
        position: relative;
        padding: 28px 46px 28px 0;
        font-size: 20px;
        line-height: 1.45;
        font-weight: 700;
        letter-spacing: -0.035em;
        color: #111827;
        list-style: none;
    }

    .faq-list summary::-webkit-details-marker {
        display: none;
    }

    .faq-list summary::after {
        content: "+";
        position: absolute;
        right: 0;
        top: 28px;
        font-size: 26px;
        line-height: 1;
        font-weight: 300;
        color: #0b4f9f;
    }

    .faq-list details[open] summary::after {
        content: "−";
    }

    .faq-list p {
        max-width: 760px;
        padding: 0 0 30px;
        font-size: 17px;
        line-height: 1.8;
        color: #5b6678;
    }


    /* CTA */

    .core-cta {
        position: relative;
        padding: 100px 0;
        text-align: center;
        overflow: hidden;
        background:
                linear-gradient(
                        rgba(7, 17, 31, 0.88),
                        rgba(7, 17, 31, 0.88)
                ),
                url('/img/sub/core_cta_bg.jpg') center center / cover no-repeat;
    }

    .core-cta .core-inner {
        position: relative;
        z-index: 2;
    }

    .core-cta h3 {
        font-size: clamp(30px, 4vw, 50px);
        line-height: 1.3;
        font-weight: 700;
        letter-spacing: -0.045em;
        color: #fff;
    }

    .core-cta p {
        max-width: 760px;
        margin: 22px auto 0;
        font-size: 18px;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.72);
    }

    .core-cta a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 58px;
        margin-top: 38px;
        padding: 0 34px;
        border-radius: 999px;
        background: #fff;
        font-size: 16px;
        font-weight: 700;
        color: #07111f;
        text-decoration: none;
    }


    /* Responsive */

    @media (max-width: 1200px) {
        .summary-grid,
        .process-list,
        .application-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .detail-grid,
        .effect-grid,
        .faq-grid {
            grid-template-columns: 1fr;
            gap: 50px;
        }

        .detail-img {
            height: 520px;
        }
    }

    @media (max-width: 768px) {
        .core-inner {
            padding: 0 20px;
        }

        .core-intro,
        .core-summary,
        .core-detail,
        .core-process,
        .core-effect,
        .core-application,
        .core-faq {
            padding: 80px 0;
        }

        .summary-grid,
        .process-list,
        .application-grid {
            grid-template-columns: 1fr;
        }

        .summary-grid article,
        .process-item {
            min-height: auto;
        }

        .summary-grid article strong,
        .process-item em {
            margin-bottom: 46px;
        }

        .detail-img {
            height: 360px;
            border-radius: 18px;
        }

        .application-grid img {
            height: 220px;
        }

        .faq-list summary {
            font-size: 18px;
        }

        .core-cta {
            padding: 80px 0;
        }
    }


    /* ==============================
        DMI About Page - Revised
    ============================== */

    .dmi-about-page {
        width: 100%;
        background: #fff;
        color: #111827;
        overflow: hidden;
    }

    .about-inner {
        width: 100%;
        max-width: 1440px;
        margin: 0 auto;
        padding: 0 40px;
        box-sizing: border-box;
    }

    .about-label {
        display: inline-block;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.14em;
        color: #0b4f9f;
    }

    .dmi-about-page h2,
    .dmi-about-page h3,
    .dmi-about-page h4,
    .dmi-about-page p {
        margin: 0;
    }

    .dmi-about-page h2 {
        margin-top: 20px;
        font-size: clamp(40px, 5vw, 70px);
        line-height: 1.14;
        font-weight: 700;
        letter-spacing: -0.06em;
        color: #07111f;
    }

    .dmi-about-page h3 {
        margin-top: 18px;
        font-size: clamp(32px, 4vw, 54px);
        line-height: 1.25;
        font-weight: 700;
        letter-spacing: -0.05em;
        color: #07111f;
    }

    .dmi-about-page h4 {
        font-size: 25px;
        line-height: 1.35;
        font-weight: 700;
        letter-spacing: -0.04em;
        color: #07111f;
    }

    .dmi-about-page p {
        font-size: 18px;
        line-height: 1.85;
        color: #4b5563;
    }


    /* Intro */

    .about-hero-section {
        padding: 120px 0 90px;
        background: #fff;
    }

    .about-hero-grid {
        display: grid;
        grid-template-columns: 1fr 420px;
        gap: 80px;
        align-items: end;
    }

    .about-hero-text {
        max-width: 880px;
    }

    .about-hero-text p {
        max-width: 720px;
        margin-top: 30px;
    }

    .about-hero-info {
        border-top: 2px solid #07111f;
    }

    .about-hero-info dl {
        margin: 0;
        padding: 24px 0;
        border-bottom: 1px solid #dfe5ee;
    }

    .about-hero-info dt {
        margin-bottom: 8px;
        font-size: 13px;
        line-height: 1.4;
        font-weight: 700;
        letter-spacing: 0.12em;
        color: #0b4f9f;
        text-transform: uppercase;
    }

    .about-hero-info dd {
        margin: 0;
        font-size: 17px;
        line-height: 1.65;
        font-weight: 600;
        color: #1f2937;
    }


    /* Visual */

    .about-visual-section {
        padding: 0 0 120px;
        background: #fff;
    }

    .about-visual-grid {
        display: grid;
        grid-template-columns: 1.35fr 0.65fr;
        gap: 28px;
        align-items: stretch;
    }

    .about-visual-large {
        height: 620px;
        border-radius: 30px;
        overflow: hidden;
        background: #e5e7eb;
    }

    .about-visual-small {
        display: grid;
        grid-template-rows: 1fr auto;
        gap: 28px;
    }

    .about-visual-small img {
        width: 100%;
        height: 100%;
        min-height: 360px;
        display: block;
        object-fit: cover;
        border-radius: 30px;
        background: #e5e7eb;
    }

    .about-visual-large img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

    .visual-text-box {
        min-height: 230px;
        padding: 34px;
        border-radius: 30px;
        background: #f6f8fb;
        box-sizing: border-box;
    }

    .visual-text-box strong {
        display: block;
        font-size: 25px;
        line-height: 1.35;
        font-weight: 700;
        letter-spacing: -0.04em;
        color: #07111f;
    }

    .visual-text-box p {
        margin-top: 16px;
        font-size: 16px;
        line-height: 1.75;
        color: #5b6678;
    }


    /* Identity */

    .about-identity-section {
        padding: 120px 0;
        background: #f6f8fb;
    }

    .about-identity-grid {
        display: grid;
        grid-template-columns: 0.85fr 1.15fr;
        gap: 90px;
        align-items: start;
    }

    .identity-desc {
        padding-top: 48px;
    }

    .identity-desc p + p {
        margin-top: 30px;
    }


    /* Capability */

    .about-capability-section {
        padding: 120px 0;
        background: #fff;
    }

    .about-section-title {
        max-width: 820px;
        margin-bottom: 54px;
    }

    .capability-list {
        border-top: 1px solid #cfd8e5;
    }

    .capability-list article {
        display: grid;
        grid-template-columns: 120px 1fr;
        gap: 40px;
        padding: 42px 0;
        border-bottom: 1px solid #cfd8e5;
    }

    .capability-list article > span {
        font-size: 15px;
        font-weight: 700;
        color: #0b4f9f;
    }

    .capability-list article p {
        max-width: 820px;
        margin-top: 14px;
        font-size: 17px;
        line-height: 1.75;
        color: #5b6678;
    }


    /* Message */

    .about-message-section {
        position: relative;
        padding: 120px 0;
        background:
                linear-gradient(
                        rgba(7, 17, 31, 0.88),
                        rgba(7, 17, 31, 0.88)
                ),
                url('/img/sub/about_message_bg.jpg') center center / cover no-repeat;
    }

    .about-message-grid {
        display: grid;
        grid-template-columns: 1fr 0.8fr;
        gap: 90px;
        align-items: end;
    }

    .message-text h3 {
        color: #fff;
    }

    .message-desc p {
        color: rgba(255, 255, 255, 0.72);
    }


    /* Company */

    .about-company-section {
        padding: 120px 0;
        background: #f6f8fb;
    }

    .about-company-grid {
        display: grid;
        grid-template-columns: 0.75fr 1.25fr;
        gap: 80px;
        align-items: start;
    }

    .company-table {
        border-top: 2px solid #07111f;
    }

    .company-table dl {
        display: grid;
        grid-template-columns: 180px 1fr;
        gap: 30px;
        margin: 0;
        padding: 28px 0;
        border-bottom: 1px solid #cfd8e5;
    }

    .company-table dt {
        font-size: 16px;
        line-height: 1.7;
        font-weight: 700;
        color: #07111f;
    }

    .company-table dd {
        margin: 0;
        font-size: 17px;
        line-height: 1.7;
        color: #4b5563;
    }


    /* Contact */

    .about-contact-section {
        padding: 100px 0;
        background: #fff;
    }

    .about-contact-box {
        padding: 80px 40px;
        border-radius: 34px;
        background: #07111f;
        text-align: center;
    }

    .about-contact-box h3 {
        margin: 0;
        font-size: clamp(30px, 4vw, 50px);
        line-height: 1.3;
        font-weight: 700;
        letter-spacing: -0.045em;
        color: #fff;
    }

    .about-contact-box p {
        max-width: 760px;
        margin: 22px auto 0;
        color: rgba(255, 255, 255, 0.68);
    }

    .about-contact-box a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 58px;
        margin-top: 38px;
        padding: 0 34px;
        border-radius: 999px;
        background: #fff;
        font-size: 16px;
        font-weight: 700;
        color: #07111f;
        text-decoration: none;
    }


    /* Responsive */

    @media (max-width: 1200px) {
        .about-hero-grid,
        .about-identity-grid,
        .about-message-grid,
        .about-company-grid {
            grid-template-columns: 1fr;
            gap: 50px;
        }

        .about-hero-info {
            max-width: 620px;
        }

        .identity-desc {
            padding-top: 0;
        }

        .about-visual-grid {
            grid-template-columns: 1fr;
        }

        .about-visual-large {
            height: 520px;
        }

        .about-visual-small {
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto;
        }

        .about-visual-small img {
            min-height: 280px;
        }
    }

    @media (max-width: 768px) {
        .about-inner {
            padding: 0 20px;
        }

        .about-hero-section,
        .about-identity-section,
        .about-capability-section,
        .about-message-section,
        .about-company-section {
            padding: 80px 0;
        }

        .about-visual-section {
            padding-bottom: 80px;
        }

        .dmi-about-page h2 {
            font-size: 38px;
            line-height: 1.2;
        }

        .dmi-about-page h3 {
            font-size: 32px;
            line-height: 1.3;
        }

        .dmi-about-page p {
            font-size: 16px;
            line-height: 1.75;
        }

        .about-visual-large {
            height: 360px;
            border-radius: 20px;
        }

        .about-visual-small {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .about-visual-small img {
            min-height: 260px;
            border-radius: 20px;
        }

        .visual-text-box {
            min-height: auto;
            padding: 28px;
            border-radius: 20px;
        }

        .capability-list article {
            grid-template-columns: 1fr;
            gap: 16px;
            padding: 34px 0;
        }

        .company-table dl {
            grid-template-columns: 1fr;
            gap: 8px;
            padding: 24px 0;
        }

        .about-contact-section {
            padding: 80px 0;
        }

        .about-contact-box {
            padding: 64px 24px;
            border-radius: 24px;
        }

        .about-contact-box a {
            width: 100%;
            max-width: 260px;
        }
    }

    /* ==============================
        Build Process Page
    ============================== */

    .build-process-page {
        width: 100%;
        color: #111827;
        background: #fff;
    }

    .process-inner {
        width: 100%;
        max-width: 1440px;
        margin: 0 auto;
        padding: 0 40px;
        box-sizing: border-box;
    }

    .build-process-page span {
        display: inline-block;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.14em;
        color: #0b4f9f;
    }

    .build-process-page h2,
    .build-process-page h3,
    .build-process-page h4,
    .build-process-page p {
        margin: 0;
    }


    /* Intro */

    .process-intro {
        padding: 120px 0 90px;
        background: #fff;
    }

    .process-title {
        max-width: 980px;
        margin-bottom: 56px;
    }

    .process-title h2 {
        margin-top: 20px;
        font-size: clamp(38px, 5vw, 68px);
        line-height: 1.18;
        font-weight: 700;
        letter-spacing: -0.055em;
        color: #07111f;
    }

    .process-title p {
        max-width: 820px;
        margin-top: 28px;
        font-size: 19px;
        line-height: 1.85;
        font-weight: 400;
        color: #4b5563;
    }


    /* Summary */

    .process-summary {
        padding: 110px 0;
        background: #f6f8fb;
    }

    .summary-head {
        max-width: 820px;
        margin-bottom: 54px;
    }

    .summary-head h3 {
        margin-top: 18px;
        font-size: clamp(32px, 4vw, 52px);
        line-height: 1.28;
        font-weight: 700;
        letter-spacing: -0.045em;
        color: #07111f;
    }

    .summary-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        border-top: 1px solid #dfe5ee;
        border-left: 1px solid #dfe5ee;
        background: #fff;
    }

    .summary-grid article {
        min-height: 300px;
        padding: 34px 30px;
        border-right: 1px solid #dfe5ee;
        border-bottom: 1px solid #dfe5ee;
        background: #fff;
        box-sizing: border-box;
    }

    .summary-grid article strong {
        display: block;
        margin-bottom: 72px;
        font-size: 14px;
        font-weight: 700;
        color: #0b4f9f;
    }

    .summary-grid article h4 {
        font-size: 25px;
        line-height: 1.35;
        font-weight: 700;
        letter-spacing: -0.04em;
        color: #07111f;
    }

    .summary-grid article p {
        margin-top: 18px;
        font-size: 16px;
        line-height: 1.75;
        color: #5b6678;
    }


    /* Detail */

    .process-detail {
        padding: 120px 0;
        background: #fff;
    }

    .detail-grid {
        display: grid;
        grid-template-columns: 1.05fr 0.95fr;
        gap: 80px;
        align-items: center;
    }

    .detail-img {
        height: 620px;
        border-radius: 26px;
        overflow: hidden;
        background: #e5e7eb;
    }

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

    .detail-text h3 {
        margin-top: 18px;
        font-size: clamp(32px, 4vw, 54px);
        line-height: 1.28;
        font-weight: 700;
        letter-spacing: -0.045em;
        color: #07111f;
    }

    .detail-text p {
        margin-top: 28px;
        font-size: 18px;
        line-height: 1.85;
        color: #4b5563;
    }

    .detail-text ul {
        margin: 34px 0 0;
        padding: 0;
        list-style: none;
        border-top: 1px solid #dfe5ee;
    }

    .detail-text li {
        position: relative;
        padding: 18px 0 18px 26px;
        border-bottom: 1px solid #dfe5ee;
        font-size: 17px;
        line-height: 1.6;
        color: #1f2937;
    }

    .detail-text li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 29px;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #0b4f9f;
    }


    /* Flow */

    .process-flow {
        padding: 120px 0;
        background: #07111f;
    }

    .flow-title {
        max-width: 760px;
        margin-bottom: 56px;
    }

    .flow-title h3 {
        margin-top: 18px;
        font-size: clamp(32px, 4vw, 52px);
        line-height: 1.28;
        font-weight: 700;
        letter-spacing: -0.045em;
        color: #fff;
    }

    .flow-title p {
        margin-top: 20px;
        font-size: 18px;
        line-height: 1.75;
        color: rgba(255, 255, 255, 0.68);
    }

    .flow-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1px;
        background: rgba(255, 255, 255, 0.18);
        border: 1px solid rgba(255, 255, 255, 0.18);
    }

    .flow-item {
        min-height: 300px;
        padding: 34px 30px;
        background: #0b1a2d;
        box-sizing: border-box;
    }

    .flow-item em {
        display: block;
        margin-bottom: 76px;
        font-style: normal;
        font-size: 13px;
        font-weight: 700;
        color: #7db2ff;
    }

    .flow-item h4 {
        font-size: 24px;
        line-height: 1.35;
        font-weight: 700;
        color: #fff;
    }

    .flow-item p {
        margin-top: 16px;
        font-size: 16px;
        line-height: 1.75;
        color: rgba(255, 255, 255, 0.68);
    }


    /* Effect */

    .process-effect {
        padding: 120px 0;
        background: #f6f8fb;
    }

    .effect-grid {
        display: grid;
        grid-template-columns: 0.8fr 1.2fr;
        gap: 70px;
        align-items: start;
    }

    .effect-title h3 {
        margin-top: 18px;
        font-size: clamp(32px, 4vw, 52px);
        line-height: 1.28;
        font-weight: 700;
        letter-spacing: -0.045em;
        color: #07111f;
    }

    .effect-list {
        display: grid;
        gap: 18px;
    }

    .effect-list article {
        padding: 34px 36px;
        border-radius: 22px;
        background: #fff;
        border: 1px solid #e3e8f0;
    }

    .effect-list h4 {
        font-size: 25px;
        line-height: 1.35;
        font-weight: 700;
        letter-spacing: -0.035em;
        color: #07111f;
    }

    .effect-list p {
        margin-top: 14px;
        font-size: 17px;
        line-height: 1.75;
        color: #5b6678;
    }


    /* Scope */

    .process-scope {
        padding: 120px 0;
        background: #fff;
    }

    .scope-head {
        max-width: 860px;
        margin-bottom: 54px;
    }

    .scope-head h3 {
        margin-top: 18px;
        font-size: clamp(32px, 4vw, 52px);
        line-height: 1.28;
        font-weight: 700;
        letter-spacing: -0.045em;
        color: #07111f;
    }

    .scope-head p {
        margin-top: 22px;
        font-size: 18px;
        line-height: 1.8;
        color: #5b6678;
    }

    .scope-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 22px;
    }

    .scope-grid div {
        background: #f6f8fb;
        border-radius: 22px;
        overflow: hidden;
    }

    .scope-grid img {
        width: 100%;
        height: 230px;
        display: block;
        object-fit: cover;
    }

    .scope-grid strong {
        display: block;
        padding: 24px 26px 28px;
        font-size: 22px;
        line-height: 1.35;
        font-weight: 700;
        letter-spacing: -0.035em;
        color: #07111f;
    }


    /* FAQ */

    .process-faq {
        padding: 120px 0;
        background: #f6f8fb;
    }

    .faq-grid {
        display: grid;
        grid-template-columns: 0.8fr 1.2fr;
        gap: 70px;
    }

    .faq-title h3 {
        margin-top: 18px;
        font-size: clamp(32px, 4vw, 52px);
        line-height: 1.28;
        font-weight: 700;
        letter-spacing: -0.045em;
        color: #07111f;
    }

    .faq-list {
        border-top: 1px solid #cfd8e5;
    }

    .faq-list details {
        border-bottom: 1px solid #cfd8e5;
        background: transparent;
    }

    .faq-list summary {
        cursor: pointer;
        position: relative;
        padding: 28px 46px 28px 0;
        font-size: 20px;
        line-height: 1.45;
        font-weight: 700;
        letter-spacing: -0.035em;
        color: #111827;
        list-style: none;
    }

    .faq-list summary::-webkit-details-marker {
        display: none;
    }

    .faq-list summary::after {
        content: "+";
        position: absolute;
        right: 0;
        top: 28px;
        font-size: 26px;
        line-height: 1;
        font-weight: 300;
        color: #0b4f9f;
    }

    .faq-list details[open] summary::after {
        content: "−";
    }

    .faq-list p {
        max-width: 760px;
        padding: 0 0 30px;
        font-size: 17px;
        line-height: 1.8;
        color: #5b6678;
    }


    /* CTA */

    .process-cta {
        padding: 100px 0;
        background: #07111f;
        text-align: center;
    }

    .process-cta h3 {
        font-size: clamp(30px, 4vw, 50px);
        line-height: 1.3;
        font-weight: 700;
        letter-spacing: -0.045em;
        color: #fff;
    }

    .process-cta p {
        max-width: 760px;
        margin: 22px auto 0;
        font-size: 18px;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.68);
    }

    .process-cta a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 58px;
        margin-top: 38px;
        padding: 0 34px;
        border-radius: 999px;
        background: #fff;
        font-size: 16px;
        font-weight: 700;
        color: #07111f;
        text-decoration: none;
    }


    /* Responsive */

    @media (max-width: 1200px) {
        .summary-grid,
        .flow-list,
        .scope-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .detail-grid,
        .effect-grid,
        .faq-grid {
            grid-template-columns: 1fr;
            gap: 50px;
        }

        .detail-img {
            height: 520px;
        }
    }

    @media (max-width: 768px) {
        .process-inner {
            padding: 0 20px;
        }

        .process-intro,
        .process-summary,
        .process-detail,
        .process-flow,
        .process-effect,
        .process-scope,
        .process-faq {
            padding: 80px 0;
        }

        .process-title h2 {
            font-size: 38px;
            line-height: 1.22;
        }

        .process-title p,
        .detail-text p,
        .scope-head p,
        .process-cta p {
            font-size: 16px;
            line-height: 1.75;
        }

        .summary-grid,
        .flow-list,
        .scope-grid {
            grid-template-columns: 1fr;
        }

        .summary-grid article,
        .flow-item {
            min-height: auto;
        }

        .summary-grid article strong,
        .flow-item em {
            margin-bottom: 46px;
        }

        .detail-img {
            height: 360px;
            border-radius: 18px;
        }

        .scope-grid img {
            height: 220px;
        }

        .faq-list summary {
            font-size: 18px;
        }

        .process-cta {
            padding: 80px 0;
        }

        .process-cta a {
            width: 100%;
            max-width: 260px;
        }
    }

    /* ==============================
        Application Page
    ============================== */

    .application-page {
        width: 100%;
        color: #111827;
        background: #fff;
    }

    .app-inner {
        width: 100%;
        max-width: 1440px;
        margin: 0 auto;
        padding: 0 40px;
        box-sizing: border-box;
    }

    .application-page span {
        display: inline-block;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.14em;
        color: #0b4f9f;
    }

    .application-page h2,
    .application-page h3,
    .application-page h4,
    .application-page p {
        margin: 0;
    }


    /* Intro */

    .app-intro {
        padding: 120px 0 90px;
        background: #fff;
    }

    .app-title {
        max-width: 980px;
        margin-bottom: 56px;
    }

    .app-title h2 {
        margin-top: 20px;
        font-size: clamp(38px, 5vw, 68px);
        line-height: 1.18;
        font-weight: 700;
        letter-spacing: -0.055em;
        color: #07111f;
    }

    .app-title p {
        max-width: 820px;
        margin-top: 28px;
        font-size: 19px;
        line-height: 1.85;
        font-weight: 400;
        color: #4b5563;
    }


    /* Summary */

    .app-summary {
        padding: 110px 0;
        background: #f6f8fb;
    }

    .app-section-head {
        max-width: 820px;
        margin-bottom: 54px;
    }

    .app-section-head h3 {
        margin-top: 18px;
        font-size: clamp(32px, 4vw, 52px);
        line-height: 1.28;
        font-weight: 700;
        letter-spacing: -0.045em;
        color: #07111f;
    }

    .app-summary-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        border-top: 1px solid #dfe5ee;
        border-left: 1px solid #dfe5ee;
        background: #fff;
    }

    .app-summary-grid article {
        min-height: 310px;
        padding: 34px 30px;
        border-right: 1px solid #dfe5ee;
        border-bottom: 1px solid #dfe5ee;
        background: #fff;
        box-sizing: border-box;
    }

    .app-summary-grid article strong {
        display: block;
        margin-bottom: 72px;
        font-size: 14px;
        font-weight: 700;
        color: #0b4f9f;
    }

    .app-summary-grid article h4 {
        font-size: 25px;
        line-height: 1.35;
        font-weight: 700;
        letter-spacing: -0.04em;
        color: #07111f;
    }

    .app-summary-grid article p {
        margin-top: 18px;
        font-size: 16px;
        line-height: 1.75;
        color: #5b6678;
    }


    /* Detail */

    .app-detail {
        padding: 120px 0;
        background: #fff;
    }

    .app-detail-grid {
        display: grid;
        grid-template-columns: 1.05fr 0.95fr;
        gap: 80px;
        align-items: center;
    }

    .app-detail-img {
        height: 620px;
        border-radius: 26px;
        overflow: hidden;
        background: #e5e7eb;
    }

    .app-detail-img img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

    .app-detail-text h3 {
        margin-top: 18px;
        font-size: clamp(32px, 4vw, 54px);
        line-height: 1.28;
        font-weight: 700;
        letter-spacing: -0.045em;
        color: #07111f;
    }

    .app-detail-text p {
        margin-top: 28px;
        font-size: 18px;
        line-height: 1.85;
        color: #4b5563;
    }

    .app-detail-text ul {
        margin: 34px 0 0;
        padding: 0;
        list-style: none;
        border-top: 1px solid #dfe5ee;
    }

    .app-detail-text li {
        position: relative;
        padding: 18px 0 18px 26px;
        border-bottom: 1px solid #dfe5ee;
        font-size: 17px;
        line-height: 1.6;
        color: #1f2937;
    }

    .app-detail-text li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 29px;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #0b4f9f;
    }


    /* Field */

    .app-field {
        padding: 120px 0;
        background: #07111f;
    }

    .app-field-title {
        max-width: 820px;
        margin-bottom: 56px;
    }

    .app-field-title h3 {
        margin-top: 18px;
        font-size: clamp(32px, 4vw, 52px);
        line-height: 1.28;
        font-weight: 700;
        letter-spacing: -0.045em;
        color: #fff;
    }

    .app-field-title p {
        margin-top: 22px;
        font-size: 18px;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.68);
    }

    .app-field-list {
        display: grid;
        gap: 24px;
    }

    .app-field-list article {
        display: grid;
        grid-template-columns: 0.72fr 1.28fr;
        min-height: 320px;
        border-radius: 26px;
        overflow: hidden;
        background: #0b1a2d;
    }

    .field-img {
        min-height: 320px;
        background: #111827;
    }

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

    .field-text {
        padding: 42px 44px;
        box-sizing: border-box;
    }

    .field-text em {
        display: block;
        margin-bottom: 70px;
        font-style: normal;
        font-size: 13px;
        font-weight: 700;
        color: #7db2ff;
    }

    .field-text h4 {
        font-size: 28px;
        line-height: 1.35;
        font-weight: 700;
        letter-spacing: -0.04em;
        color: #fff;
    }

    .field-text p {
        max-width: 720px;
        margin-top: 16px;
        font-size: 17px;
        line-height: 1.75;
        color: rgba(255, 255, 255, 0.68);
    }


    /* Effect */

    .app-effect {
        padding: 120px 0;
        background: #f6f8fb;
    }

    .app-effect-grid {
        display: grid;
        grid-template-columns: 0.8fr 1.2fr;
        gap: 70px;
        align-items: start;
    }

    .app-effect-title h3 {
        margin-top: 18px;
        font-size: clamp(32px, 4vw, 52px);
        line-height: 1.28;
        font-weight: 700;
        letter-spacing: -0.045em;
        color: #07111f;
    }

    .app-effect-list {
        display: grid;
        gap: 18px;
    }

    .app-effect-list article {
        padding: 34px 36px;
        border-radius: 22px;
        background: #fff;
        border: 1px solid #e3e8f0;
    }

    .app-effect-list h4 {
        font-size: 25px;
        line-height: 1.35;
        font-weight: 700;
        letter-spacing: -0.035em;
        color: #07111f;
    }

    .app-effect-list p {
        margin-top: 14px;
        font-size: 17px;
        line-height: 1.75;
        color: #5b6678;
    }


    /* Check Point */

    .app-check {
        padding: 120px 0;
        background: #fff;
    }

    .app-check-head {
        max-width: 860px;
        margin-bottom: 54px;
    }

    .app-check-head h3 {
        margin-top: 18px;
        font-size: clamp(32px, 4vw, 52px);
        line-height: 1.28;
        font-weight: 700;
        letter-spacing: -0.045em;
        color: #07111f;
    }

    .app-check-head p {
        margin-top: 22px;
        font-size: 18px;
        line-height: 1.8;
        color: #5b6678;
    }

    .app-check-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        border-top: 1px solid #dfe5ee;
        border-left: 1px solid #dfe5ee;
    }

    .app-check-grid div {
        min-height: 260px;
        padding: 34px 30px;
        border-right: 1px solid #dfe5ee;
        border-bottom: 1px solid #dfe5ee;
        box-sizing: border-box;
    }

    .app-check-grid strong {
        display: block;
        margin-bottom: 64px;
        font-size: 14px;
        font-weight: 700;
        color: #0b4f9f;
    }

    .app-check-grid h4 {
        font-size: 24px;
        line-height: 1.35;
        font-weight: 700;
        letter-spacing: -0.04em;
        color: #07111f;
    }

    .app-check-grid p {
        margin-top: 16px;
        font-size: 16px;
        line-height: 1.75;
        color: #5b6678;
    }


    /* FAQ */

    .app-faq {
        padding: 120px 0;
        background: #f6f8fb;
    }

    .app-faq-grid {
        display: grid;
        grid-template-columns: 0.8fr 1.2fr;
        gap: 70px;
    }

    .app-faq-title h3 {
        margin-top: 18px;
        font-size: clamp(32px, 4vw, 52px);
        line-height: 1.28;
        font-weight: 700;
        letter-spacing: -0.045em;
        color: #07111f;
    }

    .app-faq-list {
        border-top: 1px solid #cfd8e5;
    }

    .app-faq-list details {
        border-bottom: 1px solid #cfd8e5;
        background: transparent;
    }

    .app-faq-list summary {
        cursor: pointer;
        position: relative;
        padding: 28px 46px 28px 0;
        font-size: 20px;
        line-height: 1.45;
        font-weight: 700;
        letter-spacing: -0.035em;
        color: #111827;
        list-style: none;
    }

    .app-faq-list summary::-webkit-details-marker {
        display: none;
    }

    .app-faq-list summary::after {
        content: "+";
        position: absolute;
        right: 0;
        top: 28px;
        font-size: 26px;
        line-height: 1;
        font-weight: 300;
        color: #0b4f9f;
    }

    .app-faq-list details[open] summary::after {
        content: "−";
    }

    .app-faq-list p {
        max-width: 760px;
        padding: 0 0 30px;
        font-size: 17px;
        line-height: 1.8;
        color: #5b6678;
    }


    /* CTA */

    .app-cta {
        padding: 100px 0;
        background: #07111f;
        text-align: center;
    }

    .app-cta h3 {
        font-size: clamp(30px, 4vw, 50px);
        line-height: 1.3;
        font-weight: 700;
        letter-spacing: -0.045em;
        color: #fff;
    }

    .app-cta p {
        max-width: 760px;
        margin: 22px auto 0;
        font-size: 18px;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.68);
    }

    .app-cta a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 58px;
        margin-top: 38px;
        padding: 0 34px;
        border-radius: 999px;
        background: #fff;
        font-size: 16px;
        font-weight: 700;
        color: #07111f;
        text-decoration: none;
    }


    /* Responsive */

    @media (max-width: 1200px) {
        .app-summary-grid,
        .app-check-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .app-detail-grid,
        .app-effect-grid,
        .app-faq-grid {
            grid-template-columns: 1fr;
            gap: 50px;
        }

        .app-detail-img {
            height: 520px;
        }

        .app-field-list article {
            grid-template-columns: 1fr;
        }

        .field-img {
            height: 360px;
        }
    }

    @media (max-width: 768px) {
        .app-inner {
            padding: 0 20px;
        }

        .app-intro,
        .app-summary,
        .app-detail,
        .app-field,
        .app-effect,
        .app-check,
        .app-faq {
            padding: 80px 0;
        }

        .app-title h2 {
            font-size: 38px;
            line-height: 1.22;
        }

        .app-title p,
        .app-detail-text p,
        .app-check-head p,
        .app-cta p {
            font-size: 16px;
            line-height: 1.75;
        }

        .app-summary-grid,
        .app-check-grid {
            grid-template-columns: 1fr;
        }

        .app-summary-grid article,
        .app-check-grid div {
            min-height: auto;
        }

        .app-summary-grid article strong,
        .app-check-grid strong {
            margin-bottom: 46px;
        }

        .app-detail-img {
            height: 360px;
            border-radius: 18px;
        }

        .app-field-list article {
            border-radius: 20px;
        }

        .field-img {
            height: 260px;
            min-height: 260px;
        }

        .field-text {
            padding: 32px 28px;
        }

        .field-text em {
            margin-bottom: 46px;
        }

        .field-text h4 {
            font-size: 24px;
        }

        .app-faq-list summary {
            font-size: 18px;
        }

        .app-cta {
            padding: 80px 0;
        }

        .app-cta a {
            width: 100%;
            max-width: 260px;
        }
    }

    /* ==============================
        Main Image Scroll Scale Effect
    ============================== */

    /* ==============================
        Main Visual Load Animation
    ============================== */

    .core-main-img,
    .process-main-img,
    .app-main-img {
        width: 100%;
        height: 560px;
        margin-left: 0;
        border-radius: 28px;
        overflow: hidden;
        background: #e5e7eb;

        animation: mainImgShrink 2.8s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .core-main-img img,
    .process-main-img img,
    .app-main-img img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

    @keyframes mainImgShrink {
        0% {
            width: 100vw;
            height: 640px;
            margin-left: calc(50% - 50vw);
            border-radius: 0;
        }

        /* 약 0.5초 정도 브라우저 전체 폭 유지 */
        18% {
            width: 100vw;
            height: 640px;
            margin-left: calc(50% - 50vw);
            border-radius: 0;
        }

        100% {
            width: 100%;
            height: 560px;
            margin-left: 0;
            border-radius: 28px;
        }
    }

    @media (max-width: 768px) {
        .core-main-img,
        .process-main-img,
        .app-main-img {
            height: 360px;
            border-radius: 18px;
        }

        @keyframes mainImgShrink {
            0% {
                width: 100vw;
                height: 420px;
                margin-left: calc(50% - 50vw);
                border-radius: 0;
            }

            /* 약 0.5초 유지 */
            18% {
                width: 100vw;
                height: 420px;
                margin-left: calc(50% - 50vw);
                border-radius: 0;
            }

            100% {
                width: 100%;
                height: 360px;
                margin-left: 0;
                border-radius: 18px;
            }
        }
    }

    /* ==============================
        Core Process - Visual Timeline
    ============================== */

    .core-process-visual {
        padding: 130px 0;
        background: #fff;
    }

    .core-process-layout {
        display: grid;
        grid-template-columns: 0.82fr 80px 1.45fr;
        gap: 40px;
        align-items: start;
    }

    .core-process-left {
        position: sticky;
        top: 120px;
        padding-top: 10px;
    }

    .core-process-left span {
        display: inline-block;
        margin-bottom: 18px;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.14em;
        color: #0b4f9f;
    }

    .core-process-left h3 {
        margin: 0;
        font-size: clamp(34px, 4vw, 56px);
        line-height: 1.25;
        font-weight: 700;
        letter-spacing: -0.055em;
        color: #07111f;
    }

    .core-process-left p {
        max-width: 520px;
        margin-top: 28px;
        font-size: 18px;
        line-height: 1.85;
        color: #4b5563;
    }


    /* center line */

    .core-process-line {
        position: relative;
        width: 100%;
        height: 100%;
        min-height: 1120px;
    }

    .core-process-line::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 0;
        width: 2px;
        height: 100%;
        background: #dbeafe;
        transform: translateX(-50%);
    }

    .core-process-line span {
        position: absolute;
        left: 50%;
        bottom: 0;
        width: 18px;
        height: 18px;
        border: 5px solid #dbeafe;
        border-radius: 50%;
        background: #0b4f9f;
        transform: translateX(-50%);
    }


    /* right rows */

    .core-process-right {
        display: grid;
        gap: 72px;
    }

    .core-process-row {
        display: grid;
        grid-template-columns: 0.95fr 1fr;
        gap: 44px;
        align-items: center;
    }

    .process-row-img {
        height: 260px;
        border-radius: 28px;
        overflow: hidden;
        background: #e5e7eb;
    }

    .process-row-img img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .process-row-text em {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 76px;
        height: 36px;
        padding: 0 18px;
        border-radius: 999px;
        background: #0b4f9f;
        font-style: normal;
        font-size: 15px;
        font-weight: 700;
        color: #fff;
    }

    .process-row-text h4 {
        margin: 22px 0 0;
        font-size: clamp(26px, 3vw, 34px);
        line-height: 1.32;
        font-weight: 700;
        letter-spacing: -0.045em;
        color: #07111f;
    }

    .process-row-text p {
        max-width: 560px;
        margin-top: 22px;
        font-size: 18px;
        line-height: 1.8;
        color: #374151;
    }


    /* Responsive */

    @media (max-width: 1200px) {
        .core-process-layout {
            grid-template-columns: 1fr;
            gap: 56px;
        }

        .core-process-left {
            position: static;
        }

        .core-process-line {
            display: none;
        }

        .core-process-right {
            gap: 50px;
        }
    }

    @media (max-width: 768px) {
        .core-process-visual {
            padding: 80px 0;
        }

        .core-process-left h3 {
            font-size: 34px;
            line-height: 1.3;
        }

        .core-process-left p {
            font-size: 16px;
            line-height: 1.75;
        }

        .core-process-row {
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .process-row-img {
            height: 230px;
            border-radius: 20px;
        }

        .process-row-text h4 {
            font-size: 26px;
        }

        .process-row-text p {
            font-size: 16px;
            line-height: 1.75;
        }
    }

    /* ==============================
        Build Process - Visual Timeline Override
    ============================== */

    .process-flow.core-process-visual {
        background: #fff;
    }

    .process-flow .core-process-line {
        min-height: 1760px;
    }

    .process-flow .core-process-right {
        gap: 72px;
    }

    /* =========================================================
       FINAL OVERRIDE
       Core / Build Process Visual Timeline
       - 기존 어두운 core-process 스타일 덮어쓰기
       - sticky 작동
       - 핵심기술 / 구축프로세스 공통 사용
    ========================================================= */

    /* sticky 방해 방지 */
    .core-tech-page,
    .build-process-page {
        overflow: visible;
    }

    /* 핵심기술 프로세스 / 구축프로세스 공통 섹션 */
    .core-process.core-process-visual,
    .process-flow.core-process-visual {
        position: relative;
        padding: 130px 0;
        background: #fff;
        overflow: visible;
    }

    /* 기존 .core-process::before 파란 배경 장식 제거 */
    .core-process.core-process-visual::before,
    .core-process.core-process-visual::after,
    .process-flow.core-process-visual::before,
    .process-flow.core-process-visual::after {
        display: none;
        content: none;
    }

    /* inner z-index 정리 */
    .core-process.core-process-visual .core-inner,
    .process-flow.core-process-visual .process-inner {
        position: relative;
        z-index: 1;
    }

    /* 전체 레이아웃 */
    .core-process-layout {
        display: grid;
        grid-template-columns: 0.82fr 80px 1.45fr;
        gap: 40px;
        align-items: start;
    }

    /* 왼쪽 고정 타이틀 */
    .core-process-left {
        position: sticky;
        top: 120px;
        align-self: start;
        padding-top: 10px;
    }

    .core-process-left span {
        display: inline-block;
        margin-bottom: 18px;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.14em;
        color: #0b4f9f;
    }

    .core-process-left h3 {
        margin: 0;
        font-size: clamp(34px, 4vw, 56px);
        line-height: 1.25;
        font-weight: 700;
        letter-spacing: -0.055em;
        color: #07111f;
    }

    .core-process-left p {
        max-width: 520px;
        margin-top: 28px;
        font-size: 18px;
        line-height: 1.85;
        color: #4b5563;
    }

    /* 중앙 세로 라인 */
    .core-process-line {
        position: relative;
        width: 100%;
        height: 100%;
        min-height: 1260px;
    }

    .core-process-line::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 0;
        width: 2px;
        height: 100%;
        background: #dbeafe;
        transform: translateX(-50%);
    }

    .core-process-line span {
        position: absolute;
        left: 50%;
        bottom: 0;
        width: 18px;
        height: 18px;
        border: 5px solid #dbeafe;
        border-radius: 50%;
        background: #0b4f9f;
        transform: translateX(-50%);
    }

    /* 구축 프로세스는 6단계라 라인을 더 길게 */
    .process-flow.core-process-visual .core-process-line {
        min-height: 1880px;
    }

    /* 오른쪽 리스트 */
    .core-process-right {
        display: grid;
        gap: 72px;
    }

    /* 구축 프로세스도 동일 간격 */
    .process-flow.core-process-visual .core-process-right {
        gap: 72px;
    }

    .core-process-row {
        display: grid;
        grid-template-columns: 0.95fr 1fr;
        gap: 44px;
        align-items: center;
    }

    .process-row-img {
        height: 260px;
        border-radius: 28px;
        overflow: hidden;
        background: #e5e7eb;
    }

    .process-row-img img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .process-row-text em {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 76px;
        height: 36px;
        padding: 0 18px;
        border-radius: 999px;
        background: #0b4f9f;
        font-style: normal;
        font-size: 15px;
        font-weight: 700;
        color: #fff;
    }

    .process-row-text h4 {
        margin: 22px 0 0;
        font-size: clamp(26px, 3vw, 34px);
        line-height: 1.32;
        font-weight: 700;
        letter-spacing: -0.045em;
        color: #07111f;
    }

    .process-row-text p {
        max-width: 560px;
        margin-top: 22px;
        font-size: 18px;
        line-height: 1.8;
        color: #374151;
    }

    /* 기존 flow 스타일 무력화 */
    .process-flow.core-process-visual .flow-title,
    .process-flow.core-process-visual .flow-list,
    .process-flow.core-process-visual .flow-item {
        all: unset;
    }

    /* Responsive */
    @media (max-width: 1200px) {
        .core-process.core-process-visual,
        .process-flow.core-process-visual {
            padding: 110px 0;
        }

        .core-process-layout {
            grid-template-columns: 1fr;
            gap: 56px;
        }

        .core-process-left {
            position: static;
        }

        .core-process-line {
            display: none;
        }

        .core-process-right,
        .process-flow.core-process-visual .core-process-right {
            gap: 50px;
        }

        .core-process-row {
            grid-template-columns: 0.9fr 1.1fr;
            gap: 34px;
        }
    }

    @media (max-width: 768px) {
        .core-process.core-process-visual,
        .process-flow.core-process-visual {
            padding: 80px 0;
        }

        .core-process-left h3 {
            font-size: 34px;
            line-height: 1.3;
        }

        .core-process-left p {
            font-size: 16px;
            line-height: 1.75;
        }

        .core-process-row {
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .process-row-img {
            height: 230px;
            border-radius: 20px;
        }

        .process-row-text em {
            height: 34px;
            min-width: 70px;
            padding: 0 16px;
            font-size: 14px;
        }

        .process-row-text h4 {
            margin-top: 18px;
            font-size: 26px;
        }

        .process-row-text p {
            margin-top: 16px;
            font-size: 16px;
            line-height: 1.75;
        }
    }

    /* ==============================
        About Page Scroll Animation
    ============================== */

    .scroll-reveal {
        opacity: 0;
        transform: translateY(34px);
        transition:
                opacity 0.8s ease,
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
        transition-delay: var(--reveal-delay, 0s);
    }

    .scroll-reveal.is-show {
        opacity: 1;
        transform: translateY(0);
    }

    /* 이미지 전용 */
    .scroll-reveal-img {
        opacity: 0;
        transform: scale(1.06);
        transition:
                opacity 1s ease,
                transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
        transition-delay: var(--reveal-delay, 0s);
    }

    .scroll-reveal-img.is-show {
        opacity: 1;
        transform: scale(1);
    }

    /* 이미지 wrapper가 overflow hidden이어야 확대 축소가 예쁘게 보임 */
    .about-visual-large,
    .about-visual-small {
        overflow: hidden;
    }

    /* capability 라인은 살짝 더 간결하게 */
    .capability-list article.scroll-reveal {
        transform: translateY(22px);
    }

    /* 기업 정보 테이블 */
    .company-table dl.scroll-reveal {
        transform: translateY(18px);
    }

    /* 모션 줄이기 설정 대응 */
    @media (prefers-reduced-motion: reduce) {
        .scroll-reveal,
        .scroll-reveal-img {
            opacity: 1;
            transform: none;
            transition: none;
        }
    }

    /* ==============================
       MAIN IMAGE SCALE EFFECT
       core / process / application 공통
       120vw 느낌 → 부모 100%
    ============================== */

    .core-main-img,
    .process-main-img,
    .app-main-img {
        --img-progress: 0;
        --img-scale: 1;

        position: relative;
        width: 100%;
        max-width: none;
        height: 620px;

        margin-top: 90px;
        margin-left: 0;
        margin-right: 0;

        overflow: hidden;
        background: #e5e7eb;

        /* 기존 mainImgShrink 애니메이션 무력화 */
        animation: none !important;

        transform: scale(var(--img-scale));
        transform-origin: center top;

        border-radius: calc(var(--img-progress) * 28px);

        will-change: transform, border-radius;
        z-index: 1;
    }

    .core-main-img img,
    .process-main-img img,
    .app-main-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* 확대 상태에서 좌우 스크롤 방지 */
    body {
        overflow-x: hidden;
    }

    @media (max-width: 768px) {
        .core-main-img,
        .process-main-img,
        .app-main-img {
            height: 420px;
            margin-top: 56px;
            border-radius: calc(var(--img-progress) * 18px);
        }
    }

    /* ==============================
       DMI Inquiry Page
    ============================== */

    .dmi-inquiry-page {
        max-width: 1440px;
        margin: 0 auto;
        padding: 90px 24px 120px;
        box-sizing: border-box;
    }

    .dmi-inquiry-head {
        margin-bottom: 54px;
    }

    .dmi-inquiry-head span {
        display: block;
        margin-bottom: 12px;
        font-size: 15px;
        font-weight: 700;
        color: #0a4bc0;
        letter-spacing: 0.08em;
    }

    .dmi-inquiry-head h2 {
        margin: 0 0 18px;
        font-size: 42px;
        line-height: 1.3;
        font-weight: 800;
        color: #111;
    }

    .dmi-inquiry-head p {
        margin: 0;
        font-size: 18px;
        line-height: 1.7;
        color: #555;
    }

    .dmi-inquiry-grid {
        display: grid;
        grid-template-columns: 420px minmax(0, 1fr);
        gap: 70px;
    }

    .dmi-inquiry-info {
        padding: 42px 38px;
        border-radius: 10px;
        background: #06162b;
        color: #fff;
    }

    .dmi-inquiry-info h3 {
        margin: 0 0 34px;
        font-size: 28px;
        font-weight: 700;
    }

    .dmi-inquiry-info-list {
        display: grid;
        gap: 24px;
    }

    .dmi-inquiry-info-list div {
        padding-bottom: 22px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .dmi-inquiry-info-list strong {
        display: block;
        margin-bottom: 8px;
        font-size: 15px;
        color: #8fb6e8;
    }

    .dmi-inquiry-info-list p {
        margin: 0;
        font-size: 16px;
        line-height: 1.55;
        color: #fff;
    }

    .dmi-inquiry-note {
        margin: 34px 0 0;
        padding: 20px;
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.08);
        font-size: 15px;
        line-height: 1.65;
        color: rgba(255, 255, 255, 0.82);
    }

    .dmi-inquiry-form {
        border-top: 2px solid #111;
    }

    .dmi-form-row {
        padding: 22px 0;
        border-bottom: 1px solid #e1e5ec;
    }

    .dmi-form-row label {
        display: block;
        margin-bottom: 10px;
        font-size: 15px;
        font-weight: 700;
        color: #111;
    }

    .dmi-form-row label strong {
        color: #0a4bc0;
    }

    .dmi-form-row input,
    .dmi-form-row select,
    .dmi-form-row textarea {
        width: 100%;
        min-height: 52px;
        padding: 0 16px;
        border: 1px solid #d8dde6;
        border-radius: 4px;
        background: #fff;
        font-size: 15px;
        color: #111;
        box-sizing: border-box;
    }

    .dmi-form-row textarea {
        min-height: 180px;
        padding: 16px;
        line-height: 1.7;
        resize: vertical;
    }

    .dmi-form-row--half {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .dmi-agree {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 22px 0 0;
        font-size: 15px;
        color: #333;
    }

    .dmi-agree input {
        width: 16px;
        height: 16px;
    }

    .dmi-form-submit {
        display: flex;
        justify-content: center;
        margin-top: 42px;
    }

    .dmi-form-submit button {
        min-width: 180px;
        height: 54px;
        padding: 0 30px;
        border: 0;
        border-radius: 4px;
        background: #07346b;
        font-size: 16px;
        font-weight: 700;
        color: #fff;
        cursor: pointer;
    }

    .dmi-form-submit button:hover {
        background: #052653;
    }

    .dmi-hp {
        position: absolute;
        left: -9999px;
        width: 1px;
        height: 1px;
        opacity: 0;
    }

    @media (max-width: 1024px) {
        .dmi-inquiry-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .dmi-inquiry-head h2 {
            font-size: 34px;
        }
    }

    @media (max-width: 640px) {
        .dmi-inquiry-page {
            padding: 60px 20px 90px;
        }

        .dmi-inquiry-head h2 {
            font-size: 28px;
        }

        .dmi-inquiry-head p {
            font-size: 16px;
        }

        .dmi-form-row--half {
            grid-template-columns: 1fr;
        }

        .dmi-inquiry-info {
            padding: 32px 24px;
        }
    }

    .dmi-form-submit {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-top: 42px;
    }

    .dmi-form-submit button,
    .dmi-form-admin-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 180px;
        height: 54px;
        padding: 0 30px;
        border-radius: 4px;
        font-size: 16px;
        font-weight: 700;
        text-decoration: none;
        box-sizing: border-box;
    }

    .dmi-form-submit button {
        border: 0;
        background: #07346b;
        color: #fff;
        cursor: pointer;
    }

    .dmi-form-submit button:hover {
        background: #052653;
    }

    .dmi-form-admin-btn {
        border: 1px solid #07346b;
        background: #fff;
        color: #07346b;
    }

    .dmi-form-admin-btn:hover {
        background: #f2f6fb;
        color: #07346b;
    }

    /* ==============================
   Mobile Main Hero Final Override
============================== */

    .dmi-header.main_h {
        height: 88px !important;
        background: rgba(4, 15, 30, 0.72) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
        backdrop-filter: blur(14px) !important;
    }

    .dmi-header.main_h .dmi-header-inner {
        height: 88px !important;
    }

    .dmi-header.main_h .dmi-logo {
        width: 112px !important;
    }

    .dmi-header.main_h .dmi-mobile-btn {
        width: 44px !important;
        height: 44px !important;
    }

    .dmi-header.main_h .dmi-mobile-btn span {
        background: #fff !important;
    }

    .dmi-hero {
        min-height: auto !important;
        height: auto !important;
        overflow: hidden !important;
    }

    .dmi-hero-inner {
        display: block !important;
        min-height: auto !important;
        padding-top: 148px !important;
        padding-bottom: 78px !important;
    }

    .dmi-hero-label {
        display: none !important;
    }

    .dmi-hero-text {
        width: 100% !important;
        max-width: none !important;
    }

    .dmi-hero h1 {
        margin: 0 !important;
        font-size: 34px !important;
        line-height: 1.18 !important;
        letter-spacing: -0.075em !important;
        font-weight: 700 !important;
    }

    .dmi-hero-desc {
        max-width: none !important;
        margin-top: 22px !important;
        font-size: 15px !important;
        line-height: 1.75 !important;
        color: rgba(255, 255, 255, 0.82) !important;
    }

    .dmi-hero-buttons {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
        width: auto !important;
        max-width: none !important;
        margin-top: 30px !important;
    }

    .dmi-hero-buttons .dmi-btn {
        width: auto !important;
        min-width: 132px !important;
        height: 46px !important;
        padding: 0 18px !important;
        font-size: 14px !important;
        font-weight: 800 !important;
        white-space: nowrap !important;
    }

    .dmi-hero-buttons .dmi-btn::after {
        margin-left: 8px !important;
        font-size: 16px !important;
    }

    .dmi-hero-buttons .dmi-btn-light {
        background: rgba(255, 255, 255, 0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.42) !important;
        color: #fff !important;
    }

    .dmi-hero-points {
        width: 100% !important;
        max-width: none !important;
        margin-top: 62px !important;
        padding-left: 0 !important;
        border-left: 0 !important;
    }

    .dmi-hero-point {
        display: grid !important;
        grid-template-columns: 42px 1fr !important;
        gap: 12px !important;
        padding: 22px 0 !important;
    }

    .dmi-hero-point + .dmi-hero-point {
        border-top: 1px solid rgba(255, 255, 255, 0.16) !important;
    }

    .dmi-hero-point strong {
        font-size: 22px !important;
        line-height: 1.2 !important;
    }

    .dmi-hero-point h3 {
        margin: 0 !important;
        font-size: 17px !important;
        line-height: 1.4 !important;
    }

    .dmi-hero-point p {
        margin-top: 8px !important;
        font-size: 13px !important;
        line-height: 1.65 !important;
    }

    .dmi-scroll {
        display: none !important;
    }

    .dmi-hero-bg {
        background-position: center center !important;
        transform: none !important;
    }

    @media screen and (max-width: 360px) {
        .dmi-hero-buttons {
            flex-direction: column !important;
            align-items: flex-start !important;
        }
    }


    /* ==============================
       Mobile About Icons 2x2
    ============================== */

    .dmi-about-icons {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        border: 1px solid var(--dmi-line) !important;
    }

    .dmi-about-icons div {
        min-height: 145px !important;
        padding: 28px 16px 24px !important;
        border-right: 1px solid var(--dmi-line) !important;
        border-bottom: 1px solid var(--dmi-line) !important;
    }

    .dmi-about-icons div:nth-child(2n) {
        border-right: 0 !important;
    }

    .dmi-about-icons div:nth-child(n+3) {
        border-bottom: 0 !important;
    }

    .dmi-about-icons i {
        margin-bottom: 16px !important;
        font-size: 30px !important;
    }

    .dmi-about-icons strong {
        font-size: 15px !important;
        line-height: 1.35 !important;
    }

    .dmi-about-icons span {
        margin-top: 8px !important;
        font-size: 13px !important;
        line-height: 1.5 !important;
    }


    /* ==============================
       Mobile Menu Final Fix
    ============================== */

    .dmi-mobile-menu {
        position: fixed !important;
        inset: 0 !important;
        z-index: 9999 !important;
        pointer-events: none !important;
    }

    .dmi-mobile-menu.is-active {
        pointer-events: auto !important;
    }

    .dmi-mobile-dim {
        position: absolute !important;
        inset: 0 !important;
        background: rgba(0, 0, 0, 0.62) !important;
        opacity: 0 !important;
        transition: opacity 0.25s ease !important;
    }

    .dmi-mobile-menu.is-active .dmi-mobile-dim {
        opacity: 1 !important;
    }

    .dmi-mobile-panel {
        position: absolute !important;
        right: 0 !important;
        top: 0 !important;
        width: min(420px, 88vw) !important;
        height: 100vh !important;
        background: #071525 !important;
        color: #fff !important;
        overflow-y: auto !important;
        transform: translateX(100%) !important;
        transition: transform 0.28s ease !important;
    }

    .dmi-mobile-menu.is-active .dmi-mobile-panel {
        transform: translateX(0) !important;
    }

    .dmi-mobile-head {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        height: 88px !important;
        padding: 0 24px !important;
        background: #071525 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    }

    .dmi-mobile-logo {
        display: flex !important;
        align-items: center !important;
        width: 128px !important;
        height: auto !important;
    }

    .dmi-mobile-logo img {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }

    .dmi-mobile-close {
        position: relative !important;
        width: 44px !important;
        height: 44px !important;
        border: 0 !important;
        background: transparent !important;
        cursor: pointer !important;
    }

    .dmi-mobile-close span {
        position: absolute !important;
        left: 10px !important;
        top: 21px !important;
        width: 24px !important;
        height: 2px !important;
        background: #fff !important;
    }

    .dmi-mobile-close span:first-child {
        transform: rotate(45deg) !important;
    }

    .dmi-mobile-close span:last-child {
        transform: rotate(-45deg) !important;
    }

    .dmi-mobile-nav {
        background: #071525 !important;
    }

    .dmi-mobile-nav > ul {
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
        background: #071525 !important;
    }

    .dmi-mobile-nav > ul > li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    }

    .dmi-mobile-nav button {
        position: relative !important;
        display: block !important;
        width: 100% !important;
        padding: 22px 24px !important;
        border: 0 !important;
        background: #071525 !important;
        color: #fff !important;
        font-size: 20px !important;
        line-height: 1.35 !important;
        font-weight: 800 !important;
        letter-spacing: -0.05em !important;
        text-align: left !important;
        cursor: pointer !important;
    }

    .dmi-mobile-nav button::after {
        content: "+" !important;
        position: absolute !important;
        right: 24px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        font-size: 24px !important;
        font-weight: 300 !important;
        color: #fff !important;
    }

    .dmi-mobile-nav li.is-open > button::after {
        content: "−" !important;
    }

    .dmi-mobile-nav ul ul {
        display: none !important;
        margin: 0 !important;
        padding: 0 24px 20px !important;
        list-style: none !important;
        background: #071525 !important;
    }

    .dmi-mobile-nav li.is-open ul {
        display: block !important;
    }

    .dmi-mobile-nav ul ul li + li {
        margin-top: 8px !important;
    }

    .dmi-mobile-nav ul ul a {
        display: block !important;
        padding: 8px 0 !important;
        color: rgba(255, 255, 255, 0.72) !important;
        font-size: 15px !important;
        line-height: 1.45 !important;
        font-weight: 500 !important;
    }

    body.is-mobile-menu-open {
        overflow: hidden !important;
    }

    .dmi-footer-menu {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 30px 24px !important;
    }

    .dmi-footer-menu-main {
        margin-bottom: 12px !important;
        font-size: 14px !important;
    }

    .dmi-footer-menu-group li a {
        font-size: 13px !important;
    }
    /* ==============================
   Mobile Footer Final Fix
============================== */

    .dmi-footer {
        padding: 64px 0 38px !important;
        background: #062b61 !important;
    }

    .dmi-footer .inner {
        padding: 0 24px !important;
    }

    /* PC flex 해제 */
    .dmi-footer-top {
        display: block !important;
    }

    /* 로고 영역 */
    .dmi-footer-logo {
        width: 126px !important;
    }

    .dmi-footer-desc {
        max-width: 260px !important;
        margin-top: 22px !important;
        font-size: 15px !important;
        line-height: 1.75 !important;
        color: rgba(255, 255, 255, 0.78) !important;
    }

    /* 메뉴는 로고 아래 2열 */
    .dmi-footer-menu {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 28px 34px !important;
        margin-top: 42px !important;
    }

    .dmi-footer-menu-group {
        min-width: 0 !important;
    }

    .dmi-footer-menu-main {
        display: block !important;
        margin-bottom: 12px !important;
        font-size: 15px !important;
        line-height: 1.4 !important;
        font-weight: 800 !important;
        color: #fff !important;
    }

    .dmi-footer-menu-group ul {
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }

    .dmi-footer-menu-group li + li {
        margin-top: 9px !important;
    }

    .dmi-footer-menu-group li a {
        display: inline-block !important;
        font-size: 13px !important;
        line-height: 1.55 !important;
        font-weight: 500 !important;
        color: rgba(255, 255, 255, 0.66) !important;
    }

    .dmi-footer-menu-group li a:hover {
        color: #fff !important;
    }

    /* 회사 정보 */
    .dmi-footer-info {
        margin-top: 42px !important;
        padding-top: 34px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.18) !important;
    }

    .dmi-footer-info p {
        margin: 8px 0 !important;
        font-size: 13px !important;
        line-height: 1.75 !important;
        color: rgba(255, 255, 255, 0.72) !important;
        word-break: keep-all !important;
    }

    .dmi-footer-info strong {
        display: block !important;
        margin-bottom: 12px !important;
        font-size: 16px !important;
        line-height: 1.45 !important;
        color: #fff !important;
    }

    /* Tel / Fax / E-mail 줄바꿈 안정화 */
    .dmi-footer-info p br {
        display: none !important;
    }

    .dmi-footer-bottom {
        margin-top: 34px !important;
    }

    .dmi-footer-bottom p {
        font-size: 11px !important;
        line-height: 1.6 !important;
        color: rgba(255, 255, 255, 0.42) !important;
    }

    /* 390px 이하에서는 메뉴 간격 조금 축소 */
    @media screen and (max-width: 390px) {
        .dmi-footer .inner {
            padding: 0 22px !important;
        }

        .dmi-footer-menu {
            gap: 26px 24px !important;
        }

        .dmi-footer-menu-main {
            font-size: 14px !important;
        }

        .dmi-footer-menu-group li a {
            font-size: 13px !important;
        }
    }

} /* @media screen and (max-width: 768px) */