.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    height: 64px;
    background: #0364E2;
}

.header-layout {
    max-width: 1280px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 145px;
    height: 40px;
    flex-shrink: 0;
}

.routes-container {
    display: flex;
    align-items: center;
    gap: 40px
}

.route-text {
    color: #FFF;
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase;
}

.main {
    width: 100%;
    height: 100vh;
    display: flex;
    z-index: 1;
    align-items: center;
    justify-content: center;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%), url(../images/main-background.webp) no-repeat center;
    background-size: cover;
    box-shadow: 0 0 100px 50px #0D142D inset;
}

.main-layout {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 1280px;
    gap: 40px;
}

.text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
}

.subtitle-text {
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 60px;
    font-weight: 200;
    line-height: 100%;
    text-transform: uppercase;
    color: #FFF;
}

.title-text {
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
    color: #FFF;
}

.buttons-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.buttons-container a {
    z-index: 1;
}

.button {
    position: relative;
    padding: 12px 80px;
    height: 60px;
    border-radius: 8px;
    gap: 8px;
    display: flex;
    align-items: center;
    width: max-content;
    border: 1px solid rgba(255, 255, 255, 0.50);
    transition: 0.2s ease-in-out;
}

.button::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease-in-out;
}

 .main-button {
    background: rgba(13, 20, 45, 0.50);
}

 .main-button::after {
     background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), rgba(13, 20, 45, 0.50)
 }

 .primary-button {
    background: #0364E2;
}

 .primary-button::after {
     background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), #0364E2;
 }

.button:hover::after {
    opacity: 1;
    visibility: visible;
}

.button-icon {
    width: 24px;
    height: 24px;
    z-index: 2;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.32));
}

.button-text {
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.32);
    font-family: Inter, sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 150%;
    z-index: 2;
    color: #FFF;
}

.about {
    padding: 140px 0;
    max-width: 1280px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(160.96% 233.9% at 20.16% -67.92%, #0364E2 17.41%, #0D142D 63.39%);
}

.information-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.information-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 52px;
}

.information-icon {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.information-title {
    font-family: Inter, sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 100%;
    color: #FFF;
}

.information-description {
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 110%;
    color: #FFF;
}

.footer {
    max-width: 1280px;
    width: 100%;
    padding: 40px 0;
    border-top: 1px solid #FFFFFF40;
    display: flex;
    justify-content: space-between;
}

.company-container {
    display: flex;
    flex-direction: column;
    gap: 36px;
    max-width: 604px;
}

.main-text {
    font-family: Inter, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
    color: #FFF;
}

.secondary-text {
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #FFF;
}

.socials-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.socials-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 64px;
    transition: 0.2s ease-in-out;
}

.social-icon:hover {
    opacity: 0.8;
}

.open-menu,
.close-menu {
    display: none;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10001;
}

.close-menu {
    display: none;
}

.mobile-menu {
    position: fixed;
    top: 56px;
    right: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(160.96% 233.9% at 20.16% -67.92%, #0364E2 17.41%, #0D142D 63.39%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mouse-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 80px;
}

.mouse-icon svg path:first-child {
    animation: mouse-scroll 1.5s ease-in-out infinite;
}

@keyframes mouse-scroll {
    0%, 100% {
        opacity: 0;
        transform: translateY(-8px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .header {
        height: 56px;
    }

    .header-layout {
        padding: 0 20px;
    }

    .logo {
        width: 116px;
        height: 32px;
    }

    .header-layout .routes-container {
        display: none;
    }

    .routes-container {
        padding-top: 40px;
        text-align: center;
        flex-direction: column;
    }

    .open-menu {
        display: flex;
    }

    .main {
        padding: 0 10px;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%), url(../images/main-background.webp) no-repeat -100px;
        background-size: cover;
    }

    .subtitle-text, .title-text {
        font-size: 30px;
    }

    .buttons-container {
        width: 100%;
        flex-direction: column;
        gap: 20px;
    }

    .buttons-container a {
        width: 100%;
    }

    .button {
        width: 100%;
        height: 51px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

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

    .about {
        padding: 80px 20px;
        gap: 40px;
    }

    .information-wrapper {
        flex-direction: column;
    }

    .information-container {
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .information-title {
        font-size: 28px;
    }

    .information-description {
        font-size: 18px;
    }

    .footer {
        padding: 80px 20px 40px;
        flex-direction: column;
        gap: 40px;
    }

    .socials-wrapper {
        gap: 16px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .mouse-icon {
        display: none;
    }
}
