/* sub1-1 */
.overview-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 60px 100px 100px;
}

.overview-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.overview-list::before {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #6b8fd7 0%, rgba(107, 143, 215, 0) 100%);
}

.overview-list li {
    display: flex;
    padding: 30px 10px;
    align-items: flex-start;
    position: relative;
}

.overview-list li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #6b8fd7 0%, rgba(107, 143, 215, 0) 100%);
}

.overview-list .ov-title {
    width: 250px;
    font-size: 22px;
    font-weight: 700;
    color: #2b5ce6;
    flex-shrink: 0;
    padding-top: 2px;
}

.overview-list .ov-desc {
    flex-grow: 1;
    font-size: 20px;
    font-weight: 500;
    color: #222;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 960px) {
    .overview-title {
        font-size: 20px;
        padding: 12px 40px;
    }

    .overview-list .ov-title {
        font-size: 20px;
        width: 200px;
    }

    .overview-list .ov-desc {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .overview-container {
        padding: 40px 20px 80px;
    }

    .overview-list li {
        flex-direction: column;
        padding: 20px 5px;
    }

    .overview-list .ov-title {
        width: 100%;
        margin-bottom: 10px;
        font-size: 18px;
    }

    .overview-list .ov-desc {
        font-size: 16px;
    }
}

/* sub1-2 */
.greeting-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    max-width: 1500px;
    margin: 0 auto;
    padding: 100px 20px;
}

.greeting-text {
    flex: 1;
    max-width: 800px;
}

.greeting-text h2 {
    font-size: 50px;
    font-weight: 800;
    color: #1f448e;
    line-height: 1.2;
    margin-bottom: 50px;
    letter-spacing: -2px;
    font-family: 'Pretendard', sans-serif;
}

.greeting-text h2 span {
    display: block;
}

.greeting-text .desc {
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.3;
    color: #000;
    font-weight: 300;
    font-family: 'Pretendard', sans-serif;

}

.greeting-text .desc p {
    margin-bottom: 30px;
    word-break: keep-all;
}

.greeting-text .desc p:first-letter {
    font-size: 30px;
    font-weight: 700;
}

.greeting-text .desc strong {
    font-weight: 700;
}

.greeting-text .ceo-name {
    margin-top: 50px;
}


.greeting-text .ceo-name span {
    margin-left: 20px;
    font-size: clamp(32px, 2vw, 48px);
    font-weight: 700;
}

.greeting-image {
    flex: 0 0 50%;
    max-width: 656px;
    position: relative;
    padding-left: 45px;
}

.greeting-image img {
    width: 100%;
    height: auto;
    display: block;

}


.vision-wrap {
    max-width: 1500px;
    margin: 0 auto;
    padding: 60px 20px 100px;
}

.vision-banner {
    width: 100%;
    height: 300px;
    border-radius: 23px;
    overflow: hidden;
    position: relative;
    margin-bottom: 80px;
    background-color: #000;
}

.vision-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.vision-banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 100%;
    padding: 0 20px;
}

.vision-banner-text h2 {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: -0.6px;
    font-family: 'Pretendard', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.vision-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.vision-section:last-child {
    margin-bottom: 0;
}

.vision-section.reverse {
    flex-direction: row-reverse;
}

.vision-text {
    flex: 1;
}

.vision-text h3 {
    font-size: 50px;
    font-weight: 800;
    color: #000;
    line-height: 1.3;
    margin-bottom: 30px;
    letter-spacing: -1px;
    font-family: 'Pretendard', sans-serif;
}

.vision-text .desc {
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.5;
    color: #000;
    font-weight: 400;
    font-family: 'Pretendard', sans-serif;
    word-break: keep-all;
}

.vision-text .desc p {
    margin-bottom: 20px;
}

.vision-text .desc strong {
    font-weight: 700;
}

.vision-image {
    flex: 0 0 48%;
    max-width: 760px;
}

.vision-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1200px) {
    .greeting-container {
        padding: 80px 20px;
    }

    .greeting-text h2 {
        font-size: 40px;
    }

    .vision-text h3 {
        font-size: 32px;
    }
}

@media (max-width: 960px) {
    .greeting-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 60px;
        padding: 60px 20px;
    }

    .greeting-image {
        flex: auto;
        width: 100%;
        max-width: 100%;
        padding-left: 0;
    }

    .greeting-text {
        max-width: 100%;
    }

    .greeting-text h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .greeting-text .desc {
        text-align: justify;
    }


    .vision-wrap {
        padding: 40px 20px 80px;
    }

    .vision-banner {
        height: 200px;
        margin-bottom: 50px;
    }

    .vision-banner-text h2 {
        font-size: 20px;
    }

    .vision-section {
        flex-direction: column;

        gap: 40px;
        margin-bottom: 60px;
    }

    .vision-section.reverse {
        flex-direction: column;
    }

    .vision-image {
        max-width: 100%;
        width: 100%;
    }

    .vision-text h3 {
        font-size: 28px;
        text-align: center;
        margin-bottom: 20px;
    }

    .vision-text .desc {
        text-align: justify;
    }
}


.history-wrap {
    max-width: 1500px;
    margin: 0 auto;
    padding: 60px 20px 100px;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

/* Scroll Progress Sidebar */
.history-progress {
    position: sticky;
    top: 150px;
    flex: 0 0 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.history-progress::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: #e1e1e1;
    z-index: 0;
}

.progress-item {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 5px 0;
    font-size: 16px;
    font-weight: 500;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.progress-item::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e1e1e1;
    transition: all 0.3s ease;
}

.progress-item.active {
    color: #1f448e;
    font-weight: 700;
    font-size: 18px;
    transform: scale(1.1);
}

.progress-item.active::before {
    background: #1f448e;
    box-shadow: 0 0 0 4px rgba(31, 68, 142, 0.2);
}

.history-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.history-item {
    display: flex;
    align-items: center;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    gap: 80px;
    transition: all 0.4s ease;
}

.history-item.highlight {
    border-color: #1f448e;
    background: linear-gradient(90deg, rgba(29, 56, 175, 0.18) 0%, rgba(73, 102, 231, 0.09) 100%);
    box-shadow: 0 4px 10px rgba(0, 212, 255, 0.05);
}

.history-year {
    flex: 0 0 120px;
    font-size: 40px;
    font-weight: 800;
    color: #000;
    transition: all 0.4s ease;
    padding: 15px 20px;
    margin-left: -20px;
    border-radius: 12px;
}

.history-content {
    flex: 1;
    display: flex;
    width: 100%;
}

.history-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.history-content ul li {
    font-size: 20px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
    transition: all 0.4s ease;
}

.history-content ul li span {
    transition: all 0.4s ease;
}

.history-item.highlight .history-content ul li {
    font-weight: 700;
    color: #000;
}

.history-content ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
}

@media (max-width: 960px) {
    .history-wrap {
        flex-direction: column;
        padding: 40px 20px 80px;
    }

    .history-progress {
        position: relative;
        top: 0;
        flex: none;
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 20px;
    }

    .history-progress::before {
        display: none;
    }

    .progress-item {
        padding: 5px 10px;
    }

    .progress-item::before {
        display: none;
    }

    .progress-item.active {
        background: #1f448e;
        color: #fff;
        border-radius: 20px;
    }

    .history-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 30px;
    }

    .history-year {
        font-size: 32px;
        flex: auto;
        margin-left: 0;
    }

    .history-content {
        flex-direction: column;
        gap: 20px;
    }

    .history-content ul li {
        font-size: 18px;
    }
}

/* sub1_4 organization */
.organization-wrap {
    max-width: 1500px;
    margin: 0 auto;
    padding: 60px 20px 100px;
}

.org-tree {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
}

.org-row {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
}

.org-connector-vertical {
    width: 1px;
    height: 60px;
    background: #174082;
    margin: 0 auto;
    position: relative;
    border-radius: 3px;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2) inset;
}

.org-connector-vertical-small {
    width: 1px;
    height: 40px;
    background: #174082;
    margin: 0 auto;
    border-radius: 3px;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2) inset;
}

.org-side-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    margin-left: 160px;
}

.org-side-wrapper::before {
    content: '';
    display: block;
    width: 120px;
    height: 1px;
    background: #174082;
    border-radius: 3px;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2) inset;
}

.org-box {
    border-radius: 12px;
    text-align: center;
    position: relative;
    background: #fff;
    margin: 0 auto;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.15);
}

.org-head .box-title,
.org-title-box .box-title,
.org-side .box-title {
    background: linear-gradient(to bottom, #2b61a3, #153974);
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #6b8db7;
    border-radius: 10px;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.4), 0 4px 6px rgba(0, 0, 0, 0.2);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

.org-head .box-title {
    width: 320px;
    min-height: 80px;
    font-size: 28px;
    letter-spacing: 1px;
}

.org-head.gm .box-title {
    width: 320px;
    font-size: 20px;
    padding: 12px;
}

.org-side {
    width: 380px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 2px solid #153974;
}

.org-side .box-title {
    width: 100%;
    min-height: 60px;
    font-size: 18px;
    border: none;
    border-radius: 0;
    border-bottom: 2px solid #153974;
    box-shadow: none;
    padding: 10px;
    text-shadow: none;
}

.org-side .box-content {
    font-size: 16px;
    color: #222;
    padding: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.org-row-depts {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    padding-top: 40px;
    position: relative;
    gap: 0;
}

.org-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 0 8px;
}

.org-row-depts::before {
    content: '';
    position: absolute;
    top: 0;
    left: calc(100% / 12);
    right: calc(100% / 12);
    height: 1px;
    background-color: #174082;
    border-radius: 3px;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2) inset;
}

.org-col::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 40px;
    background-color: #174082;
    border-radius: 3px;
}

.org-col .org-title-box {
    width: 100%;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

/* Connecting line from blue title to white list */
.org-col .org-title-box::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 15px;
    background-color: #174082;
    z-index: 1;
}

.org-col .org-title-box .box-title {
    width: 100%;
    min-height: 110px;
    font-size: 17px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.4), 0 4px 6px rgba(0, 0, 0, 0.2);
}

.org-list-box {
    width: 100%;
    flex: 1;
    border: 2px solid #153974;
    border-radius: 12px;
    background: #fff;
    padding: 20px 15px;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.org-list-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.org-list-box ul li {
    font-size: 15px;
    line-height: 1.4;
    color: #222;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
    font-weight: 600;
    word-break: keep-all;
}

.org-list-box ul li:last-child {
    margin-bottom: 0;
}

.org-list-box ul li::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 2px;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle at 30% 30%, #4a7bbc, #153974);
    border-radius: 50%;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Base Responsive */
@media (max-width: 1400px) {
    .org-side-wrapper::before {
        width: 80px;
    }
}

@media (max-width: 1200px) {
    .org-side {
        width: 320px;
    }

    .org-col .org-title-box .box-title {
        font-size: 16px;
    }

    .org-list-box ul li {
        font-size: 14px;
        padding-left: 15px;
    }

    .org-list-box ul li::before {
        left: 0;
    }
}

@media (max-width: 1024px) {
    .org-tree {
        padding: 0;
    }

    .org-row-depts {
        flex-wrap: wrap;
        padding-top: 0;
        gap: 30px 0;
    }

    .org-connector-vertical-small {
        display: none;
    }

    .org-row-depts::before {
        display: none;
        /* Removed the horiz line for wrapped cols */
    }

    .org-col {
        flex: 0 0 33.333%;
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .org-col::before {
        display: none;
    }

    .org-connector-vertical {
        height: auto;
        padding: 20px 0;
        background: transparent;
        box-shadow: none;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .org-connector-vertical::before {
        content: '';
        display: block;
        width: 1px;
        height: 30px;
        background: #174082;
    }

    .org-connector-vertical::after {
        content: '';
        display: block;
        width: 1px;
        height: 30px;
        background: #174082;
    }

    .org-row.gm-row {
        flex-direction: column;
        align-items: center;
    }

    .org-side-wrapper {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        display: flex;
        justify-content: center;
        width: 100%;
        margin: 0;
        padding-top: 30px;
    }

    .org-side-wrapper::before {
        content: '';
        display: block;
        width: 1px;
        height: 30px;
        background: #174082;
        position: absolute;
        top: 0;
        left: 50%;
        box-shadow: none;
    }
}

@media (max-width: 768px) {
    .org-col {
        flex: 0 0 50%;
    }
}

@media (max-width: 480px) {
    .org-col {
        flex: 0 0 100%;
        padding: 0;
    }

    .org-head .box-title {
        font-size: 24px;
        min-height: 70px;
    }

    .org-head.gm .box-title {
        font-size: 18px;
    }

    .org-side .box-title {
        font-size: 16px;
        min-height: 50px;
    }

    .org-side .box-content {
        font-size: 14px;
        padding: 12px;
    }

    .org-col .org-title-box .box-title {
        font-size: 15px;
        min-height: 60px;
    }

    .org-list-box ul li {
        font-size: 14px;
    }

    .org-head .box-title,
    .org-head.gm .box-title {
        width: 100%;
        max-width: 300px;
    }

    .org-side {
        width: 100%;
        max-width: 300px;
    }
}

.customer-wrap {
    max-width: 1500px;
    margin: 0 auto;
    padding: 60px 20px 100px;
    display: flex;
    flex-direction: column;
    gap: 100px;
}


.location-wrap {
    max-width: 1500px;
    margin: 0 auto;
    padding: 60px 20px 100px;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.location-item {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.location-title {
    color: #000;
    font-size: 30px;
    font-weight: 700;
    position: relative;
    padding-left: 20px;
}

.location-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #1f448e;
    border-radius: 50%;
}

.location-info {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 16px;
    padding: 20px 40px;
    gap: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.info-group {
    display: flex;
    align-items: center;
    gap: 22px;
    flex: 1;
}

.info-icon {
    width: 80px;
    height: 80px;
    background-color: #f0f4fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f448e;
}

.info-icon.icon-address {
    background: #f0f4fa url('../img/sub/sub1_6_icon_01.png') no-repeat center;
}

.info-icon.icon-phone {
    background: #f0f4fa url('../img/sub/sub1_6_icon_02.png') no-repeat center;
}

.info-label {
    font-weight: 700;
    color: #000;
    font-size: 18px;
}

.info-value {
    color: #333;
    font-size: 18px;
}

.info-divider {
    width: 1px;
    height: 20px;
    background: #e1e1e1;
}

.location-visual {
    display: grid;
    grid-template-columns: 1fr auto;
}

.visual-map,
.visual-photo {
    height: 617px;
    overflow: hidden;
    background: #f5f5f5;
}

.visual-map .img-box,
.visual-photo .img-box {
    width: 100%;
    height: 100%;
}

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


.root_daum_roughmap {
    width: 100% !important;
    height: 100% !important;
}

.root_daum_roughmap .wrap_map {
    width: 100% !important;
    height: 100% !important;
}


@media (max-width: 1024px) {
    .location-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .info-divider {
        display: none;
    }

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


.cert-wrap {
    max-width: 1500px;
    margin: 0 auto;
    padding: 60px 20px 100px;
}

.cert-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.cert-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cert-img-box {
    width: 100%;
    background: #fff;
    border-radius: 11px;
    box-shadow: 0 0 11px rgba(0, 70, 82, 0.2);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.cert-img-box:hover {
    transform: translateY(-5px);
}

.cert-img-box img {
    width: 100%;
    height: auto;
    display: block;
}

.cert-title-box {
    width: 100%;
    background: var(--Linear, linear-gradient(96deg, var(--Color, #38B2D1) -54.57%, #1F448E 96.32%));
    padding: 15px 10px;
    text-align: center;
    border-radius: 7.047px;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-title-box span {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    display: block;
    word-break: keep-all;
    letter-spacing: -0.8px;
}


@media (max-width: 1200px) {
    .cert-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .cert-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .cert-list {
        grid-template-columns: 1fr;
    }
}


.core-values-wrap {
    max-width: 1500px;
    margin: 0 auto;
    padding: clamp(50px, 5vw, 100px) 20px clamp(50px, 5vw, 100px);
}

.core-values-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    width: 100%;
}

.core-values-row {
    display: none;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 56px;
    flex: 0 1 calc(100% / 3 - 60px);
}

.value-circle {
    width: 360px;
    height: 360px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;

}

.value-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.value-item:hover .value-circle img {
    transform: scale(1.1);
}

.value-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
}

.value-overlay span {
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    font-family: 'Montserrat', 'Pretendard', sans-serif;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.value-text {
    display: flex;
    flex-direction: column;
    gap: 34px;
    align-items: center;
    width: 100%;
}

.value-title {
    color: #172d59;
    font-size: 50px;
    font-weight: 900;
    letter-spacing: -2px;
    margin: 0;
    line-height: 36px;
}

.value-desc {
    color: #000;
    font-size: 22px;
    line-height: 34px;
    word-break: keep-all;
    font-weight: 400;
    letter-spacing: -0.88px;
}


@media (max-width: 1200px) {
    .value-circle {
        width: 280px;
        height: 280px;
    }

    .value-title {
        font-size: 40px;
    }

    .value-desc {
        font-size: 20px;
    }
}

@media (max-width: 900px) {
    .core-values-row {
        gap: 40px;
    }

    .value-item {
        flex: 0 1 45%;
    }

    .value-circle {
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
    }
}

@media (max-width: 600px) {
    .core-values-row {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }

    .value-item {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px;
    }
}


.history-growth-wrap {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;

    background: linear-gradient(90deg, #291e51 20%, #164675 76%);
    color: #fff;
    overflow: hidden;
}

.history-header {
    text-align: left;
    max-width: 1500px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.history-header h2 {
    font-size: 30px;
    line-height: 1.4;
    font-weight: 700;
}


.history-mobile-only {
    display: none;
}

.history-pc-only {
    display: block;
}


.history-graph-container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    height: auto;
    position: relative;
    padding: 0;
}


.history-graph-container.history-pc-only::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;


    box-shadow: inset 80px 0 60px -20px #291e51, inset -80px 0 60px -20px #164675;
    pointer-events: none;
    z-index: 10;
}

.pc-history-img img {
    width: 100%;
    height: auto;
    display: block;
}

.graph-line-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}


.history-graph-container::before {
    display: none;
}

.grow-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20px;
    height: 20px;
}

.grow-circle {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #1f448e;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 10;
    border: 5px solid rgba(255, 255, 255, 0.3);
    background-clip: padding-box;
}

.grow-circle .sub-year {
    font-size: 16px;
    font-weight: 600;
    color: #38B2D1;
}

.grow-circle.big {
    width: 130px;
    height: 130px;
    font-size: 30px;
    border-width: 8px;
}

.grow-content {
    position: absolute;
    width: 320px;
    z-index: 5;
}

.grow-content.pos-top {
    bottom: 85px;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 30px;
    text-align: center;
}

.grow-content.pos-bottom {
    top: 85px;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 30px;
    text-align: center;
}

.grow-content.pos-left-big {
    right: 90px;
    top: 50%;
    transform: translateY(-50%);
    text-align: right;
    width: 400px;
}


.grow-content.pos-top::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.5);
}

.grow-content.pos-bottom::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.5);
}

.content-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    color: #fff;
    text-align: left;
}

.content-box h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.content-box ul li {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    list-style: none;
    position: relative;
    padding-left: 10px;
}

.content-box ul li::before {
    content: '';
    position: absolute;
    left: 0;
    color: #38B2D1;
}


@media (max-width: 1200px) {

    .history-pc-only {
        display: none !important;
    }

    .history-mobile-only {
        display: block !important;
    }

    .history-growth-wrap {
        background: #172d59;

        padding: 0;
    }

    .mobile-history-img {
        width: 100%;
        max-width: 100%;
        margin: 0 auto 40px;
        padding: 0;
    }

    .mobile-history-img img {
        width: 100%;
        height: auto;
        display: block;
    }



    .history-graph-container {
        height: auto;
        display: flex;
        flex-direction: column;
        padding: 40px 20px;
        align-items: flex-start;
    }

    .history-graph-container::before {

        left: 40px;
        top: 0;
        bottom: 0;
        width: 2px;
        height: 100%;
        background: rgba(255, 255, 255, 0.3);
        transform: none;
    }

    .grow-item {
        position: relative;
        left: auto !important;
        bottom: auto !important;
        width: 100%;
        height: auto;
        margin-bottom: 60px;
        padding-left: 100px;
    }

    .grow-circle {
        position: absolute;
        left: 41px;
        top: 0;
        transform: translate(-50%, 0);
        width: 80px;
        height: 80px;
        font-size: 20px;
    }

    .grow-circle.big {
        width: 90px;
        height: 90px;
        font-size: 24px;
    }

    .grow-content {
        position: relative;
        width: 100%;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        padding: 0;
        text-align: left;
    }

    .grow-content::after {
        display: none;
    }

    .grow-content.pos-left-big {
        width: 100%;
        text-align: left;
    }
}