﻿/* 
---------------------------------------------
                Main
--------------------------------------------- 
*/

.eyebrow {
    color: var(--primary);
    font-family: var(--font-jamsil);
    font-size: var(--font-lg);
    font-weight: 600;
    line-height: 1.5;
}

/* cont1 */
.cont1 {
    position: relative;
    height: min(100vh, 1000px);
    min-height: 0;
    cursor: grab;
    touch-action: pan-y;
}

.cont1:active {
    cursor: grabbing;
}

.cont1 .bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.cont1 .container {
    position: relative;
    height: 100%;
    padding-top: 248px;
    padding-bottom: 50px;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.cont1 .bg,
.cont1 .bg .swiper-wrapper,
.cont1 .bg .swiper-slide {
    width: 100%;
    height: 100%;
}

.cont1 .bg .swiper-slide {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.08);
    transition: transform 1.6s cubic-bezier(0.22, 0.61, 0.36, 1), filter 1.2s ease, opacity 0.8s ease;
    filter: brightness(0.88);
}

.cont1 .bg .swiper-slide-active {
    transform: scale(1);
    filter: brightness(1);
}

.cont1 .container .left {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around;
    gap: 24px;
    z-index: 2;
}

.cont1 .container .title {
    display: flex;
    flex-direction: column;
    gap: 6px;
    white-space: nowrap;
}

.cont1 .container .line {
    color: var(--white);
    font-family: var(--font-jamsil);
    font-size: 70px;
    font-weight: 700;
    line-height: 98px;
    letter-spacing: -0.01em;
    overflow: hidden;
}

.cont1 .container .line .txt {
    display: block;
    transform: translateY(0);
    opacity: 1;
    will-change: transform, opacity;
}

.cont1 .container .line .txt .char {
    display: inline-block;
    will-change: transform, opacity;
}

.cont1 .container.isanim .line .txt {
    transform: translateY(120%);
    opacity: 0;
}

.cont1 .container.isanim.ready .line .txt {
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.86s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.5s ease;
}

.cont1 .container .nav {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.cont1 .container .nav-btn {
    width: 50px;
    height: 50px;
    border: 0;
    background: transparent;
    border-radius: 300px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.cont1 .container .nav-btn .icon {
    width: 8px;
    height: 14px;
    display: block;
    background: white;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask: url("data:image/svg+xml,%3Csvg%20width='8'%20height='14'%20viewBox='0%200%208%2014'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M6.75%2012.7056L0.75%206.70558L6.75%200.75002'%20stroke='white'%20stroke-opacity='0.6'%20stroke-width='1.5'%20stroke-miterlimit='10'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E");
    mask: url("data:image/svg+xml,%3Csvg%20width='8'%20height='14'%20viewBox='0%200%208%2014'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M6.75%2012.7056L0.75%206.70558L6.75%200.75002'%20stroke='white'%20stroke-opacity='0.6'%20stroke-width='1.5'%20stroke-miterlimit='10'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E");
}

.cont1 .container .nav .nav-btn:first-child .icon {
    transform: rotate(0deg);
}

.cont1 .container .nav .nav-btn:last-child .icon {
    transform: rotate(180deg);
}

.cont1 .container .nav-btn:hover,
.cont1 .container .nav-btn:focus-visible {
    background: rgba(255, 255, 255, 0.08);
}

.cont1 .container .dots {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.cont1 .container .dot {
    width: 16px;
    height: 16px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: outline-color 0.2s ease;
}

.cont1 .container .dot i {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
    transition: background-color 0.2s ease, transform 0.24s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.cont1 .container .dot.on {
    outline: 1px solid rgba(255, 255, 255, 1);
    outline-offset: -1px;
}

.cont1 .container .dot.on i {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.08);
}

.cont1 .container .right {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: min(46vw, 680px);
    height: min(68vh, 700px);
    z-index: 2;
}

.cont1 .container .product {
    width: 100%;
    height: 100%;
    max-height: none;
    transform: translateY(0) scale(1);
    opacity: 1;
    object-fit: contain;
    transition: transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.7s ease, filter 0.7s ease;
}

.cont1 .container .product-group {
    --orbit-r: 240px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    aspect-ratio: 1 / 1;
    transform: translate(-50%, -50%);
    display: none;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.7s ease;
    background: url(../../img/main/product04-bg.png) center/contain no-repeat;
}

.cont1 .container .product-group.active {
    display: block;
    pointer-events: auto;
    opacity: 1;
    animation: productGroupSpin 24s linear infinite;
    animation-play-state: paused; /* 임시: 회전 중지 */
}

@keyframes productGroupSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.cont1 .container .product-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 42%;
    height: auto;
    max-width: 350px;
    max-height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.25));
    transition: filter 0.35s ease, scale 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    cursor: pointer;
    z-index: 1;
    scale: 1;
}

.cont1 .container .product-item:nth-child(2) {
    width: 100%;
    max-width: 400px;
    max-height: 350px;
}

.cont1 .container .product-item:nth-child(1) {
    animation: counterSpin1 24s linear infinite;
    animation-play-state: paused; /* 임시: 회전 중지 */
    z-index: 2;
}

.cont1 .container .product-item:nth-child(2) {
    animation: counterSpin2 24s linear infinite;
    animation-play-state: paused; /* 임시: 회전 중지 */
}

.cont1 .container .product-item:nth-child(3) {
    animation: counterSpin3 24s linear infinite;
    animation-play-state: paused; /* 임시: 회전 중지 */
}

/* rotate(각도) → translateY(반지름) → rotate(역회전) 패턴 */
@keyframes counterSpin1 {
    from { transform: translate(-50%, -50%) rotate(-90deg) translateY(calc(-1 * var(--orbit-r))) rotate(90deg); }
    to   { transform: translate(-50%, -50%) rotate(-90deg) translateY(calc(-1 * var(--orbit-r))) rotate(-270deg); }
}

@keyframes counterSpin2 {
    from { transform: translate(-50%, -50%) rotate(150deg) translateY(calc(-1 * var(--orbit-r))) rotate(-150deg); }
    to   { transform: translate(-50%, -50%) rotate(150deg) translateY(calc(-1 * var(--orbit-r))) rotate(-510deg); }
}

@keyframes counterSpin3 {
    from { transform: translate(-50%, -50%) rotate(30deg) translateY(calc(-1 * var(--orbit-r))) rotate(-30deg); }
    to   { transform: translate(-50%, -50%) rotate(30deg) translateY(calc(-1 * var(--orbit-r))) rotate(-390deg); }
}

.cont1 .container .product-item:hover {
    scale: 1.18;
    filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.35));
    z-index: 10;
}

.cont1 .container .product-group:has(.product-item:hover) {
    animation-play-state: paused;
}

.cont1 .container .product-group:has(.product-item:hover) .product-item {
    animation-play-state: paused;
    scale: 0.85;
}

.cont1 .container .product-group:has(.product-item:hover) .product-item:hover {
    scale: 1.18;
}

.cont1 .container.switching .product-group {
    opacity: 0;
}

.cont1 .container.switching .product {
    transform: translateY(10px) scale(0.985);
    opacity: 0;
    filter: blur(4px) drop-shadow(0 24px 38px rgba(0, 0, 0, 0.2));
}

.cont1 .container .scroll {
    position: absolute;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.cont1 .container .scroll span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
}

.cont1 .container .scroll .icon {
    width: 10px;
    height: 16px;
    display: block;
    background: rgba(255, 255, 255, 0.6);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask: url("data:image/svg+xml,%3Csvg%20width='10'%20height='16'%20viewBox='0%200%2010%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M5%200.5V15.5M5%2015.5L9.5%2010.4997M5%2015.5L0.5%2010.4997'%20stroke='white'%20stroke-opacity='0.6'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E");
    mask: url("data:image/svg+xml,%3Csvg%20width='10'%20height='16'%20viewBox='0%200%2010%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M5%200.5V15.5M5%2015.5L9.5%2010.4997M5%2015.5L0.5%2010.4997'%20stroke='white'%20stroke-opacity='0.6'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E");
    animation: mainscroll 1.4s ease-in-out infinite;
}

@keyframes mainscroll {
    0% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(4px); opacity: 1; }
    100% { transform: translateY(0); opacity: 0.5; }
}

@media (max-width: 1440px) {
    .cont1 .container {
        padding-top: 214px;
        padding-bottom: 48px;
    }

    .cont1 .container .line {
        font-size: 60px;
        line-height: 84px;
    }

    .cont1 .container .right {
        width: min(44vw, 620px);
        height: min(62vh, 640px);
    }

    .cont1 .container .product {
        max-height: none;
    }
}

@media (max-width: 1280px) {
    .cont1 .container {
        padding-top: 186px;
        padding-bottom: 56px;
    }

    .cont1 .container .left {
        gap: 22px;
    }

    .cont1 .container .line {
        font-size: 54px;
        line-height: 74px;
    }

    .cont1 .container .right {
        width: min(43vw, 560px);
        height: min(56vh, 560px);
    }
}

@media (max-width: 1024px) {
    .cont1 .container {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 30px;
        padding-top: 168px;
        padding-bottom: 88px;
    }

    .cont1 .container .left {
        height: auto;
        justify-content: flex-start;
        max-width: 100%;
        gap: 36px;
    }

    .cont1 .container .title {
        margin-top: 0;
    }

    .cont1 .container .line {
        font-size: 42px;
        line-height: 58px;
    }

    .cont1 .container .right {
        height: clamp(280px, 42vh, 460px);
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .cont1 .container .product {
        width: min(100%, 460px);
        height: 100%;
        max-height: none;
    }

    .cont1 .container .right {
        position: relative;
    }

    .cont1 .container .product-item {
        width: 42%;
    }

    .cont1 .container .product-group {
        --orbit-r: 180px;
    }
}

@media (max-width: 768px) {
    .cont1 {
        height: auto;
        min-height: 0;
    }

    .cont1 .container {
        height: auto;
        padding-top: 204px;
        padding-bottom: 64px;
        gap: 24px;
    }

    .cont1 .container .line {
        font-size: 34px;
        line-height: 46px;
    }

    .cont1 .container .left {
        gap: 26px;
    }

    .cont1 .container .nav {
        gap: 0;
    }

    .cont1 .container .nav-btn {
        width: 40px;
        height: 40px;
    }

    .cont1 .container .dots {
        gap: 10px;
    }

    .cont1 .container .scroll {
        bottom: 18px;
    }

    .cont1 .container .product {
        width: min(100%, 380px);
        height: 100%;
        max-height: none;
    }

    .cont1 .container .product-item {
        width: 40%;
    }

    .cont1 .container .product-group {
        --orbit-r: 150px;
    }
}

@media (max-width: 480px) {
    .cont1 .container {
        padding-top: 196px;
        padding-bottom: 56px;
        gap: 20px;
    }

    .cont1 .container .line {
        font-size: 28px;
        line-height: 38px;
    }

    .cont1 .container .left {
        gap: 22px;
    }

    .cont1 .container .product {
        width: min(100%, 320px);
    }

    .cont1 .container .product-item {
        width: 38%;
    }

    .cont1 .container .product-group {
        --orbit-r: 120px;
    }
}

/* cont2 */
.cont2 {
    position: relative;
    background: white;
}

.cont2 .container {
    --ship-y: 8;
    --line-overlap: 200px;
    --ship-overlap: 12px;
    position: relative;
    max-width: none;
    width: 100%;
    min-height: 90vh;
    padding: 0;
    overflow: visible;
}

.cont2 .container {
    position: relative;
}

.cont2 .container .line,
.cont2 .container .scroll {
    position: sticky;
    top: 0;
    height: 90vh;
    width: 100%;
}

.cont2 .container .scroll {
    margin-top: -90vh;
}

.cont2 .container .line {
    left: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}

.cont2 .container .line::before {
    content: "";
    width: 1px;
    height: calc(90vh + var(--line-overlap));
    background: linear-gradient(180deg, #8C959F00 0%, #8C959FB2 50%, #8C959F00 100%);
}

.cont2 .container .scroll {
    left: 50%;
    top: 0;
    width: 180px;
    height: auto;
    transform: translate3d(-50%, calc(var(--ship-y) * 0.3vh + var(--ship-overlap)), 0);
    z-index: 2;
    pointer-events: none;
    will-change: transform;
}

.cont2 .container .scroll img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cont2 .container .headline {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 90vh;
    z-index: 3;
    display: grid;
    place-content: center;
    text-align: center;
    white-space: pre-line;
    letter-spacing: -0.01em;
    pointer-events: none;
}

.cont2 .container .headline .char {
    display: inline-block;
    color: #D5D7DA;
    transition: color 0.16s ease;
}

.cont2 .container .headline .linechunk {
    display: block;
}

.cont2 .container .headline .char.active {
    color: #0A0D12;
}

@media (max-width: 1440px) {
    .cont2 .container {
        --line-overlap: 160px;
        --ship-overlap: 10px;
    }

    .cont2 .container .scroll {
        width: 160px;
    }
}

@media (max-width: 1280px) {
    .cont2 .container {
        --line-overlap: 120px;
        --ship-overlap: 9px;
    }

    .cont2 .container .scroll {
        width: 140px;
    }
}

@media (max-width: 1024px) {
    .cont2 .container,
    .cont2 .container .line {
        min-height: 92vh;
        height: 92vh;
        min-height: 92svh;
        height: 92svh;
    }

    .cont2 .container .headline {
        height: 92vh;
        height: 92svh;
        padding: 0 20px;
    }

    .cont2 .container {
        --line-overlap: 24px;
        --ship-overlap: -6px;
    }

    .cont2 .container .scroll {
        margin-top: -92vh;
        margin-top: -92svh;
        width: 132px;
        height: auto;
    }

    .cont2 .container .line::before {
        height: calc(92vh + var(--line-overlap));
        height: calc(92svh + var(--line-overlap));
    }

    .cont2 .container .headline.point1 {
        font-size: 88px;
        line-height: 1.32;
    }
}

@media (max-width: 768px) {
    .cont2 .container {
        --line-overlap: 22px;
        --ship-overlap: -12px;
        min-height: 60vh;
        min-height: 60svh;
    }

    .cont2 .container .headline {
        padding: 0 18px;
    }

    .cont2 .container .scroll {
        width: 114px;
    }

    .cont2 .container .headline.point1 {
        font-size: 74px;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .cont2 .container {
        --line-overlap: 18px;
        --ship-overlap: -16px;
        min-height: 56vh;
        min-height: 56svh;
    }

    .cont2 .container .scroll {
        width: 94px;
    }

    .cont2 .container .headline {
        padding: 0 14px;
    }

    .cont2 .container .headline.point1 {
        font-size: 56px;
        line-height: 1.26;
    }
}

/* cont3 */
.cont3 {
    position: relative;
    background: url("../../img/main/bg04.jpg") center bottom/cover no-repeat;
    z-index: 1;
    overflow: hidden;
}

.cont3 .corp-name {
    position: absolute;
    bottom: 0.05em;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-jamsil);
    font-size: clamp(80px, 10vw, 160px);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    white-space: nowrap;
    line-height: 1;
    letter-spacing: -0.02em;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.cont3 .container {
    position: relative;
    z-index: 1;
    padding: 550px 0 250px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 58px;
}

.cont3 .headline {
    color: var(--white);
    font-weight: 700;
    white-space: pre-line;
    will-change: transform, opacity;
}

@media (max-width: 1024px) {
    .cont3 .container {
        padding-bottom: 56px;
        gap: 22px;
    }

    .cont3 .headline {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .cont3 .container {
        padding-bottom: 42px;
        gap: 18px;
    }

    .cont3 .headline {
        font-size: 28px;
        line-height: 1.4;
    }
}

/* cont4 */
.cont4 {
    background: white;
}

.cont4 .headline {
    margin-top: 10px;
    font-weight: 700;
    white-space: pre-line;
    word-break: keep-all;
}

.cont4 .cards {
    margin-top: 70px;
    display: flex;
    gap: 30px;
}

.cont4 .card {
    position: relative;
    min-height: 530px;
    flex: 1;
    display: flex;
    align-items: flex-end;
    border-radius: 20px;
    overflow: hidden;
    transition: flex 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.cont4 .card::before {
    content: none;
}

.cont4 .card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 48%, rgba(0, 0, 0, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.cont4 .card .bg-stack {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.cont4 .card .bg-layer {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    transform: scale(1);
    transition: opacity 0.9s ease, transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: opacity, transform;
}

.cont4 .card .bg-layer.is-active {
    opacity: 1;
}

.cont4 .cards .card:nth-child(2) {
    transform: translateY(40px);
}

.cont4 .card:is(:hover, :focus-within) .bg-layer {
    transform: scale(1.04);
}

.cont4 .cards:hover .card:hover {
    flex: 2.1;
}

.cont4 .cards:hover .card:hover::after {
    opacity: 1;
}

.cont4 .card .content {
    position: relative;
    width: 100%;
    padding: 0 50px 48px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cont4 .card .word {
    position: absolute;
    right: 8px;
    bottom: 12px;
    color: var(--white-20);
    font-size: 80px;
    font-weight: 700;
    line-height: 0.9;
    white-space: pre-line;
    text-align: right;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
    pointer-events: none;
    z-index: 2;
}

.cont4 .cards:hover .card:hover .word {
    opacity: 1;
    transform: translateY(0);
}

.cont4 .card h3 {
    color: white;
    font-size: 30px;
    font-weight: 700;
    transform: translateY(0);
    transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.cont4 .card .desc {
    display: flex;
    flex-direction: column;
    gap: 4px;
    list-style: none;
    width: 100%;
    max-width: 600px;
    padding-left: 0;
    max-height: 0;
    margin-top: 0;
    color: white;
    font-weight: 600;
    opacity: 0;
    overflow: hidden;
    transform: translateY(10px);
    pointer-events: none;
    transition: max-height 0.6s ease, margin-top 0.45s ease, opacity 0.45s ease, transform 0.5s ease;
}

.cont4 .card .desc li {
    position: relative;
    padding-left: 10px;
}

.cont4 .card .desc li::before {
    content: "";
    position: absolute;
    top: 0.65em;
    left: 0;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
}

.cont4 .card .actions {
    display: flex;
    max-height: 0;
    margin-top: 0;
    flex-wrap: wrap;
    gap: 16px;
    opacity: 0;
    overflow: hidden;
    transform: translateY(10px);
    pointer-events: none;
    transition: max-height 0.6s ease, margin-top 0.45s ease, opacity 0.45s ease, transform 0.5s ease;
}

.cont4 .cards:hover .card:hover h3 {
    transform: translateY(-8px);
}

.cont4 .cards:hover .card:hover .desc {
    max-height: 180px;
    margin-top: 6px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0.16s, 0.16s, 0.2s, 0.2s;
}

.cont4 .cards:hover .card:hover .actions {
    max-height: 80px;
    margin-top: 40px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

@media (max-width: 1440px) {
    .cont4 .cards {
        margin-top: 64px;
        gap: 24px;
    }

    .cont4 .card {
        min-height: 500px;
    }

    .cont4 .card .content {
        padding: 0 38px 42px;
    }

    .cont4 .card .word {
        font-size: 72px;
    }
}

@media (max-width: 1280px) {
    .cont4 .cards {
        margin-top: 56px;
        gap: 20px;
    }

    .cont4 .card {
        min-height: 460px;
    }

    .cont4 .card .content {
        padding: 0 32px 36px;
    }

    .cont4 .card .word {
        font-size: 64px;
    }
}

@media (max-width: 1024px) {
    .cont4 .container {
        padding-top: 86px;
        padding-bottom: 86px;
    }

    .cont4 .cards {
        margin-top: 34px;
        height: auto;
        flex-direction: column;
        gap: 18px;
    }

    .cont4 .card,
    .cont4 .cards:hover .card,
    .cont4 .cards:hover .card:hover {
        flex: none;
    }

    .cont4 .card {
        min-height: 360px;
    }

    .cont4 .card .content {
        padding: 0 28px 30px;
    }

    .cont4 .card::after {
        opacity: 1;
    }

    .cont4 .card .word {
        right: 16px;
        bottom: 14px;
        font-size: 54px;
        opacity: 1;
        transform: translateY(0);
    }

    .cont4 .cards .card:nth-child(2) {
        transform: none;
    }

    .cont4 .card .desc,
    .cont4 .cards:hover .card .desc,
    .cont4 .cards:hover .card:hover .desc {
        max-height: none;
        margin-top: 6px;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .cont4 .card .actions,
    .cont4 .cards:hover .card .actions,
    .cont4 .cards:hover .card:hover .actions {
        max-height: none;
        margin-top: 28px;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
}

@media (max-width: 768px) {
    .cont4 .container {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .cont4 .cards {
        margin-top: 28px;
        gap: 14px;
    }

    .cont4 .card {
        min-height: 320px;
        border-radius: 16px;
    }

    .cont4 .card::after {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.44) 100%);
    }

    .cont4 .card .content {
        padding: 0 22px 24px;
    }

    .cont4 .card .word {
        right: 12px;
        bottom: 10px;
        font-size: 42px;
        line-height: 0.95;
    }

    .cont4 .card .actions,
    .cont4 .cards:hover .card .actions,
    .cont4 .cards:hover .card:hover .actions {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .cont4 .container {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .cont4 .cards {
        margin-top: 24px;
        gap: 12px;
    }

    .cont4 .card::after {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    }

    .cont4 .card {
        border-radius: 14px;
    }

    .cont4 .card .word {
        right: 10px;
        bottom: 8px;
        font-size: 34px;
    }

    .cont4 .card .actions,
    .cont4 .cards:hover .card .actions,
    .cont4 .cards:hover .card:hover .actions {
        margin-top: 14px;
        gap: 10px;
    }
}

/* cont5 */
.cont5 {
    background: url("../../img/main/bg05.jpg") center/cover no-repeat;
}

.cont5 .headline {
    color: white;
    text-align: center;
}

.cont5 .clients {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px 30px;
}

.cont5 .card {
    grid-column: span 2;
    padding: 0 20px;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 20px;
}

.cont5 .logo {
    max-width: 320px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.cont5 .card:nth-child(7),
.cont5 .card:nth-child(9) {
    grid-column: 2 / span 2;
}

.cont5 .card:nth-child(8),
.cont5 .card:nth-child(10) {
    grid-column: 4 / span 2;
}

@media (max-width: 1440px) {
    .cont5 .clients {
        margin-top: 54px;
        gap: 22px 24px;
    }

    .cont5 .card {
        height: 104px;
        border-radius: 18px;
    }

    .cont5 .logo {
        max-width: 200px;
        max-height: 66px;
    }
}

@media (max-width: 1280px) {
    .cont5 .clients {
        margin-top: 50px;
        gap: 20px 20px;
    }

    .cont5 .card {
        padding: 0 16px;
        height: 100px;
        border-radius: 16px;
    }

    .cont5 .logo {
        max-width: 188px;
        max-height: 62px;
    }
}

@media (max-width: 1024px) {
    .cont5 .clients {
        margin-top: 44px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .cont5 .card,
    .cont5 .card:nth-child(7),
    .cont5 .card:nth-child(8),
    .cont5 .card:nth-child(9),
    .cont5 .card:nth-child(10) {
        grid-column: span 1;
    }

    .cont5 .card {
        height: 92px;
        border-radius: 14px;
        padding: 0 14px;
    }

    .cont5 .logo {
        max-width: 172px;
        max-height: 56px;
    }
}

@media (max-width: 768px) {
    .cont5 .clients {
        margin-top: 36px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .cont5 .card {
        height: 84px;
        border-radius: 12px;
        padding: 0 12px;
    }

    .cont5 .logo {
        max-width: 152px;
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .cont5 .clients {
        margin-top: 30px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .cont5 .card,
    .cont5 .card:nth-child(7),
    .cont5 .card:nth-child(8),
    .cont5 .card:nth-child(9),
    .cont5 .card:nth-child(10) {
        grid-column: span 1;
    }

    .cont5 .card {
        height: 78px;
        border-radius: 10px;
        padding: 0 10px;
    }

    .cont5 .logo {
        max-width: 138px;
        max-height: 44px;
    }
}

/* cont6 */
.cont6 {
    background: url("../../img/main/bg06.jpg") bottom no-repeat;
}

.cont6 .container {
    padding-top: 80px;
    padding-bottom: 200px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.cont6 .head {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cont6 .headline {
    font-weight: 700;
    word-break: keep-all;
}

.cont6 .layout {
    display: flex;
    gap: 30px;
}

.cont6 .left {
    width: 750px;
    min-height: 468px;
    padding: 60px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    background-image: url("../../img/main/card04.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 30px;
    --overlayY: 102%;
}

.cont6 .left::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(163deg, rgba(0, 0, 0, 0) 0%, #424242 100%);
    transform: translateY(var(--overlayY));
    will-change: transform;
    z-index: 0;
}

.cont6 .left > * {
    position: relative;
    z-index: 1;
}

.cont6 .left h3 {
    color: var(--white);
    font-weight: 700;
}

.cont6 .right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cont6 .item {
    padding: 48px 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    will-change: transform, opacity;
}

.cont6 .item + .item {
    border-top: 1px solid var(--black-300);
}

.cont6 .dot {
    width: 60px;
    height: 60px;
    border-radius: 999px;
    background: #eaeffa;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 60px;
}

.cont6 .dot i {
    width: 24px;
    height: 24px;
    display: block;
    background: var(--primary);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.cont6 .dot.file i {
    -webkit-mask: url("data:image/svg+xml,%3Csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M5%207.5C5%206.12%206.12%205%207.5%205h9C17.88%205%2019%206.12%2019%207.5V16.5c0%201.38-1.12%202.5-2.5%202.5h-9A2.5%202.5%200%2001%205%2016.5v-9zM8%209h8M8%2012h8M8%2015h6'%20stroke='%230C3FAD'%20stroke-width='2'%20stroke-linecap='round'/%3E%3C/svg%3E");
    mask: url("data:image/svg+xml,%3Csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M5%207.5C5%206.12%206.12%205%207.5%205h9C17.88%205%2019%206.12%2019%207.5V16.5c0%201.38-1.12%202.5-2.5%202.5h-9A2.5%202.5%200%2001%205%2016.5v-9zM8%209h8M8%2012h8M8%2015h6'%20stroke='%230C3FAD'%20stroke-width='2'%20stroke-linecap='round'/%3E%3C/svg%3E");
}

.cont6 .dot.map i {
    -webkit-mask: url("data:image/svg+xml,%3Csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M12%2021s-6-5.52-6-10a6%206%200%201112%200c0%204.48-6%2010-6%2010zm0-8a2%202%200%201000-4%202%202%200%20000%204z'%20stroke='%230C3FAD'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E");
    mask: url("data:image/svg+xml,%3Csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M12%2021s-6-5.52-6-10a6%206%200%201112%200c0%204.48-6%2010-6%2010zm0-8a2%202%200%201000-4%202%202%200%20000%204z'%20stroke='%230C3FAD'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E");
}

.cont6 .dot.call i {
    -webkit-mask: url("data:image/svg+xml,%3Csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M20%2016.5v2a1.5%201.5%200%2001-1.64%201.5A15.5%2015.5%200%20013%205.64%201.5%201.5%200%20014.5%204h2A1.5%201.5%200%20018%205.3c.13%201.03.43%202.03.89%202.96a1.5%201.5%200%2001-.34%201.7l-.86.86a12.5%2012.5%200%20005.3%205.3l.86-.86a1.5%201.5%200%20011.7-.34c.93.46%201.93.76%202.96.89A1.5%201.5%200%200120%2016.5z'%20stroke='%230C3FAD'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E");
    mask: url("data:image/svg+xml,%3Csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M20%2016.5v2a1.5%201.5%200%2001-1.64%201.5A15.5%2015.5%200%20013%205.64%201.5%201.5%200%20014.5%204h2A1.5%201.5%200%20018%205.3c.13%201.03.43%202.03.89%202.96a1.5%201.5%200%2001-.34%201.7l-.86.86a12.5%2012.5%200%20005.3%205.3l.86-.86a1.5%201.5%200%20011.7-.34c.93.46%201.93.76%202.96.89A1.5%201.5%200%200120%2016.5z'%20stroke='%230C3FAD'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E");
}

.cont6 .txt {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cont6 .name {
    color: var(--black-900);
    font-weight: 600;
}

.cont6 .item:first-child .name {
    font-size: var(--font-3xl);
}

.cont6 .desc {
    color: var(--black-800);
}

.cont6 .item .arrow {
    width: 24px;
    height: 24px;
    display: block;
    background: #111;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask: url("data:image/svg+xml,%3Csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M6%2012h12M18%2012l-5-5M18%2012l-5%205'%20stroke='%23111111'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E");
    mask: url("data:image/svg+xml,%3Csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M6%2012h12M18%2012l-5-5M18%2012l-5%205'%20stroke='%23111111'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E");
}

@media (max-width: 1280px) {
    .cont6 .left {
        width: 52%;
        min-height: 420px;
        padding: 42px;
    }

    .cont6 .item:first-child .name {
        font-size: 22px;
    }
}

@media (max-width: 1024px) {
    .cont6 .container {
        padding-top: 70px;
        padding-bottom: 90px;
    }

    .cont6 .layout {
        flex-direction: column;
    }

    .cont6 .left {
        width: 100%;
        min-height: 360px;
        padding: 36px;
    }

    .cont6 .item {
        padding: 30px 6px;
        gap: 16px;
    }

    .cont6 .item:first-child .name {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .cont6 .container {
        padding-top: 56px;
        padding-bottom: 70px;
        gap: 24px;
    }

    .cont6 .left {
        min-height: 280px;
        padding: 24px;
        gap: 16px;
    }

    .cont6 .left .headline4 {
        font-size: 28px;
    }

    .cont6 .item {
        padding: 24px 0;
    }

    .cont6 .dot {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }

    .cont6 .item:first-child .name {
        font-size: 20px;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .cont4 .headline {
        white-space: inherit;
    }
}
