.company-visual {
    padding: 0;
    margin: 0;
    background: #fff;
    overflow: hidden;
}

.company-visual-inner {
    display: flex;
    height: 80%;
}

.visual-left {
    width: 50%;
    overflow: hidden;
}

.visual-left img {
    width: 100%;
    object-fit: cover;
    display: block;
    height: 500px;
}

.visual-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
    text-align: center;
}

.orange-title {
    color: #FF9720;
    font-weight: 700;
    font-size: 23px;
    line-height: 1.4;
    margin-bottom: 12px;
}

.orange-title .main-title {
    color: #172255;
    font-size: 34px;
    font-weight: 800;
    display: block;
    margin-top: 4px;
}

.visual-desc {
    font-size: 15px;
    color: #444;
    margin-top: 30px;
    line-height: 1.8;
}

.company-goals {
    padding: 0;
    background: #fff;
    margin: 0;
}

.company-goals h2 {
    font-size: 32px;
    color: #1C2341;
    font-weight: 900;
    letter-spacing: 0.02em;
    margin: 0 0 -35px 0;
    padding: 100px 0 0 17vw;
    text-align: left;
}


.goals-wrapper {
    display: flex;
    width: 100%;
}

.goals-col {
    flex: 1 1 0;
    justify-content: center;
    padding: 70px 0;
}

.goals-col-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #F8F8F7;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    margin-top: 50px;
    gap: 100px;
}

.goals-col-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #F8F8F7;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    margin-bottom: 50px;
    gap: 100px;
}

.goal-group {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 40px;
    width: 30%;
}

.goal-icon img {
    width: 55px;
}

.goal-text {
    text-align: center;
}

.goal-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.goal-desc {
    font-size: 14px;
    color: #555;
    font-weight: 400;
    line-height: 1.3;
}

.company-history {
    padding: 80px 20px;
}

.company-history h2 {
    font-size: 28px;
    color: #172255;
    font-weight: 900;
    text-align: center;
    margin-bottom: 28px;
    letter-spacing: 0.01em;
}

.history-table-wrap {
    max-width: 700px;
    margin: 0 auto;
}

.history-table {
    width: 100%;
    border-top: 2px solid #788088;
    border-bottom: 2px solid #788088;
}

.history-table tr {
    border-bottom: 1px solid #DFDFDF;
}

.history-table tr:last-child {
    border-bottom: none;
}

.history-table tr:nth-child(n+6) {
    border-bottom: none;
}

.history-table th {
    color: #17305e;
    font-weight: 800;
    font-size: 25px;
    letter-spacing: 0.03em;
    text-align: center;
    padding: 0 20px 0 30px;
    vertical-align: middle;
    font-family: inherit;
    width: 80px;
    border: none;
}

.history-table td {
    color: #222;
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    padding: 20px;
    vertical-align: middle;
    border: none;
    background: transparent;
    font-family: inherit;
}


.history-table td.history {
    color: #222;
    font-size: 15px;
    font-weight: 400;
    text-align: left;
    padding: 10px 20px;
    vertical-align: middle;
    border: none;
    background: transparent;
    font-family: inherit;
}

.history-table td:first-child {
    width: 48px;
    color: #848A9D;
    font-size: 16px;
    font-weight: 500;
}

.company-certs {
    background: #788088;
    padding: 80px 20px;
}

.company-certs h2 {
    color: #fff;
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 0.01em;
    margin-bottom: 38px;
    text-transform: uppercase;
}

.cert-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 55px 110px;
    /* 행간 55px, 열간 110px */
    justify-content: center;
    align-items: start;
    max-width: 670px;
    margin: 0 auto;
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.cert-item .cert-img {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 5px 5px 40px 5px;
    width: 240px;
    padding: 20px;
    box-shadow: 0 4px 18px rgba(50, 50, 70, 0.10);
}

.cert-item img {
    width: 100%;
}

.cert-label {
    font-size: 17px;
    color: #fff;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 6px;
    text-align: center;
}

.cert-desc {
    font-size: 13px;
    color: #fff;
    font-weight: 400;
    text-align: center;
    line-height: 1;
}

.company-print {
    position: relative;
    padding: 100px 20px;
    overflow: hidden;
    height: 710px;
}

.company-print::before {
    content: "";
    position: absolute;
    left: -20px;
    right: -20px;
    height: 450px;
    background: #0E295A;
    transform: skewY(6deg);
    z-index: 0;
}

.print-bg {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

.print-card {
    width: 400px;
    display: flex;
    flex-direction: column;
    position: relative;
    margin-top: 10px;
}

.print-card .print-title {
    width: 70%;
    background: #fff;
    color: #070F3B;
    font-size: 18px;
    font-weight: 700;
    border-radius: 0 20px 0 0;
    padding: 10px 20px 10px 20px;
    min-width: 140px;
    box-shadow: 0 1px 6px rgba(43, 62, 99, 0.07);
}

.print-card img {
    width: 100%;
    height: 220px;
    border-radius: 0 30px;
    margin-bottom: 15px;
}

.print-card.print-digital {
    margin-top: 100px;
}

.print-desc {
    font-size: 14px;
    color: #fff;
    background: transparent;
    margin-top: 3px;
    word-break: keep-all;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.10);
    text-align: right;
}




/************************************************************************
* 모바일 버전 출력 *
************************************************************************/
@media (max-width: 900px) {
    .company-visual-inner {
        flex-direction: column;
        height: auto;
    }

    .visual-left,
    .visual-right {
        width: 100%;
        min-width: 0;
        height: auto;
    }

    .visual-left img {
        height: 60%;
        /* 이미지 비율 유지 */
        min-height: 220px;
        max-height: 340px;
    }

    .visual-right {
        padding: 30px 20px;
        height: auto;
    }

    .goals-wrapper {
        flex-direction: column;
        min-height: 0;
    }

    .goal-group {
        gap: 25px;
    }

    .goals-col .company-history {
        padding: 50px 0 40px 0;
    }

    .company-history {
        padding: 20px 20px 70px 20px;
    }

    .company-history h2 {
        font-size: 25px;
        font-weight: 700;
    }

    .history-table-wrap {
        max-width: 100%;
    }

    .history-table th {
        font-size: 18px;
        padding: 11px 5px 11px 0;
    }

    .history-table td {
        font-size: 12px;
        padding: 11px 4px;
    }

    .company-print {
        padding: 30px 20px 60px 20px;
        height: 600px;
    }

    .company-certs {
        padding: 50px 20px 60px 20px;
    }

    .company-certs h2 {
        color: #fff;
        text-align: center;
        font-size: 25px;
        font-weight: 700;
        margin-bottom: 30px;
    }

    .cert-item .cert-img {
        width: 80%;
    }

    .print-card {
        margin-top: 32px;
    }

    .print-card.print-digital {
        margin-top: 135px;
    }

    .print-card img {
        height: 150px;
    }

    .print-desc {
        font-size: 12px;
        margin-top: 0;
    }

    .print-machine {
        background: #fff;
        border-radius: 13px;
        width: 340px;
        padding: 18px 18px 12px 18px;
        box-shadow: 0 4px 18px rgba(50, 50, 70, 0.08);
    }

    .print-title {
        font-size: 15px;
        color: #223366;
        font-weight: 700;
    }

    .print-bg {
        gap: 40px;
    }

    .cert-item {
        width: 100%;
    }

    .cert-list {
        grid-gap: 50px 10px;
    }

    .company-goals h2 {
        padding: 25px 0 0 0;
        text-align: center;
        font-size: 25px;
        font-weight: 700;
    }

    .goals-col {
        padding: 30px 20px;
    }

    .goals-col-left,
    .goals-col-right {
        gap: 35px;
    }

    .print-inner {
        flex-direction: column;
        align-items: center;
        gap: 28px;
        max-width: 100%;
    }

    .print-card-title {
        margin: 0 0 12px -5px;
    }
}

@media (max-width: 600px) {
    .company-print {
        background-color: #0E295A;
        height: 830px;
    }

    .company-print::before {
        content: unset;
    }

    .visual-desc {
        font-size: 13px;
        line-height: 1.3;
        margin-top: 5px;
    }

    .cert-item .cert-img {
        padding: 15px;
    }

    .print-bg {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .print-card {
        width: 90%;
        margin-top: 40px;
    }

    .print-card img {
        height: 200px;
    }

    .print-card.print-digital {
        margin-top: 50px;
    }

}