:root{

    --primary:#2563eb;
    --dark:#0f172a;
    --light:#f8fafc;
    --border:#e5e7eb;
    --radius:18px;

}

body{

    font-family:'Inter',sans-serif;
    background:#fff;
    color:#1f2937;

}

h1,h2,h3,h4,h5{

    font-family:'Poppins',sans-serif;

}

.navbar{

    padding:15px 0;

}

.btn{

    border-radius:50px;
    padding:.7rem 1.5rem;

}

.footer{

    background:#0f172a;
    color:#fff;
    padding:70px 0;

}

.footer a{

    color:#ddd;
    text-decoration:none;

}

.footer a:hover{

    color:#fff;

}


/* HERO */

.hero-section{

    padding:80px 0;

    background:
    linear-gradient(
        180deg,
        #ffffff 0%,
        #f8fafc 100%
    );

}


.min-vh-75{

    min-height:75vh;

}


.phone-placeholder{

    width:280px;

    height:540px;

    margin:auto;

    background:#0f172a;

    border-radius:40px;

    padding:18px;

    box-shadow:
    0 25px 50px rgba(0,0,0,.15);

}


.phone-screen{

    height:100%;

    background:white;

    border-radius:28px;

    padding:25px 18px;

    overflow:hidden;

}


.phone-screen i{

    font-size:50px;

    color:#2563eb;

}


.question-card{

    background:#f8fafc;

    border-radius:15px;

    padding:15px;

    margin:15px 0;

    font-weight:600;

    font-size:.85rem;

}


.hero-section h1{

    letter-spacing:-1px;

}

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::before {

    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    background: rgba(37,99,235,.08);

    border-radius:50%;

    top:-150px;
    right:-150px;

}


.hero-section .container {

    position: relative;
    z-index:1;

}

.answer-demo {

    padding:9px 12px;

    border:1px solid var(--border);

    border-radius:12px;

    margin-bottom:8px;

    font-size:.8rem;

}


.answer-demo.active {

    border-color:#16a34a;

    background:#f0fdf4;

}

@media(max-width:768px){

.hero-section{

    padding-top:50px;

}


.hero-section h1{

    font-size:2.4rem;

}


.phone-placeholder{

    width:280px;

    height:560px;

}

}

/* STATS */

.stats-section{

    background:#f8fafc;

}


.stat-card{

    background:white;

    padding:30px 15px;

    border-radius:var(--radius);

    border:1px solid var(--border);

    height:100%;

    transition:.3s ease;

}


.stat-card:hover{

    transform:translateY(-5px);

}


.stat-card h2{

    font-size:2.5rem;

    color:var(--primary);

    margin-bottom:10px;

}


.stat-card p{

    margin:0;

    color:#64748b;

}

/* FEATURES */


.features-section{

    background:white;

}


.feature-card{

    height:100%;

    padding:30px;

    border:1px solid var(--border);

    border-radius:var(--radius);

    transition:.3s ease;

}


.feature-card:hover{

    transform:translateY(-6px);

    box-shadow:
    0 15px 30px rgba(0,0,0,.08);

}


.feature-icon{

    width:55px;

    height:55px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:15px;

    background:#eff6ff;

    color:var(--primary);

    font-size:1.6rem;

    margin-bottom:20px;

}


.feature-card h4{

    font-size:1.2rem;

}


.feature-card p{

    color:#64748b;

}


.feature-card.featured{

    border:2px solid var(--primary);

    position:relative;

}

/* QUESTION OF THE DAY */


.question-day-section{

    background:#f8fafc;

}



.question-demo-card{

    background:white;

    border-radius:25px;

    padding:35px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

}



.demo-option{

    padding:15px;

    border:1px solid var(--border);

    border-radius:12px;

    margin-bottom:12px;

    cursor:pointer;

    transition:.2s;

}



.demo-option:hover{

    border-color:var(--primary);

}



.correct-option{

    border-color:#16a34a;

    background:#f0fdf4;

}



.challenge-icon{

    width:50px;

    height:50px;

    background:#fff7ed;

    color:#f59e0b;

    border-radius:15px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:1.5rem;

}



.selected-option{

    border-color:var(--primary);

    background:#eff6ff;

}

.answer-result{

    animation:fadeIn .3s ease;

}


@keyframes fadeIn{

    from{
        opacity:0;
        transform:translateY(10px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

.demo-option.selected-option {

    border-color: var(--primary);

    background:#eff6ff;

    transform:translateX(4px);

}


/* HOW IT WORKS */


.how-section{

    background:white;

}



.step-card{

    position:relative;

    height:100%;

    padding:35px 25px;

    border:1px solid var(--border);

    border-radius:var(--radius);

    text-align:center;

    transition:.3s ease;

}



.step-card:hover{

    transform:translateY(-6px);

    box-shadow:
    0 15px 35px rgba(0,0,0,.08);

}



.step-number{

    position:absolute;

    top:15px;

    right:20px;

    font-size:2.5rem;

    font-weight:800;

    color:#f1f5f9;

}



.step-icon{

    width:65px;

    height:65px;

    margin:10px auto 20px;

    border-radius:20px;

    background:#eff6ff;

    color:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:1.8rem;

}



.step-card p{

    color:#64748b;

}

/* SCREENSHOTS */


.screenshots-section{

    background:#f8fafc;

}



.app-preview-card{

    background:white;

    padding:15px;

    border-radius:30px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

}



.fake-screen{

    height:420px;

    background:#0f172a;

    border-radius:22px;

    color:white;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

    padding:30px;

}



.fake-screen i{

    font-size:4rem;

    color:#60a5fa;

    margin-bottom:25px;

}



.fake-screen p{

    color:#cbd5e1;

}


/* LOCAL FOCUS */


.local-focus-section{

    background:white;

}



.local-feature{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:15px;

    font-weight:500;

}



.local-feature i{

    width:42px;

    height:42px;

    border-radius:12px;

    background:#f0fdf4;

    color:#16a34a;

    display:flex;

    align-items:center;

    justify-content:center;

}



.traffic-map-placeholder{

    min-height:350px;

    background:#f8fafc;

    border-radius:30px;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

    border:1px solid var(--border);

}



.traffic-map-placeholder i{

    font-size:5rem;

    color:#2563eb;

    margin-bottom:20px;

}



/* TESTIMONIALS */


.testimonials-section{

    background:#f8fafc;

}



.testimonial-card{

    background:white;

    padding:30px;

    border-radius:var(--radius);

    height:100%;

    border:1px solid var(--border);

}



.stars{

    color:#f59e0b;

    letter-spacing:3px;

    margin-bottom:15px;

}



.testimonial-card p{

    color:#475569;

}



.person{

    display:flex;

    align-items:center;

    gap:12px;

    margin-top:25px;

}



.avatar{

    width:45px;

    height:45px;

    border-radius:50%;

    background:#eff6ff;

    color:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

}

/* CTA */


.cta-section{

    background:white;

}



.cta-box{

    background:#2563eb;

    color:white;

    border-radius:35px;

    padding:70px 30px;

}



.cta-box p{

    color:#dbeafe;

    max-width:600px;

    margin-left:auto;

    margin-right:auto;

}

/* ABOUT */


.page-header{

    background:#f8fafc;

}



.about-placeholder{

    height:300px;

    border-radius:30px;

    background:#eff6ff;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    color:var(--primary);

}



.about-placeholder i{

    font-size:5rem;

    margin-bottom:20px;

}


/* CONTACT */


.contact-item{

    display:flex;

    gap:15px;

    align-items:center;

    margin-bottom:25px;

}



.contact-item i{

    width:45px;

    height:45px;

    border-radius:12px;

    background:#eff6ff;

    color:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

}



.contact-card{

    background:white;

    padding:35px;

    border-radius:25px;

    border:1px solid var(--border);

}


/* WHATSAPP FLOAT */

.whatsapp-float{

    position:fixed;

    right:25px;

    bottom:25px;

    background:#25d366;

    color:white;

    padding:14px 22px;

    border-radius:50px;

    display:flex;

    align-items:center;

    gap:10px;

    text-decoration:none;

    font-weight:600;

    box-shadow:
    0 10px 25px rgba(0,0,0,.2);

    z-index:999;

    transition:.3s ease;

}


.whatsapp-float:hover{

    transform:translateY(-5px);

    color:white;

}


.whatsapp-float i{

    font-size:1.4rem;

}



.navbar .btn{

    border-radius:50px;

    padding-left:20px;

    padding-right:20px;

    font-weight:600;

}


/* NAV CTA */

.nav-cta{

    margin-left:15px;

}


@media(max-width:991px){

    .nav-cta{

        margin-left:0;

        margin-top:12px;

        width:100%;

        text-align:center;

    }

}

/* NAVBAR ACTION BUTTONS */

.navbar-actions{

    align-items:center;

}


@media(max-width:991px){

    .navbar-actions{

        flex-direction:column;

        align-items:stretch;
        /*align-items:center;*/

        width:100%;

        margin-top:15px;

        gap:12px !important;

    }


    .navbar-actions .btn{

        width:100%;
	/*
	width:260px;

        max-width:90%;
	*/
    }

}


