:root {
    --primary: #CD4236;
    --secondary: #1C375B;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-light: #F0F7FA;
    --bg-white: #fff;
    --red-50: #ffefee;
    --blue-50: #EBF4FA;
    --blue-100: #f2f7fc;
    --black-50: #E6E8E9;
    --black-400: #35444D;
    --black-500: #031521;
    --blue-gradient: linear-gradient(135deg,rgba(233, 235, 239, 1) 0%, rgba(255, 255, 255, 1) 58%, rgba(248, 248, 248, 1) 100%);
    --primary-gradient: linear-gradient(90deg, #CD4236 0%, #D2544A 100%);
    --secondary-gradient: linear-gradient(90deg, #1C375B 0%, #48617E 100%);
    --shadow-xl: 0 0 52px rgba(0, 0, 0, 0.08);
}
body{
    font-family: 'DM Sans', sans-serif;
    color: var(--text-light);
    background-color: #ffffff;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6, .title-font{
    font-family: 'Source Serif 4', serif;
    color: var(--secondary);
}
.container{
    max-width: 1400px;
}
.pb-20{
    padding-bottom: 20px;
}
.pb-60{
    padding-bottom: 60px;
}
.py-100{
    padding: 100px 0;
}
.py-120{
    padding: 120px 0;
}
.pt-120{
    padding-top: 120px;
}
.pb-120{
    padding-bottom: 120px;
}
.section-sup{
    margin-bottom: 60px;
}
.section-top{
    background-color: var(--red-50);
    border-radius: 60px;
    padding: 5px 15px;
    display: inline-block;
}
.section-top span{
    background-image: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
}
.section-title{
    font-size: 40px;
    line-height: 50px;
    font-weight: 600;
    color: var(--secondary);
    text-transform: capitalize;
    margin: 20px 0 16px;
}
.section-subtitle{
    font-size: 18px;
    line-height: 23px;
    color: var(--black-400);
    margin: 0;
}
.text-off-white{
    color: #F5F5F5;
}
/* Buttons */
.btn-primary{
    background: var(--primary-gradient);
    border-radius: 50px;
    padding: 8px 8px 8px 24px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    line-height: 26px;
    border: none;
}
.btn-primary .btn_icon{
    width: 30px;
    height: 30px;
    background-color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;    
}
.btn-primary:hover .btn_icon{
    animation: floatLeftRight 1.5s ease-in-out infinite;
}
.btn-outline{
    border: 1px solid var(--black-500);
    border-radius: 50px;
    padding: 11px 20px;
    color: var(--black-500);
    background: transparent;
    font-weight: 400;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    line-height: 22px;
}
.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active{
    border: 1px solid var(--secondary) !important;
    background: var(--secondary) !important;
    color: var(--bg-white) !important;
}
@keyframes floatLeftRight {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-5px);
    }
    100% {
        transform: translateX(0);
    }
}
#features,
#price{
    scroll-margin-top: 100px;
}

/* Navbar */
.navbar{
    padding: 10px 0;
    background: var(--bg-white);
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0 0 5px rgba(0,0,0,0.05);
}
.main-logo{
    max-width: 60px;
}
.navbar-nav{
    gap: 60px;
}
.nav-link{
    color: var(--black-500);
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    padding: 0 !important;
}
.nav-link:hover{
    color: var(--text-dark);
}

/* Hero Section */
.hero-section{
    padding: 180px 0 100px;
    background: var(--blue-gradient);
    z-index: 1;
    overflow: hidden;
}
.hero-title{
    font-size: 4rem;
    line-height: 1.25;
    margin-bottom: 20px;
    font-weight: 600;
}
.hero-subtitle{
    font-size: 20px;
    line-height: 1.30;
    margin-bottom: 40px;
    color: var(--black-400);
}
.hero_btn_group{
    display: flex;
}
.avatar-group{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.avatar-group img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -10px;
    object-fit: cover;
}
.avatar-group img:first-child{
    margin-left: 0;
}
.trust-text{
    font-size: 16px;
    line-height: 21px;
    margin-left: 12px;
    font-weight: 400;
    color: var(--black-400);
}
.devider{
    max-width: 400px;
    width: 100%;
    height: 1px;
    background-color: var(--black-50);
    display: block;
    margin-bottom: 40px;
}
.hero_bottom_group{
    margin-top: 80px;
}
.stat-icon{
    width: 60px;
    height: 60px;
    background: var(--blue-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.stat-value{
    font-weight: 600;
    color: var(--secondary);
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 0;
    font-family: 'Source Serif 4', serif;
}
.stat-label{
    font-size: 16px;
    line-height: 21px;
    color: var(--black-400);
    margin: 0;
}
.hero-bg{
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    z-index: -1;
}
.hero-right-img{
    max-width: calc(100% + 100px);
    animation: floatUpDown 3s ease-in-out infinite;
}
.dot-shape1{
    position: absolute;
    right: 50px;
    top: 36px;
    z-index: -1;
}
.dot-shape2{
    position: absolute;
    right: 40%;
    bottom: 40px;
    z-index: -1;
}
@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-14px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Logos Section */
.logos-slider-container{
    padding: 40px 0;
    position: relative;
    z-index: 1;
    display: none;
}
.logos-slider-container:after,
.logos-slider-container:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 25%;
    height: 100%;
    background: linear-gradient(90deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}
.logos-slider-container:before{
    left: inherit;
    right: 0;
    background: linear-gradient(270deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
}

/* Roles Section */
.pill-badge{
    display: inline-block;
    padding: 7px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    position: absolute;
    box-shadow: 0 0 40px rgba(0,0,0,0.12);
    color: var(--black-500);
}
.badge-pink{ 
    background: #FFB2F0;
    top: -20px;
    left: -15px;
    transform: rotate(-8deg);
}
.badge-blue{ 
    background: #B6DEFB;
    top: -18px;
    right: 20%;
    transform: rotate(4deg);
}
.badge-yellow{ 
    background: #FBF1C6;
    bottom: -20px;
    left: 15%;
    transform: rotate(10deg); 
}
.badge-green{
    background: #CCFBB6;
    bottom: -20px;
    right: 30%;
    transform: rotate(-2deg);
}
.roles-top-right p{
    font-size: 18px;
    line-height: 23px;
    color: var(--black-400);
}
.roles-cards{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    border-top: 1px solid var(--black-50);
    padding-top: 80px;
    margin-top: 80px;
}
.roles-card-inner{
    border: 1px solid var(--black-50);
    border-radius: 20px;
    background: var(--blue-gradient);
    box-shadow: var(--shadow-xl);
    -webkit-box-shadow: var(--shadow-xl);
    overflow: hidden;
    padding: 40px;
    min-height: 100%;
}
.role-icon{
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    border-radius: 20px;
    background-color: var(--bg-white);
}
.roles-card-inner h3{
    font-size: 24px;
    line-height: 31px;
    color: var(--secondary);
    font-weight: 600;
    margin: 20px 0 12px;
    font-family: 'DM Sans', sans-serif;
}
.roles-card-inner p{
    font-size: 18px;
    line-height: 23px;
    color: var(--black-400);
}

/* Stages Section */
.stage-list-item{
    display: flex;
    margin-bottom: 40px;
}
.stage-list-item:last-child{
    margin-bottom: 0;
}
.stage-list-icon{
    width: 60px;
    height: 60px;
    background: var(--blue-50);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}
.stage-list-content h3{
    font-size: 24px;
    line-height: 31px;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'DM Sans', sans-serif;
}
.stage-list-content p{
    font-size: 18px;
    line-height: 23px;
    color: var(--black-400);
    margin: 0;
}
.right-space{
    max-width: calc(100% + 100px);
}
.left-space{
    max-width: calc(100% + 100px);
    margin-left: -100px;
}
.stage1{
    padding-bottom: 80px;
}
.stage2{
    background-color: var(--blue-100);
}

/* Feature Section */
.feature-section{
    background-image: var(--primary-gradient);
    overflow: hidden;
}
.feature-box-right{
    padding: 50px 0 20px;
}
.feature-shape-bottom{
    position: absolute;
    left: 0;
    bottom: 0;
}
.feature-shape-top{
    position: absolute;
    right: 0;
    top: 0;
}

/* How It Work Section */
.mt-50{
    margin-top: 50px;
}
.mt-100{
    margin-top: 100px;
}
.how-it-section{
    background-image: url('../img/work-bg.png');
    background-repeat: no-repeat;
    background-position: center 70%;
    background-size: 100%;
}
.work_box{
    border: 1px solid var(--black-50);
    box-shadow: var(--shadow-xl);
    -webkit-box-shadow: var(--shadow-xl);
    border-radius: 20px;
    padding: 30px;
    background: linear-gradient(135deg,rgba(250, 250, 250, 1) 0%, rgba(255, 255, 255, 1) 58%, rgba(240, 240, 240, 1) 100%);
}
.work_box_top{
    background-color: var(--blue-50);
    border-radius: 12px;
    height: 280px;
    padding: 14px;
    margin-bottom: 30px;
}
.work_box_top img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 11px rgba(0, 0, 0, 0.25));
}
.work_box_body .work_num{
    width: 64px;
    height: 64px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--blue-50);
}
.work_box_body .work_num span{
    font-size: 40px;
    line-height: 40px;
    font-weight: 600;
    background-image: var(--secondary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}
.work_box_body h3{
    font-size: 24px;
    line-height: 31px;
    color: var(--secondary);
    font-weight: 600;
    margin: 15px 0;
    font-family: 'DM Sans', sans-serif;
}
.work_box_body p{
    font-size: 18px;
    line-height: 23px;
    color: var(--black-400);
    margin: 0;
}

/* Price Section */
.price-box{
    background-image: var(--primary-gradient);
    border-radius: 30px;
    padding: 60px;
    position: relative;
    z-index: 1;
}
.price-box-left p{
    margin-bottom: 32px;
}
.price-box .btn-primary,
.price-box .btn-primary:hover,
.price-box .btn-primary:active,
.feature-section .btn-primary,
.feature-section .btn-primary:hover,
.feature-section .btn-primary:active{
    width: max-content;
    background: var(--bg-white);
    color: var(--primary);
}
.price-box .btn-primary .btn_icon,
.feature-section .btn-primary .btn_icon{
    background: var(--primary-gradient);
}
.price-box-right ul{
    text-align: left;
}
.price-box-right ul li{
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--bg-white);
}
.price-box-right ul li:last-child{
    margin-bottom: 0;
}
.price-box-inner{
    display: inline-block;
}
.price-block{
    padding-bottom: 8px;
    border-bottom: 1px solid var(--bg-white);
    text-align: left;
    margin-bottom: 16px;
}
.price-block>span{
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
    color: var(--bg-white);
}
.price-block>p{
    margin: 0;
    font-size: 32px;
    line-height: 40px;
    font-weight: 600;
    color: var(--bg-white);
    font-family: 'Source Serif 4', serif;
}
.price-block>p>span{
    font-size: 14px;
    line-height: 19px;
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
}
.price-bg{
    position: absolute;
    right: 30px;
    top: 0;
    z-index: -1;
    height: 100%;
}

/* Security section */
.security-box{
    border: 1px solid var(--black-50);
    border-radius: 20px;
    background: var(--blue-gradient);
    box-shadow: var(--shadow-xl);
    -webkit-box-shadow: var(--shadow-xl);
    overflow: hidden;
    padding: 30px 20px;
    text-align: center;
    min-height: 100%;
}
.security-icon{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--secondary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
}
.security-box h3{
    font-size: 24px;
    line-height: 31px;
    color: var(--secondary);
    font-weight: 600;
    margin: 20px 0 12px;
    font-family: 'DM Sans', sans-serif;
}
.security-box p{
    font-size: 18px;
    line-height: 23px;
    color: var(--black-400);
}

/* Testimonial Section */
.testimonial-section{
    background-color: var(--blue-100);
    padding-top: 120px;
    padding-bottom: 80px;
}
.testimonialSwiper{
    padding: 40px 0;
}
.testimonial-section .section-sup{
    margin-bottom: 20px;
}
.testimonial-slide{
    border: 1px solid var(--black-50);
    border-radius: 20px;
    background: var(--blue-gradient);
    box-shadow: var(--shadow-xl);
    -webkit-box-shadow: var(--shadow-xl);
    overflow: hidden;
}
.testimonial-slide-top{
    padding: 20px;
}
.testi_quote i{
    font-size: 32px;
    color: var(--primary);
    opacity: 0.2;
    line-height: 32px;
}
.testimonial-slide-top p{
    font-size: 16px;
    line-height: 21px;
    color: var(--black-500);
    margin: 16px 0 20px;
}
.stars{
    color: #FBBF24;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    line-height: 18px;
}
.testimonial-slide-bottom{
    background: var(--primary-gradient);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.testimonial-pic{
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    border: 1px solid var(--bg-white);
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.testimonial-pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.testimonial-slide-bottom h3{
    font-size: 18px;
    line-height: 23px;
    font-weight: 600;
    color: var(--bg-white);
    margin-bottom: 4px;
    font-family: 'DM Sans', sans-serif;
}
.testimonial-slide-bottom span{
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
    color: var(--black-50);
}
.slider-btn-group{
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}
.slider-btn{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--secondary);
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    cursor: pointer;
    padding: 0;
    font-size: 20px;
}
.slider-btn:hover{
    background: var(--primary);
    border-color: var(--primary);
}
.slider-btn svg{
    width: 18px;
    height: auto;
}
.slider-btn:hover svg stop{
    stop-color: #fff;
}


/* Faq Section */
.faq-section{
    margin-bottom: -180px;
}
.accordion{
    background: var(--blue-gradient);
    border: 1px solid var(--black-50);
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    -webkit-box-shadow: var(--shadow-xl);
    padding: 10px 40px;
}
.accordion-item{
    background: transparent;
    border-radius: 0 !important;
    border: none;
    border-bottom: 1px solid var(--black-50);
}
.accordion-button{
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font-size: 20px;
    line-height: 26px;
    color: var(--black-500);
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    padding: 30px 0;
}
.accordion-button:not(.collapsed){
    color: var(--secondary);
}
.accordion-body{
    padding: 0 0 30px;
    font-size: 16px;
    line-height: 21px;
    color: var(--black-400);
}

/* Footer */
.footer{
    background-color: var(--secondary);
    padding: 300px 0 64px;
}
.footer-logo img{
    max-width: 60px;
}
.foot-top-left p{
    color: var(--black-50);
    font-size: 18px;
    line-height: 23px;
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 0;
}
.foot-top-right h2{
    font-size: 32px;
    line-height: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}
.foot-top-right .btn-primary{
    width: max-content;
    margin-left: auto;
}
.footer-copyright{
    margin-top: 64px;
    padding-top: 30px;
    border-top: 1px solid var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-copyright .info{
    font-size: 14px;
    line-height: 20px;
    color: var(--bg-white);
}
.social_links{
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 16px;
}

@media screen and (max-width: 1499px){
    .hero-right-img,
    .right-space,
    .left-space{
        max-width: 100%;
    }
    .left-space{
        margin-left: 0;
    }

    .roles-card-inner,
    .work_box,
    .security-box{
        padding: 20px;
    }
}


@media screen and (max-width: 991px){
    .pt-120{
        padding-top: 60px;
    }
    .py-120,
    .py-100{
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .stage1{
        padding-bottom: 60px;
    }
    .pb-20{
        padding-bottom: 0;
    }
    .testimonial-section{
        padding-top: 60px;
        padding-bottom: 20px;
    }
    .testimonial-section .section-sup{
        margin-bottom: 0;
    }
    .testimonialSwiper{
        padding-top: 30px;
    }

    .navbar-toggler{
        margin-left: auto;
        margin-right: 15px;
        padding: 7px;
    }
    .navbar-toggler:focus{
        box-shadow: none;
    }
    .navbar-collapse{
        position: absolute;
        left: 0;
        top: 80px;
        background: #fff;
        width: 100%;
        padding: 16px 12px;
        border-top: 1px solid var(--blue-50);
    }
    .navbar-nav{
        gap: 20px;
    }
    .roles-cards{
        grid-template-columns: repeat(2, 1fr);
        padding-top: 40px;
        margin-top: 40px;
    }
    .logos-slider-container{
        padding-bottom: 0;
    }
    .avatar-group,
    .hero_btn_group{
        justify-content: center;
    }
    .hero-section{
        padding: 60px 0;
    }
    .hero-title{
        font-size: 32px;
    }
    .hero-subtitle{
        font-size: 18px;
        margin-bottom: 20px;
    }
    .pill-badge{
        display: none;
    }
    .devider,
    .avatar-group,
    .price-box-left p,
    .work_box_top{
        margin-bottom: 20px;
    }
    .hero_bottom_group,
    .footer-copyright{
        margin-top: 30px;
    }
    .stat-icon{
        margin-bottom: 10px;
    }
    .stat-value,
    .foot-top-right h2,
    .section-title,
    .price-block>p:not(.price-block>p>span){
        font-size: 22px;
        line-height: 28px;
    }
    .section-title{
        margin: 12px 0 10px;
    }
    .accordion-button{
        font-size: 18px;
        line-height: 24px;
    }
    .section-subtitle,
    .testimonial-slide-bottom h3,
    .security-box p,
    .price-box-right ul li,
    .work_box_body p,
    .roles-card-inner p,
    .stage-list-content p,
    .roles-top-right p{
        font-size: 16px;
        line-height: 21px;
    }
    .security-box h3,
    .work_box_body h3,
    .roles-card-inner h3,
    .stage-list-content h3{
        font-size: 20px;
        line-height: 25px;
    }
    .security-box h3,
    .roles-card-inner h3{
        margin: 14px 0 8px;
    }
    .accordion-body{
        padding: 0 0 20px;
    }
    .section-sup,
    .stage-list-item:not(:last-child){
        margin-bottom: 30px;
    }
    .price-bg{
        right: 0;
    }
    .work_box_body .work_num span{
        font-size: 30px;
        line-height: 30px;
    }
    .role-icon{
        margin-left: auto;
        margin-right: auto;
    }
    .stage-list-icon,
    .stat-icon{
        margin-right: auto;
        margin-left: auto;
    }
    .stage-list-content h3{
        margin-top: 10px;
    }
    .stage-list-item{
        flex-direction: column;
        text-align: center;
    }
    .footer{
        padding: 210px 0 30px;
    }
}

@media screen and (max-width: 767px){
    .btn-primary,
    .btn-outline{
        font-size: 16px;
        line-height: 22px;
    }
    .accordion{
        padding: 10px 20px;
    }
    .accordion-button{
        padding: 20px 0;
    }
    .price-box{
        padding: 20px;
    }
    .mt-50,
    .mt-100{
        margin-top: 24px;
    }
}

@media screen and (max-width: 575px){
    .navbar .btn-primary{
        font-size: 0;
        gap: 0;
        padding: 8px;
    }
    .roles-cards{
        grid-template-columns: repeat(1, 1fr);
    }
    .hero_btn_group{
        flex-wrap: wrap;
        flex-direction: column;
    }
    .hero_btn_group .btn-primary{
        justify-content: center;
    }
    .foot-top-right .btn-primary{
        margin-left: auto;
        margin-right: auto;
    }
    .footer-copyright{
        flex-direction: column;
        gap: 10px;
    }
    .price-box-inner{
        width: 100%;
    }
}
