/* Regular Weight (400) */
@font-face {
    font-family: 'Fellix';
    src: url('fonts/Fellix-TRIAL-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Medium Weight (500) */
@font-face {
    font-family: 'Fellix';
    src: url('fonts/Fellix-TRIAL-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* SemiBold Weight (600) */
@font-face {
    font-family: 'Fellix';
    src: url('fonts/Fellix-TRIAL-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Fellix', sans-serif;
    font-weight: 500; /* Uses Medium */
}

body::-webkit-scrollbar {
    display: none;
}

header {
    width: 100vw;
    height: max-content;
    position: fixed;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 56px;
    left: 0;
    padding: 0 60px;
    z-index: 9999;
}

header .logo a {
    display: flex;
}

header .menu-burger {
    display: flex;
}

.redifining {
    width: 100%;
    height: max-content;
    background-image: url('images/bg1.png');
    background-repeat: no-repeat;
    background-size: cover;
    /*background: linear-gradient(*/
    /*        180deg,*/
    /*        rgba(255,255,255,1) 30%,*/
    /*        rgba(226,71,105,1) 70%,*/
    /*        rgba(134,72,211,1) 100%*/
    /*);*/
    padding: 307px 174px 99px 174px;
}

.redifining .info-elems {
    width: 100%;
    height: max-content;
    display: flex;
    flex-direction: column;
    gap: 200px;
}

.redifining .info-elems .top {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 39px;
}

.redifining .info-elems .top h3 {
    font-weight: 600;
    font-size: 128px;
    line-height: 113px;
    text-align: center;
    color: #ffffff;
}

.redifining .info-elems .top h3.animate-color {
    animation: changeColor 2s forwards;
    animation-delay: 1s;
}

@keyframes changeColor {
    0% {
        color: #ffffff;
    }
    100% {
        color: #000000;
    }
}


.redifining .info-elems .top p {
    width: 658px;
    margin: auto;
    font-weight: 500;
    font-size: 21px;
    line-height: 25px;
    text-align: center;
    color: #000000;
}

.redifining .info-elems .bottom {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.redifining .info-elems .bottom span {
    width: 144px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    border: 2px solid transparent;
    background-image:
            linear-gradient(#E5D9EB, #E5D9EB), /* Internal background color */
            linear-gradient(to right, #EB625A 0%, #E65E75 26%, #C74C8B 51%, #8648D3 94%); /* Border gradient */
    background-origin: border-box;
    background-clip: padding-box, border-box;
    margin: auto;
}

.redifining .info-elems .bottom p {
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    text-align: center;
    color: #FFFFFF;
}

.introducing {
    width: 100%;
    height: max-content;
    padding: 177px 135px 220px 135px;
    background-color: #EFEFEF;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    gap: 64px;
}

.introducing .info-content {
    max-width: 1123px;
    width: 100%;
    height: max-content;
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.introducing .info-content h2 {
    font-weight: 600;
    font-size: 148px;
    line-height: 177px;
    text-align: center;
    color: #C9C9C9;
    overflow: hidden;
}

.introducing .info-content h2 span {
    position: relative;
    overflow: hidden;
    vertical-align: bottom;
    background: linear-gradient(
            to right,
            #FF5348 0%,
            #E24769 33%,
            #CD4982 68%,
            #8648D3 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.introducing .info-content h2 span.box.show {
    animation: revealUp 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes revealUp {
    0% {
        transform: translateY(300%);
    }
    100% {
        transform: translateY(0%);
    }
}

.introducing .info-content p {
    width: 420px;
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    text-align: center;
    color: #000000;
    margin: auto;
}

.introducing .card-content {
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #D6D6D6;
    border-radius: 18px;
    display: flex;
    gap: 67px;
    padding: 46px 0 46px 60px;
    overflow: hidden;
}

.introducing .card-content .left-content {
    width: max-content;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 53px 0;
    gap: 246px;
}

.introducing .card-content .left-content .top {
    width: max-content;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.introducing .card-content .left-content .top h3 {
    width: 360px;
    font-weight: 600;
    font-size: 36px;
    line-height: 36px;
}

.introducing .card-content .left-content .top h3 span {
    /*background: linear-gradient(90deg, #FF5348 0%, #E24769 32.69%, #CD4982 67.79%, #8648D3 100%);*/
    /*-webkit-background-clip: text;*/
    /*-webkit-text-fill-color: transparent;*/
    /*background-clip: text;*/
    /*text-fill-color: transparent;*/
    color: rgba(235, 98, 90, 1);
}

.introducing .card-content .left-content .top p {
    width: 611px;
    font-weight: 500;
    font-size: 21px;
    line-height: 25px;
    color: #000000;
}

.introducing .card-content .left-content .bottom {
    width: max-content;
    display: flex;
    gap: 36px;
}

.introducing .card-content .left-content .bottom .elem {
    width: max-content;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.introducing .card-content .left-content .bottom .elem svg {
    width: 40px;
    height: 40px;
}

.introducing .card-content .left-content .bottom .elem:first-child p {
    width: 345px;
}

.introducing .card-content .left-content .bottom .elem p {
    width: 360px;
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    color: #000000;
}

.introducing .card-content .right-content {
    width: 782px;
    height: 657px;
}

.introducing .card-content .right-content img {
    width: 822px;
    height: 100%;
}

.introducing .card-content .right-content img.show {
    animation: slideInLeft 3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slideInLeft {
    0% {
        transform: translateX(100%);
    }
    60% {
        transform: translateX(-30px);
    }
    100% {
        transform: translateX(0px);
    }
}

.vision-platform-introduction {
    position: sticky;
    top: 0;
    width: 100%;
    display: flex;
    gap: 150px;
    background-color: white;
    padding: 146px 132px 152px 161px;
}

.vision-platform-introduction .left-content {
    width: max-content;
    display: flex;
    flex-direction: column;
    gap: 94px;
}

.vision-platform-introduction .left-content h3 {
    width: 543px;
    font-weight: 600;
    font-size: 64px;
    line-height: 64px;
    color: #000000;
}

.vision-platform-introduction .left-content .accordion-container {
    width: 612px;
    display: flex;
    flex-direction: column;
}

.vision-platform-introduction .left-content .accordion-container .accordion-item {
    border-bottom: 1px solid #D9D9D9;
    padding: 40px 0 10px;
}

.vision-platform-introduction .left-content .accordion-container .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.vision-platform-introduction .left-content .accordion-container .accordion-header h2 {
    width: 408px;
    font-weight: 500;
    font-size: 42px;
    line-height: 42px;
    color: #000000;
}

.vision-platform-introduction .left-content .accordion-container .icon-wrapper {
    position: relative;
}

.vision-platform-introduction .left-content .accordion-container .icon-wrapper .icon {
    width: 45px;
    height: 42px;
    transition: 1s ease;
}

.vision-platform-introduction .left-content .accordion-container .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s ease, margin-top 1s ease;
}

.vision-platform-introduction .left-content .accordion-container .accordion-item.active .accordion-content {
    max-height: 200px;
    margin-top: 16px;
}


.vision-platform-introduction .left-content .accordion-container .accordion-item.active .icon-wrapper .icon {
    transform: rotate(45deg);
}

.vision-platform-introduction .left-content .accordion-container .accordion-content p {
    width: 611px;
    font-weight: 500;
    font-size: 21px;
    line-height: 25px;
    color: #000000;
}

.vision-platform-introduction .right-content {
    width: 856px;
    height: 621px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 7px;
}

.vision-platform-introduction .right-content .elem {
    width: 100%;
    min-height: 621px; /* Ensure height is locked */
    height: 621px;
    transition: transform 1.5s cubic-bezier(0.68, 1, 0.27, 1.1) ;
    will-change: transform;
}

.vision-platform-introduction .right-content .elem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.products {
    width: 100%;
    height: max-content;
    padding: 164px 160px 187px 160px;
    background-color: #EFEFEF;
    position: relative;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 87px;
}

.products .info-content {
    width: max-content;
    display: flex;
    flex-direction: column;
    margin: auto;
}

.products .info-content h3 {
    font-weight: 600;
    font-size: 148px;
    line-height: 148px;
    text-align: center;
    color: #000000;
}

.products .info-content p {
    width: 420px;
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    text-align: center;
    color: #000000;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 20px;
}

.products .info-content div {
    width: max-content;
    display: flex;
    margin: auto;
    gap: 6px;
}

.products .info-content div span {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 21px;
    line-height: 25px;
}

.products .info-content div span:nth-child(1) {
    width: 65px;
    height: 31px;
    background: linear-gradient(90deg, #EB625A 0%, #E65E75 32.69%, #C74C8B 67.79%, #8648D3 100%);
    border-radius: 5px;
    font-weight: 600;
    font-size: 21px;
    line-height: 25px;
    text-align: center;
    color: #000000;
}

.products .info-content div span:nth-child(3) {
    width: 177px;
    height: 31px;
    background: #0F0FED;
    border-radius: 5px;
    font-weight: 600;
    font-size: 21px;
    line-height: 25px;
    color: #FFFFFF;
}

.products .slider-content {
    width: 100%;
    height: 981px;
}

.products .slider-content .split-screen-section {
    width: 100%;
    display: flex;
    gap: 20px;
    height: 100%; /* Occupies full screen */
    overflow: hidden;
}

.products .slider-content .split-screen-section .left-content,
.products .slider-content .split-screen-section .right-content {
    width: 50%;
    height: 100%;
    padding: 68px 94px 69px 94px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.products .slider-content .split-screen-section .swiper-elems {
    width: 490px;
    height: 660px;
    overflow: hidden;
    margin: auto;
}

/*.products .slider-content .split-screen-section .swiper-container:before {*/
/*    position: absolute;*/
/*    content: "";*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    z-index: 99;*/
/*}*/

.products .slider-content .split-screen-section .swiper-container .swiper-wrapper {
    width: 490px;
    height: 660px;
    margin: auto;
}

.products .slider-content .split-screen-section .left-content .top,
.products .slider-content .split-screen-section .right-content .top {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: auto;
    justify-content: center;
}

.products .slider-content .split-screen-section .left-content .top {
    width: 200px;
}

.products .slider-content .split-screen-section .left-content .top h3 {
    font-weight: 600;
    font-size: 82px;
    line-height: 98px;
    background: linear-gradient(90deg, #FF5348 0%, #E24769 32.69%, #CD4982 67.79%, #8648D3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-align: center;
}

.products .slider-content .split-screen-section .left-content .top p {
    font-style: normal;
    font-weight: 500;
    font-size: 21px;
    line-height: 25px;
    text-align: center;
    color: #282828;
}

.products .slider-content .split-screen-section .right-content .top {
    width: 100%;
}

.products .slider-content .split-screen-section .right-content .top h3 {
    width: 100%;
    font-weight: 600;
    font-size: 82px;
    line-height: 98px;
    text-align: center;
    color: #0F0FED;
}

.products .slider-content .split-screen-section .right-content .top p {
    width: 200px;
    font-weight: 500;
    font-size: 21px;
    line-height: 25px;
    text-align: center;
    color: #000000;
    margin: auto;
}

.products .slider-content .split-screen-section .left-content {
   background-color: #E4E2DF;
}

.products .slider-content .split-screen-section .right-content {
   background-color: #FFFFFF;
}

.products .slider-content .split-screen-section .swiper-container .swiper-slide {
    display: flex;
    flex-direction: column;
}

.products .slider-content .split-screen-section .swiper-container.left-slider .swiper-slide {
    width: 100%;
    height: 660px !important;
    max-height: 660px;
    border-radius: 18px;
    border: 2px solid transparent;
    background-image: linear-gradient(#ffffff, #ffffff), /* Internal background color */ linear-gradient(to right, #0F0FED 0%, #6938B8 26%, #8648D3 51%, #7497FE 94%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    padding: 17px 17px 30px 17px;
}

.products .slider-content .split-screen-section .swiper-container.left-slider .swiper-slide img {
    width: 100%;
    height: 271px;
    object-fit: contain;
}

.products .slider-content .split-screen-section .swiper-container.left-slider .swiper-slide .text-content {
    width: 423px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 15px;
    margin-top: 40px;
}

.products .slider-content .split-screen-section .swiper-container.left-slider .swiper-slide .text-content h3 {
    font-weight: 600;
    font-size: 36px;
    line-height: 36px;
    color: #000000;
}

.products .slider-content .split-screen-section .swiper-container.left-slider .swiper-slide .text-content p {
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    color: #000000;
}

.products .slider-content .split-screen-section .swiper-container.left-slider .swiper-slide span {
    width: 425px;
    height: 39px;
    background: linear-gradient(90deg, #FF5348 0%, #E24769 32.69%, #CD4982 67.79%, #8648D3 100%);
    border: 1px solid #CCCCCC;
    border-radius: 5px;
    margin: 0 auto;
    margin-top: auto;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
}


.products .slider-content .split-screen-section .swiper-container.right-slider .swiper-slide {
    width: 100%;
    height: 660px !important;
    max-height: 660px;
    border-radius: 18px;
    border: 2px solid #D1D1D1;
    padding: 17px 17px 30px 17px;
}

.products .slider-content .split-screen-section .swiper-container.right-slider .swiper-slide img {
    width: 100%;
    height: 271px;
    object-fit: contain;
}

.products .slider-content .split-screen-section .swiper-container.right-slider .swiper-slide .text-content {
    width: 415px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 15px;
    margin-top: 40px;
}

.products .slider-content .split-screen-section .swiper-container.right-slider .swiper-slide .text-content h3 {
    font-weight: 600;
    font-size: 36px;
    line-height: 36px;
    color: #000000;
}

.products .slider-content .split-screen-section .swiper-container.right-slider .swiper-slide .text-content p {
    width: 370px;
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    color: #000000;
}

.products .slider-content .split-screen-section .swiper-container.right-slider .swiper-slide span {
    width: 425px;
    height: 39px;
    background: #0F0FED;
    border: 1px solid #CCCCCC;
    border-radius: 5px;
    margin: 0 auto;
    margin-top: auto;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}


.the-insurance {
    width: 100%;
    padding: 120px 137px 221px 137px;
    background-color: #ffffff;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 47px;
}


.the-insurance .info-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: auto;
}

.the-insurance .info-content h3 {
    width: 802px;
    font-style: normal;
    font-weight: 600;
    font-size: 78px;
    line-height: 78px;
    text-align: center;
    color: #000000;
    margin: auto;
}

.the-insurance .info-content p {
    width: 818px;
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    text-align: center;
    color: #000000;
    margin: auto;
    margin-top: 25px;
    margin-bottom: 20px;
}

.the-insurance .info-content div {
    width: max-content;
    display: flex;
    margin: auto;
    gap: 6px;
}

.the-insurance .info-content div span {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 21px;
    line-height: 25px;
}

.the-insurance .info-content div span:nth-child(1) {
    width: 65px;
    height: 31px;
    background: linear-gradient(90deg, #EB625A 0%, #E65E75 32.69%, #C74C8B 67.79%, #8648D3 100%);
    border-radius: 5px;
    font-weight: 600;
    font-size: 21px;
    line-height: 25px;
    text-align: center;
    color: #000000;
}

.the-insurance .info-content div span:nth-child(3) {
    width: 177px;
    height: 31px;
    background: #0F0FED;
    border-radius: 5px;
    font-weight: 600;
    font-size: 21px;
    line-height: 25px;
    color: #FFFFFF;
}

.cardSwiper {
    width: 100%;
    position: relative;
}

.card {
    background-color: #000000;
    border-radius: 18px;
    padding: 57px 59px 52px 59px;
    height: 733px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card h3 {
    font-weight: 400;
    font-size: 36px;
    line-height: 36px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.card p {
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    text-align: center;
    color: #FFFFFF;
    padding: 0 8px;
}

.card img {
    width: 87px;
    height: 87px;
    object-fit: contain;
    display: flex;
    margin-top: auto;
}

.one-system {
    width: 100%;
    height: max-content;
    padding: 56px 137px 40px 137px;
    background-color: #F1F0EE;
    position: relative;
    z-index: 99;
}

.one-system .content {
    width: 100%;
    height: max-content;
    padding: 61px 0;
    border-top: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
    display: flex;
    justify-content: center;
}

.one-system .content .info-elems {
    width: 945px;
    height: max-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.one-system .content .info-elems h3 {
    font-weight: 400;
    font-size: 64px;
    line-height: 64px;
    text-align: center;
    color: #000000;
}

.one-system .content .info-elems p {
    width: 420px;
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    color: #000000;
    margin: auto;
    text-align: center;
}

.one-system .content .info-elems div {
    width: max-content;
    display: flex;
    margin: auto;
    gap: 8px;
}

.one-system .content .info-elems div span {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 21px;
    line-height: 25px;
}

.one-system .content .info-elems div span:nth-child(1) {
    width: 65px;
    height: 31px;
    background: linear-gradient(90deg, #82A3DE 0%, #548EE0 32.69%, #6D8EE4 67.79%, #8648D3 100%);
    border-radius: 5px;
    font-weight: 600;
    font-size: 21px;
    line-height: 25px;
    text-align: center;
    color: #000000;
}

.one-system .content .info-elems div span:nth-child(3) {
    width: 177px;
    height: 31px;
    background: #0F0FED;
    border-radius: 5px;
    font-weight: 600;
    font-size: 21px;
    line-height: 25px;
    color: #FFFFFF;
}

.one-system .content .info-elems div span:nth-child(5) {
    width: 294px;
    height: 31px;
    background: #AFAFAF;
    border-radius: 5px;
    font-weight: 600;
    font-size: 21px;
    line-height: 25px;
    color: #000000;
}

.one-system .content .info-elems .btn-ask-lara {
    width: 144px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    border: 2px solid transparent;
    background-image:
            linear-gradient(#E2E2E2, #E2E2E2), /* Internal background color */
            linear-gradient(90deg, #FF5348 0%, #6938B8 26%, #8648D3 51%, #CD4982 94%); /* Border gradient updated */
    background-origin: border-box;
    background-clip: padding-box, border-box;
    margin: auto;
}

footer {
    width: 100%;
    padding: 100px 140px 87px 100px;
    background-color: #E4E2DF;
    position: relative;
    z-index: 99;
    display: flex;
    flex-direction: column;
}

footer .top-content {
    width: 100%;
    display: flex;
    gap: 170px;
}

footer .top-content p {
    width: 430px;
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    color: #565656;
}

footer .top-content ul:nth-child(2) {
    margin-left: auto;
}

footer .top-content ul {
    list-style: none;
    width: max-content;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

footer .top-content ul li span {
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    color: #565656;
}

footer .top-content ul li a {
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    color: #212121;
    text-decoration: none;
}

footer .middle-content {
    width: 100%;
    padding-left: 10px;
    margin-top: 171px;
    margin-bottom: 75px;
}

footer .middle-content svg {
    width: 100%;
}

footer .bottom-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

footer .bottom-content p,
footer .bottom-content a
{
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    color: #212121;
}

@media (max-width: 1919px) {

    header {
        width: 100vw;
        height: max-content;
        position: fixed;
        background-color: transparent;
        display: flex;
        justify-content: space-between;
        align-items: center;
        top: 2.9167vw;
        left: 0;
        padding: 0 3.1250vw;
    }

    header .logo a {
        display: flex;
    }

    header .logo a svg {
        width: 10.2604vw;
    }

    header .menu-burger {
        display: flex;
    }

    header .menu-burger svg {
        width: 1.7708vw;
    }

    .redifining {
        width: 100%;
        height: max-content;
        /*background: linear-gradient(*/
        /*        180deg,*/
        /*        rgba(255,255,255,1) 30%,*/
        /*        rgba(226,71,105,1) 70%,*/
        /*        rgba(134,72,211,1) 100%*/
        /*);*/
        padding: 15.9896vw 9.0625vw 5.1562vw 9.0625vw;
    }

    .redifining .info-elems {
        width: 100%;
        height: max-content;
        display: flex;
        flex-direction: column;
        gap: 10.4167vw;
    }

    .redifining .info-elems .top {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 2.0312vw;
    }

    .redifining .info-elems .top h3 {
        font-weight: 600;
        font-size: 6.6667vw;
        line-height: 5.8854vw;
        text-align: center;
        color: #000000;
    }

    .redifining .info-elems .top p {
        width: 34.2708vw;
        margin: auto;
        font-weight: 500;
        font-size: 1.0938vw;
        line-height: 1.3021vw;
        text-align: center;
        color: #000000;
    }

    .redifining .info-elems .bottom {
        display: flex;
        flex-direction: column;
        gap: 0.3125vw;
    }

    .redifining .info-elems .bottom span {
        width: 7.5000vw;
        height: 2.8125vw;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 0.9375vw;
        border: 0.1042vw solid transparent;
    }

    .redifining .info-elems .bottom span svg {
        width: 4.3229vw;
    }

    .redifining .info-elems .bottom p {
        font-weight: 500;
        font-size: 0.9375vw;
        line-height: 1.0938vw;
        text-align: center;
        color: #FFFFFF;
    }

    .introducing {
        width: 100%;
        height: max-content;
        padding: 9.2188vw 7.0312vw 11.4583vw 7.0312vw;
        background-color: #EFEFEF;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: auto;
        gap: 3.3333vw;
    }

    .introducing .info-content {
        max-width: 58.4896vw;
        width: 100%;
        height: max-content;
        display: flex;
        flex-direction: column;
        gap: 1.0938vw;
    }

    .introducing .info-content h2 {
        font-weight: 600;
        font-size: 7.7083vw;
        line-height: 9.2188vw;
        text-align: center;
        color: #C9C9C9;
        overflow: hidden;
    }

    .introducing .info-content h2 span {
        position: relative;
        overflow: hidden;
        vertical-align: bottom;
        background: linear-gradient(
                to right,
                #FF5348 0%,
                #E24769 33%,
                #CD4982 68%,
                #8648D3 100%
        );
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        display: inline-block;
    }

    .introducing .info-content h2 span.box.show {
        animation: revealUp 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    }

    @keyframes revealUp {
        0% {
            transform: translateY(300%);
        }
        100% {
            transform: translateY(0%);
        }
    }

    .introducing .info-content p {
        width: 21.8750vw;
        font-weight: 500;
        font-size: 0.9375vw;
        line-height: 1.0938vw;
        text-align: center;
        color: #000000;
        margin: auto;
    }

    .introducing .card-content {
        width: 100%;
        background: #FFFFFF;
        border: 0.0521vw solid #D6D6D6;
        border-radius: 0.9375vw;
        display: flex;
        gap: 3.4896vw;
        padding: 2.3958vw 0 2.3958vw 3.1250vw;
        overflow: hidden;
    }

    .introducing .card-content .left-content {
        width: max-content;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 2.7604vw 0;
        gap: 12.8125vw;
    }

    .introducing .card-content .left-content .top {
        width: max-content;
        display: flex;
        flex-direction: column;
        gap: 0.9375vw;
    }

    .introducing .card-content .left-content .top h3 {
        width: 18.7500vw;
        font-weight: 600;
        font-size: 1.8750vw;
        line-height: 1.8750vw;
    }

    .introducing .card-content .left-content .top h3 span {
        /*background: linear-gradient(90deg, #FF5348 0%, #E24769 32.69%, #CD4982 67.79%, #8648D3 100%);*/
        /*-webkit-background-clip: text;*/
        /*-webkit-text-fill-color: transparent;*/
        /*background-clip: text;*/
        /*text-fill-color: transparent;*/
        color: rgba(235, 98, 90, 1);
    }

    .introducing .card-content .left-content .top p {
        width: 31.8229vw;
        font-weight: 500;
        font-size: 1.0938vw;
        line-height: 1.3021vw;
        color: #000000;
    }

    .introducing .card-content .left-content .bottom {
        width: max-content;
        display: flex;
        gap: 1.8750vw;
    }

    .introducing .card-content .left-content .bottom .elem {
        width: max-content;
        display: flex;
        flex-direction: column;
        gap: 0.7812vw;
    }

    .introducing .card-content .left-content .bottom .elem svg {
        width: 2.0833vw;
        height: 2.0833vw;
    }

    .introducing .card-content .left-content .bottom .elem:first-child p {
        width: 17.9688vw;
    }

    .introducing .card-content .left-content .bottom .elem p {
        width: 18.7500vw;
        font-weight: 500;
        font-size: 0.9375vw;
        line-height: 1.0938vw;
        color: #000000;
    }

    .introducing .card-content .right-content {
        width: 40.7292vw;
        height: 34.2188vw;
    }

    .introducing .card-content .right-content img {
        width: 42.8125vw;
        height: 100%;
    }

    .introducing .card-content .right-content img.show {
        animation: slideInLeft 3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    }

    @keyframes slideInLeft {
        0% {
            transform: translateX(100%);
        }
        60% {
            transform: translateX(-1.5625vw);
        }
        100% {
            transform: translateX(0.0000vw);
        }
    }

    .vision-platform-introduction {
        position: sticky;
        top: 0;
        width: 100%;
        display: flex;
        gap: 7.8125vw;
        background-color: white;
        padding: 7.6042vw 6.8750vw 7.9167vw 8.3854vw;
    }

    .vision-platform-introduction .left-content {
        width: max-content;
        display: flex;
        flex-direction: column;
        gap: 4.8958vw;
    }

    .vision-platform-introduction .left-content h3 {
        width: 28.2812vw;
        font-weight: 600;
        font-size: 3.3333vw;
        line-height: 3.3333vw;
        color: #000000;
    }

    .vision-platform-introduction .left-content .accordion-container {
        width: 31.8750vw;
        display: flex;
        flex-direction: column;
    }

    .vision-platform-introduction .left-content .accordion-container .accordion-item {
        border-bottom: 0.0521vw solid #D9D9D9;
        padding: 2.0833vw 0 0.5208vw;
    }

    .vision-platform-introduction .left-content .accordion-container .accordion-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

    .vision-platform-introduction .left-content .accordion-container .accordion-header h2 {
        width: 21.2500vw;
        font-weight: 500;
        font-size: 2.1875vw;
        line-height: 2.1875vw;
        color: #000000;
    }

    .vision-platform-introduction .left-content .accordion-container .icon-wrapper {
        position: relative;
    }

    .vision-platform-introduction .left-content .accordion-container .icon-wrapper .icon {
        width: 2.3438vw;
        height: 2.1875vw;
        transition: 1s ease;
    }

    .vision-platform-introduction .left-content .accordion-container .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 1s ease, margin-top 1s ease;
    }

    .vision-platform-introduction .left-content .accordion-container .accordion-item.active .accordion-content {
        max-height: 10.4167vw;
        margin-top: 0.8333vw;
    }


    .vision-platform-introduction .left-content .accordion-container .accordion-item.active .icon-wrapper .icon {
        transform: rotate(45deg);
    }

    .vision-platform-introduction .left-content .accordion-container .accordion-content p {
        width: 31.8229vw;
        font-weight: 500;
        font-size: 1.0938vw;
        line-height: 1.3021vw;
        color: #000000;
    }

    .vision-platform-introduction .right-content {
        width: 44.5833vw;
        height: 32.3438vw;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        gap: 2.0833vw;
        margin-top: 0.3646vw;
    }

    .vision-platform-introduction .right-content .elem {
        width: 100%;
        min-height: 32.3438vw; /* Ensure height is locked */
        height: 32.3438vw;
        transition: transform 1.5s cubic-bezier(0.68, 1, 0.27, 1.1) ;
    }

    .vision-platform-introduction .right-content .elem img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .products {
        width: 100%;
        height: max-content;
        padding: 8.5417vw 8.3333vw 9.7396vw 8.3333vw;
        background-color: #EFEFEF;
        position: relative;
        z-index: 999;
        display: flex;
        flex-direction: column;
        gap: 4.5312vw;
    }

    .products .info-content {
        width: max-content;
        display: flex;
        flex-direction: column;
        margin: auto;
    }

    .products .info-content h3 {
        font-weight: 600;
        font-size: 7.7083vw;
        line-height: 7.7083vw;
        text-align: center;
        color: #000000;
    }

    .products .info-content p {
        width: 21.8750vw;
        font-weight: 500;
        font-size: 0.9375vw;
        line-height: 1.0938vw;
        text-align: center;
        color: #000000;
        margin: auto;
        margin-top: 0.5208vw;
        margin-bottom: 1.0417vw;
    }

    .products .info-content div {
        width: max-content;
        display: flex;
        margin: auto;
        gap: 0.3125vw;
    }

    .products .info-content div span {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.0938vw;
        line-height: 1.3021vw;
    }

    .products .info-content div span:nth-child(1) {
        width: 3.3854vw;
        height: 1.6146vw;
        background: linear-gradient(90deg, #EB625A 0%, #E65E75 32.69%, #C74C8B 67.79%, #8648D3 100%);
        border-radius: 0.2604vw;
        font-weight: 600;
        font-size: 1.0938vw;
        line-height: 1.3021vw;
        text-align: center;
        color: #000000;
    }

    .products .info-content div span:nth-child(3) {
        width: 9.2188vw;
        height: 1.6146vw;
        background: #0F0FED;
        border-radius: 0.2604vw;
        font-weight: 600;
        font-size: 1.0938vw;
        line-height: 1.3021vw;
        color: #FFFFFF;
    }

    .products .slider-content {
        width: 100%;
        height: 51.0938vw;
    }

    .products .slider-content .split-screen-section {
        width: 100%;
        display: flex;
        gap: 1.0417vw;
        height: 100%; /* Occupies full screen */
        overflow: hidden;
    }

    .products .slider-content .split-screen-section .left-content,
    .products .slider-content .split-screen-section .right-content {
        width: 50%;
        height: 100%;
        padding: 3.5417vw 4.8958vw 3.5938vw 4.8958vw;
        border-radius: 0.9375vw;
        display: flex;
        flex-direction: column;
        gap: 1.5625vw;
    }

    .products .slider-content .split-screen-section .swiper-elems {
        width: 25.5208vw;
        height: 34.3750vw;
        overflow: hidden;
        margin: auto;
    }

    /*.products .slider-content .split-screen-section .swiper-container:before {*/
    /*    position: absolute;*/
    /*    content: "";*/
    /*    top: 0;*/
    /*    left: 0;*/
    /*    width: 100%;*/
    /*    height: 100%;*/
    /*    z-index: 99;*/
    /*}*/

    .products .slider-content .split-screen-section .swiper-container .swiper-wrapper {
        width: 25.5208vw;
        height: 34.3750vw;
        margin: auto;
    }

    .products .slider-content .split-screen-section .left-content .top,
    .products .slider-content .split-screen-section .right-content .top {
        display: flex;
        flex-direction: column;
        gap: 0.2604vw;
        margin: auto;
        justify-content: center;
    }

    .products .slider-content .split-screen-section .left-content .top {
        width: 10.4167vw;
    }

    .products .slider-content .split-screen-section .left-content .top h3 {
        font-weight: 600;
        font-size: 4.2708vw;
        line-height: 5.1042vw;
        background: linear-gradient(90deg, #FF5348 0%, #E24769 32.69%, #CD4982 67.79%, #8648D3 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
        text-align: center;
    }

    .products .slider-content .split-screen-section .left-content .top p {
        font-style: normal;
        font-weight: 500;
        font-size: 1.0938vw;
        line-height: 1.3021vw;
        text-align: center;
        color: #282828;
    }

    .products .slider-content .split-screen-section .right-content .top {
        width: 100%;
    }

    .products .slider-content .split-screen-section .right-content .top h3 {
        width: 100%;
        font-weight: 600;
        font-size: 4.2708vw;
        line-height: 5.1042vw;
        text-align: center;
        color: #0F0FED;
    }

    .products .slider-content .split-screen-section .right-content .top p {
        width: 10.4167vw;
        font-weight: 500;
        font-size: 1.0938vw;
        line-height: 1.3021vw;
        text-align: center;
        color: #000000;
        margin: auto;
    }

    .products .slider-content .split-screen-section .left-content {
        background-color: #E4E2DF;
    }

    .products .slider-content .split-screen-section .right-content {
        background-color: #FFFFFF;
    }

    .products .slider-content .split-screen-section .swiper-container .swiper-slide {
        display: flex;
        flex-direction: column;
    }

    .products .slider-content .split-screen-section .swiper-container.left-slider .swiper-slide {
        width: 100%;
        height: 34.3750vw !important;
        max-height: 34.3750vw;
        border-radius: 0.9375vw;
        border: 0.1042vw solid transparent;
        background-image: linear-gradient(#ffffff, #ffffff), /* Internal background color */ linear-gradient(to right, #0F0FED 0%, #6938B8 26%, #8648D3 51%, #7497FE 94%);
        background-origin: border-box;
        background-clip: padding-box, border-box;
        padding: 0.8854vw 0.8854vw 1.5625vw 0.8854vw;
    }

    .products .slider-content .split-screen-section .swiper-container.left-slider .swiper-slide img {
        width: 100%;
        height: 14.1146vw;
        object-fit: contain;
    }

    .products .slider-content .split-screen-section .swiper-container.left-slider .swiper-slide .text-content {
        width: 22.0312vw;
        display: flex;
        flex-direction: column;
        gap: 0.5208vw;
        padding-left: 0.7812vw;
        margin-top: 2.0833vw;
    }

    .products .slider-content .split-screen-section .swiper-container.left-slider .swiper-slide .text-content h3 {
        font-weight: 600;
        font-size: 1.8750vw;
        line-height: 1.8750vw;
        color: #000000;
    }

    .products .slider-content .split-screen-section .swiper-container.left-slider .swiper-slide .text-content p {
        font-weight: 500;
        font-size: 0.9375vw;
        line-height: 1.0938vw;
        color: #000000;
    }

    .products .slider-content .split-screen-section .swiper-container.left-slider .swiper-slide span {
        width: 22.1354vw;
        height: 2.0312vw;
        background: linear-gradient(90deg, #FF5348 0%, #E24769 32.69%, #CD4982 67.79%, #8648D3 100%);
        border: 0.0521vw solid #CCCCCC;
        border-radius: 0.2604vw;
        margin: 0 auto;
        margin-top: auto;
        font-weight: 600;
        font-size: 0.9375vw;
        line-height: 1.0938vw;
        color: #000000;
        display: flex;
        justify-content: center;
        align-items: center;
    }


    .products .slider-content .split-screen-section .swiper-container.right-slider .swiper-slide {
        width: 100%;
        height: 34.3750vw !important;
        max-height: 34.3750vw;
        border-radius: 0.9375vw;
        border: 0.1042vw solid #D1D1D1;
        padding: 0.8854vw 0.8854vw 1.5625vw 0.8854vw;
    }

    .products .slider-content .split-screen-section .swiper-container.right-slider .swiper-slide img {
        width: 100%;
        height: 14.1146vw;
        object-fit: contain;
    }

    .products .slider-content .split-screen-section .swiper-container.right-slider .swiper-slide .text-content {
        width: 21.6146vw;
        display: flex;
        flex-direction: column;
        gap: 0.5208vw;
        padding-left: 0.7812vw;
        margin-top: 2.0833vw;
    }

    .products .slider-content .split-screen-section .swiper-container.right-slider .swiper-slide .text-content h3 {
        font-weight: 600;
        font-size: 1.8750vw;
        line-height: 1.8750vw;
        color: #000000;
    }

    .products .slider-content .split-screen-section .swiper-container.right-slider .swiper-slide .text-content p {
        width: 19.2708vw;
        font-weight: 500;
        font-size: 0.9375vw;
        line-height: 1.0938vw;
        color: #000000;
    }

    .products .slider-content .split-screen-section .swiper-container.right-slider .swiper-slide span {
        width: 22.1354vw;
        height: 2.0312vw;
        background: #0F0FED;
        border: 0.0521vw solid #CCCCCC;
        border-radius: 0.2604vw;
        margin: 0 auto;
        margin-top: auto;
        font-weight: 600;
        font-size: 0.9375vw;
        line-height: 1.0938vw;
        color: #ffffff;
        display: flex;
        justify-content: center;
        align-items: center;
    }


    .the-insurance {
        width: 100%;
        padding: 6.2500vw 7.1354vw 11.5104vw 7.1354vw;
        background-color: #ffffff;
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 2.4479vw;
    }


    .the-insurance .info-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        margin: auto;
    }

    .the-insurance .info-content h3 {
        width: 41.7708vw;
        font-style: normal;
        font-weight: 600;
        font-size: 4.0625vw;
        line-height: 4.0625vw;
        text-align: center;
        color: #000000;
        margin: auto;
    }

    .the-insurance .info-content p {
        width: 42.6042vw;
        font-weight: 500;
        font-size: 0.9375vw;
        line-height: 1.0938vw;
        text-align: center;
        color: #000000;
        margin: auto;
        margin-top: 1.3021vw;
        margin-bottom: 1.0417vw;
    }

    .the-insurance .info-content div {
        width: max-content;
        display: flex;
        margin: auto;
        gap: 0.3125vw;
    }

    .the-insurance .info-content div span {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.0938vw;
        line-height: 1.3021vw;
    }

    .the-insurance .info-content div span:nth-child(1) {
        width: 3.3854vw;
        height: 1.6146vw;
        background: linear-gradient(90deg, #EB625A 0%, #E65E75 32.69%, #C74C8B 67.79%, #8648D3 100%);
        border-radius: 0.2604vw;
        font-weight: 600;
        font-size: 1.0938vw;
        line-height: 1.3021vw;
        text-align: center;
        color: #000000;
    }

    .the-insurance .info-content div span:nth-child(3) {
        width: 9.2188vw;
        height: 1.6146vw;
        background: #0F0FED;
        border-radius: 0.2604vw;
        font-weight: 600;
        font-size: 1.0938vw;
        line-height: 1.3021vw;
        color: #FFFFFF;
    }

    .cardSwiper {
        width: 100%;
        position: relative;
    }

    .card {
        background-color: #000000;
        border-radius: 0.9375vw;
        padding: 2.9688vw 3.0729vw 2.7083vw 3.0729vw;
        height: 38.1771vw;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .card h3 {
        font-weight: 400;
        font-size: 1.8750vw;
        line-height: 1.8750vw;
        text-align: center;
        color: #FFFFFF;
        margin-bottom: 0.7812vw;
    }

    .card p {
        font-weight: 500;
        font-size: 0.9375vw;
        line-height: 1.0938vw;
        text-align: center;
        color: #FFFFFF;
        padding: 0 0.4167vw;
    }

    .card img {
        width: 4.5312vw;
        height: 4.5312vw;
        object-fit: contain;
        display: flex;
        margin-top: auto;
    }

    .one-system {
        width: 100%;
        height: max-content;
        padding: 2.9167vw 7.1354vw 2.0833vw 7.1354vw;
        background-color: #F1F0EE;
        position: relative;
        z-index: 99;
    }

    .one-system .content {
        width: 100%;
        height: max-content;
        padding: 3.1771vw 0;
        border-top: 0.0521vw solid #D9D9D9;
        border-bottom: 0.0521vw solid #D9D9D9;
        display: flex;
        justify-content: center;
    }

    .one-system .content .info-elems {
        width: 49.2188vw;
        height: max-content;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 1.2500vw;
    }

    .one-system .content .info-elems h3 {
        font-weight: 400;
        font-size: 3.3333vw;
        line-height: 3.3333vw;
        text-align: center;
        color: #000000;
    }

    .one-system .content .info-elems p {
        width: 21.8750vw;
        font-weight: 500;
        font-size: 0.9375vw;
        line-height: 1.0938vw;
        color: #000000;
        margin: auto;
        text-align: center;
    }

    .one-system .content .info-elems div {
        width: max-content;
        display: flex;
        margin: auto;
        gap: 0.4167vw;
    }

    .one-system .content .info-elems div span {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.0938vw;
        line-height: 1.3021vw;
    }

    .one-system .content .info-elems div span:nth-child(1) {
        width: 3.3854vw;
        height: 1.6146vw;
        background: linear-gradient(90deg, #82A3DE 0%, #548EE0 32.69%, #6D8EE4 67.79%, #8648D3 100%);
        border-radius: 0.2604vw;
        font-weight: 600;
        font-size: 1.0938vw;
        line-height: 1.3021vw;
        text-align: center;
        color: #000000;
    }

    .one-system .content .info-elems div span:nth-child(3) {
        width: 9.2188vw;
        height: 1.6146vw;
        background: #0F0FED;
        border-radius: 0.2604vw;
        font-weight: 600;
        font-size: 1.0938vw;
        line-height: 1.3021vw;
        color: #FFFFFF;
    }

    .one-system .content .info-elems div span:nth-child(5) {
        width: 15.3125vw;
        height: 1.6146vw;
        background: #AFAFAF;
        border-radius: 0.2604vw;
        font-weight: 600;
        font-size: 1.0938vw;
        line-height: 1.3021vw;
        color: #000000;
    }

    .one-system .content .info-elems .btn-ask-lara {
        width: 7.5000vw;
        height: 2.8125vw;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 0.9375vw;
        border: 0.1042vw solid transparent;
        background-image:
                linear-gradient(#E2E2E2, #E2E2E2), /* Internal background color */
                linear-gradient(90deg, #FF5348 0%, #6938B8 26%, #8648D3 51%, #CD4982 94%); /* Border gradient updated */
        background-origin: border-box;
        background-clip: padding-box, border-box;
        margin: auto;
    }

    .one-system .content .info-elems .btn-ask-lara svg {
        width: 4.3229vw;
    }

    footer {
        width: 100%;
        padding: 5.2083vw 7.2917vw 4.5312vw 5.2083vw;
        background-color: #E4E2DF;
        position: relative;
        z-index: 99;
        display: flex;
        flex-direction: column;
    }

    footer .top-content {
        width: 100%;
        display: flex;
        gap: 8.8542vw;
    }

    footer .top-content p {
        width: 22.3958vw;
        font-weight: 500;
        font-size: 0.9375vw;
        line-height: 1.0938vw;
        color: #565656;
    }

    footer .top-content ul:nth-child(2) {
        margin-left: auto;
    }

    footer .top-content ul {
        list-style: none;
        width: max-content;
        display: flex;
        flex-direction: column;
        gap: 1.3021vw;
    }

    footer .top-content ul li span {
        font-weight: 600;
        font-size: 0.9375vw;
        line-height: 1.0938vw;
        color: #565656;
    }

    footer .top-content ul li a {
        font-weight: 500;
        font-size: 0.9375vw;
        line-height: 1.0938vw;
        color: #212121;
        text-decoration: none;
    }

    footer .middle-content {
        width: 100%;
        padding-left: 0.5208vw;
        margin-top: 8.9062vw;
        margin-bottom: 3.9062vw;
    }

    footer .middle-content svg {
        width: 100%;
    }

    footer .bottom-content {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    footer .bottom-content p,
    footer .bottom-content a
    {
        text-decoration: none;
        font-weight: 500;
        font-size: 0.9375vw;
        line-height: 1.0938vw;
        color: #212121;
    }
}

@media (max-width: 576px) {
    header {
        width: calc(100vw - 9.3023vw);
        left: 4.6512vw;
        top: 6.9767vw;
        padding: 4.6512vw;
        border: 0.2326vw solid #D8D8D8;
        border-radius: 2.3256vw;
    }

    header .logo a svg {
        width: 26.2791vw;
        height: 4.6512vw;
    }

    header .menu-burger svg {
        width: 7.9070vw;
        height: 3.7209vw;
    }

    .redifining {
        padding: 60.4651vw 4.6512vw 12.0930vw 4.6512vw;
    }

    .redifining .info-elems {
        gap: 56.0465vw;
    }

    .redifining .info-elems .top {
        gap: 4.6512vw;
    }

    .redifining .info-elems .top h3 {
        font-size: 11.1628vw;
        line-height: 13.2558vw;
    }

    .redifining .info-elems .top p {
        width: 82.3256vw;
        font-size: 4.1860vw;
        line-height: 4.8837vw;
    }

    .redifining .info-elems .bottom {
        gap: 1.1628vw;
    }

    .redifining .info-elems .bottom span {
        width: 65.3488vw;
        height: 10.6977vw;
        border-radius: 4.1860vw;
        border: 0.4651vw solid transparent;
    }

    .redifining .info-elems .bottom span svg {
        width: 16.7442vw;
    }

    .redifining .info-elems .bottom p {
        font-size: 3.7209vw;
        line-height: 4.4186vw;
    }

    .introducing {
        padding: 24.4186vw 4.6512vw;
        gap: 14.4186vw;
    }

    .introducing .info-content {
        max-width: 84.8837vw;
        gap: 2.3256vw;
    }

    .introducing .info-content h2 {
        font-size: 11.1628vw;
        line-height: 13.2558vw;
    }

    .introducing .info-content h2 span.box.show {
        animation: revealUp 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    }

    @keyframes revealUp {
        0% {
            transform: translateY(300%);
        }
        100% {
            transform: translateY(0%);
        }
    }

    .introducing .info-content p {
        width: 75.5814vw;
        font-size: 4.1860vw;
        line-height: 4.8837vw;
    }

    .introducing .card-content {
        border: 0.2326vw solid #D6D6D6;
        border-radius: 4.1860vw;
        gap: 9.3023vw;
        padding: 11.6279vw 0 11.6279vw 9.3023vw;
    }

    .introducing .card-content .left-content {
        padding: 0;
        gap: 97.2093vw;
    }

    .introducing .card-content .left-content .top {
        gap: 4.6512vw;
    }

    .introducing .card-content .left-content .top h3 {
        width: 72.0930vw;
        font-size: 5.5814vw;
        line-height: 6.7442vw;
    }

    .introducing .card-content .left-content .top h3 span {
        color: rgba(235, 98, 90, 1);
    }

    .introducing .card-content .left-content .top p {
        width: 72.0930vw;
        font-size: 4.1860vw;
        line-height: 4.8837vw;
    }

    .introducing .card-content .left-content .bottom {
        flex-direction: column;
        gap: 9.3023vw;
    }

    .introducing .card-content .left-content .bottom .elem {
        gap: 3.4884vw;
    }

    .introducing .card-content .left-content .bottom .elem svg {
        width: 9.3023vw;
        height: 9.3023vw;
    }

    .introducing .card-content .left-content .bottom .elem:first-child p {
        width: 72.0930vw;
    }

    .introducing .card-content .left-content .bottom .elem p {
        width: 72.0930vw;
        font-size: 4.1860vw;
        line-height: 4.8837vw;
    }

    .introducing .card-content .right-content {
        width: 98.3721vw;
        height: 78.6047vw;
        position: relative;
        top: 55.814vw;
        left: -100%;
    }

    .introducing .card-content .right-content img {
        width: 98.3721vw;
        height: 78.6047vw;
    }

    .introducing .card-content .right-content img.show {
        animation: slideInLeft 3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    }

    @keyframes slideInLeft {
        0% {
            transform: translateX(100%);
        }
        60% {
            transform: translateX(-6.9767vw);
        }
        100% {
            transform: translateX(0.0000vw);
        }
    }

    .vision-platform-introduction {
        flex-direction: column;
        gap: 26.2791vw;
        height: max-content;
        position: relative;
        padding: 23.2558vw 4.6512vw 10.6977vw 4.6512vw;
    }

    .vision-platform-introduction .left-content {
        gap: 10.0000vw;
    }

    .vision-platform-introduction .left-content h3 {
        width: 90.6977vw;
        font-size: 9.3023vw;
        line-height: 11.1628vw;
    }

    .vision-platform-introduction .left-content .accordion-container {
        width: 90.6977vw;
    }

    .vision-platform-introduction .left-content .accordion-container .accordion-item {
        border-bottom: 0.2326vw solid #D9D9D9;
        padding: 6.9767vw 0 2.3256vw;
    }

    .vision-platform-introduction .left-content .accordion-container .accordion-header {
        display: flex;
        flex-direction: column;
        gap: 2.3256vw;
        justify-content: normal;
        align-items: normal;
    }

    .vision-platform-introduction .left-content .accordion-container .accordion-header h2 {
        width: 100%;
        font-size: 7.4419vw;
        line-height: 9.7674vw;
    }

    .vision-platform-introduction .left-content .accordion-container .icon-wrapper {
        position: relative;
    }

    .vision-platform-introduction .left-content .accordion-container .icon-wrapper .icon {
        width: 6.0465vw;
        height: 6.0465vw;
    }

    .vision-platform-introduction .left-content .accordion-container .accordion-item.active .accordion-content {
        max-height: 23.2558vw;
        margin-top: 2.3256vw;
    }

    .vision-platform-introduction .left-content .accordion-container .accordion-content p {
        width: 100%;
        font-size: 4.1860vw;
        line-height: 4.8837vw;
    }

    .vision-platform-introduction .right-content {
        width: 90.6977vw;
        height: 65.8140vw;
        gap: 9.3023vw;
        margin-top: 0;
    }

    .vision-platform-introduction .right-content .elem {
        width: 100%;
        min-height: 65.8140vw; /* Ensure height is locked */
        height: 65.8140vw;
        transition: transform 1.5s cubic-bezier(0.68, 1, 0.27, 1.1) ;
        will-change: transform;
    }

    .products {
        padding: 28.8372vw 3.4884vw 75.5814vw 3.4884vw;
        gap: 10.2326vw;
    }

    .products .info-content h3 {
        font-size: 11.1628vw;
        line-height: 11.1628vw;
    }

    .products .info-content p {
        width: 82.5581vw;
        font-size: 3.7209vw;
        line-height: 4.4186vw;
        margin-top: 2.3256vw;
        margin-bottom: 2.3256vw;
    }

    .products .info-content div {
        gap: 1.3953vw;
    }

    .products .info-content div span {
        font-size: 4.1860vw;
        line-height: 4.8837vw;
    }

    .products .info-content div span:nth-child(1) {
        width: 15.1163vw;
        height: 6.2791vw;
        border-radius: 1.1628vw;
        font-size: 4.1860vw;
        line-height: 4.8837vw;
    }

    .products .info-content div span:nth-child(3) {
        width: 36.7442vw;
        height: 6.2791vw;
        border-radius: 1.1628vw;
        font-size: 4.1860vw;
        line-height: 4.8837vw;
    }

    .products .slider-content {
        width: 100%;
        height: max-content;
    }

    .products .slider-content .split-screen-section {
        flex-direction: column;
        gap: 14.1860vw;
    }

    .products .slider-content .split-screen-section .left-content,
    .products .slider-content .split-screen-section .right-content {
        width: 100%;
        height: 100%;
        padding: 10.0000vw 3.4884vw;
        border-radius: 4.1860vw;
        gap: 6.9767vw;
    }

    .products .slider-content .split-screen-section .swiper-container .swiper-wrapper {
        width: 86.0465vw;
        height: 136.0465vw;
        margin: auto;
    }

    .products .slider-content .split-screen-section .left-content .top,
    .products .slider-content .split-screen-section .right-content .top {
        gap: 2.3256vw;
    }

    .products .slider-content .split-screen-section .left-content .top {
        width: 42.0930vw;
    }

    .products .slider-content .split-screen-section .left-content .top h3 {
        font-size: 11.1628vw;
        line-height: 13.2558vw;
    }

    .products .slider-content .split-screen-section .left-content .top p {
        font-size: 4.1860vw;
        line-height: 4.8837vw;
    }

    .products .slider-content .split-screen-section .right-content .top h3 {
        font-size: 11.1628vw;
        line-height: 13.2558vw;
    }

    .products .slider-content .split-screen-section .right-content .top p {
        width: 42.0930vw;
        font-size: 4.1860vw;
        line-height: 4.8837vw;
    }

    .products .slider-content .split-screen-section .swiper-container.left-slider .swiper-slide {
        width: 100%;
        height: 136.0465vw !important;
        max-height: 136.0465vw;
        border-radius: 3.4884vw;
        border: 0.4651vw solid transparent;
        padding: 2.7907vw 2.7907vw 3.0233vw 2.7907vw;
    }

    .products .slider-content .split-screen-section .swiper-container.left-slider .swiper-slide img {
        height: 62.5581vw;
        object-fit: cover;
        border-radius: 2.3256vw;
    }

    .products .slider-content .split-screen-section .swiper-container.left-slider .swiper-slide .text-content {
        width: 72.5581vw;
        gap: 2.3256vw;
        padding-left: 3.9535vw;
        margin-top: 6.9767vw;
    }

    .products .slider-content .split-screen-section .swiper-container.left-slider .swiper-slide .text-content h3 {
        font-size: 6.5116vw;
        line-height: 8.3721vw;
    }

    .products .slider-content .split-screen-section .swiper-container.left-slider .swiper-slide .text-content p {
        width: 100%;
        font-size: 3.7209vw;
        line-height: 4.4186vw;
    }

    .products .slider-content .split-screen-section .swiper-container.left-slider .swiper-slide span {
        width: 100%;
        height: 9.0698vw;
        border: 0.2326vw solid #CCCCCC;
        border-radius: 1.1628vw;
        font-size: 3.7209vw;
        line-height: 4.4186vw;
    }


    .products .slider-content .split-screen-section .swiper-container.right-slider .swiper-slide {
        height: 136.0465vw !important;
        max-height: 136.0465vw;
        border-radius: 4.1860vw;
        border: 0.4651vw solid #D1D1D1;
        padding: 2.7907vw 2.7907vw 3.0233vw 2.7907vw;
    }

    .products .slider-content .split-screen-section .swiper-container.right-slider .swiper-slide img {
        height: 62.5581vw;
        object-fit: cover;
        border-radius: 2.3256vw;
    }

    .products .slider-content .split-screen-section .swiper-container.right-slider .swiper-slide .text-content {
        width: 72.5581vw;
        gap: 2.3256vw;
        padding-left: 3.9535vw;
        margin-top: 6.9767vw;
    }

    .products .slider-content .split-screen-section .swiper-container.right-slider .swiper-slide .text-content h3 {
        font-size: 6.5116vw;
        line-height: 8.3721vw;
    }

    .products .slider-content .split-screen-section .swiper-container.right-slider .swiper-slide .text-content p {
        width: 100%;
        font-size: 3.7209vw;
        line-height: 4.4186vw;
    }

    .products .slider-content .split-screen-section .swiper-container.right-slider .swiper-slide span {
        width: 100%;
        height: 9.0698vw;
        border: 0.2326vw solid #CCCCCC;
        border-radius: 1.1628vw;
        font-size: 3.7209vw;
        line-height: 4.4186vw;
    }

    .the-insurance {
        padding: 18.8372vw 4.6512vw 13.9535vw 4.6512vw;
        gap: 12.5581vw;
    }

    .the-insurance .info-content h3 {
        width: 100%;
        font-size: 8.8372vw;
        line-height: 10.4651vw;
    }

    .the-insurance .info-content p {
        width: 100%;
        font-size: 3.7209vw;
        line-height: 4.4186vw;
        margin-top: 3.4884vw;
        margin-bottom: 3.4884vw;
    }

    .the-insurance .info-content div {
        gap: 1.6279vw;
    }

    .the-insurance .info-content div span {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 4.8837vw;
        line-height: 5.8140vw;
    }

    .the-insurance .info-content div span:nth-child(1) {
        width: 15.1163vw;
        height: 7.2093vw;
        border-radius: 1.1628vw;
        font-weight: 600;
        font-size: 4.8837vw;
        line-height: 5.8140vw;
        color: #000000;
    }

    .the-insurance .info-content div span:nth-child(3) {
        width: 41.1628vw;
        height: 7.2093vw;
        background: #0F0FED;
        border-radius: 1.1628vw;
        font-weight: 600;
        font-size: 4.8837vw;
        line-height: 5.8140vw;
        color: #FFFFFF;
    }

    .cardSwiper {
        width: 100%;
        position: relative;
    }

    .card {
        border-radius: 4.1860vw;
        padding: 13.9535vw 6.9767vw;
        height: 124.1860vw;
    }

    .card h3 {
        font-size: 7.4419vw;
        line-height: 8.3721vw;
        margin-bottom: 3.4884vw;
    }

    .card p {
        font-size: 3.7209vw;
        line-height: 4.4186vw;
        padding: 0;
    }

    .card img {
        width: 20.2326vw;
        height: 20.2326vw;
    }

    .one-system {
        padding: 11.1628vw 4.6512vw 9.3023vw 4.6512vw;
    }

    .one-system .content {
        padding: 14.1860vw 0;
        border-top: 0.2326vw solid #D9D9D9;
        border-bottom: 0.2326vw solid #D9D9D9;
    }

    .one-system .content .info-elems {
        width: 100%;
        gap: 2.7907vw;
    }

    .one-system .content .info-elems h3 {
        font-size: 7.4419vw;
        line-height: 7.4419vw;
    }

    .one-system .content .info-elems p {
        width: 79.3023vw;
        font-size: 3.7209vw;
        line-height: 4.4186vw;
    }

    .one-system .content .info-elems div {
        margin-top: 2.7907vw;
        margin-bottom: 2.7907vw;
        gap: 1.8605vw;
        flex-wrap: wrap;
        width: 74%;
    }

    .one-system .content .info-elems div span {
        font-size: 4.8837vw;
        line-height: 5.8140vw;
    }

    .one-system .content .info-elems div span:nth-child(1) {
        width: 15.1163vw;
        height: 6.5116vw;
        border-radius: 1.1628vw;
        font-size: 4.1860vw;
        line-height: 4.8837vw;
    }

    .one-system .content .info-elems div span:nth-child(3) {
        width: 41.1628vw;
        height: 6.5116vw;
        border-radius: 1.1628vw;
        font-size: 4.1860vw;
        line-height: 4.8837vw;
    }

    .one-system .content .info-elems div span:nth-child(5) {
        width: 59.7674vw;
        height: 6.5116vw;
        border-radius: 1.1628vw;
        font-size: 4.1860vw;
        line-height: 4.8837vw;
    }

    .one-system .content .info-elems .btn-ask-lara {
        width: 65.3488vw;
        height: 10.6977vw;
        border-radius: 4.1860vw;
        border: 0.4651vw solid transparent;
    }

    .one-system .content .info-elems .btn-ask-lara svg {
        width: 16.7442vw;
    }

    footer {
        padding: 10.9302vw 0 13.9535vw 7.2093vw;
    }

    footer .top-content {
        flex-wrap: wrap;
        gap: 9.3023vw 13.9535vw;
    }

    footer .top-content p {
        width: 86.5116vw;
        font-size: 3.7209vw;
        line-height: 4.4186vw;
    }

    footer .top-content ul:nth-child(2) {
        margin-left: 0;
    }

    footer .top-content ul {
        gap: 4.6512vw;
    }

    footer .top-content ul li span {
        font-size: 3.7209vw;
        line-height: 4.4186vw;
    }

    footer .top-content ul li a {
        font-size: 3.7209vw;
        line-height: 4.4186vw;
    }

    footer .middle-content {
        padding-left: 0;
        margin-top: 9.3023vw;
        margin-bottom: 3.7209vw;
    }

    footer .middle-content svg {
        width: 85.8140vw;
        height: max-content;
    }

    footer .bottom-content p,
    footer .bottom-content a
    {
        font-size: 3.7209vw;
        line-height: 4.4186vw;
    }

    footer .bottom-content p:nth-child(2)
    {
        display: none;
    }
}