body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont;
}


/* LOGO VISIBILITY */
.logo-desktop {
    display: inline-block;
}

.logo-mobile {
    display: none;
}

/* MOBILE VIEW */
@media (max-width: 991px) {
    .logo-desktop {
        display: none;
    }

    .logo-mobile {
        display: inline-block;
    }
}


/* NAVBAR */
.navbar {
    background: #1677ff;
}
.call-btn {
    background: #ffc107;
    color: #000;
    font-weight: 600;
    border-radius: 8px;
}

/* HERO */
.hero {
    padding: 80px 0;
}
.hero h1 {
    font-size: 42px;
    font-weight: 800;
}
.hero h1 span {
    color: #1677ff;
}
.hero p {
    font-size: 18px;
    color: #555;
}
.btn-itr {
    background: #e63946;
    color: #fff;
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 600;
}
.btn-ca {
    border: 2px solid #1677ff;
    color: #1677ff;
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 600;
}

/* SERVICES */
.services {
    background: #f8f9fb;
    padding: 60px 0;
}
.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 16px rgba(0,0,0,.08);
    text-align: center;
}

/* HOW IT WORKS */
.how-it-works {
    padding: 60px 0;
}
.step-number {
    width: 50px;
    height: 50px;
    background: #1677ff;
    color: #fff;
    border-radius: 50%;
    line-height: 50px;
    font-weight: 700;
    margin: 0 auto 15px;
}

/* TESTIMONIALS */
.testimonials {
    background: #f8f9fb;
    padding: 60px 0;
}
.testimonial-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,.08);
}

/* FOOTER */
footer {
    background: #0b5ed7;
    color: #fff;
    padding: 40px 0;
}
footer a {
    color: #fff;
    text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
}

