@import url("../components/popup.css");

/* ===== Common ===== */
.section-header {
    display: flex;
}

.title-lg {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(38px, 4vw, 70px);
    font-weight: 600;
    white-space: pre-line;
}

.title-md {
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 600;
    line-height: 1.5;
}

.lead {
    color: #7A7A7A;
    font-size: var(--font-lg);
    font-weight: 200;
    white-space: pre-line;
}

.lead strong {
    font-weight: 500;
}

.title-lg,
.intro {
    flex: 1;
}

.intro {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (max-width:1024px) {
    .title-lg {
        font-size: 34px;
    }

    .title-md {
        font-size: 46px;
    }
}

@media (max-width:768px) {

    .title-lg {
        font-size: 30px;
    }

    .title-md {
        font-size: 38px;
    }

    .title-md span {
        display: inline;
    }

    .lead {
        font-size: var(--font-md);
        white-space: normal;
    }
}

@media (max-width:480px) {
    .title-lg {
        font-size: 30px;
    }

    .title-md {
        font-size: 32px;
    }

    .lead {
        font-size: var(--font-base);
    }
}

/* ===== Section 1 ===== */
/* Swiper */
.cont1 {
    position: relative;
    min-height: 100vh;
    color: white;
    padding: 27.5vh 0 12.5vh;
    background-color: #0b1930;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cont1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(12, 25, 40, 0) 0%,
            rgba(12, 25, 40, 0.4) 30%,
            rgba(39, 134, 242, 0.89) 100%);
    pointer-events: none;
    opacity: 0.6;
    z-index: 2;
}

.cont1 .slide-skel {
    position: relative;
}

.cont1 .hero-swiper,
.cont1 .hero-swiper .swiper-wrapper {
    width: 100%;
    height: 100vh;
}

.cont1 .hero-swiper {
    position: absolute;
    inset: 0;
}

.hero-product .hero-swiper {
    position: relative;
    inset: auto;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    height: 100vh;
    padding: 27.5vh 0 12.5vh;
}

.hero-slide .kb {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    will-change: transform;
    transform: scale(1);
}

.hero-slide .hero-video,
.hero-slide .hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero-copy {
    max-width: var(--container-width);
    position: relative;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1;
}

.hero-title {
    font-weight: 600;
    font-size: clamp(28px, 5vw, 60px);
    line-height: 1.3;
}

.hero-title strong {
    font-weight: 700;
}

.hero-desc {
    color: #F6F6F6;
    font-size: clamp(14px, 2vw, var(--font-md));
    font-weight: 300;
    white-space: pre-line;
}

.hero-pager {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 70px;
}

.hero-pager .bar {
    display: flex;
    gap: 10px;
}

.hero-pager .bar span,
.hero-pager .bar i {
    display: block;
    width: 49px;
    height: 4.9px;
    border-radius: 6px;
    background: var(--white-40);
    transition: background 0.4s ease, opacity 0.4s ease;
    cursor: pointer;
}

.hero-pager .bar span,
.hero-pager .bar i:hover {
    opacity: 1;
    background: white;
}

.hero-copy,
.hero-links,
.scroll-indicator {
    position: relative;
    z-index: 4;
}

.hero-product {
    position: absolute;
    left: 62%;
    top: 56%;
    transform: translate(-50%, -50%);
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120vw;
    max-width: 1500px;
    height: 100vh;
    max-height: 900px;
    padding: clamp(12px, 2.5vw, 24px) clamp(18px, 3vw, 32px);
    border-radius: 20px;
    overflow: hidden;
    pointer-events: none;
}

.hero-product .swiper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.hero-product .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 clamp(18px, 2.8vw, 36px);
    box-sizing: border-box;
    width: 100% !important;
    max-width: 620px;
    margin: 0 auto;
}

.hero-product .swiper-wrapper {
    padding: 0 clamp(26px, 4.8vw, 64px);
    box-sizing: border-box;
}

.hero-product .product-img {
    width: auto;
    max-width: none;
    max-height: none;
    object-fit: contain;
    pointer-events: none;
    position: relative;
    z-index: 1;
}

@media (max-width:1580px) {
    .hero-copy {
        padding: 0 40px;
    }
}

@media (max-width:1280px) {
    .hero-copy {
        padding: 0 32px;
    }

    .hero-title {
        font-size: clamp(28px, 6vw, 50px);
    }

    .hero-pager {
        margin-top: 50px;
        gap: 8px;
    }

    .hero-product {
        max-width: 900px;
        width: 100%;
        height: auto;
        max-height: auto;
        top: 54%;
        left: 70%;
    }

    .hero-product .product-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

@media (max-width:1024px) {
    .hero-copy {
        padding: 0 24px;
    }

    .hero-title {
        font-size: clamp(28px, 6vw, 45px);
    }

    .hero-pager {
        margin-top: 40px;
        gap: 8px;
    }

    .hero-product {
        width: 104vw;
        max-width: 1200px;
        max-height: 74vh;
        left: 62%;
        top: 55%;
    }

    .hero-product .product-img {
        width: 82vw;
        max-width: 700px;
        max-height: 52vh;
    }
}

@media (max-width:768px) {

    .cont1 .hero-swiper,
    .cont1 .hero-swiper .swiper-wrapper {
        width: 100%;
        height: auto;
    }

    .cont1 {
        padding: 22vh 0 14vh;
    }

    .hero-slide {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        min-height: 100vh;
        padding: 18vh 0 18vh;
    }

    .hero-copy {
        padding: 0 18px;
    }

    .hero-title {
        font-size: clamp(24px, 7vw, 40px);
    }

    .hero-title br {
        display: none;
    }

    .hero-desc {
        font-size: clamp(13px, 3.4vw, 16px);
    }

    .hero-pager {
        margin-top: 24px;
        gap: 8px;
    }

    .hero-product {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin: 0 auto;
        width: 100vw;
        max-width: 700px;
        max-height: none;
        padding: 10px 14px;
    }

    .hero-product .swiper,
    .hero-product .swiper-slide {
        height: auto;
    }

    .hero-product .product-img {
        width: 90vw;
        max-width: 580px;
        max-height: 48vh;
    }

    .hero-links {
        position: absolute;
        left: 50%;
        bottom: 16vh;
        transform: translateX(-50%);
        width: calc(100% - 36px);
        max-width: 960px;
        margin-top: 0;
        padding: 0 12px;
        flex-direction: column;
        gap: 12px;
    }

    .hero-links .link-card {
        width: 100%;
    }

    .hero-links {
        margin-top: 0;
        padding: 0 18px;
    }
}

@media (max-width:480px) {
    .cont1 {
        padding: 20vh 0 14vh;
    }

    .hero-slide {
        gap: 32px;
        min-height: 100vh;
        padding: 18vh 0 18vh;
    }

    .hero-copy {
        padding: 0 14px;
    }

    .hero-title {
        font-size: clamp(22px, 7.8vw, 32px);
    }

    .hero-desc {
        font-size: var(--font-sm);
        white-space: normal;
    }

    .hero-pager {
        margin-top: 16px;
        gap: 8px;
    }

    .hero-product {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 420px;
        max-width: 530px;
        margin-top: 50px;
        max-height: none;
        padding: 10px 12px;
        overflow: visible;
    }

    .hero-product .swiper,
    .hero-product .swiper-slide {
        height: auto;
    }

    .hero-product .product-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .hero-links {
        position: absolute;
        left: 50%;
        bottom: 20vh;
        transform: translateX(-50%);
        width: calc(100% - 28px);
        max-width: 900px;
        margin-top: 0;
        padding: 0 10px;
        flex-direction: column;
        gap: 12px;
    }

    .hero-links .link-card {
        width: 100%;
    }

    .hero-links {
        margin-top: 0;
        padding: 0 14px;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    top: calc(300px);
    right: calc((100vw - var(--container-width)) / 2 + 24px);
    transform: translateY(0);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
    user-select: none;
    pointer-events: none;
}

.scroll {
    position: relative;
    width: 99px;
    height: 99px;
    display: grid;
    place-items: center;
}

.scroll::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.24);
    box-shadow: 0 0 22px rgba(255, 255, 255, 0.25);
}

.scroll>span {
    transform: rotate(90deg);
    transform-origin: center;
    color: var(--white-80);
    font-size: var(--font-sm);
    font-weight: 400;
    font-family: "Outfit", sans-serif;
    white-space: nowrap;
    line-height: 1;
    text-align: center;
}

.scroll-arrow {
    width: 8px;
    height: 54px;
    display: block;
    background-image: url("../../icons/scroll-down.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 8px 54px;
}

@media (max-width: 1500px) {
    .scroll-indicator {
        top: 280px;
        right: 32px;
    }

    .scroll {
        width: 92px;
        height: 92px;
    }

    .scroll-arrow {
        height: 50px;
        background-size: 8px 50px;
    }
}

@media (max-width: 1280px) {
    .scroll-indicator {
        top: 268px;
        right: 32px;
    }

    .scroll {
        width: 88px;
        height: 88px;
    }
}

@media (max-width: 1024px) {
    .scroll-indicator {
        display: none;
    }
}

/* Links Card */
.hero-links {
    position: absolute;
    left: 50%;
    bottom: 12vh;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    width: min(100%, var(--container-width));
    margin: 0 auto;
    margin-top: 0;
}

.link-card {
    position: relative;
    width: 496px;
    display: flex;
    gap: 20px;
    padding: 27px 25px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(14px);
    overflow: hidden;
    cursor: pointer;
    transition: transform .3s ease;
}

.link-img {
    flex: 1;
    height: 107px;
    border-radius: 14px;
    object-fit: cover;
    transition: transform .4s ease;
}

.link-card:hover .link-img {
    transform: scale(1.05);
}

.link-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
}

.link-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.link-text {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.link-title {
    color: white;
    font-size: var(--font-lg);
    font-weight: 500;
    line-height: 20px;
}

.link-sub {
    color: var(--white-60);
    font-size: 17px;
    font-weight: 300;
    line-height: 17px;
}

.link-icon {
    position: absolute;
    right: 15px;
    bottom: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    background-color: white;
    mask: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 10H20M10 0V20' stroke='white' stroke-width='2'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 10H20M10 0V20' stroke='white' stroke-width='2'/%3E%3C/svg%3E") no-repeat center;
    mask-size: 20px;
    -webkit-mask-size: 20px;
    transition: background-color .3s ease;
}

@media (max-width: 1550px) {
    .hero-links {
        width: 100%;
        padding: 0 20px;
    }

    .link-card {
        width: 100%;
    }
}

@media (max-width: 1280px) {
    .link-img {
        display: none;
    }

    .link-card {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .link-card {
        padding: 25px 20px;
    }

    .link-text {
        gap: 8px;
    }

    .link-title {
        font-size: var(--font-md);
        line-height: 1.3;
    }

    .link-sub {
        font-size: var(--font-base);
    }
}

@media (max-width: 768px) {
    .hero-links {
        flex-direction: column;
        gap: 10px;
        padding: 0 20px;
        margin-top: clamp(24px, 7vh, 60px);
    }

    .link-card {
        width: 100%;
        padding: 18px;
        gap: 14px;
    }

    .link-text {
        flex-direction: row;
    }

    .link-title {
        font-size: var(--font-base);
        line-height: 1.3;
    }

    .link-sub {
        align-self: center;
        font-size: var(--font-sm);
    }

    .link-icon {
        right: 12px;
        bottom: 14px;
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .hero-links {
        gap: 8px;
        padding: 0 12px;
    }

    .link-card {
        padding: 16px;
        border-radius: 16px;
    }

    .link-title {
        font-size: 15px;
    }

    .link-sub {
        font-size: 13px;
    }

    .link-icon {
        width: 28px;
        height: 28px;
        right: 10px;
        bottom: 12px;
    }
}

/* ===== Section 2 ===== */
.cont2 {
    background: url('../../img/bg/bg-main-cont2.jpg') center/cover no-repeat
}

.cont2 .section-header {
    flex-direction: column;
    align-items: flex-end;
    text-align: left;
}

.cont2 .title-md {
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    transform: translateX(-380px);
    line-height: 1.3;
}

.cont2 .title-md>span:first-child {
    display: block;
    transform: translateX(-270px);
}

.cont2 .lead {
    margin-top: 35px;
    transform: translateX(-350px);
    line-height: 1.4;
}

.cont2 .title-group span {
    display: block;
    background: linear-gradient(90deg, var(--primary) 0%, #053873 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 1580px) {
    .cont2 .section-header {
        align-items: center;
    }

    .cont2 .title-md {
        display: flex;
        flex-direction: column;
        transform: none !important;
    }

    .cont2 .title-md>span:first-child {
        transform: none !important;
    }

    .cont2 .title-group {
        margin-left: 150px;
    }

    .cont2 .lead {
        width: 100%;
        display: flex;
        justify-content: center;
        transform: none !important;
    }
}

@media (max-width: 1280px) {
    .cont2 .lead {
        margin-top: 20px;
    }
}

@media (max-width: 1024px) {
    .cont2 .title-group {
        margin-left: 100px;
    }

    .cont2 .lead {
        font-size: var(--font-md);
    }
}

@media (max-width: 768px) {
    .cont2 .title-md {
        align-items: center;
    }

    .cont2 .title-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-left: 0;
        text-align: center;
    }

    .cont2 .lead {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cont2 .lead {
        font-size: var(--font-base);
    }
}

/* ===== Section 3 ===== */
.cont3 {
    background: url('../../img/bg/bg-main-cont3.jpg') center/cover no-repeat
}

.cont3 .container {
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
}

.cont3 .section-header {
    width: 100%;
    align-items: center;
    gap: 20px;
}

.cont3 .title-lg {
    color: white;
    font-size: clamp(36px, 8vw, 102px);
    line-height: 1.08;
}

.cont3 .left {
    flex: 1.4;
}

.cont3 .right {
    flex: 1;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    color: white;
}

.cont3 .kicker {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.3;
    white-space: pre-line;
}

.cont3 .kicker .highlight {
    color: #A2CDFF;
}

.cont3 .desc {
    margin-top: 20px;
    font-size: clamp(14px, 1.2vw, 16px);
    font-weight: 200;
    line-height: 1.5;
    white-space: pre-line;
}

@media (max-width:1280px) {
    .cont3 .title-lg {
        font-size: 68px
    }

    .cont3 .kicker {
        font-size: 28px;
    }
}

@media (max-width:1024px) {
    .cont3 .section-header {
        flex-direction: column;
        align-items: baseline;
    }

    .cont3 .title-lg {
        font-size: 48px;
    }

    .cont3 .kicker {
        font-size: var(--font-2xl);
    }

    .cont3 .title-lg,
    .cont3 .kicker,
    .cont3 .desc {
        white-space: normal
    }
}

@media (max-width:768px) {
    .cont3 .container {
        min-height: 80vh;
    }

    .cont3 .title-lg {
        font-size: 38px;
        line-height: 1.12;
    }

    .cont3 .kicker {
        font-size: var(--font-lg);
    }

    .cont3 .right {
        gap: 48px
    }
}

@media (max-width:480px) {
    .cont3 .title-lg {
        font-size: 32px;
    }

    .cont3 .kicker {
        font-size: var(--font-md);
    }

    .cont3 .desc {
        font-size: var(--font-base);
    }
}

/* ===== Section 4 ===== */
.cont4 {
    background: url('../../img/bg/bg-main-cont4.jpg') center/cover no-repeat
}

.cont4 .container {
    min-height: 100vh;
}

.cont4 .section-header {
    flex-direction: column;
    color: white;
}

.cont4 .lead {
    color: white;
}

.cont4 .service {
    position: relative;
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-areas:
        "a . b . c ."
        ". d . e . f";
    column-gap: 10px;
    row-gap: 40px;
    justify-content: flex-start;
    align-items: start;
}

.cont4 .item:nth-of-type(1) {
    grid-area: a;
}

.cont4 .item:nth-of-type(2) {
    grid-area: b;
}

.cont4 .item:nth-of-type(3) {
    grid-area: c;
}

.cont4 .item:nth-of-type(4) {
    grid-area: d;
}

.cont4 .item:nth-of-type(5) {
    grid-area: e;
}

.cont4 .item:nth-of-type(6) {
    grid-area: f;
}

.cont4 .item {
    position: relative;
    width: 240px;
    height: 260px;
    padding: 24px 22px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, .15);
    color: #222;
    overflow: visible;
    transition: transform .25s ease, background .3s ease, color .3s ease, box-shadow .25s ease;
}

.cont4 .item:first-child {
    margin-left: 0;
}

.cont4 .item:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, rgba(0, 232, 240, 0) 0%, rgba(0, 232, 240, .4) 100%), var(--primary);
    color: white;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .25);
    z-index: 10;
}

.cont4 .badge {
    position: absolute;
    left: 16px;
    top: 16px;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #E0E0E0;
    color: #363;
    font-size: var(--font-base);
    font-weight: 500;
}

.cont4 .item:hover .badge {
    background: var(--white-20);
    color: white;
}

.cont4 .icon {
    width: 96px;
    height: 96px;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: filter .25s ease, transform .25s ease, background-image .15s ease;
}

.cont4 .item:nth-of-type(1) .icon {
    background-image: url("../../img/main/visual-icon01.png");
}

.cont4 .item:nth-of-type(2) .icon {
    background-image: url("../../img/main/visual-icon02.png");
}

.cont4 .item:nth-of-type(3) .icon {
    background-image: url("../../img/main/visual-icon03.png");
}

.cont4 .item:nth-of-type(4) .icon {
    background-image: url("../../img/main/visual-icon04.png");
}

.cont4 .item:nth-of-type(5) .icon {
    background-image: url("../../img/main/visual-icon05.png");
}

.cont4 .item:nth-of-type(6) .icon {
    background-image: url("../../img/main/visual-icon06.png");
}

.cont4 .item:hover .icon,
.cont4 .item:focus-within .icon {
    filter: brightness(0) invert(1);
}

.cont4 .item:nth-of-type(2):hover .icon,
.cont4 .item:nth-of-type(2):focus-within .icon {
    filter: none;
    background-image: url("../../img/main/visual-icon-hov02.png");
}

.cont4 .item:nth-of-type(3):hover .icon,
.cont4 .item:nth-of-type(3):focus-within .icon {
    filter: none;
    background-image: url("../../img/main/visual-icon-hov03.png");
}

.cont4 .title {
    margin-top: 18px;
    font-size: var(--font-lg);
    font-weight: 600;
    text-align: center;
}

.cont4 .item:hover .title {
    color: white;
}

.cont4 .desc {
    position: absolute;
    left: 0;
    top: 100%;
    width: 240px;
    margin-top: 10px;
    padding: 10px 14px 8px 35px;
    background: #CAE3FF;
    border-radius: 30px 5px 30px 30px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, .08);
    color: black;
    font-size: var(--font-base);
    font-weight: 300;
    line-height: 1.5;
    opacity: 0;
    z-index: 2;
    transform: translateY(6px);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease, background .25s ease, color .25s ease;
    display: block;
    list-style: disc;
    list-style-position: outside;
}

.cont4 .desc li {
    display: list-item;
    list-style: inherit;
}

.cont4 .desc li+li {
    margin-top: 4px;
}

.cont4 .item:hover .desc {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width:1500px) {
    .cont4 .service {
        margin-top: 20px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-areas: none;
        column-gap: 30px;
        row-gap: 28px;
    }

    .cont4 .item,
    .cont4 .item:nth-of-type(n) {
        grid-area: auto;
        width: 100%;
        height: auto;
        min-height: 260px;
        padding: 22px 20px;
    }

    .cont4 .icon {
        width: 80px;
        height: 80px;
        margin-top: 8px;
    }

    .cont4 .title {
        margin-top: 14px;
    }

    .cont4 .desc {
        position: static;
        width: 100%;
        margin-top: 12px;
        padding: 12px 14px 12px 36px;
        border-radius: 22px;
        box-shadow: 0 6px 14px rgba(0, 0, 0, .08);
        line-height: 1.5;
        opacity: 1;
        transform: translateY(0);
    }

    .cont4 .item:hover .desc {
        transform: none !important;
    }
}

@media (max-width:1280px) {
    .cont4 .service {
        margin-top: 50px;
    }

    .cont4 .item,
    .cont4 .item:nth-of-type(n) {
        min-height: 280px;
        padding: 20px 18px;
    }

    .cont4 .icon {
        width: 84px;
        height: 84px
    }

    .cont4 .title {
        font-size: var(--font-md);
    }

    .cont4 .desc {
        margin-top: 10px;
        padding: 10px 12px 10px 34px;
        border-radius: 20px;
    }
}

@media (max-width:1024px) {
    .cont4 .service {
        grid-template-columns: repeat(3, 1fr);
        column-gap: 14px;
        row-gap: 22px
    }

    .cont4 .item,
    .cont4 .item:nth-of-type(n) {
        min-height: 240px;
    }

    .cont4 .badge {
        min-width: 40px;
        height: 40px;
        padding: 0 10px;
        font-size: 14px;
        left: 14px;
        top: 14px;
    }

    .cont4 .icon {
        width: 65px;
        height: 65px
    }

    .cont4 .desc {
        margin-top: 10px;
        padding: 10px 12px 10px 32px;
        font-size: 13px
    }
}

@media (max-width:768px) {
    .cont4 .lead {
        white-space: normal;
    }

    .cont4 .service {
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas: none;
        column-gap: 12px;
        row-gap: 18px
    }

    .cont4 .item,
    .cont4 .item:nth-of-type(n) {
        min-height: 250px;
        padding: 20px;
    }

    .cont4 .badge {
        min-width: 34px;
        height: 34px;
        font-size: 12px;
        left: 10px;
        top: 10px
    }

    .cont4 .title {
        font-size: var(--font-base)
    }

    .cont4 .desc {
        margin-top: 8px;
        padding: 10px 12px 10px 30px;
        border-radius: 18px;
        font-size: 12.5px
    }
}

@media (max-width:480px) {
    .cont4 .service {
        margin-top: 20px;
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 14px;
    }

    .cont4 .item,
    .cont4 .item:nth-of-type(n) {
        min-height: auto;
    }

    .cont4 .badge {
        min-width: 34px;
        height: 34px;
        font-size: 12px;
        left: 10px;
        top: 10px;
    }

    .cont4 .icon {
        width: 50px;
        height: 50px;
    }

    .cont4 .desc {
        margin-top: 5px;
        padding: 10px 12px 10px 28px;
        border-radius: 16px;
        font-size: 12.5px;
    }
}

/* ===== Section 5 ===== */
.cont5 {
    background: url('../../img/bg/bg-main-cont5.jpg') center/cover no-repeat
}

.cont5 .container {
    min-height: 100vh;
}

.cont5 .section-header {
    flex-direction: column;
    color: white;
    text-align: center;
}

.cont5 .lead {
    color: white;
}

.cont5 .business {
    margin-top: 80px;
}

.business .list {
    display: flex;
    gap: 20px;
    height: 565px;
    flex-wrap: nowrap;
}

.business .card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    flex: 1 1 0;
    min-width: 0;
    color: white;
    transition: flex-grow .55s ease;
}

.business .card:hover,
.business .card:focus-within,
.business .card.active {
    flex-grow: 4.6;
}

.business .card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: transform 0.85s ease;
    will-change: transform;
}

.business .card::after {
    content: "";
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transform-origin: 50% 50%;
    transition: transform .55s ease, opacity .5s ease;
    z-index: 1;
    will-change: transform, opacity;
}

.business .card::after {
    pointer-events: none;
}

.business .card:nth-child(1)::before {
    background-image: url('../../img/main/bg-card01.png');
}

.business .card:nth-child(2)::before {
    background-image: url('../../img/main/bg-card02.png');
}

.business .card:nth-child(3)::before {
    background-image: url('../../img/main/bg-card03.png');
}

.business .card:nth-child(4)::before {
    background-image: url('../../img/main/bg-card04.png');
}

.business .card:nth-child(5)::before {
    background-image: url('../../img/main/bg-card05.png');
}

.business .card:hover::after {
    opacity: 1;
    transform: scale(1);
    background-image:
        linear-gradient(0deg, rgba(9, 106, 217, .7), rgba(9, 106, 217, .7));
}

.business .content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px;
    z-index: 2;
    opacity: 0;
    transform: scale(0.3) translateY(6px);
    transform-origin: 50% 50%;
    transition: opacity .4s ease, transform .55s ease;
    will-change: transform, opacity;
}

.business .card:hover .content,
.business .card:focus-within .content,
.business .card.active .content {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.cont5 .teaser {
    position: absolute;
    inset: 0;
    padding: 30px 30px 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 2;
    opacity: 1;
    transition: opacity .18s ease;
}

.cont5 .teaser .icon {
    width: auto;
    height: 70px;
    display: block;
}

.cont5 .teaser .label {
    font-size: var(--font-xl);
    font-weight: 600;
    line-height: 1.5;
}

.business .card:hover .teaser,
.business .card:focus-within .teaser,
.business .card.active .teaser {
    opacity: 0;
}

.cont5 .content .icon {
    width: fit-content;
    height: 70px;
    display: block;
}

.business .title {
    margin-top: auto;
    font-weight: 600;
    font-size: 36px;
    line-height: 1.4;
}

.business .title span,
.business .desc span {
    display: block;
}

.business .desc {
    margin: 8px 0 40px;
    font-weight: 300;
    font-size: var(--font-md);
    line-height: 1.6;
    white-space: pre-line;
}

.business .points {
    display: flex;
    gap: 10px;
}

.business .feature {
    padding: 10px 22px;
    border-radius: 300px;
    border: 1px solid var(--white-80);
    color: var(--white-80);
    font-size: var(--font-base);
    font-weight: 500;
    white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
    .business .card {
        transition: none;
    }

    .business .card::before,
    .business .card::after,
    .business .content {
        transition: none;
        transform: none;
        opacity: 1;
    }
}

@media (max-width:1440px) {
    .business .list {
        gap: 18px;
        height: 520px;
        overflow: visible;
    }

    .business .title {
        font-size: 42px;
    }

    .business .feature {
        padding: 10px 20px;
        font-size: 15px;
    }
}

@media (max-width:1280px) {
    .business .list {
        height: 480px;
        overflow: visible;
    }

    .business .kicker {
        font-size: 22px;
    }

    .business .title {
        font-size: 36px;
    }

    .business .desc {
        font-size: var(--font-base);
    }

    .business .points {
        flex-wrap: wrap;
        gap: 8px;
    }

    .business .feature {
        padding: 8px 18px;
        font-size: var(--font-base);
    }
}

@media (max-width:1024px) {
    .cont5 .container {
        min-height: auto;
    }

    .cont5 .business {
        margin-top: 50px;
    }

    .business .list {
        flex-wrap: wrap;
        height: auto;
        gap: 16px;
        overflow: visible;
    }

    .business .title {
        margin-top: 15px;
        font-size: var(--font-xl);
    }

    .business .desc {
        margin: 8px 0 25px;
    }

    .business .kicker {
        font-size: var(--font-md);
    }

    .business .card {
        flex: 0 0 calc(50% - 8px);
        min-width: 0;
        min-height: 300px;
        transition: none;
        max-width: 100%;
    }

    .business .card:hover,
    .business .card:focus-within,
    .business .card.active {
        flex-grow: 0;
    }

    .business .content {
        opacity: 1;
        transform: none;
        padding: 28px;
    }

    .business .label {
        opacity: 0;
    }

    .business .card::after {
        opacity: 1;
        transform: none;
    }

    .business .card::before {
        transform: scale(1.02);
    }

    .business .feature {
        padding: 8px 16px;
    }

    .cont5 .teaser .icon {
        display: none;
    }
}

@media (hover:hover) and (max-width:1024px) {
    .business .card:hover::before {
        transform: scale(1.04);
    }
}

@media (pointer:coarse) and (max-width:1024px) {
    .business .card {
        transition: none;
    }

    .business .card::before {
        transition: transform .3s ease;
    }

    .business .card:active .card::before {
        transform: scale(1.04);
    }
}

@media (max-width:768px) {
    .business .list {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
    }

    .business .card {
        flex: 0 0 80%;
        scroll-snap-align: center;
        min-height: 320px;
        margin-right: 12px;
    }

    .business .card:last-child {
        margin-right: 0;
    }

    .business .title {
        font-size: var(--font-2xl);
        line-height: 1.35;
    }

    .business .desc {
        margin: 6px 0 28px;
        font-size: 15px;
        white-space: normal;
    }

    .business .content {
        padding: 24px;
        justify-content: space-between;
    }

    .business .feature {
        padding: 8px 14px;
        font-size: 13px;
    }

    .cont5 .content .icon {
        width: 60px;
        height: 60px;
    }
}

@media (max-width:480px) {
    .cont5 .business {
        margin-top: 20px;
    }

    .business .list {
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
    }

    .business .card {
        flex: 0 0 88%;
        border-radius: 16px;
        scroll-snap-align: center;
    }

    .business .content {
        padding: 20px;
    }

    .business .kicker {
        font-size: var(--font-base);
    }

    .business .title {
        font-size: var(--font-xl);
    }

    .business .desc {
        font-size: 14px;
    }

    .business .card,
    .business .card::before,
    .business .card::after {
        border-radius: 16px;
    }

    .business .points {
        gap: 6px;
    }

    .business .feature {
        padding: 7px 12px;
        font-size: 12.5px;
    }

    .business .desc {
        margin: 6px 0 15px;
    }

    .cont5 .content .icon {
        width: 50px;
        height: 50px;
    }
}

/* ===== Section 6 ===== */
.cont6 {
    background: url('../../img/bg/bg-main-cont6.jpg') center/cover no-repeat
}

.cont6 .container {
    min-height: 100vh;
}

.cont6 .section-header {
    flex-direction: column;
    color: #1A324C;
}

.cont6 .lead {
    color: #1A324C;
    font-weight: 500;
}

.cont6 .product {
    margin: 80px 0 40px;
    position: relative;
    display: flex;
    gap: 80px;
}

.cont6 .tabs {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cont6 .tab {
    width: 240px;
    padding: 12px 25px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .5);
    border: 1px solid rgba(0, 0, 0, 0.02);
    backdrop-filter: blur(12px);
    color: #626262;
    font-size: var(--font-md);
    font-weight: 500;
    text-align: center;
    line-height: 27px;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, box-shadow .2s ease
}

.cont6 .tab.is-active {
    background-color: white;
    box-shadow: 0 5px 24px rgba(10, 65, 128, .15);
    color: var(--primary);
    font-weight: 600;
}

.cont6 .tab:hover,
.cont6 .tab:focus-visible {
    background: white;
    color: var(--primary);
    font-weight: 600;
    box-shadow: 0 5px 24px rgba(10, 65, 128, .15)
}

.cont6 .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: stretch;
}

.cont6 .card {
    display: flex;
    padding: 30px;
    flex-direction: column;
    gap: 20px;
    background: var(--white-90);
    border-radius: 35px;
    backdrop-filter: blur(11.52px);
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease
}

.cont6 .card:hover {
    background: var(--primary);
    box-shadow: 0 5px 24px rgba(10, 65, 128, .35);
    transform: translateY(-2px)
}

.cont6 .card-img {
    background: white;
    border-radius: 18px;
    overflow: hidden;
}

.cont6 .card-img img {
    display: block;
    width: 100%;
    height: 308px;
    object-fit: cover;
}

.cont6 .card-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 5px;
}

.cont6 .chip {
    width: fit-content;
    display: inline-block;
    padding: 7px 14px;
    border-radius: 10px;
    background: rgba(176, 176, 176, .13);
    color: #5D5D5D;
    font-size: var(--font-sm);
    font-weight: 600;
    transition: background .2s ease, color .2s ease;
}

.cont6 .title {
    font-size: var(--font-2xl);
    line-height: 36px;
    font-weight: 600;
    transition: color .2s ease;
}

.cont6 .desc {
    color: rgba(34, 34, 34, .8);
    font-size: var(--font-base);
    line-height: 24px;
    transition: color .2s ease;
}

[lang="en"] .cont6 .desc {
    display: none;
}

.cont6 .card:hover .chip {
    background: rgba(255, 255, 255, .13);
    color: white;
}

.cont6 .card:hover .title {
    color: white;
}

.cont6 .card:hover .desc {
    color: var(--white-80);
}

.cont6 .btn-wrapper {
    display: flex;
    justify-content: flex-end;
}

.cont6 .btn-solid b {
    color: var(--primary);
}

@media (max-width:1280px) {
    .cont6 .product {
        margin: 60px 0 32px;
        gap: 40px;
    }

    .cont6 .tabs {
        gap: 10px;
    }

    .cont6 .tab {
        width: 200px;
        padding: 10px 18px;
    }

    .cont6 .cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .cont6 .card {
        padding: 22px;
        gap: 16px;
        display: flex;
        flex-direction: row;
        align-items: center;
        border-radius: 28px;
    }

    .cont6 .card-img {
        flex: 0 0 42%;
        border-radius: 14px;
        overflow: hidden;
    }

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

    .cont6 .card-body {
        flex: 1;
        gap: 8px;
        padding-left: 16px;
    }

    .cont6 .title {
        font-size: var(--font-xl);
        line-height: 1.35;
    }
}

@media (max-width:1024px) {
    .cont6 .product {
        flex-direction: column;
        gap: 28px;
        margin: 50px 0 28px;
    }

    .cont6 .tabs {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cont6 .tab {
        width: auto;
        padding: 10px 16px;
    }

    .cont6 .card {
        padding: 20px;
        border-radius: 24px;
    }

    .cont6 .card-img {
        flex: 0 0 45%;
    }

    .cont6 .card-img img {
        height: auto;
    }

    .cont6 .chip {
        padding: 6px 12px;
    }

    .cont6 .title {
        font-size: var(--font-lg);
        line-height: 1.35;
    }

    .cont6 .btn-wrapper {
        justify-content: center;
    }
}

@media (max-width:768px) {
    .cont6 .product {
        margin: 40px 0 24px;
        gap: 20px;
    }

    .cont6 .tabs {
        padding-bottom: 4px;
    }

    .cont6 .tab {
        flex: 0 0 auto;
        white-space: nowrap;
        font-size: var(--font-sm);
        padding: 9px 14px;
        border-radius: 24px;
    }

    .cont6 .cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cont6 .card {
        padding: 16px;
        gap: 14px;
        flex-direction: row;
        border-radius: 20px;
    }

    .cont6 .card-img {
        flex: 0 0 40%;
    }

    .cont6 .card-body {
        padding-left: 12px;
        gap: 6px;
    }
}

@media (max-width:480px) {
    .cont6 .product {
        margin: 32px 0 20px;
        gap: 16px;
    }

    .cont6 .tabs {
        gap: 6px;
    }

    .cont6 .tab {
        font-size: 13px;
        padding: 8px 12px;
        border-radius: 20px;
    }

    .cont6 .cards {
        gap: 10px;
    }

    .cont6 .card {
        gap: 12px;
        padding: 16px;
        border-radius: 18px;
    }

    .cont6 .card-img {
        flex: 0 0 40%;
    }

    .cont6 .card-body {
        padding-left: 0;
        gap: 8px;
    }

    .cont6 .title {
        font-size: var(--font-md);
        line-height: 1.35;
    }

    .cont6 .desc {
        font-size: var(--font-sm);
    }
}

/* ===== Section 8 ===== */
.cont8 {
    background: url('../../img/bg/bg-main-cont8.jpg') center/cover no-repeat
}

.cont8 .container {
    padding: 120px 0 150px;
}

.cont8 .section-header {
    flex-direction: column;
    color: white;
}

.cont8 .title-md {
    font-size: 50px;
    white-space: pre-line;
}

.cont8 .lead {
    margin-top: 10px;
    color: white;
    font-size: var(--font-base);
    font-weight: 300;
    line-height: 1.6;
}

.cont8 .values {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    gap: 50px;
}

.cont8 .card {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .22);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .18);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease;
}

.cont8 .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 48px rgba(0, 0, 0, .28);
}

.cont8 .card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity .35s ease, transform .6s ease;
}

.cont8 .card:nth-child(1)::before {
    background-image: url("../../img/main/visual01.png");
}

.cont8 .card:nth-child(2)::before {
    background-image: url("../../img/main/visual02.png");
}

.cont8 .card:nth-child(3)::before {
    background-image: url("../../img/main/visual03.png");
}

.cont8 .card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.cont8 .card .icon {
    width: 78px;
    height: 78px;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-color: transparent;
    transition: filter .25s ease, transform .25s ease;
    -webkit-mask: none;
    mask: none;
    z-index: 1;
}

.cont8 .card:nth-child(1) .icon {
    background-image: url("../../img/main/visual-icon12.png");
}

.cont8 .card:nth-child(2) .icon {
    background-image: url("../../img/main/visual-icon13.png");
}

.cont8 .card:nth-child(3) .icon {
    background-image: url("../../img/main/visual-icon14.png");
}

.cont8 .card:hover .icon {
    filter: brightness(1.12);
}

.cont8 .card .text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    z-index: 1;
}

.cont8 .card .title {
    color: white;
    font-weight: 700;
    font-size: var(--font-3xl);
    line-height: 1.6;
}

.cont8 .card .desc {
    color: rgba(255, 255, 255, .7);
    font-size: var(--font-base);
    line-height: 1.6;
    font-weight: 400;
}

.cont8 .card:hover .desc {
    color: white;
}

@media (max-width:1500px) {
    .cont8 .container {
        padding: 120px 20px 150px;
    }
}

@media (max-width:1280px) {
    .cont8 .container {
        padding: 100px 20px 120px;
    }

    .cont8 .title-md {
        font-size: 40px;
        white-space: normal;
    }

    .cont8 .values {
        margin-top: 64px;
        gap: 28px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .cont8 .card {
        width: 300px;
        height: 300px;
        gap: 24px;
    }

    .cont8 .card .icon {
        width: 64px;
        height: 64px;
    }

    .cont8 .card .title {
        font-size: var(--font-2xl);
    }
}

@media (max-width:1024px) {
    .cont8 .container {
        padding: 90px 20px 110px;
    }

    .cont8 .title-md {
        font-size: 32px;
    }

    .cont8 .lead {
        font-size: var(--font-base);
        line-height: 1.6;
    }

    .cont8 .card {
        width: 260px;
        height: 260px;
    }

    .cont8 .card::before {
        border-radius: 22px;
    }

    .cont8 .card .icon {
        width: 56px;
        height: 56px;
    }

    .cont8 .card .text {
        padding: 0 50px;
    }

    .cont8 .card .title {
        font-size: var(--font-lg);
        line-height: 1.4;
    }

    .cont8 .card .desc {
        font-size: var(--font-base);
        line-height: 1.5;
    }
}

@media (max-width:768px) {
    .cont8 .title-md {
        font-size: 28px;
    }

    .cont8 .lead {
        line-height: 1.5;
    }

    .cont8 .values {
        margin-top: 28px;
        flex-wrap: nowrap;
        gap: 14px;
    }

    .cont8 .card {
        width: 100%;
        height: auto;
        padding: 35px 15px;
        gap: 5px;
        border-radius: 20px;
    }

    .cont8 .card::before {
        border-radius: 20px;
    }

    .cont8 .card .icon {
        width: 40px;
        height: 40px;
    }

    .cont8 .card .text {
        padding: 0;
    }

    .cont8 .card .title {
        font-size: var(--font-md);
    }

    .cont8 .card .desc {
        line-height: 1.45;
    }
}

@media (max-width:620px) {
    .cont8 .container {
        padding: 60px 20px 80px;
    }

    .cont8 .title-md {
        font-size: 26px;
    }

    .cont8 .lead {
        white-space: normal;
    }

    .cont8 .values {
        gap: 10px;
    }

    .cont8 .card {
        padding: 25px 15px;
        border-radius: 18px;
        gap: 12px;
    }

    .cont8 .card::before {
        border-radius: 18px;
    }

    .cont8 .card .icon {
        width: 32px;
        height: 32px;
    }

    .cont8 .card .title {
        font-size: var(--font-base);
    }

    .cont8 .card .desc {
        font-size: var(--font-xs);
        line-height: 1.4;
    }
}

@media (max-width:480px) {
    .cont8 .values {
        flex-direction: column;
    }

    .cont8 .card {
        padding: 25px 30px;
        flex-direction: row;
        justify-content: flex-start;
    }

    .cont8 .card .icon {
        width: 40px;
        height: 40px;
    }

    .cont8 .card .text {
        text-align: left;
    }

    .cont8 .card .title {
        font-size: var(--font-md);
    }

    .cont8 .card .desc {
        font-size: var(--font-sm);
        line-height: 1.4;
    }
}

/* ===== Section 9 ===== */
.cont9 {
    position: relative;
    margin: 30px;
    background: url("../../img/bg/bg-main-cont9.jpg") center/cover no-repeat;
    border-radius: 20px;
    overflow: hidden;
}

.cont9 .container {
    padding: 55px 0;
}

.cont9 .support {
    display: flex;
    justify-content: space-between;
}

.cont9 .section-header {
    flex-direction: column;
    color: white;
}

.cont9 .title-md {
    font-family: 'Outfit', sans-serif;
    font-size: 60px;
    font-weight: 500;
}

.cont9 .lead {
    color: white;
}

.cont9 .cards {
    display: flex;
    gap: 15px;
}

.cont9 .card {
    position: relative;
    width: 368px;
    height: 234px;
    padding: 40px 34px 34px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease;
}

.cont9 .card:nth-child(1) {
    background: var(--primary);
    color: white;
}

.cont9 .card:nth-child(2) {
    background: white;
    color: #4A4A4A;
}

.cont9 .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, .22);
}

.cont9 .card::after {
    content: "";
    position: absolute;
    top: 40px;
    right: 34px;
    width: 30px;
    height: 30px;
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.707031 1H30.707M30.707 1V31M30.707 1L0.707031 31' stroke='white' stroke-width='2'/%3E%3C/svg%3E") no-repeat center/contain;
    mask: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.707031 1H30.707M30.707 1V31M30.707 1L0.707031 31' stroke='white' stroke-width='2'/%3E%3C/svg%3E") no-repeat center/contain;
}

.cont9 .card:nth-child(1)::after {
    color: white;
}

.cont9 .card:nth-child(2)::after {
    color: var(--primary);
}

.cont9 .icon {
    width: 36px;
    height: 36px;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.cont9 .card:nth-child(1) .icon {
    background-image: url("../../img/main/visual-icon15.png");
}

.cont9 .card:nth-child(2) .icon {
    background-image: url("../../img/main/visual-icon16.png");
}

.cont9 .title {
    color: inherit;
    font-size: var(--font-2xl);
    font-weight: 600;
    line-height: 1.4;
}

@media (max-width:1600px) {
    .cont9 .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .cont9 .section-header {
        flex: 1;
    }

    .cont9 .cards {
        flex: 1;
    }

    .cont9 .card {
        flex: 1;
        width: 100%;
        height: 210px;
    }
}

@media (max-width:1280px) {
    .cont9 {
        margin: 30px 20px;
    }

    .cont9 .card {
        padding: 30px;
        height: 200px;
    }

    .cont9 .card::after {
        top: 30px;
        right: 30px;
        width: 25px;
        height: 25px;
    }

    .cont9 .title {
        font-size: var(--font-xl);
    }
}

@media (max-width:1024px) {
    .cont9 .support {
        flex-direction: column;
        gap: 30px;
    }

    .cont9 .title-md {
        font-size: 50px;
    }

    .cont9 .card {
        height: auto;
        padding: 20px 30px;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }

    .cont9 .card::after {
        top: 26px;
        width: 20px;
        height: 20px;
    }

    .cont9 .icon {
        width: 30px;
        height: 30px;
    }

    .cont9 .title {
        font-size: var(--font-lg);
    }
}

@media (max-width:768px) {
    .cont9 .title-md {
        font-size: 42px;
    }

    .cont9 .cards {
        flex-direction: column;
        gap: 10px;
    }

    .cont9 .card {
        padding: 20px;
    }

    .cont9 .card::after {
        top: 24px;
        width: 18px;
        height: 18px;
    }

    .cont9 .icon {
        width: 25px;
        height: 25px;
    }

    .cont9 .title {
        font-size: var(--font-md);
    }
}

@media (max-width:480px) {
    .cont9 .title-md {
        font-size: 33px;
    }

    .cont9 .card {
        padding: 15px 25px;
    }

    .cont9 .card::after {
        top: 20px;
        width: 15px;
        height: 15px;
    }

    .cont9 .title {
        font-size: var(--font-base);
    }
}
