/*@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900&display=swap');*/

/* Welcome landing — layout per mockup */
.welcome,
.welcome main {
    height: auto;
    min-height: 100vh;
}

.welcome .backgroundImage {
    background: none;
    width: 100%;
    min-height: 100vh;
    height: auto;
}

.welcome .filterBackground {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: auto;
    box-sizing: border-box;
    overflow: hidden;
    background-image:  url("/images/welcome-bg.png");
}

.welcome .logo {
    margin: 0;
    width: 50px;
    height: auto;
    display: block;
    flex-shrink: 0;
}

.welcome .welcome-nav {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 0;
}

.welcome .welcome-nav a {
    font-size: 15px;
    line-height: 1.2;
    font-weight: 400;
    color: #4a5d73;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.welcome .welcome-nav a:hover {
    color: #003d73;
}

.welcome .welcome-header {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 56px;
    max-width: none;
    padding: 10px 48px 10px;
    box-sizing: border-box;
    background: #fff;
    position: relative;
}

.welcome .welcome-hero-art {
    position: absolute;
    right: clamp(24px, 5vw, 80px);
    top: calc(50% + 24px);
    transform: translateY(-50%);
    width: min(480px, 44vw);
    height: min(480px, 44vw);
    max-width: 480px;
    max-height: 480px;
    pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 480 480' fill='none'%3E%3Cpolygon points='240,52 388,142 388,338 240,428 92,338 92,142' stroke='%23b3d4ef' stroke-width='2.5' fill='none'/%3E%3Cg opacity='0.62'%3E%3Ccircle cx='118' cy='118' r='52' fill='%23ffb74d'/%3E%3Ccircle cx='338' cy='98' r='52' fill='%23aed581'/%3E%3Ccircle cx='372' cy='248' r='52' fill='%23ef5350'/%3E%3Ccircle cx='288' cy='368' r='52' fill='%23f48fb1'/%3E%3Ccircle cx='108' cy='328' r='52' fill='%2364b5f6'/%3E%3C/g%3E%3Cpath fill='%23fff' d='M118 108c9.9 0 18-8.1 18-18s-8.1-18-18-18-18 8.1-18 18 8.1 18 18 18zm0 10c-12 0-36 6-36 18v8h72v-8c0-12-24-18-36-18z'/%3E%3Cpath fill='%23fff' d='M338 88c9.9 0 18-8.1 18-18s-8.1-18-18-18-18 8.1-18 18 8.1 18 18 18zm0 10c-12 0-36 6-36 18v8h72v-8c0-12-24-18-36-18z'/%3E%3Cpath fill='%23fff' d='M372 238c9.9 0 18-8.1 18-18s-8.1-18-18-18-18 8.1-18 18 8.1 18 18 18zm0 10c-12 0-36 6-36 18v8h72v-8c0-12-24-18-36-18z'/%3E%3Cpath fill='%23fff' d='M288 358c9.9 0 18-8.1 18-18s-8.1-18-18-18-18 8.1-18 18 8.1 18 18 18zm0 10c-12 0-36 6-36 18v8h72v-8c0-12-24-18-36-18z'/%3E%3Cpath fill='%23fff' d='M108 318c9.9 0 18-8.1 18-18s-8.1-18-18-18-18 8.1-18 18 8.1 18 18 18zm0 10c-12 0-36 6-36 18v8h72v-8c0-12-24-18-36-18z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.welcome .welcome-hero-art::before,
.welcome .welcome-hero-art::after {
    content: none;
    display: none;
}

.welcome .containers {
    position: relative;
    box-sizing: border-box;
    display: grid;
    min-height: calc(100vh - 76px);
}
.welcome .center-container {
    margin: 120px 0 120px 150px;
}

.welcome .firstText {
    margin: 12px 0 12px;
    max-width: 500px;
    text-align: left;
    font-weight: 700;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    color: #2b3a4a;
    text-shadow: none;
    text-transform: none;
}

.welcome .secondText {
    margin: 12px 0 12px;
    max-width: 600px;
    text-align: left;
    font-weight: 400;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.5;
    color: #6b7c8f;
}

.welcome .secondText strong {
    font-weight: 700;
    color: #2b3a4a;
}

.welcome .butnblock {
    margin: 12px 0 12px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.welcome .butnblock a {
    display: inline-block;
    margin: 0 !important;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.welcome .butnblock a[href*='profile'] {
    order: 1;
    background: #003d73;
    color: #fff;
}

.welcome .butnblock a[href*='profile']:hover {
    background: #002a52;
    color: #fff;
}

.welcome .butnblock a[href*='vacancy'] {
    order: 2;
    background: #fff;
    color: #003d73;
    border: 2px solid #003d73;
    box-sizing: border-box;
}

.welcome .butnblock a[href*='vacancy']:hover {
    background: #f0f7ff;
    color: #003d73;
}

.welcome .lasttext {
    position: relative;
    padding: 120px 60px 20px;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.55;
    letter-spacing: 0.01em;
    color: #7b8c9e;
    background: #f6f8fa;
    margin: 0;
    border-top: 20px solid #f6f8fa;
    border-radius: 50% 50% 0 0;
}


.welcome .butnblock2 {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 20px;
    padding: 8px 60px 72px;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    text-align: center;
    background: #f6f8fa;
    position: relative;
}

.welcome .welcome-store-btn {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    margin: 0 !important;
    padding: 11px 28px 11px 18px;
    background: #003d73;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    width: 220px;
    height: 56px;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(0, 45, 90, 0.12);
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.welcome .welcome-store-btn:hover {
    background: #002f5c;
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 45, 90, 0.18);
}

.welcome .welcome-store-btn img {
    display: block;
    width: 30px;
    height: 34px;
    object-fit: contain;
    flex-shrink: 0;
}

.welcome .welcome-store-btn__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    line-height: 1.15;
    text-align: left;
}

.welcome .welcome-store-btn__small {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.02em;
    opacity: 1;
    margin-bottom: 2px;
}

.welcome .welcome-store-btn__name {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0;
}

@media (max-width: 1024px) {
    .welcome .welcome-hero-art {
        opacity: 0.7;
        right: -24px;
        width: min(380px, 48vw);
        height: min(380px, 48vw);
    }

    .welcome .center-container {
        margin: 50px;
    }

    .welcome .firstText,
    .welcome .secondText {
        max-width: 60%;
    }
}

@media (max-width: 768px) {

    .welcome .welcome-header {
        padding: 10px 20px 10px;
        gap: 24px;
        flex-wrap: wrap;
    }

    .welcome .welcome-nav {
        gap: 28px;
    }

    .welcome .welcome-hero-art {
        display: none;
    }

    .welcome .center-container {
        margin: 20px 0 20px;
    }
    .welcome .firstText,
    .welcome .secondText {
        max-width: none;
        text-align: center;
        padding: 20px 10px 0;
    }

    .welcome .butnblock {
        justify-content: center;
        padding: 20px 10px 0;
    }

    .welcome .lasttext {
        padding: 60px 30px 16px;
        margin-top: 40px;
        font-size: 16px;
    }

    .welcome .butnblock2 {
        padding: 4px 30px 20px;
        gap: 14px;
        justify-content: center;
    }

    .welcome .butnblock a {
        text-align: center;
        box-sizing: border-box;
    }
}


@media (max-width: 480px) {
    .welcome .butnblock2 {
        gap: 0;
    }
}
