/*==========================
SECTION TITLE
===========================*/

.section-title{
text-align:center;
margin-bottom:70px;
}

.section-subtitle{
display:inline-block;
padding:10px 20px;
background:#EEE9FF;
color:#6C4DFF;
border-radius:50px;
font-weight:600;
margin-bottom:15px;
}

/*==========================
HOW IT WORKS
===========================*/

.how-it-works {
    padding: 40px 0;
    background: #f8f9ff;
}

.how-it-works .section-title{
    text-align:center;
    margin-bottom:70px;
}

.how-it-works h2{
    font-size:42px;
    font-weight:700;
    color:#202124;
}

.how-steps{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
    position:relative;
}

.step{
    text-align:center;
    position:relative;
}

.step:not(:last-child)::after{
    content:"";
    position:absolute;
    top:42px;
    left:68%;
    width:65%;
    border-top:2px dashed #e3e3e3;
}

.step-icon{
    width:84px;
    height:84px;
    border-radius:50%;
    background:#fff;
    border:2px solid #f1f1f1;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto;
    color:#7C4DFF;
    font-size:32px;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    position:relative;
    z-index:2;
}
.step-icon i{
    font-size:30px;
    color:#7C4DFF;
}

.step-number{
    width:28px;
    height:28px;
    background:#7C4DFF;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:13px;
    font-weight:600;
    margin:18px auto;
}

.step h3{
    font-size:22px;
    font-weight:700;
    color:#202124;
    margin-bottom:12px;
}

.step p{
    font-size:16px;
    line-height:1.8;
    color:#6b7280;
    max-width:210px;
    margin:auto;
}

/*==========================
Responsive
===========================*/

@media(max-width:991px){

    .how-steps{
        grid-template-columns:repeat(2,1fr);
        row-gap:60px;
    }

    .step::after{
        display:none;
    }

}

@media(max-width:767px){

    .how-steps{
        grid-template-columns:1fr;
        gap:50px;
    }

    .how-it-works h2{
        font-size:34px;
    }

}

/*==========================
WHY CHOOSE
==========================*/

.why-choose{
    padding:90px 0;
    background:#fff;
}

.why-choose .section-title{
    text-align:center;
    margin-bottom:55px;
}

.why-choose .section-title h2{
    font-size:42px;
    font-weight:700;
    color:#222;
}

.choose-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:18px;
}

.choose-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:18px;
    padding:38px 22px;
    text-align:center;
    transition:.35s;
    min-height:250px;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
}

.choose-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.choose-icon{
    width:72px;
    height:72px;
    margin:0 auto 28px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.choose-icon i{
    font-size:42px;
    color:#6C4DFF;
}

.choose-card h3{
    font-size:22px;
    font-weight:700;
    color:#222;
    margin-bottom:14px;
}

.choose-card p{
    color:#666;
    font-size:16px;
    line-height:1.8;
    margin:0;
}

/*==========================
Responsive
==========================*/

@media(max-width:1200px){

    .choose-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media(max-width:768px){

    .choose-grid{
        grid-template-columns:1fr;
    }

    .choose-card{
        min-height:auto;
        padding:35px 25px;
    }

    .why-choose .section-title h2{
        font-size:34px;
    }

}


/*==========================
COUNTRIES
==========================*/

.countries{
    padding:90px 0;
    background:#fff;
}

.countries .section-title{
    text-align:center;
    margin-bottom:55px;
}

.countries .section-title h2{
    font-size:42px;
    font-weight:700;
    color:#1f2430;
}

.country-grid{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:18px;
}

.country-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:16px;
    padding:28px 18px;
    text-align:center;
    text-decoration:none;
    transition:.3s;
    min-height:180px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.country-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.country-card img{
    width:46px;
    height:34px;
    object-fit:cover;
    border-radius:4px;
    margin-bottom:18px;
}

.country-card h3{
    font-size:20px;
    margin-bottom:10px;
    color:#222;
    font-weight:700;
}

.country-card p{
    font-size:14px;
    line-height:1.6;
    color:#666;
    margin:0;
}

.view-all .view-icon{
    width:56px;
    height:56px;
    border-radius:50%;
    border:2px solid #6C4DFF;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.view-all i{
    color:#6C4DFF;
    font-size:24px;
}

.view-all h3{
    line-height:1.4;
}

/*==========================
Responsive
==========================*/

@media(max-width:1200px){

    .country-grid{
        grid-template-columns:repeat(4,1fr);
    }

}

@media(max-width:768px){

    .country-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .countries .section-title h2{
        font-size:34px;
    }

}

@media(max-width:480px){

    .country-grid{
        grid-template-columns:1fr;
    }

}
/*==========================
WHY US
===========================*/

.why-us{
padding:110px 0;
}

.why-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.why-image img{
width:100%;
border-radius:20px;
}

.why-list{
margin:35px 0;
}

.why-item{
padding:14px 0;
font-weight:600;
font-size:18px;
}

/*==========================
FEATURES
===========================*/

.features{
padding:100px 0;
background:#F8F9FF;
}

.features-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.feature-box{
background:#fff;
padding:35px;
border-radius:20px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.06);
transition:.3s;
}

.feature-box:hover{
transform:translateY(-10px);
}

.feature-icon{
font-size:50px;
margin-bottom:20px;
}

/*==========================
RESPONSIVE
===========================*/

@media(max-width:991px){

.steps-grid,
.features-grid,
.why-grid{
grid-template-columns:1fr;
}

.why-content{
text-align:center;
}

}

@media(max-width:768px){

.step-card,
.feature-box{
padding:30px;
}

}

/*==========================
COUNTRIES
===========================*/
/*====================================
COUNTRIES
====================================*/

.countries{
    background:#fafbff;
}

/* Desktop / Large Screen (default) */
.country-list{
    display: grid;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 22px;
}

/* Laptop / Tablet */
@media (max-width: 1440px){
    .country-list{
        display: grid;
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .download-content h2{
        font-size: 38px !important;
    }
}

/* Mobile */
@media (max-width: 767px){
    .country-list{
        display: grid;
        grid-template-columns: 1fr !important;
    }
}

.country-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:#fff;

    border:1px solid #ececec;

    border-radius:14px;

    padding:18px 22px;

    transition:.3s ease;

    text-decoration:none;

    color:#222;

    box-shadow:0 6px 20px rgba(0,0,0,.05);

}

.country-item:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    border-color:#6C4DFF;
}

.country-left{

    display:flex;

    align-items:center;

    gap:16px;
}

.country-left img{

    width:34px;

    height:34px;

    border-radius:50%;

    object-fit:cover;

    flex-shrink:0;
}

.country-left span{

    font-size:24px;

    font-weight:600;

    color:#2b0f16;
}

.country-item i{

    font-size:18px;

    color:#40151c;

    transition:.3s;
}

.country-item:hover i{

    transform:translateX(5px);

    color:#6C4DFF;
}

/*==================================================
LEFT CONTENT
==================================================*/

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#EEE9FF;
    color:#6C4DFF;
    padding:12px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;
}

.country-content h1{
    font-size:56px;
    line-height:1.2;
    font-weight:800;
    color:#1F2430;
    letter-spacing:-2px;
    margin-bottom:25px;
}

.country-content h1 span{
    color:#6C4DFF;
}

.hero-text{
    font-size:20px;
    line-height:1.8;
    color:#666;
    max-width:650px;
    margin-bottom:35px;
}
/*==========================
COMPARISON TABLE
==========================*/

.comparison-section{
    padding:90px 0;
    background:#F7F8FF;
}

.comparison-table-wrapper{
    overflow-x:auto;
}

.comparison-table{
    width:100%;
    border-collapse:separate;
    border-spacing:0;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.comparison-table th{
    background:#6C4DFF;
    color:#fff;
    padding:22px;
    font-size:18px;
    font-weight:700;
    text-align:left;
}

.comparison-table th:first-child,
.comparison-table td:first-child{
    text-align:left;
}

.comparison-table td{
    padding:18px 22px;
    border-bottom:1px solid #ececec;
    font-size:16px;
    color:#444;
}

.comparison-table tr:last-child td{
    border-bottom:none;
}

/* Highlight Yonna Global column */

.comparison-table th:nth-child(2){
    background: #6C4DFF;
}

.comparison-table td:nth-child(2){
    background:#f7f4ff;
    font-weight:600;
}

/* Best Choice badge */

.comparison-table th:nth-child(2){
    position:relative;
}

.comparison-table th:nth-child(2)::after{
    content:"Best Choice";
    /* position:absolute; */
    margin-left: 12px;
    top:22px;
    right:301px;
    background:#fff;
    color:#6C4DFF;
    padding:4px 10px;
    border-radius:20px;
    font-size:11px;
    font-weight:700;
}

.comparison-table .fa-check{
    color:#22c55e;
    margin-right:6px;
}

.comparison-table .fa-xmark{
    color:#ef4444;
    margin-right:6px;
}

.comparison-table tbody tr:hover{
    background:#faf9ff;
}

/* Mobile */

@media(max-width:768px){

    .comparison-section .section-title h2{
        font-size:34px;
    }

    .comparison-table{
        min-width:650px;
    }

    .comparison-table th:nth-child(2)::after {
    display: block;
    /* position: absolute; */
    margin-left: 12px;
    width: 70px;
    text-align: center;

}
}

/*==========================
VIDEO TESTIMONIALS
==========================*/

.video-testimonials{
    padding:90px 0;
    background:#F7F8FF;
}

.video-slider{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.video-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.video-card:hover{
    transform:translateY(-6px);
}

.video-wrapper{
    position:relative;
    padding-bottom:56.25%;
    height:0;
}

.video-wrapper iframe{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    border:0;
}

.video-card h4{
    padding:20px 25px 5px;
    font-size:20px;
    font-weight:700;
    color:#222;
}

.video-card span{
    display:block;
    padding:0 25px;
    color:#6C4DFF;
    font-size:14px;
    margin-bottom:12px;
}

.video-card p{
    padding:0 25px 25px;
    color:#666;
    line-height:1.7;
}


.video-slider{
    padding:10px 10px 70px;
}

.video-slider .swiper-button-next,
.video-slider .swiper-button-prev{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,.1);
    color:#6C4DFF;
}

.video-slider .swiper-button-next:after,
.video-slider .swiper-button-prev:after{
    font-size:18px;
    font-weight:700;
}

/* .video-slider .swiper-pagination{
    bottom:0 !important;
}

.video-slider .swiper-pagination-bullet{
    width:10px;
    height:10px;
}

.video-slider .swiper-pagination-bullet-active{
    background:#6C4DFF;
} */
 

@media(max-width:991px){

    .video-slider{
        grid-template-columns:1fr;
    }

}

/*==========================
DOWNLOAD APP
==========================*/

.download-app {
    padding: 90px 0;
    background: #fff !important;
}

.download-wrapper{
    display:grid;
    grid-template-columns: 300px 1fr 1fr;
    align-items:center;
    gap:60px;
}

.download-phone img{
    width:250px;
    display:block;
    margin:auto;
}

.download-content h2{
    font-size:40px;
    font-weight:700;
    color:#1F2430;
    margin-bottom:20px;
}

.download-content p{
    font-size:18px;
    line-height:1.8;
    color:#666;
    margin-bottom:30px;
   
}

.download-list{
    list-style:none;
    padding:0;
    margin:0;
}

.download-list li{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:18px;
    font-size:18px;
    color:#333;
}

.download-list i{
    color:#6C4DFF;
    font-size:22px;
}

.download-right{
    text-align:center;
}

.qr-box{
    width:300px;
    height:300px;
    background:#fff;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    padding:12px;
    margin:0 auto 30px;
}

.qr-box img{
    width:100%;
}

.store-buttons{
    display:flex;
    gap:12px;
    justify-content:center;
}

.store-btn img{
    height:48px;
    display:block;
}

/*==========================
Responsive
==========================*/

@media(max-width:991px){

    .download-wrapper{
        grid-template-columns:1fr;
        text-align:center;
        gap:40px;
    }

    .download-content p{
        margin:auto auto 30px;
    }

    .download-list li {
    /* justify-content: center; */
    padding-left: 17px;
}

}

@media(max-width:768px){

    .download-content h2{
        font-size:32px;
    }

    .download-phone img{
        width:220px;
    }

    .store-buttons{
        flex-direction:column;
        align-items:center;
    }

}

/*==========================
TESTIMONIALS
==========================*/

.testimonials{
    padding:90px 0;
    background:#fff;
}

.testimonials .section-title{
    text-align:center;
    margin-bottom:55px;
}

.testimonials .section-title h2{
    font-size:42px;
    font-weight:700;
    color:#1f2430;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.testimonial-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:18px;
    padding:35px;
    transition:.3s;
}

.testimonial-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.rating{
    margin-bottom:20px;
}

.rating i{
    color:#6C4DFF;
    font-size:18px;
    margin-right:4px;
}

.review{
    font-size:17px;
    line-height:1.8;
    color:#444;
    margin-bottom:28px;
}

.testimonial-card h4{
    font-size:18px;
    font-weight:700;
    margin-bottom:6px;
    color:#222;
}

.testimonial-card span{
    color:#8b8b8b;
    font-size:15px;
}

.testimonial-dots{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:35px;
}

.testimonial-dots span{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#d6d6d6;
}

.testimonial-dots .active{
    background:#6C4DFF;
}

@media(max-width:991px){

    .testimonial-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .testimonials .section-title h2{
        font-size:34px;
    }

    .testimonial-card{
        padding:28px;
    }

}
/*==========================
CTA
===========================*/

.cta-section{
padding:100px 0;
background:#F8F9FF;
}

.cta-box{
background:linear-gradient(135deg,#6C4DFF,#8B5CFF);
padding:70px;
border-radius:25px;
text-align:center;
color:#fff;
}

.cta-box h2{
color:#fff;
margin-bottom:20px;
}

.cta-box p{
color:#fff;
margin-bottom:30px;
}

/*==========================
NEWSLETTER
===========================*/

.newsletter{
padding:90px 0;
}

.newsletter-box{
display:flex;
justify-content:space-between;
align-items:center;
background:#fff;
padding:50px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.newsletter-form{
display:flex;
gap:15px;
}

.newsletter-form input{
width:350px;
padding:16px;
border:1px solid #ddd;
border-radius:50px;
}

/*==========================
RESPONSIVE
===========================*/
/*=========================================
Mobile (576px)
=========================================*/

@media only screen and (max-width:768px){

    .newsletter-form{
        background: transparent !important;
    }
    
.newsletter-form button {
    width: 37% !important;
    padding: 10px 0px !important;
    border-radius: 52px !important;
    align-self: center !important;
}


}

@media(max-width:991px){

.testimonial-grid{
grid-template-columns:1fr;
}

.newsletter-box{
flex-direction:column;
text-align:center;
gap:30px;
}

.newsletter-form{
flex-direction:column;
width:100%;
}

.newsletter-form input{
width:100%;
}

.cta-box{
padding:45px 25px;
}

}


/*==================================================
COUNTRY HERO SECTION
==================================================*/

.country-hero{
    padding:120px 0 100px;
    background:
        radial-gradient(circle at top left,
        rgba(108,77,255,.12), transparent 35%),
        radial-gradient(circle at bottom right,
        rgba(108,77,255,.08), transparent 30%),
        #F7F8FF;
    position:relative;
    overflow:hidden;
}

.country-hero::before{
    content:"";
    position:absolute;
    width:550px;
    height:550px;
    border-radius:50%;
    background:rgba(108,77,255,.05);
    top:-250px;
    right:-180px;
}

.country-hero-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:70px;
    align-items:center;
    position:relative;
    z-index:2;
}

/*==================================================
LEFT CONTENT
==================================================*/

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#EEE9FF;
    color:#6C4DFF;
    padding:12px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;
}

.country-content h1{
    font-size:56px;
    line-height:1.2;
    font-weight:800;
    color:#1F2430;
    letter-spacing:-2px;
    margin-bottom:25px;
}

.country-content h1 span{
    color:#6C4DFF;
}

.hero-text{
    font-size:20px;
    line-height:1.8;
    color:#666;
    max-width:650px;
    margin-bottom:35px;
}

/*==================================================
TRUST STATS
==================================================*/

.hero-trust{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:35px;
}

.trust-item{
    background:#fff;
    padding:18px 24px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    min-width:150px;
}

.trust-item strong{
    display:block;
    font-size:28px;
    color:#6C4DFF;
    font-weight:700;
    margin-bottom:4px;
}

.trust-item span{
    color:#666;
    font-size:14px;
}

/*==================================================
FEATURES
==================================================*/

.hero-features{
    margin-bottom:35px;
}

.hero-feature{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:14px;
    font-size:17px;
    font-weight:600;
    color:#1F2430;
}

.hero-feature i{
    color:#6C4DFF;
    font-size:18px;
}

/*==================================================
BUTTONS
==================================================*/

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 32px;
    border-radius:14px;
    background:#6C4DFF;
    color:#fff;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.btn-primary:hover{
    transform:translateY(-2px);
    box-shadow:0 15px 35px rgba(108,77,255,.25);
}

.btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 32px;
    border-radius:14px;
    border:2px solid #6C4DFF;
    color:#6C4DFF;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-outline:hover{
    background:#6C4DFF;
    color:#fff;
}

/*==================================================
CALCULATOR CARD
==================================================*/

.country-calculator{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    border:1px solid rgba(108,77,255,.08);
    box-shadow:
        0 30px 60px rgba(108,77,255,.12),
        0 10px 30px rgba(0,0,0,.06);
}

.rate-header{
    background:#6C4DFF;
    color:#fff;
    text-align:center;
    padding:28px;
}

.rate-header small{
    display:block;
    font-size:14px;
    opacity:.9;
    margin-bottom:8px;
}

.rate-header strong{
    display:block;
    font-size:34px;
    font-weight:800;
    margin-bottom:10px;
}

.rate-header span{
    display:inline-block;
    padding:8px 14px;
    border-radius:50px;
    background:rgba(255,255,255,.15);
    font-size:13px;
}

.calculator-body{
    padding:35px;
}

.calculator-body h3{
    text-align:center;
    margin-bottom:30px;
    color:#1F2430;
    font-size:24px;
}

.calc-field{
    margin-bottom:20px;
}

.calc-field label{
    display:block;
    color:#666;
    margin-bottom:8px;
    font-weight:600;
}

.calc-input{
    border:2px solid #ececec;
    border-radius:16px;
    padding:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    transition:.3s;
}

.calc-input:focus-within{
    border-color:#6C4DFF;
    box-shadow:0 0 0 4px rgba(108,77,255,.08);
}

.calc-input input{
    border:none;
    outline:none;
    width:100%;
    font-size:30px;
    font-weight:700;
    color:#1F2430;
    background:none;
}

.calc-input span{
    color:#6C4DFF;
    font-weight:700;
    font-size:16px;
}

.calc-info{
    background:#F7F8FF;
    border-radius:16px;
    padding:18px;
    margin:20px 0;
}

.calc-info p{
    display:flex;
    justify-content:space-between;
    margin:10px 0;
    color:#555;
}

.calc-info strong{
    color:#1F2430;
}

.btn-full{
    width:100%;
    display:flex;
    justify-content:center;
}

/*==================================================
TRUST STRIP
==================================================*/

.trust-strip{
    margin-top:-35px;
    position:relative;
    z-index:10;
}

.trust-strip-inner{
    background:#fff;
    border-radius:20px;
    padding:25px 35px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    display:flex;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
}

.trust-strip-inner div{
    font-weight:600;
    color:#1F2430;
}

.trust-strip-inner i{
    color:#6C4DFF;
    margin-right:8px;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px){

    .country-content h1{
        font-size:58px;
    }

}

@media(max-width:991px){

    .country-hero-grid{
        grid-template-columns:1fr;
    }

    .country-content{
        text-align:center;
    }

    .hero-features{
        display:inline-block;
        text-align:left;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-trust{
        justify-content:center;
    }

    .country-content h1{
        font-size:48px;
    }

}

@media(max-width:768px){

    .country-hero{
        padding:100px 0;
    }

    .country-content h1{
        font-size:38px;
        letter-spacing:-1px;
    }

    .hero-text{
        font-size:17px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .btn-primary,
    .btn-outline{
        width:100%;
    }

    .trust-item{
        width:100%;
    }

    .trust-strip-inner{
        flex-direction:column;
        text-align:left;
    }

    .trust-grid{
        gap: 0px !important;
    }

}
/*====================================
WHY FAMILIES TRUST YONNA
====================================*/

.trust-family{
    padding:20px 0px !important;
    background:#fff;
}

.trust-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:70px;
    align-items:center;
}

.trust-image img{
    width:40%;
    display:block;
    margin:0 auto;
    border-radius:30px;
    box-shadow:0 25px 50px rgba(0,0,0,.08);
}

.trust-content {
    margin-top: 25px;
}
.download-app-banner {
    padding: 30px 0 !important;
    margin-top: 44px;
    background: #fff !important;
}

.phone-frame{
    background:#fff;
    padding:20px;
    border-radius:35px;
    box-shadow:0 30px 60px rgba(108,77,255,.15);
    max-width:420px;
    margin:auto;
}

.phone-frame img{
    width:100%;
    display:block;
    border-radius:25px;
}

.section-tag{
    display:inline-block;
    padding:10px 18px;
    border-radius:50px;
    background:#EEE9FF;
    color:#6C4DFF;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.trust-content h2{
    font-size:38px !important;
    font-weight:800;
    line-height:1.1;
    color:#1F2430;
    margin-bottom:20px;
}





.trust-content p{
    font-size:18px;
    line-height:1.8;
    color:#666;
    margin-bottom:30px;
}

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

.trust-content ul li{
    position:relative;
    padding-left:35px;
    margin-bottom:18px;
    font-size:17px;
    font-weight:600;
    color:#1F2430;
}

.trust-content ul li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    width:24px;
    height:24px;
    background:#6C4DFF;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
}
.trust-content h2{
    font-size:52px;
    line-height:1.1;
    margin-bottom:20px;
    color:#1F2430;
    font-weight:800;
}

.trust-lead{
    font-size:18px;
    line-height:1.9;
    color:#666;
    margin-bottom:35px;
}

.trust-stats{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:35px;
}

.trust-stat{
    background:#fff;
    padding: 15px 18px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    min-width:160px;
}

.trust-stat strong{
    display:block;
    font-size:28px;
    color:#6C4DFF;
    margin-bottom:5px;
}

.trust-stat span{
    color:#666;
    font-size:14px;
}

.trust-list{
    list-style:none;
    padding:0;
    margin:0 0 35px;
}

.trust-list li{
    position:relative;
    padding-left:35px;
    margin-bottom:18px;
    font-size:17px;
    color:#1F2430;
    font-weight:500;
}

.trust-list li:before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    width:22px;
    height:22px;
    border-radius:50%;
    background:#6C4DFF;
    color:#fff;
    font-size:12px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.trust-actions{
    display:flex;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.trust-note{
    color:#666;
    font-weight:600;
}


/*====================================
DOWNLOAD APP CTA
====================================*/

.download-app-banner{
    padding:120px 0;
    background:#fff !important;
}

.app-banner{
    background:linear-gradient(
        135deg,
        #6C4DFF 0%,
        #7D62FF 50%,
        #927CFF 100%
    );
    border-radius:32px;
    padding:70px;
    display:grid;
    grid-template-columns:1.3fr .7fr;
    gap:60px;
    align-items:center;
    position:relative;
    overflow:hidden;
}

.app-banner::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-180px;
    right:-120px;
}

.app-banner::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    bottom:-120px;
    left:-80px;
}

.app-content{
    position:relative;
    z-index:2;
}

.app-content .section-tag{
    background:rgba(255,255,255,.15);
    color:#fff;
    border:1px solid rgba(255,255,255,.15);
}

.app-content h2{
    color:#fff;
    font-size:58px;
    line-height:1.05;
    font-weight:800;
    margin-bottom:20px;
}

.app-content h2 span{
    display:block;
    color:#FFD84D;
}

.app-description{
    color:rgba(255,255,255,.92);
    font-size:18px;
    line-height:1.9;
    max-width:650px;
    margin-bottom:35px;
}

.app-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-bottom:35px;
}

.app-feature{
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.15);
    padding:14px 18px;
    border-radius:14px;
    color:#fff;
    font-weight:600;
}
/* .app-feature i {
    color: #FFD84D;
} */

.app-buttons{
    display:flex;
    gap:15px;
    margin-bottom:25px;
    flex-wrap:wrap;
}

.store-btn{
    background:#fff;
    color:#6C4DFF;
    text-decoration:none;
    padding: 0px 0px;
    border-radius:14px;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:10px;
    transition:.3s;
}

.store-btn:hover{
    transform:translateY(-4px);
}

.app-rating{
    color:#fff;
    font-size:18px;
    font-weight:600;
}

.app-rating span{
    display:block;
    margin-top:8px;
    opacity:.9;
    font-size:14px;
}

/* QR CARD */

.app-right{
    position:relative;
    z-index:2;
}

.qr-card{
    background:#fff;
    border-radius:24px;
    padding:30px;
    text-align:center;
    max-width:300px;
    margin-left:auto;
    box-shadow:0 25px 50px rgba(0,0,0,.15);
}

.qr-card img{
    width:180px;
    margin-bottom:20px;
    margin: 0px auto;
}

.qr-card h4{
    font-size:22px;
    margin-bottom:10px;
    color:#1F2430;
}

.qr-card p{
    color:#666;
    margin:0;
}

/* RESPONSIVE */

@media(max-width:991px){

    .app-banner{
        grid-template-columns:1fr;
        text-align:center;
        padding:50px 35px;
    }

    .app-content h2{
        font-size:42px;
    }

    .app-features{
        grid-template-columns:1fr;
    }

    .app-buttons{
        justify-content:center;
    }

    .qr-card{
        margin:auto;
    }
}

@media(max-width:768px){

    .app-content h2{
        font-size:34px;
    }

    .store-btn{
        width:100%;
        justify-content:center;
    }
}