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

body {
    font-family: 'Geologica', sans-serif;
    background: #0b0f11;
    color: white;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* ===================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: #00A660;
    filter: blur(180px);
    opacity: .15;
    top: -150px;
    right: -100px;
    z-index: 0;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.logo {
    /* display: flex; */
    align-items: center;
    /* gap: 12px; */
    margin-bottom: 40px;
    padding: 0 20px 0 0 ;
    
}

/* .logo-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    /* background: #00A660; 
    
} */
.logo-box img{
    width: 100%;
    max-width: 300px;
    height: auto;
}
.logo h2 {
    font-size: 24px;
    font-weight: 700;
}

.hero h1 {
    font-size: 68px;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 25px;
}

.hero p {
    font-size: 20px;
    color: #aeb6bb;
    line-height: 1.6;
    max-width: 550px;
    margin-bottom: 40px;
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.btn {
    padding: 18px 28px;
    border-radius: 18px;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-green {
    background: #00A660;
    color: white;
    box-shadow: 0 0 30px rgba(0, 166, 96, .35);
    width: 100%;
    max-width: 440px;
}

.btn-green:hover {
    transform: translateY(-3px);
}

.btn-dark {
    background: #171d22;
    border: 1px solid rgba(255, 255, 255, .08);
    width: 100%;
    max-width: 440px
}

.btn-dark:hover {
    background: #20272d;
}

.hero-right {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone {
    position: absolute;
    width: 280px;
    border-radius: 45px;
    background: #171d22;
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 14px;
    box-shadow:
        0 20px 60px rgba(60, 59, 59, 0.5),
        0 0 40px rgba(3, 244, 143, 0.2);
}

.phone img {
    width: 100%;
    border-radius: 30px;
    display: block;
}

.phone-1 {
    transform: rotate(-12deg);
    left: -8px;
    top: 120px;
    z-index: 1;
}

.phone-2 {
    transform: rotate(10deg);
    right: 0;
    top: 60px;
    z-index: 2;
}

.phone-3 {
    width: 240px;
    bottom: 0;
    left: 180px;
    z-index: 0;
    opacity: .9;
}

/* ===================== */

section {
    padding: 120px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 52px;
    margin-bottom: 15px;
}

.section-title p {
    color: #96a0a7;
    font-size: 18px;
}

/* ===================== */

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 28px;
    padding: 35px;
    backdrop-filter: blur(20px);
    transition: .35s;
}

.card:hover {
    transform: translateY(-6px);
    border-color: #00A660;
    box-shadow: 0 0 30px rgba(0, 166, 96, .15);
}

.icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: #00A660;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.card p {
    color: #9da7ad;
    line-height: 1.7;
}

/* ===================== */

.download {
    background: #11171b;
    border-radius: 40px;
    padding: 70px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: #00A660;
    opacity: .12;
    filter: blur(140px);
    right: -120px;
    top: -100px;
}

.download h2 {
    font-size: 56px;
    margin-bottom: 20px;
}

.download p {
    color: #9aa4aa;
    font-size: 18px;
    line-height: 1.7;
    max-width: 600px;
}

.download-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 35px;
}

.qr {
    width: 180px;
    height: 180px;
    background: white;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-weight: 700;
    position: relative;
    z-index: 2;
}
.qr img{
    width: 190px;
    height: 190px;
    border-radius: 20px;
    object-fit: cover;
    
}

/* ===================== */

footer {
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer p {
    color: #8e979d;
}

/* ===================== */

.road-line {
    position: absolute;
    width: 120%;
    height: 120px;
    border-top: 4px dashed #FDCA0B;
    border-radius: 50%;
    bottom: -50px;
    left: -10%;
    opacity: .35;
    transform: rotate(-2deg);
}

/* ===================== */

@media(max-width:992px) {

    .hero {
        padding: 120px 0 80px;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 52px;
    }

    .hero-right {
        height: 550px;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .download {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .download-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
        .btn-dark {
    
            width: 100%;
            max-width: 440px;
        }

    .qr {
        margin: auto;
    }

}
@media(max-width:935px){
    .buttons{
        flex-direction: column;
    }
        .btn-dark {
    
            width: 100%;
            max-width: 440px;
        }
}
@media(max-width:768px) {

    .hero h1 {
        font-size: 42px;
    }

    .section-title h2 {
        font-size: 38px;
    }

    .download h2 {
        font-size: 38px;
    }

    .phone {
        width: 210px;
    }

    .phone-3 {
        width: 180px;
        left: 120px;
    }

}
@media (max-width:480px){
    .btn-dark {
        
        width: 100%;
        max-width: 440px;
        }

}