@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap" rel="stylesheet');


body {
    background: #1e1e1e;
    margin: 0;
    color: #E5E5E5;
}

h1, h2, h3, p {
    margin: 0;
}

.body-wrapper {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    max-width: 1440px;
    width: 100%;
    margin-left: 50%;
    transform: translateX(-50%);
    background: #0B0C0C;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.section {
    padding: 40px 120px;
}

.heading-xl {
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 72px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    margin: 10px 0;
}

.heading-l {
    font-size: 46px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -1.84px;
    margin: 0 0 15px;
    max-width: 884.659px;
    text-align: center;
}


.heading-s {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.1px;
}

.body-xl {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

.body-l {
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.body-m {
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.body-s {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.1px;
}

p {
    margin-bottom: 15px;
}

/* Tablet Styles */
@media (max-width: 768px) {
    .heading-xl {
        font-size: 60px; /* Adjusted font size for tablet */
    }

    .heading-l {
        font-size: 40px; /* Adjusted font size for tablet */
        max-width: 700px; /* Adjusted max-width for tablet */
    }

    .heading-s {
        font-size: 20px; /* Adjusted font size for tablet */
    }

    .body-xl {
        font-size: 18px; /* Adjusted font size for tablet */
        line-height: 28px; /* Adjusted line height for tablet */
    }

    .body-l {
        font-size: 16px; /* Adjusted font size for tablet */
    }

    .body-m {
        font-size: 14px; /* Adjusted font size for tablet */
    }

    .body-s {
        font-size: 13px; /* Adjusted font size for tablet */
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    .heading-xl {
        font-size: 48px; /* Adjusted font size for mobile */
    }

    .heading-l {
        font-size: 32px; /* Adjusted font size for mobile */
        max-width: 90%; /* Adjusted max-width for mobile */
    }

    .heading-s {
        font-size: 18px; /* Adjusted font size for mobile */
    }

    .body-xl {
        font-size: 16px; /* Adjusted font size for mobile */
        line-height: 26px; /* Adjusted line height for mobile */
    }

    .body-l {
        font-size: 14px; /* Adjusted font size for mobile */
    }

    .body-m {
        font-size: 13px; /* Adjusted font size for mobile */
    }

    .body-s {
        font-size: 12px; /* Adjusted font size for mobile */
    }
}


/* Download Buttons */

.button-wrapper {
    background: linear-gradient(268deg, #FA7845 9.84%, #FA3A5C 85.71%);
    border-radius: 12px;
    width: fit-content;
}

.buttons {
    margin-top: 48px;
    display: flex;
    gap: 12px;
}

.btn-black, .btn-white {
    color: #fff;
    padding: 8px 16px;
    border-radius: 12px;
    width: fit-content;
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
    gap: 8px;
    text-decoration: none;
}

.btn-black:hover, .btn-white {
    background: transparent;
    border: 1px solid transparent;
}


.btn-black img, .btn-white img {
    filter: invert(100);
}

.btn-black, .btn-white:hover {
    background: #000;
    border: 1px solid #fff;
}


@media screen and (max-width: 937px) {
    .buttons {
        display: flex;
        flex-direction: column;
    }

    .buttons button {
        width: fit-content;
    }
}

/* Top Section */
#top-section {
    background: url("/assets/hero-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.top-banner {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
}

.top-banner-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex-basis: 60%;
}

.top-banner .logo {
    margin-left: -15px;
    max-width: 152px;
}

.top-section-phone {
    max-height: 85vh;
    max-width: 337px;
    position: relative;
    bottom: -20px;
    width:90%;
}

#top-section .body-large {
    margin-bottom: 150px;
}

@media screen and (max-width: 1052px) {
    #top-section .buttons {
        display: flex;
        flex-direction: column;
    }

    #top-section {
        min-height: 700px;
        display: block;
        background-position: center;
    }

    #top-section .buttons button {
        width: fit-content;
    }

    .top-banner div:first-child {
        flex-basis: 100% !important;
        margin-top: 40px;
    }

    .section {
        padding: 30px 5%;
    }

    .header {
        position: relative;
        top: 0;
    }
}

@media screen and (max-width: 1052px) {
    .top-banner {
        flex-direction: column;
    }

    .buttons {
        margin: 0;
        flex-direction: row;
    }
}

/* FEATURE SCREENS */
#feature-screens {
    position: relative;
    margin-top: 100px;
}

.screens-bg-1, .screens-bg-2 {
    position: absolute;
    z-index: -1;
}

.screens-bg-1 {
    top: 10%;
    left: 0;
    max-width:80%;
}

.screens-bg-2 {
    bottom: -20%;
    right: 0;
    max-width:80%;
}

#feature-screens .body-xl {
    max-width: 840px;
    text-align: center;
    text-wrap: balance;
    margin-bottom: 100px;
}

#feature-screens .section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.screens {
    display: flex;
    justify-content: space-between;
}

.feature-screen {
    flex-basis: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    text-wrap: balance;
}

.feature-screen img {
    width: 100%;
}

.feature-screen .heading-s {
    margin-bottom: 20px;
}

.screens.info {
    align-items: flex-start;
}

.screens.mobile {
    display: none;
}

@media screen and (max-width: 950px) {
    .screens.desktop {
        display: none;
    }

    .screens.mobile {
        display: flex;
        flex-direction: column;
    }

    .screens .feature-screen {
        max-width: 500px;
        margin-bottom: 100px;
    }

    .screens .feature-screen img {
        max-width: 400px;
    }

    .screens-bg-1 {
        top: 0;
    }

    .screens-bg-2 {
        bottom: 0;
    }
}


/* LANGUAGE SCREEN */

#lang-screen img {
    width: 100%;
    max-width: 962.898px;
}


/* FAQ */

#faq {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.faqs {
    margin-top: 78px;
    max-width: 700px;
}

.faqs div {
    margin-bottom: 60px;
}

.faqs .body-l {
    font-weight: 600;
    margin-bottom: 24px;
}

@media screen and (max-width: 720px) {
    .faqs {
        margin-top: 40px;
    }
}

/* Footer */

.footer-inner {
    display: flex;
    justify-content: space-between;
}

footer {
    margin: 0;
    width: 100%;
}

.logo-text {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 28px;
}

.logo-text p {
    font-size: 36px;
    margin: 0;
}

.logo-text .logo {
    max-width: 62px;
}


footer svg path {
    fill: #fff;
}

.footer-right div:has(#copyright) {
    display: flex;
}


.footer-inner {
    z-index: 2;
    position: relative;
}

#footer-bg {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
}

.footer-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-privacy {
    display: flex;
}

#footer-logo {
    margin-bottom: 10px;
    width: 30%;
    min-width: 80px;
    max-width: 130px;
    border-radius: 15%;
    margin-left: -20px;
}

.footer-right table {
    margin-bottom: 10px;
}

.footer-right table .body-l, .footer-privacy .body-m {
    color: #FFF !important;
}


.tr td {
    padding-bottom: 10px;
}


.anchor {
    text-decoration: none;
}


@media screen and (max-width: 870px) {
    footer {
        position: relative;
    }

    #footer-bg {
        height:100%;
    }

    .logo-text p {
        font-size: 30px;
    }

    .footer-inner {
        flex-direction:column;
        gap:40px;
    }
}

@media screen and (max-width: 720px) {

    .footer-btn {
        display: flex;
        flex-direction: column;
    }

    .footer-btn .btn-blue {
        margin-bottom: 10px;
    }
}


@media screen and (max-width: 500px) {
    .logo-text p {
        font-size: 24px;
    }

    .footer-inner {
        flex-direction: column;
    }

    .footer-btn .btn-blue, .footer-btn .btn-white {
        width: fit-content;
    }

    .footer-btn {
        padding-top: 18px;
    }

    footer .buttons {
        flex-direction: column;
    }
}

