@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --background-color: #fafbfc;
    --text-color: #364453;
    --text-color-medium: #8995A1;
    --link-color: #0258D8;
    --circle-color: #0A66C9;
    --circle-size: 520px;
    --circle-size-medium: 400px;
    --circle-size-small: 300px;
    --font-family: 'Montserrat', sans-serif;
}

body {
    background: var(--background-color, #fff);
    color: var(--text-color, #000);
    font-family: var(--font-family, Arial), sans-serif;
    margin: 0;
    padding: 0;
}

.main-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    gap: 100px;
}

.phone-section {
    position: relative;
}

.mockup-phone {
    height: 500px;
    background: transparent;
    position: relative;
    z-index: 1;
}

.qr-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

.title-section {
    display: flex;
    flex-direction: column;
    margin: 0 0 8px 0;
    text-align: center;
}

.title {
    letter-spacing: 1px;
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 8px 0;
}

.subtitle {
    font-size: 24px;
    margin: 0 0 8px 0;
    text-align: center;
    font-weight: 800;
}

.description {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-color-medium);
    margin: 0 0 18px 0;
    max-width: 320px;
    text-align: center;
    line-height: 1.5rem;
}

#qr-host {
    margin: 0 0 12px 0;
    background: #fff;
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.downloads {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.button-app-store,
.button-play-store {
    background: transparent;
    border-radius: 0;
    padding: 0;
    height: auto;
    display: flex;
    align-items: center;
    border: none;
    margin: 0;
    cursor: pointer;
    box-shadow: none;
    transition: none;
    width: 190px;
}

.button-app-store img,
.button-play-store img {
    width: 100%;
    object-fit: contain;
    object-position: center;
}

.button-app-store:hover,
.button-play-store:hover {
    background: transparent;
}

.circle-bg {
    width: var(--circle-size);
    height: var(--circle-size);
    background: var(--circle-color);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

@media (max-width: 900px) {
    .main-container {
        flex-direction: column;
        gap: 24px;
        min-height: unset;
        padding: 32px 0;
    }

    .mockup-phone {
        margin-bottom: 12px;
        height: 380px;
    }

    .qr-section {
        align-items: center;
        width: 100%;
    }

    .circle-bg {
        width: var(--circle-size-medium);
        height: var(--circle-size-medium);
    }
}

@media (max-width: 600px) {
    .main-container {
        padding: 64px 0;
        gap: 64px;
    }

    .mockup-phone {
        height: 300px;
    }

    .description {
        font-size: 1.1rem;
        max-width: 90vw;
    }

    #qr-host {
        padding: 4px;
    }

    .downloads {
        flex-direction: column;
        gap: 24px;
    }

    .download-buttons {
        gap: 12px;
    }

    .circle-bg {
        width: var(--circle-size-small);
        height: var(--circle-size-small);
    }
}
