*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, sans-serif;
}
/* ===== FIX HORIZONTAL SCROLL ===== */
html, body{
    overflow-x:hidden;
    width:100%;
}

/* every element safe sizing */
*, *::before, *::after{
    box-sizing:border-box;
}

/* ===== NAVBAR ===== */
.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 50px;
    background:#fff;
    position:relative;
}

.logo{
    height:50px;
    width:300px;
}

/* desktop nav */
.navbar nav{
    display:flex;
    align-items:center;
    font-weight: 700;

}

.navbar nav a{
    margin:0 15px;
    text-decoration:none;
    color:#333;
}

/* button */
.signin{
    padding:8px 14px;
    border-radius:6px;
    border:none;
    background:#2ecc71;
    color:#fff;
}

/* hamburger */
.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
}


/* =========================
   MOBILE RESPONSIVE
========================= */
@media(max-width:768px){

    .menu-toggle{
        display:block;
    }

    .navbar nav{
        display:none;
        position:absolute;
        top:100%;
        right:0;
        background:#fff;
        width:100%;
        flex-direction:column;
        text-align:center;
        box-shadow:0 8px 20px rgba(0,0,0,.1);
        padding:20px 0;
    }

    .navbar nav a,
    .navbar nav button{
        margin:12px 0;
    }

    .navbar nav.active{
        display:flex;
    }

    .logo{
        width:180px;
    }
}


/* ================= HERO ================= */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
   
    padding:80px 0;
}

/* text */
.hero-title{
    font-size:48px;
    font-weight:700;
    line-height:1.2;
}

.hero-text{
    font-size:18px;
    margin-top:20px;
    color:#dcdcdc;
    max-width:520px;
}

/* phones */
.hero-phones{
    position:relative;
}

.phone{
    width:100%;
    border-radius:30px;
    /* box-shadow:0 20px 40px rgba(0,0,0,.5); */
}

/* overlapping effect */
.phone-back{
    position:absolute;
    left:10%;
    top:40px;
    transform:scale(.95);
    opacity:.9;
}

.phone-front{
    position:relative;
    z-index:2;
}

/* responsive */
@media(max-width:992px){
    .hero-title{
        font-size:36px;
    }

    .phone{
        width:200px;
    }

    .phone-back{
        left:0;
    }
}



/* ===== CARDS ===== */


.problem-section{
    /* background:#f3f4f6; */
}

.problem-card{
    background:#dfe6f0;
    border-radius:16px;
}

.solution-card{
    background:#efe3cf;
    border-radius:16px;
}



/* =========================
   GET STARTED SECTION
=========================*/
/* =========================
   GET STARTED SECTION
=========================*/

.get-started{
    background:#f5f6f8;
    padding:100px 0;
}


/* container wider */
.get-started .container{
    max-width:1450px;
}



/* ================= CARD ================= */

.step-card{
    background:#fff;
    border-radius:32px;

    padding:55px 35px 0;

    height:720px;                 /* ⭐ taller like your 2nd screenshot */

    display:flex;
    flex-direction:column;
    justify-content:space-between;
    align-items:center;

    text-align:center;

    box-shadow:0 18px 45px rgba(0,0,0,.08);
    transition:all .35s ease;
}

.step-card:hover{
    transform:translateY(-12px);
}



/* ================= TEXT ================= */

.step-card h5{
    font-size:24px;
    font-weight:700;
    margin-bottom:16px;
}

.step-card p{
    font-size:16px;
    line-height:1.7;
    max-width:280px;
    margin:auto;
    color:#666;
}



/* ================= BIG PHONE IMAGE ================= */
/* ⭐ MAIN FIX HERE ⭐ */

.step-card img{
    height:90%;          /* almost full card height */
    width:auto;
    object-fit:contain;
    margin-top:auto;
        margin-bottom: 45px;
}



/* ================= HIGHLIGHT CARD ================= */

.highlight{
    background:#4ea563;
    color:#fff;
}

.highlight p{
    color:#ecf9f0;
}



/* ================= SPACING BETWEEN CARDS ================= */

.row.g-4{
    --bs-gutter-x: 45px;
    --bs-gutter-y: 45px;
}



/* ================= MOBILE RESPONSIVE ================= */

@media(max-width:1200px){
    .step-card{
        height:650px;
    }
}

@media(max-width:991px){
    .step-card{
        height:auto;
        padding-bottom:35px;
    }

    .step-card img{
        height:380px;
    }
}

@media(max-width:576px){
    .step-card img{
        height:320px;
    }
}





/* =========================
   PREMIUM SECTION
=========================*/

.premium-section{
    background:#f5f6f8;
    padding:70px 0;
}


/* container width little smaller */
.premium-section .container{
    max-width:1200px;
}



/* ================= LEFT IMAGE ================= */

.premium-img{
    width:100%;
    height:420px;            /* ⭐ smaller */
    object-fit:cover;
    border-radius:22px;
}



/* ================= RIGHT CARD ================= */

.premium-card{
    background:#ececec;

    padding:35px 40px;       /* ⭐ compact padding */

    border-radius:22px;

    height:420px;            /* ⭐ same as image */

    display:flex;
    flex-direction:column;
    justify-content:center;

    box-shadow:0 10px 25px rgba(0,0,0,.05);
}



/* ================= TEXT ================= */

.price{
    font-size:38px;          /* slightly smaller */
    font-weight:700;
}

.price small{
    font-size:16px;
}

.unlock{
    color:#777;
    margin-bottom:18px;
}



/* ================= FEATURES ================= */

.features{
    list-style:none;
    padding:0;
    margin-bottom:20px;
}

.features li{
    margin:8px 0;
    font-size:15px;
}



/* ================= BUTTON ================= */

.premium-card .btn{
    padding:10px 0;
    font-size:15px;
    border-radius:10px;
}



/* ================= MOBILE ================= */

@media(max-width:991px){

    .premium-img,
    .premium-card{
        height:auto;
    }
}





/* =========================
   REFFER SECTION
=========================*/
.referral-section{
    background:#e7e7e7;
}

/* big heading like screenshot */
.ref-title{
    font-size:44px;
    font-weight:700;
    margin-bottom:20px;
}

/* paragraph */
.ref-text{
    font-size:17px;
    line-height:1.7;
    color:#555;
    max-width:520px;
}

/* image card look */
.ref-img-wrapper{
    border-radius:18px;
    overflow:hidden;
}

.ref-img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:18px;
}


/* =========================
   FAQ SECTION
=========================*/
.faq-section{
    background:#f3f4f6;
}

/* wider like screenshot */
.faq-accordion{
    max-width:1200px;  /* earlier 900px tha */
    width:100%;
}

.accordion-item{
    border:none;
    margin-bottom:16px;
    border-radius:14px !important;
    overflow:hidden;
}

.accordion-button{
    background:#e7e7e7;
    font-weight:600;
    padding:18px 24px;
}

.accordion-button:not(.collapsed){
    background:#dcdcdc;
    box-shadow:none;
}


/* ===== FOOTER ===== */
/* ================= FOOTER ================= */

.footer{
    background:#0b0b0b;
    color:white;
}

/* top green line */
.footer-strip{
    height:6px;
    background:#4ea563;
}

/* brand */
.brand{
    font-weight:700;
    letter-spacing:3px;
}

.brand-text{
    color:#bdbdbd;
    margin-top:15px;
    line-height:1.7;
    max-width:320px;
}

/* links */
.footer-title{
    font-weight:600;
    margin-bottom:14px;
}

.footer a{
    display:block;
    color:#aaa;
    margin-bottom:8px;
    text-decoration:none;
    transition:0.3s;
}

.footer a:hover{
    color:#4ea563;
}

/* social icons */
.socials a{
    display:inline-block;
    margin-right:18px;
    color:#aaa;
    font-size:18px;
}

.socials a:hover{
    color:#fff;
}

/* divider */
.divider{
    border-color:white;
    margin:40px 0 20px;
}
.xyzending{
   color: #a1b1a8;
}







/* =====================================
   GLOBAL RESPONSIVE IMPROVEMENTS
===================================== */

.container{
    padding-left:20px;
    padding-right:20px;
}

/* img{
    max-width:100%;
    height:auto;
} */


/* =====================================
   TABLET (992px)
===================================== */
@media(max-width:992px){

    /* hero stack */
    .hero{
        flex-direction:column;
        text-align:center;
        padding:60px 20px;
    }

    .hero-title{
        font-size:34px;
    }

    .hero-text{
        margin:auto;
    }

    .hero-phones{
        margin-top:40px;
    }

    .phone{
        width:240px;
    }

    .phone-back{
        left:-30px;
        top:20px;
    }


    /* premium section stack */
    .premium-section .row{
        flex-direction:column-reverse;
        gap:30px;
    }

    .premium-card{
        height:auto;
        text-align:center;
    }


    /* referral stack */
    .ref-title{
        font-size:32px;
    }

    .ref-img{
        height:220px;
    }
}



/* =====================================
   MOBILE (768px)
===================================== */
@media(max-width:768px){

    /* navbar padding */
    .navbar{
        padding:15px 20px;
    }

    .logo{
        width:160px;
        height:auto;
    }


    /* hero */
    .hero{
        padding:50px 15px;
    }

    .hero-title{
        font-size:28px;
    }

    .hero-text{
        font-size:15px;
    }

    .phone{
        width:180px;
    }


    /* cards section */
    .problem-card,
    .solution-card{
        padding:20px;
    }


    /* get started cards */
    .step-card{
        height:auto;
        padding:35px 20px;
    }

    .step-card h5{
        font-size:18px;
    }

    .step-card p{
        font-size:14px;
    }

    .step-card img{
        height:260px;
        margin-bottom:20px;
    }


    /* premium */
    .price{
        font-size:28px;
    }


    /* referral */
    .ref-title{
        font-size:26px;
    }

    .ref-text{
        font-size:14px;
    }


    /* FAQ */
    .accordion-button{
        font-size:14px;
        padding:14px 16px;
    }


    /* footer */
    .footer{
        text-align:center;
    }

    .footer .row{
        gap:25px;
    }
}



/* =====================================
   SMALL MOBILE (480px)
===================================== */
@media(max-width:480px){

    .hero-title{
        font-size:22px;
    }

    .phone{
        width:150px;
    }

    .step-card img{
        height:200px;
    }

    .ref-img{
        height:180px;
    }

    .price{
        font-size:24px;
    }

    .navbar nav{
        padding:15px 0;
    }
}

/* =====================================
   FOOTER RESPONSIVE FIX
===================================== */

/* images safe */
.footer img{
    max-width:100%;
    height:auto;
}


/* ---------- MOBILE ---------- */
@media(max-width:768px){

    /* full stack */
    .footer .row{
        flex-direction:column;
        text-align:center;
    }

    /* remove 2 column layout */
    .footer [class*="col-"]{
        width:100%;
        max-width:100%;
        flex:0 0 100%;
    }

    /* spacing */
    .footer-title{
        margin-top:25px;
    }

    .brand-text{
        margin:auto;
        margin-top:15px;
    }

    /* socials center */
    .socials{
        display:flex;
        justify-content:center;
        gap:18px;
    }

    .socials a{
        margin:0;
    }

    /* links spacing */
    .footer a{
        margin-bottom:10px;
    }

    /* logo smaller */
    .footer img{
        width:160px;
        margin:auto;
        display:block;
    }

    /* divider spacing */
    .divider{
        margin:30px 0 15px;
    }
}





/* =====================================
   HERO PERFECT MOBILE FIX
===================================== */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
}


/* ---------- TABLET ---------- */
@media(max-width:992px){

    .hero{
        padding:70px 20px;
    }

    .hero-title{
        font-size:34px;
    }

    .phone{
        width:260px;
    }
}


/* ---------- MOBILE ---------- */
@media(max-width:768px){

    .hero{
        min-height:auto;              /* remove 100vh issue */
        padding:60px 15px;
        text-align:center;
    }

    .hero .row{
        flex-direction:column;        /* stack */
    }

    .hero-content{
        width:100%;
    }

    .hero-title{
        font-size:24px;
        line-height:1.35;
    }

    .hero-text{
        font-size:14px;
        margin:auto;
    }

    /* buttons vertical */
    .hero .d-flex{
        flex-direction:column;
        gap:12px !important;
    }

    .hero .btn{
        width:100%;
        font-size:15px;
        padding:12px 0;
    }

    /* phone center */
    .hero-phones{
        margin-top:35px;
    }

    .phone{
        width:170px;
        margin:auto;
    }
}


/* ---------- SMALL MOBILE ---------- */
@media(max-width:480px){

    .hero-title{
        font-size:20px;
    }

    .phone{
        width:140px;
    }
}
