

                * {
                    box-sizing: border-box;
                    margin:0;
                    padding: 0;
                }


                .hero {
                    position: relative;
                    min-height: 100svh;
                    width: 100%;
                    overflow: hidden;
                    display: flex;
                    flex-direction: column;
                }

                .hero-bg-img {
                    position: absolute;
                    inset: 0;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    object-position: center;
                    z-index: 0;
                }

                .hero-overlay {
                    position: absolute;
                    inset: 0;
                    z-index: 1;
                    background: linear-gradient(180deg, rgba(6, 10, 28, 0.35) 0%, rgba(6, 10, 28, 0.10) 30%, rgba(4, 6, 20, 0.55) 100%);
                    pointer-events: none;
                }

                .navbar-custom {
                    position: relative;
                    z-index: 5;
                    padding: clamp(16px, 2.5vw, 26px) clamp(20px, 4vw, 56px);
                }

                .logo-img {
                    width: 64px;
                    height: 48px;
                    width: auto;
                    display: block;
                }

                .nav-links {
                    display: flex;
                    align-items: center;
                    gap: clamp(18px, 2.4vw, 34px);
                    list-style: none;
                    font-size: 14.5px;
                    font-weight: 500;
                    color: #EFEFF7;
                    margin: 0;
                    padding: 0;
                }

                .nav-links a {
                    color: inherit;
                    text-decoration: none;
                    opacity: 0.92;
                    white-space: nowrap;
                }

                .nav-links a:hover {
                    opacity: 1;
                }

                .phone-badge {
                    display: flex;
                    align-items: center;
                    gap: 9px;
                    background:rgba(5, 5, 62, 1);
                    border: 1px solid rgba(255, 255, 255, 0.08);
                    padding: 11px 20px;
                    border-radius:8px;
                    font-weight: 500;
                    font-size: 16px;
                    font-family: Inter;
                    white-space: nowrap;
                    box-shadow: 0 6px 20px rgba(5, 5, 40, 0.35);
                    text-decoration: none;
                    color: rgba(255, 255, 255, 1);
                    max-width: 186px;
                }

                .phone-badge img {
                    width:24px;
                    height: 24px;
                    flex-shrink: 0;
                }

                .menu-toggle {
                    display: none;
                    background: var(--navy);
                    border: 1px solid rgba(255, 255, 255, 0.1);
                    border-radius: 10px;
                    width: 42px;
                    height: 42px;
                    align-items: center;
                    justify-content: center;
                }

                .menu-toggle img {
                    width: 18px;
                    height: 18px;
                }

                .side-label {
                    position: absolute;
                    left: clamp(16px, 3vw, 34px);
                    top: 50%;
                    transform: translateY(-50%) rotate(180deg);
                    writing-mode: vertical-rl;
                    z-index: 3;
                    font-size: 11px;
                    letter-spacing: 3px;
                    font-weight: 600;
                    color: rgba(255, 255, 255, 0.75);
                    display: flex;
                    align-items: center;
                    gap: 10px;
                }

                .side-label::after {
                    content: "";
                    display: block;
                    width: 1px;
                    height: 70px;
                    background: rgba(255, 255, 255, 0.45);
                }

                .hero-content {
                    position: relative;
                    z-index: 4;
                    flex: 1;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    padding: 0 clamp(20px, 4vw, 56px);
                    padding-left: clamp(56px, 7vw, 96px);
                    max-width: 1200px;
                    padding-bottom: clamp(40px, 6vh, 70px);
                }

                .eyebrow {
                    display: inline-flex;
                    align-items: center;
                    gap: 9px;
                    width: fit-content;
                    color: rgba(245, 246, 255, 1);
                    padding: 9px 18px 9px 14px;
                    border-width: 1.2px, 1.2px, 2px, 1.2px;
                    border-style: solid;
                    border-color: rgba(245, 246, 255, 1);
                    border-radius: 999px;
                    font-size: 16px;
                    font-weight: 500;
                    font-family: Inter;
                    background: rgba(230, 226, 255, 0.12);
                    backdrop-filter: blur(24px);
                    margin-bottom: 22px;
                }

                .eyebrow .dot {
                    width: 7px;
                    height: 7px;
                    border-radius: 50%;
                    background: #fff;
                    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
                }

                h1 {
                    line-height:63px;
                    letter-spacing:0.4%;
                    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
                    margin: 0;
                    max-width: 950px;
                    color: rgba(245, 246, 255, 1);
                }

                .subtitle {
                    margin-top: 20px;
                    font-size:18px;
                    line-height:26px;
                    color: rgba(245, 246, 255, 1);
                    max-width:694px;
                    font-weight: 500;
                    font-style: Medium;
                }

                .cta-row {
                    display: flex;
                    align-items: center;
                    gap: 16px;
                    margin-top: 34px;
                    flex-wrap: wrap;
                }

                .btn-custom {
                    display: inline-flex;
                    background: linear-gradient(90deg, #7B61FF 12%, #CCBBF5 95.67%);
                    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.12);;
                    align-items: center;
                    gap: 10px;
                    padding: 14px 24px;
                    border-radius:8px;
                    border: none;
                    font-size:16px;
                    font-weight: 500;
                    font-weight: Medium;
                    text-decoration: none;
                    font-family: Inter;
                    max-width: 252px;
                    color: rgba(255, 255, 255, 1);
                    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
                    white-space: nowrap;
                }

                .btn-custom img {
                    width:24px;
                    height:24px;
                    flex-shrink: 0;
                }

           
                .btn-custom:hover,
                .btn-outline-custom:hover{
                    transform: translateY(-2px);
                    box-shadow: 0 14px 30px rgba(108, 76, 245, 0.5);
                    color: #fff;
                }

                .btn-outline-custom {
                    background: rgba(230, 226, 255, 0.12);
                    border: 1px solid var(--Brand-color-Lavender, rgba(216, 216, 255, 1)); 
                    backdrop-filter: blur(20px)
                }


                .stats {
                    display: flex;
                    gap: clamp(32px, 5vw, 64px);
                    margin-top: clamp(36px, 5.5vh, 56px);
                    flex-wrap: wrap;
                }

                .stat-num {
                    font-family: 'Plus Jakarta Sans', sans-serif;
                    font-weight: 700;
                    font-family: Inter;
                    font-style: Bold;
                    font-size:18px;
                    letter-spacing:2px;
                    color: rgba(255, 255, 255, 1);
                    line-height: 26px;
                }

                .stat-label {
                    margin-top: 4px;
                    color:rgba(221, 225, 247, 1);
                    font-weight: 500;
                    font-family: Inter;
                    font-size: 16px;
                    font-style: Medium;
                    letter-spacing: 1.2%;
                }

                @media (max-width:940px) {
                    .nav-links {
                        display: none;
                    }

                    .menu-toggle {
                        display: flex;
                    }

                    .side-label {
                        display: none;
                    }

                    .hero-content {
                        padding-left: clamp(20px, 6vw, 40px);
                    }
                }
                @media (max-width:600px) {
                    .phone-badge span.txt {
                        display: none;
                    }

                    .phone-badge {
                        padding: 11px;
                    }

                    h1 {
                        max-width: 100%;
                    }

                    .cta-row {
                        gap: 12px;
                    }

                    .btn-custom {
                        padding: 13px 18px;
                        font-size: 13.5px;
                    }

                    .stats {
                        gap: 26px;
                    }

                    .hero-content {
                        padding-bottom: 32px;
                    }
                }
 @media (max-width:400px) {
                    .cta-row {
                        flex-direction: column;
                        align-items: flex-start;
                        width: 100%;
                    }

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

/* Drive Conversions */
.problem-section{
    padding:50px 0;
    background:#fff;
}

.problem-top{
    gap:10px;
    margin-bottom:25px;
}

.problem-number{
    color:rgba(123, 97, 255, 1);
    font-size:12px;
    font-family: Inter;
    font-style: Bold;
    font-weight:700;
}

.problem-line{
    width:55px;
    height:2px;
    background:rgba(123, 97, 255, 1);
}

.problem-heading{
    color:rgba(11, 11, 46, 1);
    margin-bottom:20px;
    max-width: 636px;
}

.problem-heading span{
    color:#7266FF;
}

.problem-text{
    line-height:26px;
    color:rgba(26, 26, 77, 1);
    margin-bottom:35px;
    max-width:636px;
    font-family: Inter;
    font-weight: 500;
}

.problem-image{
    overflow:hidden;
    border-radius:30px;
}

.problem-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.problem-list{
    border-top:1px solid #E5E5E5;
    margin-top: 120px;
}

.problem-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    padding:22px 0;
    border-bottom:1px solid #E5E5E5;
    
}

.problem-item img{
    width:34px;
    height:34px;
    flex-shrink:0;
    margin-top:2px;
}

.problem-item h6{
    margin:0;
    color:rgba(26, 26, 77, 1);
    font-family: Inter;
    font-weight: 500;
    line-height:26px;
    max-width:586px;
}

.problem-bottom{
     font-family: Inter;
    font-weight:500;
    color:rgba(71, 70, 80, 1);
}

/* ---------- Large ---------- */

@media (max-width:1400px){

.problem-heading{
    font-size:50px;
}

.problem-text,
.problem-item p{
    font-size:20px;
}

}

/* ---------- Laptop ---------- */

@media (max-width:1199px){

.problem-heading{
    font-size:42px;
}

.problem-text,
.problem-item p{
    font-size:18px;
}

}

/* ---------- Tablet ---------- */

@media (max-width:991px){

.problem-section{
    padding:60px 0;
}

.problem-heading{
    font-size:38px;
}

.problem-text{
    font-size:18px;
    margin-bottom:25px;
}

.problem-image{
    margin-bottom:20px;
}

.problem-item{
    padding:18px 0;
}

}

/* ---------- Mobile ---------- */

@media (max-width:767px){

.problem-heading{
    font-size:32px;
}

.problem-text{
    font-size:16px;
}

.problem-item{
    gap:15px;
}

.problem-item img{
    width:28px;
    height:28px;
}

.problem-item p{
    font-size:16px;
}

.problem-bottom{
    font-size:18px;
}

.problem-image{
    border-radius:18px;
}

}

/* ---------- Small Mobile ---------- */

@media (max-width:480px){

.problem-heading{
    font-size:28px;
}

.problem-number,
.problem-title-small{
    font-size:12px;
}

.problem-line{
    width:40px;
}

.problem-item p{
    font-size:15px;
    line-height:1.5;
}

.problem-bottom{
    font-size:16px;
}

}/* Ends here */

/* SOLUTIONS */
.solution-section{
    background:#fff;
    padding:50px 0;
}

.container{
    width: 85%;
    margin: 0 auto;
}

.solution-top{
    display:flex;
    align-items:center;
    gap:10px;
}

.solution-number{
    font-size:12px;
    font-weight:700;
    color:rgba(123, 97, 255, 1);
    font-family: Inter;
}

.solution-line{
    width:55px;
    height:2px;
    background:rgba(123, 97, 255, 1);
}

.solution-small-title{
    font-family: Inter;
    font-size:12px;
    font-weight:700;
    color:rgba(123, 97, 255, 1);
}

.solution-heading{
    line-height:1.12;
    color:rgba(11, 11, 46, 1);
    margin-top:22px;
    margin-bottom:28px;
    max-width: 636px;
}

.solution-heading span{
    color:rgba(123, 97, 255, 1);
}

.solution-text{
    line-height:1.6;
    color:rgba(26, 26, 77, 1);
    font-weight: 500;
    font-style: Medium;
    margin-bottom:22px;
    max-width: 636px;
    font-family: Inter;
}

.solution-list{
    border-top:1px solid #E2E2F3;
}

.solution-item{
    display:flex;
    align-items:flex-start;
    gap:16px;
    padding:22px 0;
    border-bottom:1px solid #E2E2F3;
}

.solution-item img{
    width:32px;
    height:32px;
    flex-shrink:0;
}

.solution-item h6{
    line-height:1.5;
    color:rgba(26, 26, 77, 1);
    margin:0;
    font-family: Inter;
    font-weight: 500;
    font-style: Medium;
}

.solution-bottom-text{
    line-height:1.35;
    font-weight:700;
    font-family: Inter;
    color:rgba(26, 26, 77, 1);
    margin-top:30px;
    font-style: Bold;
    max-width: 632px;
}


@media(max-width:1400px){

.solution-heading{
    font-size:50px;
}

.solution-item p{
    font-size:20px;
}

.solution-text{
    font-size:19px;
}

.solution-bottom-text{
    font-size:27px;
}

}


@media(max-width:1199px){

.solution-section{
    padding:70px 0;
}

.solution-heading{
    font-size:42px;
}

.solution-item p{
    font-size:18px;
}

.solution-text{
    font-size:18px;
}

.solution-bottom-text{
    font-size:24px;
}

}


@media(max-width:991px){

.solution-section{
    padding:60px 0;
}

.solution-heading{
    font-size:38px;
}

.solution-list{
    margin-top:35px;
}

.solution-item{
    padding:18px 0;
}

.solution-item p{
    font-size:18px;
}

.solution-bottom-text{
    font-size:22px;
}

}


@media(max-width:767px){

.solution-heading{
    font-size:32px;
}

.solution-text{
    font-size:16px;
}

.solution-item{
    gap:14px;
    padding:16px 0;
}

.solution-item img{
    width:28px;
    height:28px;
}

.solution-item p{
    font-size:16px;
}

.solution-bottom-text{
    font-size:19px;
}

}


@media(max-width:480px){

.solution-section{
    padding:50px 0;
}

.solution-heading{
    font-size:27px;
}

.solution-number,
.solution-small-title{
    font-size:12px;
}

.solution-line{
    width:40px;
}

.solution-item p{
    font-size:15px;
}

.solution-bottom-text{
    font-size:17px;
}

}
/* Ends here */
