/* ==========================================================
   Bharat FinSecure - Main Stylesheet
   Version: 3.0
========================================================== */

:root{
    --primary:#0A2E73;
    --primary-dark:#071F4E;
    --secondary:#2563EB;
    --accent:#F4B400;
    --dark:#111827;
    --text:#5B6472;
    --muted:#7A8493;
    --white:#FFFFFF;
    --bg:#F5F9FF;
    --border:#E5EAF2;
    --success:#25D366;
    --radius-sm:10px;
    --radius-md:16px;
    --radius-lg:24px;
    --radius-xl:32px;
    --shadow-sm:0 8px 24px rgba(15,23,42,.06);
    --shadow-md:0 16px 40px rgba(15,23,42,.09);
    --shadow-lg:0 24px 70px rgba(15,23,42,.14);
    --container:1200px;
    --header-height:86px;
    --transition:.3s ease;
}

/* RESET */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    scroll-padding-top:calc(var(--header-height) + 20px);
}

body{
    font-family:'Poppins',sans-serif;
    background:var(--bg);
    color:var(--dark);
    line-height:1.6;
    overflow-x:hidden;
    min-height:100vh;
}

img{
    display:block;
    max-width:100%;
}

a{
    color:inherit;
    text-decoration:none;
}

ul{
    list-style:none;
}

button,
input,
select,
textarea{
    font:inherit;
}

button{
    border:0;
}

section{
    position:relative;
}

.container{
    width:min(90%,var(--container));
    margin-inline:auto;
}

.sr-only{
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
    border:0;
}

/* COMMON TYPOGRAPHY */

.section-heading{
    max-width:780px;
    margin:0 auto 64px;
    text-align:center;
}

.section-heading h2,
.section-title{
    font-size:clamp(34px,4vw,52px);
    line-height:1.18;
    color:var(--primary);
    font-weight:800;
    margin-bottom:18px;
}

.section-heading p,
.section-subtitle{
    color:var(--text);
    font-size:18px;
    line-height:1.8;
}

.section-badge,
.cta-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 20px;
    border-radius:999px;
    background:#EAF2FF;
    color:var(--primary);
    font-size:14px;
    font-weight:700;
    letter-spacing:.3px;
    margin-bottom:18px;
}

/* BUTTONS */

.btn-primary,
.btn-outline,
.cta-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-height:52px;
    padding:14px 28px;
    border-radius:999px;
    font-weight:700;
    cursor:pointer;
    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.btn-primary{
    background:var(--primary);
    color:var(--white);
    border:2px solid var(--primary);
}

.btn-primary:hover{
    background:var(--secondary);
    border-color:var(--secondary);
    transform:translateY(-3px);
    box-shadow:0 14px 28px rgba(37,99,235,.22);
}

.btn-outline{
    background:transparent;
    color:var(--primary);
    border:2px solid var(--primary);
}

.btn-outline:hover{
    background:var(--primary);
    color:var(--white);
    transform:translateY(-3px);
}

/* HEADER */

.header{
    position:fixed;
    inset:0 0 auto 0;
    height:var(--header-height);
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    box-shadow:0 8px 26px rgba(15,23,42,.06);
    z-index:10000;
}

.nav-container{
    height:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px;
}

.logo{
    display:flex;
    align-items:center;
    flex-shrink:0;
}

.logo img{
    height:70px;
    width:auto;
    display:block;
    object-fit:contain;
}

.navbar{
    display:flex;
    align-items:center;
}

.navbar ul{
    display:flex;
    align-items:center;
    gap:28px;
}

.navbar li{
    position:relative;
}

.navbar a{
    display:inline-block;
    color:#1F2937;
    font-size:15px;
    font-weight:600;
    padding:10px 0;
    transition:color var(--transition);
}

.navbar a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:2px;
    width:0;
    height:3px;
    border-radius:999px;
    background:var(--accent);
    transition:width var(--transition);
}

.navbar a:hover,
.navbar a.active{
    color:var(--primary);
}

.navbar a:hover::after,
.navbar a.active::after{
    width:100%;
}

.nav-buttons{
    display:flex;
    align-items:center;
    gap:12px;
    flex-shrink:0;
}

.menu-toggle{
    display:none;
    width:44px;
    height:44px;
    padding:8px;
    border-radius:12px;
    background:#EFF4FF;
    cursor:pointer;
}

.menu-toggle span{
    display:block;
    width:100%;
    height:3px;
    margin:5px 0;
    border-radius:999px;
    background:var(--primary);
    transition:transform var(--transition),opacity var(--transition);
}

.menu-toggle.active span:nth-child(1){
    transform:translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
    opacity:0;
}

.menu-toggle.active span:nth-child(3){
    transform:translateY(-8px) rotate(-45deg);
}

/* HERO */

.hero{
    padding:calc(var(--header-height) + 70px) 0 100px;
    background:
        radial-gradient(circle at 85% 20%,rgba(37,99,235,.12),transparent 34%),
        linear-gradient(180deg,#F8FBFF 0%,#EEF5FF 100%);
}

.hero-container{
    display:grid;
    grid-template-columns:minmax(0,1.1fr) minmax(380px,.9fr);
    gap:64px;
    align-items:center;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:12px 22px;
    margin-bottom:26px;
    border-radius:999px;
    background:#E7F0FF;
    color:var(--primary);
    font-size:15px;
    font-weight:700;
}

.hero-left h1{
    font-size:clamp(46px,5.4vw,68px);
    line-height:1.1;
    color:var(--primary);
    font-weight:800;
    letter-spacing:-1.5px;
    margin-bottom:24px;
}

.hero-left h1 span{
    color:var(--secondary);
}

.hero-left > p{
    max-width:680px;
    color:var(--text);
    font-size:19px;
    line-height:1.85;
    margin-bottom:34px;
}

.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:16px;
    margin-bottom:42px;
}

.hero-stats{
    display:flex;
    flex-wrap:wrap;
    gap:42px;
}

.hero-stats > div{
    min-width:120px;
}

.hero-stats h3{
    color:var(--primary);
    font-size:34px;
    font-weight:800;
    line-height:1;
}

.hero-stats p{
    color:var(--muted);
    font-size:14px;
    margin-top:8px;
}

.hero-right{
    display:flex;
    justify-content:center;
}

/* CALLBACK CARD */

.callback-card{
    width:100%;
    max-width:480px;
    padding:38px;
    border:1px solid rgba(255,255,255,.65);
    border-radius:28px;
    background:rgba(255,255,255,.96);
    box-shadow:var(--shadow-lg);
    position:relative;
    overflow:hidden;
}

.callback-card::before{
    content:"";
    position:absolute;
    inset:0 0 auto 0;
    height:7px;
    background:linear-gradient(90deg,var(--primary),var(--secondary),var(--accent));
}

.callback-badge{
    display:inline-flex;
    align-items:center;
    padding:10px 18px;
    margin-bottom:20px;
    border-radius:999px;
    background:linear-gradient(90deg,var(--primary),var(--secondary));
    color:var(--white);
    font-size:13px;
    font-weight:800;
    letter-spacing:.25px;
}

.callback-title{
    color:var(--primary);
    font-size:clamp(32px,4vw,44px);
    line-height:1.15;
    font-weight:800;
    margin-bottom:16px;
}

.callback-text{
    color:var(--text);
    font-size:16px;
    line-height:1.75;
    margin-bottom:26px;
}

.callback-card form{
    display:grid;
    gap:14px;
}

.callback-card input,
.callback-card select{
    width:100%;
    height:56px;
    padding:0 16px;
    border:1px solid var(--border);
    border-radius:12px;
    background:var(--white);
    color:var(--dark);
    outline:none;
    transition:border-color var(--transition),box-shadow var(--transition);
}

.callback-card input:focus,
.callback-card select:focus{
    border-color:var(--secondary);
    box-shadow:0 0 0 4px rgba(37,99,235,.10);
}

.callback-card button{
    height:56px;
    border-radius:12px;
    background:var(--primary);
    color:var(--white);
    font-size:17px;
    font-weight:800;
    cursor:pointer;
    transition:
        background var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.callback-card button:hover{
    background:var(--secondary);
    transform:translateY(-2px);
    box-shadow:0 12px 24px rgba(37,99,235,.2);
}

.callback-features{
    display:flex;
    flex-wrap:wrap;
    gap:10px 16px;
    margin-top:22px;
    color:#4B5563;
    font-size:13px;
    font-weight:600;
}

/* PARTNERS */

.partners{
    padding:92px 0;
    background:var(--white);
}

.partner-grid{
    display:grid;
    grid-template-columns:repeat(6,minmax(0,1fr));
    gap:22px;
}

.partner-card{
    height:118px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:22px;
    border:1px solid var(--border);
    border-radius:20px;
    background:var(--white);
    box-shadow:var(--shadow-sm);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.partner-card:hover{
    transform:translateY(-8px);
    border-color:#C8D8F5;
    box-shadow:var(--shadow-md);
}

.partner-card img{
    width:125px;
    max-height:52px;
    object-fit:contain;
    filter:grayscale(100%);
    opacity:.78;
    transition:
        filter var(--transition),
        opacity var(--transition),
        transform var(--transition);
}

.partner-card:hover img{
    filter:none;
    opacity:1;
    transform:scale(1.06);
}

/* SERVICES */

.services{
    padding:100px 0;
    background:#F7FAFF;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:28px;
}

.service-card{
    position:relative;
    overflow:hidden;
    padding:36px;
    border:1px solid var(--border);
    border-radius:24px;
    background:var(--white);
    box-shadow:var(--shadow-sm);
    transition:transform var(--transition),box-shadow var(--transition);
}

.service-card::before{
    content:"";
    position:absolute;
    inset:0 0 auto 0;
    height:5px;
    background:linear-gradient(90deg,var(--primary),var(--accent));
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:var(--shadow-lg);
}

.service-card img{
    width:68px;
    height:68px;
    object-fit:contain;
    margin-bottom:22px;
}

.service-card h3{
    color:var(--primary);
    font-size:23px;
    font-weight:700;
    margin-bottom:12px;
}

.service-card p{
    color:var(--text);
    line-height:1.78;
    margin-bottom:20px;
}

.service-card a{
    color:var(--secondary);
    font-weight:700;
    transition:color var(--transition),letter-spacing var(--transition);
}

.service-card a:hover{
    color:var(--primary);
    letter-spacing:.3px;
}

/* PRODUCTS */

.products{
    padding:100px 0;
    background:var(--white);
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:34px;
}

.product-card{
    position:relative;
    overflow:hidden;
    padding:42px;
    border:1px solid var(--border);
    border-radius:26px;
    background:var(--white);
    box-shadow:var(--shadow-md);
    transition:transform var(--transition),box-shadow var(--transition);
}

.product-card::before{
    content:"";
    position:absolute;
    inset:0 0 auto 0;
    height:6px;
    background:linear-gradient(90deg,var(--primary),var(--accent));
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:var(--shadow-lg);
}

.product-icon{
    width:84px;
    height:84px;
    display:grid;
    place-items:center;
    margin-bottom:22px;
    border-radius:50%;
    background:#EEF5FF;
    font-size:38px;
}

.product-card h3{
    color:var(--primary);
    font-size:30px;
    font-weight:800;
    margin-bottom:14px;
}

.product-card > p{
    color:var(--text);
    line-height:1.78;
    margin-bottom:20px;
}

.product-card ul{
    margin-bottom:28px;
}

.product-card li{
    padding:8px 0;
    color:#374151;
    font-weight:500;
}

/* WHY US */

.why-us{
    padding:100px 0;
    background:#F7FAFF;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:28px;
}

.why-card{
    padding:36px;
    text-align:center;
    border:1px solid var(--border);
    border-radius:24px;
    background:var(--white);
    box-shadow:var(--shadow-sm);
    transition:transform var(--transition),box-shadow var(--transition);
}

.why-card:hover{
    transform:translateY(-10px);
    box-shadow:var(--shadow-lg);
}

.why-icon{
    width:86px;
    height:86px;
    display:grid;
    place-items:center;
    margin:0 auto 22px;
    border-radius:50%;
    background:#EEF5FF;
    font-size:38px;
    transition:transform var(--transition),background var(--transition);
}

.why-card:hover .why-icon{
    background:#DCEAFF;
    transform:scale(1.08) rotate(5deg);
}

.why-card h3{
    color:var(--primary);
    font-size:23px;
    font-weight:700;
    margin-bottom:12px;
}

.why-card p{
    color:var(--text);
    line-height:1.78;
}

/* EMI CALCULATOR */

.calculator{
    padding:100px 0;
    background:var(--white);
}

.calculator-box{
    max-width:820px;
    margin:0 auto;
    padding:44px;
    border:1px solid var(--border);
    border-radius:28px;
    background:var(--white);
    box-shadow:var(--shadow-md);
}

.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    color:var(--primary);
    font-weight:700;
    margin-bottom:8px;
}

.form-group input{
    width:100%;
    height:56px;
    padding:0 16px;
    border:1px solid var(--border);
    border-radius:12px;
    outline:none;
    transition:border-color var(--transition),box-shadow var(--transition);
}

.form-group input:focus{
    border-color:var(--secondary);
    box-shadow:0 0 0 4px rgba(37,99,235,.10);
}

.result-box{
    margin-top:28px;
    padding:28px;
    text-align:center;
    border-radius:18px;
    background:#F1F6FF;
}

.result-box h2{
    color:var(--primary);
    font-size:40px;
    font-weight:800;
    margin-bottom:6px;
}

.result-box p{
    color:var(--text);
}

/* TESTIMONIALS */

.testimonials{
    padding:100px 0;
    background:#F7FAFF;
    overflow:hidden;
}

.testimonial-slider{
    overflow:hidden;
}

.testimonial-track{
    display:flex;
    gap:24px;
    width:max-content;
    animation:testimonialMove 36s linear infinite;
}

.testimonial-slider:hover .testimonial-track{
    animation-play-state:paused;
}

.testimonial-card{
    width:360px;
    padding:32px;
    border:1px solid var(--border);
    border-radius:24px;
    background:var(--white);
    box-shadow:var(--shadow-sm);
}

.stars{
    margin-bottom:16px;
    font-size:21px;
    letter-spacing:2px;
}

.testimonial-card > p{
    color:var(--text);
    line-height:1.8;
    margin-bottom:24px;
}

.customer{
    display:flex;
    align-items:center;
    gap:14px;
}

.customer img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
}

.customer h4{
    color:var(--primary);
    font-size:17px;
    margin-bottom:3px;
}

.customer span{
    color:var(--muted);
    font-size:13px;
}

@keyframes testimonialMove{
    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }
}

/* FAQ */

.faq{
    padding:100px 0;
    background:var(--white);
}

.faq-container{
    max-width:900px;
    margin:0 auto;
}

.faq-item{
    margin-bottom:16px;
    border:1px solid var(--border);
    border-radius:18px;
    background:var(--white);
    box-shadow:var(--shadow-sm);
    overflow:hidden;
}

.faq-question{
    width:100%;
    min-height:72px;
    padding:20px 26px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    background:transparent;
    color:var(--primary);
    text-align:left;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
}

.faq-question span{
    font-size:28px;
    line-height:1;
    transition:transform var(--transition);
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.faq-answer p{
    padding:0 26px 24px;
    color:var(--text);
    line-height:1.8;
}

.faq-item.active .faq-answer{
    max-height:320px;
}

.faq-item.active .faq-question span{
    transform:rotate(45deg);
}

/* FINAL CTA */

.final-cta{
    padding:100px 0;
    background:#F5F9FF;
}

.cta-box{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:42px;
    padding:56px;
    border-radius:30px;
    background:linear-gradient(135deg,var(--primary),#123F91);
    color:var(--white);
    box-shadow:0 24px 60px rgba(10,46,115,.24);
}

.cta-left{
    flex:1;
}

.cta-badge{
    background:rgba(255,255,255,.14);
    color:var(--white);
    border:1px solid rgba(255,255,255,.18);
}

.cta-left h2{
    max-width:760px;
    font-size:clamp(34px,4vw,50px);
    line-height:1.18;
    font-weight:800;
    margin-bottom:18px;
}

.cta-left p{
    max-width:760px;
    color:#E8EEFF;
    font-size:17px;
    line-height:1.8;
    margin-bottom:24px;
}

.cta-features{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.cta-features span{
    padding:10px 16px;
    border-radius:999px;
    background:rgba(255,255,255,.12);
    font-size:14px;
    font-weight:600;
}

.cta-right{
    flex-shrink:0;
}

.cta-button{
    background:var(--accent);
    color:var(--primary);
    border:2px solid var(--accent);
    box-shadow:0 14px 30px rgba(244,180,0,.24);
}

.cta-button:hover{
    transform:translateY(-4px);
    background:#FFD05A;
}

/* FOOTER */

.footer{
    padding:84px 0 28px;
    background:#071A40;
    color:var(--white);
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.3fr;
    gap:42px;
    margin-bottom:50px;
}

.footer-logo{
    width:220px;
    margin-bottom:22px;
}

.footer-column p{
    color:#C7D2E8;
    line-height:1.85;
    margin-bottom:22px;
}

.footer-column h3{
    font-size:20px;
    margin-bottom:20px;
}

.footer-column li{
    margin-bottom:13px;
    color:#C7D2E8;
}

.footer-column a{
    color:#C7D2E8;
    transition:color var(--transition),padding-left var(--transition);
}

.footer-column a:hover{
    color:var(--accent);
    padding-left:5px;
}

.social-links{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.social-links a{
    width:44px;
    height:44px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:#123A86;
    color:var(--white);
    font-size:17px;
    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition);
}

.social-links a:hover{
    transform:translateY(-4px);
    background:var(--accent);
    color:var(--primary);
}

.footer-bottom{
    padding-top:22px;
    border-top:1px solid rgba(255,255,255,.1);
    text-align:center;
    color:#C7D2E8;
    font-size:14px;
}

/* FLOATING BUTTONS */

.whatsapp-btn,
.back-top{
    position:fixed;
    right:24px;
    display:grid;
    place-items:center;
    border-radius:50%;
    box-shadow:0 12px 30px rgba(15,23,42,.22);
    z-index:9999;
}

.whatsapp-btn{
    bottom:24px;
    width:60px;
    height:60px;
    background:var(--success);
    color:var(--white);
    font-size:30px;
    transition:transform var(--transition);
}

.whatsapp-btn:hover{
    transform:scale(1.08);
}

.back-top{
    bottom:96px;
    width:50px;
    height:50px;
    background:var(--primary);
    color:var(--white);
    font-size:21px;
    display:none;
    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition);
}

.back-top:hover{
    transform:translateY(-3px);
    background:var(--accent);
    color:var(--primary);
}

/* PAGE LOADER */

#loader{
    position:fixed;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--white);
    z-index:999999;
    opacity:1;
    visibility:visible;
    transition:opacity .45s ease,visibility .45s ease;
}

#loader.loader-hidden{
    opacity:0;
    visibility:hidden;
    pointer-events:none;
}

.spinner{
    width:64px;
    height:64px;
    border:6px solid #E7ECF5;
    border-top-color:var(--primary);
    border-radius:50%;
    animation:spin .85s linear infinite;
}

@keyframes spin{
    to{
        transform:rotate(360deg);
    }
}

/* REVEAL ANIMATION */

.reveal{
    opacity:0;
    transform:translateY(36px);
    transition:opacity .8s ease,transform .8s ease;
}

.reveal.active{
    opacity:1;
    transform:none;
}

/* RESPONSIVE */

@media(max-width:1100px){

    .navbar ul{
        gap:20px;
    }

    .hero-container{
        gap:40px;
    }

    .footer-grid{
        grid-template-columns:1.5fr 1fr 1fr;
    }

    .footer-column:last-child{
        grid-column:1 / -1;
    }
}

@media(max-width:992px){

    :root{
        --header-height:78px;
    }

    .header{
        height:var(--header-height);
    }

    .logo img{
        height:52px;
    }

    .menu-toggle{
        display:block;
        order:3;
    }

    .nav-buttons{
        display:none;
    }

    .navbar{
        position:fixed;
        top:var(--header-height);
        left:-100%;
        width:100%;
        max-height:calc(100vh - var(--header-height));
        overflow-y:auto;
        padding:24px 5%;
        background:var(--white);
        box-shadow:0 18px 40px rgba(15,23,42,.12);
        transition:left .35s ease;
    }

    .navbar.active{
        left:0;
    }

    .navbar ul{
        flex-direction:column;
        align-items:flex-start;
        gap:8px;
    }

    .navbar li,
    .navbar a{
        width:100%;
    }

    .navbar a{
        padding:12px 0;
    }

    .navbar a::after{
        bottom:4px;
    }

    .hero{
        padding-top:calc(var(--header-height) + 54px);
    }

    .hero-container{
        grid-template-columns:1fr;
    }

    .hero-left{
        text-align:center;
    }

    .hero-left > p{
        margin-inline:auto;
    }

    .hero-buttons,
    .hero-stats{
        justify-content:center;
    }

    .callback-card{
        max-width:720px;
    }

    .partner-grid{
        grid-template-columns:repeat(3,minmax(0,1fr));
    }

    .services-grid,
    .why-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .products-grid{
        grid-template-columns:1fr;
    }

    .cta-box{
        flex-direction:column;
        text-align:center;
    }

    .cta-left p{
        margin-inline:auto;
    }

    .cta-features{
        justify-content:center;
    }

    .footer-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .footer-column:last-child{
        grid-column:auto;
    }
}

@media(max-width:768px){

    .container{
        width:min(92%,var(--container));
    }

    .section-heading{
        margin-bottom:46px;
    }

    .section-heading p,
    .section-subtitle{
        font-size:16px;
    }

    .hero{
        padding-bottom:78px;
    }

    .hero-left h1{
        letter-spacing:-.8px;
    }

    .hero-left > p{
        font-size:17px;
    }

    .hero-stats{
        gap:26px;
    }

    .hero-stats h3{
        font-size:30px;
    }

    .callback-card,
    .calculator-box,
    .product-card{
        padding:28px;
    }

    .services-grid,
    .why-grid{
        grid-template-columns:1fr;
    }

    .partner-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .testimonial-card{
        width:310px;
        padding:26px;
    }

    .cta-box{
        padding:38px 26px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .social-links{
        justify-content:center;
    }

    .footer-logo{
        margin-inline:auto;
    }
}

@media(max-width:576px){

    .hero-buttons{
        flex-direction:column;
        align-items:stretch;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline{
        width:100%;
    }

    .hero-stats{
        display:grid;
        grid-template-columns:repeat(3,1fr);
        gap:12px;
    }

    .hero-stats > div{
        min-width:0;
    }

    .hero-stats p{
        font-size:12px;
    }

    .callback-features{
        flex-direction:column;
    }

    .partner-card{
        height:96px;
        padding:16px;
    }

    .partner-card img{
        width:95px;
    }

    .service-card,
    .why-card{
        padding:28px;
    }

    .product-card h3{
        font-size:27px;
    }

    .faq-question{
        padding:18px 20px;
        font-size:16px;
    }

    .faq-answer p{
        padding:0 20px 20px;
    }

    .whatsapp-btn{
        right:18px;
        bottom:18px;
        width:56px;
        height:56px;
    }

    .back-top{
        right:20px;
        bottom:88px;
    }
}