/*=====================================
RESET
======================================*/

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#fff;
    color:#222;
    overflow-x:hidden;
    padding-top:80px;
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/*====================================
COMMON INNER PAGES
Privacy | Terms | Refund | Disclaimer
====================================*/

.inner-page{
    background:#f6f8fc;
}

/* HERO */

.page-hero{

    padding:80px 0 80px;

    text-align:center;

    background:linear-gradient(135deg,#3156ff,#4b6dff);

    color:#fff;

    position:relative;

    overflow:hidden;

}

.page-hero::before{

    content:"";

    position:absolute;

    inset:0;

    background-image:
    radial-gradient(rgba(255,255,255,.10) 1px,transparent 1px);

    background-size:28px 28px;

}

.page-hero .container{

    position:relative;

    z-index:2;

}

.page-hero h1{

    font-size:54px;

    font-weight:800;

    margin-bottom:15px;

}

.breadcrumb{

    display:flex;

    justify-content:center;

    gap:10px;

    flex-wrap:wrap;

    color:rgba(255,255,255,.9);

}

.breadcrumb a{

    color:#fff;

}

/* CONTENT */

.page-content{

    padding:80px 0;

}

.content-box{

    max-width:1050px;

    margin:auto;

    background:#fff;

    padding:60px;

    border-radius:22px;

    box-shadow:0 15px 50px rgba(0,0,0,.08);

}

.content-box h2{

    font-size:34px;

    margin:40px 0 20px;

    color:#1f2937;

}

.content-box h3{

    font-size:26px;

    margin:35px 0 15px;

    color:#3156ff;

}

.content-box p{

    color:#555;

    line-height:1.9;

    margin-bottom:18px;

}

.content-box ul{

    padding-left:25px;

    margin-bottom:25px;

}

.content-box li{

    margin-bottom:12px;

    line-height:1.8;

}

.content-box table{

    width:100%;

    border-collapse:collapse;

    margin:25px 0;

}

.content-box table th{

    background:#3156ff;

    color:#fff;

}

.content-box table th,
.content-box table td{

    border:1px solid #ddd;

    padding:14px;

}

.content-box blockquote{

    background:#f7f9ff;

    border-left:4px solid #3156ff;

    padding:25px;

    margin:25px 0;

}

.contact-card{

    margin-top:35px;

    padding:30px;

    border-radius:15px;

    background:#f7f9ff;

    border-left:5px solid #3156ff;

}

/* RESPONSIVE */

@media(max-width:991px){

.page-hero{

padding:140px 0 70px;

}

.page-hero h1{

font-size:42px;

}

.content-box{

padding:40px;

}

}

@media(max-width:768px){

.page-hero{

padding:120px 0 60px;

}

.page-hero h1{

font-size:34px;

}

.page-content{

padding:60px 0;

}

.content-box{

padding:28px 20px;

}

.content-box h2{

font-size:28px;

}

.content-box h3{

font-size:22px;

}

}

/*=====================================
HEADER
======================================*/

header{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    z-index:9999;
}

.nav{
    height:80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}


/*=====================================
LOGO
======================================*/

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo-icon{
    width:42px;
    height:42px;
    border-radius:12px;
    background:#3563ff;

    display:flex;
    justify-content:center;
    align-items:center;
}

.logo h2{
    color:#222;
    font-size:22px;
    font-weight:700;
}


/*=====================================
DESKTOP MENU
======================================*/

nav{
    display:flex;
    align-items:center;
}

nav ul{
    display:flex;
    align-items:center;
    gap:35px;
}

nav ul li{
    position:relative;
}

nav ul li a{
    color:#444;
    font-size:15px;
    font-weight:600;
    transition:.3s;
}

nav ul li a:hover{
    color:#3563ff;
}


/*=====================================
PHONE BUTTON
======================================*/

.phone-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:13px 22px;

    border-radius:50px;

    background:#3563ff;
    color:#fff;

    font-weight:600;
gap: 8px;
    transition:.3s;
}

.phone-btn:hover{

    background:#2347e8;
}


/*=====================================
MENU TOGGLE
======================================*/

.menu-toggle{

    display:none;

    font-size:30px;

    color:#222;

    cursor:pointer;

    z-index:10001;
}



/*==========================
STATS SECTION
==========================*/

.stats{
    padding:80px 0;
    background:linear-gradient(135deg,#3156ff,#4f6dff);
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.stats-grid > div{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    backdrop-filter:blur(12px);
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    transition:.35s ease;
}

.stats-grid > div:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,.14);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.stats-grid h2{
    font-size:42px;
    font-weight:800;
    color:#fff;
    margin-bottom:12px;
    line-height:1.2;
}

.stats-grid p{
    font-size:16px;
    color:rgba(255,255,255,.9);
    margin:0;
    line-height:1.6;
}

/*======================================
COMMON SECTION HEADING
======================================*/

.section-heading{
    text-align:center;
    max-width:760px;
    margin:0 auto 70px;
}

.section-heading span{

    display:inline-block;

    color:#3563ff;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;
}

.section-heading h2{

    margin:18px 0;

    color:#111827;

    font-size:44px;

    line-height:1.2;

    font-weight:800;
}

.section-heading p{

    color:#6b7280;

    font-size:17px;

    line-height:30px;
}

/*=========================================
SMOOTH ANIMATION
=========================================*/

.franchise-card,
.why-card,
.process-card,
.testimonial-card,
.stat-box{

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

/*=========================================
SELECTION
=========================================*/

::selection{

    background:#3563ff;
    color:#fff;
}

@media(max-width:768px){

.section-heading h2{

font-size:34px;

}

}

@media(max-width:480px){

.section-heading h2{

font-size:28px;

}

}


/*======================================
FRANCHISE SECTION
======================================*/

.franchise-section{

padding:100px 0;

background:#fff;

}

.franchise-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:35px;

}

.franchise-card{

background:#fff;

border:1px solid #e8edf8;

border-radius:22px;

padding:35px;

position:relative;

transition:.35s;

overflow:hidden;

}

.franchise-card:hover{

transform:translateY(-10px);

box-shadow:0 25px 60px rgba(0,0,0,.08);

}

.franchise-card.active{

border:2px solid #3563ff;

}

.popular{

position:absolute;

top:20px;

right:20px;

background:#3563ff;

color:#fff;

padding:8px 18px;

border-radius:30px;

font-size:12px;

font-weight:700;

}

.card-icon{

width:70px;

height:70px;

background:#edf3ff;

border-radius:18px;

display:flex;

justify-content:center;

align-items:center;

font-size:30px;

color:#3563ff;

margin-bottom:25px;

}

.franchise-card h3{

font-size:30px;

margin-bottom:12px;

color:#111827;

}

.subtitle{

color:#6b7280;

line-height:30px;

margin-bottom:25px;

}

.info{

padding:25px 0;

border-top:1px solid #eee;

border-bottom:1px solid #eee;

display:flex;

flex-direction:column;

gap:18px;

}

.info div{

display:flex;

justify-content:space-between;

align-items:center;

}

.info span{

color:#6b7280;

}

.info strong{

color:#111827;

font-weight:700;

}

.green{

color:#3563ff;

}

.franchise-card ul{

margin:30px 0;

}

.franchise-card ul li{

display:flex;

gap:12px;

margin-bottom:15px;

color:#4b5563;

line-height:26px;

}

.franchise-card li i{

color:#3563ff;

margin-top:5px;

}

.card-btn{

height:56px;

display:flex;
gap: 8px;
justify-content:center;

align-items:center;

border-radius:50px;

font-weight:700;

transition:.3s;

border:2px solid #3563ff;

color:#3563ff;

}

.card-btn:hover{

background:#3563ff;

color:#fff;

}

.fill{

background:#3563ff;

color:#fff;

}

.fill:hover{

background:#2347e8;

}

.compare-btn{

margin-top:50px;

text-align:center;

}

.compare-btn a{

font-weight:700;

font-size:17px;

color:#3563ff;

}


/*======================================
WHY CHOOSE US
======================================*/

.why-us{

padding:100px 0;

background:#f8faff;

}

.why-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.why-card{

background:#fff;

padding:35px;

border-radius:20px;

border:1px solid #edf2ff;

box-shadow:0 10px 30px rgba(0,0,0,.05);

transition:.35s;

}

.why-card:hover{

transform:translateY(-10px);

box-shadow:0 20px 50px rgba(53,99,255,.15);

}

.why-card .icon{

width:72px;

height:72px;

background:#3563ff;

color:#fff;

display:flex;

justify-content:center;

align-items:center;

font-size:28px;

border-radius:18px;

margin-bottom:25px;

transition:.3s;

}

.why-card:hover .icon{

transform:rotate(-8deg) scale(1.08);

}

.why-card h3{

font-size:24px;

color:#111827;

margin-bottom:15px;

}

.why-card p{

color:#6b7280;

line-height:30px;

}

/*=====================================
MOBILE MENU
======================================*/

@media(max-width:991px){

    .phone-btn{
        display:none;
    }

    .menu-toggle{
        display:block;
    }

    nav{

        position:relative;
    }

    nav ul{

        position:fixed;
    top:80px;
    left:0;
    width:100%;
    background:#fff;
    display:none;
    flex-direction:column;
    box-shadow:0 15px 30px rgba(0,0,0,.12);
    z-index:999;

        box-shadow:0 20px 45px rgba(0,0,0,.15);

        animation:menuFade .35s ease;
    }

    nav ul.active{

        display:flex;
        gap: 0;
    }

    nav ul li{

        width:100%;
    }

    nav ul li a{

        display:block;

        width:100%;

        padding:16px 20px;

        border-bottom:1px solid #eee;
    }

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .valmo-grid{
    grid-template-columns:1fr;
    gap:45px;
}

.valmo-content{
    max-width:100%;
    text-align:center;
}

.valmo-heading{
    font-size:40px;
}

.valmo-buttons{
    justify-content:center;
}

.valmo-floating-card{
    position:relative;
    right:auto;
    bottom:auto;
    margin-top:20px;
}

}

@keyframes menuFade{

    from{

        opacity:0;
        transform:translateY(-15px);
    }

    to{

        opacity:1;
        transform:translateY(0);
    }
}


/*=========================
HERO SECTION
==========================*/

.valmo-hero{
    position:relative;
    overflow:hidden;
    background:linear-gradient(135deg,#2f46d8 0%,#4058e8 55%,#2437b7 100%);
    color:#fff;
    padding:120px 0 90px;
}

.valmo-bg-pattern{
    position:absolute;
    inset:0;
    background-image:
    radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
    background-size:28px 28px;
    opacity:.5;
}

.valmo-container{
    max-width:1280px;
    width:92%;
    margin:auto;
    position:relative;
    z-index:2;
}

.valmo-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:70px;
    align-items:center;
}

/* LEFT */

.valmo-content{
    max-width:620px;
}

.valmo-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 18px;
    border-radius:50px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.2);
    font-size:14px;
    font-weight:600;
    margin-bottom:24px;
}

.valmo-badge svg{
    width:18px;
    height:18px;
}

.valmo-heading{
    font-size:58px;
    line-height:1.08;
    font-weight:800;
    margin-bottom:24px;
}

.valmo-description{
    font-size:18px;
    line-height:1.8;
    color:rgba(255,255,255,.92);
    margin-bottom:36px;
}

.valmo-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{

    height:58px;
    padding:0 30px;

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    border-radius:60px;

    font-weight:700;

    transition:.3s;
}

.btn-primary{
    background:#fff;
    color:#3156ff;
}

.btn-primary:hover{
    transform:translateY(-4px);
}

.btn-secondary{
    color:#fff;
    border:2px solid rgba(255,255,255,.3);
}

.btn-secondary:hover{
    background:#fff;
    color:#3156ff;
}

/* RIGHT */

.valmo-visual{
    position:relative;
}

.valmo-main-card{
    background:#fff;
    border-radius:28px;
    padding:30px;
    color:#222;
    box-shadow:0 30px 70px rgba(0,0,0,.18);
}

.card-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

.card-title{
    font-size:24px;
    font-weight:700;
}

.status-badge{
    background:#EAFBF1;
    color:#0F9D58;
    padding:8px 16px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.model-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 0;
    border-bottom:1px solid #ececec;
}

.model-row:last-child{
    border:none;
}

.model-info{
    display:flex;
    align-items:center;
    gap:16px;
}

.icon-wrapper{

    width:58px;
    height:58px;

    border-radius:16px;

    background:#EEF3FF;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#3156ff;
}

.model-name{
    font-size:20px;
    font-weight:700;
}

.model-price{
    margin-top:5px;
    color:#777;
}

.earnings-label{
    color:#888;
    font-size:13px;
}

.earnings-amount{
    font-size:24px;
    font-weight:700;
    color:#3563ff;
}

.tag-popular{
    background:#3156ff;
    color:#fff;
    padding:4px 8px;
    border-radius:20px;
    font-size:11px;
    margin-left:6px;
}

.card-footer{
    margin-top:25px;
    display:flex;
    align-items:center;
    gap:10px;
    color:#3563ff;
    font-weight:600;
}

.valmo-floating-card{

    position:absolute;

    right:-35px;
    bottom:-30px;

    background:#fff;

    color:#222;

    padding:18px 22px;

    border-radius:20px;

    box-shadow:0 18px 45px rgba(0,0,0,.18);
}

.floating-content{
    display:flex;
    align-items:center;
    gap:14px;
}

.floating-title{
    font-weight:700;
}

.floating-sub{
    color:#777;
    font-size:14px;
}

/*=========================================
CTA SECTION
=========================================*/

.cta-section{
    padding:100px 0;
    background:linear-gradient(135deg,#3156ff 0%,#4f6dff 100%);
    position:relative;
    overflow:hidden;
}

.cta-section::before{
    content:"";
    position:absolute;
    top:-120px;
    right:-120px;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
}

.cta-section::after{
    content:"";
    position:absolute;
    bottom:-100px;
    left:-100px;
    width:280px;
    height:280px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
}

.cta-wrapper{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:60px;
    align-items:center;
}

/*======================
LEFT CONTENT
=======================*/

.cta-content{
    color:#fff;
}

.cta-tag{
    display:inline-block;
    padding:10px 20px;
    border-radius:40px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.2);
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:25px;
}

.cta-content h2{
    font-size:48px;
    line-height:1.2;
    font-weight:800;
    margin-bottom:25px;
}

.cta-content p{
    font-size:18px;
    line-height:32px;
    color:rgba(255,255,255,.9);
    margin-bottom:35px;
}

/*======================
BUTTONS
=======================*/

.cta-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.cta-btn,
.cta-btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:16px 32px;
    border-radius:50px;
    font-size:16px;
    font-weight:700;
    transition:.3s;
}

.cta-btn{
    background:#fff;
    color:#3156ff;
}

.cta-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.cta-btn-outline{
    color:#fff;
    border:2px solid rgba(255,255,255,.3);
}

.cta-btn-outline:hover{
    background:#fff;
    color:#3156ff;
}

/*======================
RIGHT STATS
=======================*/

.cta-stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.stat-box{
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.2);
    backdrop-filter:blur(15px);
    border-radius:20px;
    padding:30px 20px;
    text-align:center;
    transition:.3s;
}

.stat-box:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,.18);
}

.stat-box h3{
    font-size:40px;
    font-weight:800;
    color:#fff;
    margin-bottom:10px;
}

.stat-box p{
    color:rgba(255,255,255,.9);
    font-size:15px;
    margin:0;
}

.popup-overlay{

position:fixed;

top:0;
left:0;

width:100%;
height:100%;

background:rgba(0,0,0,.6);

display:flex;

justify-content:center;

align-items:center;

padding:20px;

opacity:0;

visibility:hidden;

transition:.3s;

z-index:99999;

}

.popup-overlay.active{

opacity:1;

visibility:visible;

}

.popup-form{

width:100%;

max-width:500px;

background:#fff;

padding:40px;

border-radius:20px;

position:relative;

animation:popup .35s ease;

}

@keyframes popup{

from{

transform:translateY(40px);

opacity:0;

}

to{

transform:translateY(0);

opacity:1;

}

}

.close-popup{

position:absolute;

right:18px;

top:15px;

background:none;

border:none;

font-size:34px;

cursor:pointer;

}

.popup-form h2{

font-size:32px;

margin-bottom:10px;

text-align:center;

}

.popup-form p{

text-align:center;

color:#666;

margin-bottom:30px;

}

.form-group{

margin-bottom:18px;

}

.form-group input,
.form-group select{

width:100%;

height:55px;

padding:0 18px;

border:1px solid #ddd;

border-radius:10px;

font-size:15px;

outline:none;

}

.form-group input:focus,
.form-group select:focus{

border-color:#3156ff;

}

.submit-btn{

width:100%;

height:55px;

border:none;

background:#3156ff;

color:#fff;

font-size:17px;

font-weight:700;

border-radius:50px;

cursor:pointer;

transition:.3s;

}

.submit-btn:hover{

background:#2143d8;

}

/*=========================
THANK YOU PAGE
==========================*/

.thank-you-box{
    text-align:center;
}

.thank-icon{

    width:100px;
    height:100px;

    margin:0 auto 30px;

    background:#22c55e;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:48px;

    box-shadow:0 15px 35px rgba(34,197,94,.3);

}

.thank-you-box h2{
    margin-bottom:20px;
}

.thank-buttons{

    margin-top:35px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

@media(max-width:576px){

.thank-buttons{

flex-direction:column;

}

.thank-buttons a{

width:100%;

}

}

@media(max-width:576px){

.popup-form{

padding:30px 20px;

}

.popup-form h2{

font-size:26px;

}

}

/* MOBILE */

@media(max-width:991px){

.valmo-grid{
    grid-template-columns:1fr;
    gap:45px;
}

.valmo-content{
    max-width:100%;
    text-align:center;
}

.valmo-heading{
    font-size:40px;
}

.valmo-buttons{
    justify-content:center;
}

.valmo-floating-card{
    position:relative;
    right:auto;
    bottom:auto;
    margin-top:20px;
}

.cta-wrapper{
    grid-template-columns:1fr;
    text-align:center;
}

.cta-buttons{
    justify-content:center;
}

.cta-stats{
    max-width:600px;
    margin:auto;
}

.valmo-hero{
    padding: 0;
}
}

@media(max-width:576px){

.valmo-heading{
    font-size:32px;
}

.valmo-description{
    font-size:16px;
}

.model-row{
    flex-direction:column;
    gap:18px;
    text-align:center;
}

.model-info{
    flex-direction:column;
}

.btn-primary,
.btn-secondary{
    width:100%;
}

}

/*=========================================
TESTIMONIAL
=========================================*/

.testimonial-section{
    padding:100px 0;
    background:#f7f9ff;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.testimonial-card{
    position:relative;
    padding:35px;
    border-radius:22px;
    background:#fff;
    border:1px solid #edf2ff;
    box-shadow:0 10px 35px rgba(0,0,0,.05);
    transition:.35s;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 55px rgba(53,99,255,.15);
}

.quote{
    position:absolute;
    right:25px;
    top:20px;
    font-size:42px;
    color:#3563ff20;
}

.stars{
    color:#ffb400;
    margin-bottom:18px;
}

.testimonial-card p{
    color:#6b7280;
    line-height:30px;
    margin-bottom:30px;
}

.client{
    display:flex;
    align-items:center;
    gap:15px;
}

.avatar{
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#3563ff;
    color:#fff;
    font-weight:700;
}

.client h4{
    color:#111827;
    margin-bottom:4px;
}

.client span{
    color:#6b7280;
    font-size:14px;
}

/*=========================================
PROCESS
=========================================*/

.process-section{
    padding:100px 0;
    background:#fff;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.process-card{
    position:relative;
    padding:35px 30px;
    text-align:center;
    border-radius:22px;
    background:#fff;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
    transition:.35s;
}

.process-card:hover{
    transform:translateY(-10px);
}

.step-no{
    position:absolute;
    top:18px;
    right:20px;
    font-size:42px;
    font-weight:800;
    color:#eef3ff;
}

.step-icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:#3563ff;
    color:#fff;
    font-size:32px;
    transition:.35s;
}

.process-card:hover .step-icon{
    transform:scale(1.1) rotate(8deg);
}

.process-card h3{
    font-size:24px;
    color:#111827;
    margin-bottom:15px;
}

.process-card p{
    color:#6b7280;
    line-height:30px;
}

/*=========================================
FOOTER
=========================================*/

.footer{
    background:#111827;
    color:#fff;
    padding:90px 0 25px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:40px;
}

.footer h3{
    font-size:30px;
    margin-bottom:20px;
}

.footer h4{
    font-size:20px;
    margin-bottom:20px;
}

.footer p{
    color:#cfd6e6;
    line-height:30px;
    margin-bottom:20px;
}

.footer ul{
    list-style:none;
}

.footer ul li{
    margin-bottom:15px;
}

.footer ul li a{
    color:#cfd6e6;
    transition:.3s;
}

.footer ul li a:hover{
    color:#3563ff;
    padding-left:6px;
}

.social{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.social a{
    width:45px;
    height:45px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:#1f2937;
    color:#fff;
    transition:.3s;
}

.social a:hover{
    background:#3563ff;
    transform:translateY(-5px);
}

.copyright{
    margin-top:60px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.1);
    text-align:center;
    color:#cfd6e6;
    font-size:15px;
}

/*=========================================
FLOATING BUTTONS
=========================================*/

.whatsapp,
.scroll-top{

    position:fixed;

    right:25px;

    width:58px;
    height:58px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    color:#fff;

    font-size:22px;

    box-shadow:0 15px 35px rgba(0,0,0,.18);

    z-index:999;

    transition:.35s;
}

.whatsapp{

    bottom:25px;

    background:#25D366;
}

.scroll-top{

    bottom:0;

    background:#3563ff;
}

.whatsapp:hover,
.scroll-top:hover{

    transform:translateY(-6px);
}

/*=========================================
GLOBAL RESPONSIVE
=========================================*/

@media(max-width:991px){

  .container{

    width:92%;
}

.footer-grid{

    grid-template-columns:repeat(2,1fr);
}


    .valmo-grid{

        grid-template-columns:1fr;

        text-align:center;

        padding:70px 0;
    }

    .valmo-buttons{

        justify-content:center;
    }

    .valmo-visual{

        display:none;
    }

    .franchise-grid{

grid-template-columns:1fr;

}

.why-grid{

grid-template-columns:repeat(2,1fr);

}

.cta-wrapper{
        grid-template-columns:1fr;
        text-align:center;
    }

    .cta-buttons{
        justify-content:center;
    }

    .cta-stats{
        grid-template-columns:repeat(2,1fr);
    }

    .testimonial-grid{
        grid-template-columns:1fr;
    }

    .process-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:767px){

    .cta-content h2{
        font-size:34px;
    }

    .cta-stats{
        grid-template-columns:1fr;
    }

    .process-grid{
        grid-template-columns:1fr;
    }

    .process-card{
        padding:28px;
    }

}   

@media(max-width:768px){

  .footer-grid{

    grid-template-columns:1fr;
    text-align:center;
}

.social{

    justify-content:center;
}

.section-heading{

    margin-bottom:50px;
}

.section-heading h2{

    font-size:32px;
}

.cta-content h2{

    font-size:32px;
}

.stats h2{

    font-size:34px;
}

.franchise-card h3{

    font-size:26px;
}

.why-card h3{

    font-size:22px;
}

.process-card h3{

    font-size:22px;
}

.why-grid{

grid-template-columns:1fr;

}

.info div{

flex-direction:column;

align-items:flex-start;

gap:8px;

}

.franchise-card{

padding:28px;

}

.cta-section{
    padding:70px 0;
}

.cta-content h2{
    font-size:36px;
}

.cta-content p{
    font-size:16px;
    line-height:28px;
}

}

@media(max-width:600px){

    .stats-grid{
        grid-template-columns:1fr;
        gap:40px;
    }
}

@media(max-width:576px){

body{

    font-size:15px;
}

.container{

    width:94%;
}

.section-heading h2{

    font-size:28px;
}

.cta-content h2{

    font-size:28px;
}

.phone-btn{

    display:none;
}

.whatsapp,
.scroll-top{

    width:50px;
    height:50px;
    right:15px;
}

.scroll-top{

    bottom:75px;
}

.whatsapp{

    bottom:15px;
}

.valmo-heading{
    font-size:32px;
}

.valmo-description{
    font-size:16px;
}

.model-row{
    flex-direction:column;
    gap:18px;
    text-align:center;
}

.model-info{
    flex-direction:column;
}

.btn-primary,
.btn-secondary{
    width:100%;
}
.cta-buttons{
    flex-direction:column;
}

.cta-btn,
.cta-btn-outline{
    width:100%;
}

.cta-stats{
    grid-template-columns:1fr;
}

.stat-box h3{
    font-size:34px;
}

.cta-content h2{
    font-size:30px;
}
}