/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
    color: #14171c;
    background: #ffffff;
    line-height: 1.4;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    color: inherit;
}

input {
    font-family: inherit;
    border: none;
    outline: none;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #fff;
    height: 100px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    position: relative;
}

.logo {
    font-size: 36px;
    font-weight: 700;
    white-space: nowrap;
    background: linear-gradient(149deg, #e82020 0%, #9c0d0d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo__rf {
    background: linear-gradient(149deg, #0b57d0 3%, #174896 90%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav__link {
    font-size: 22px;
    color: #0b57d0;
    font-weight: 400;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.nav__link:hover {
    opacity: 0.75;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn--header {
    background: linear-gradient(135deg, #0b57d0 0%, #174896 100%);
    color: #fff;
    padding: 14px 24px;
    font-size: 16px;
    border-radius: 68px;
    gap: 10px;
}

.btn--header:hover {
    filter: brightness(0.95);
}

.btn__arrow-circle {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    padding: 4px 0;
    -webkit-appearance: none;
    appearance: none;
    background: none !important;
    border: none !important;
}

.burger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #0b57d0 !important;
    border-radius: 2px;
    transition: 0.3s;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    padding-top: 100px;
    overflow: hidden;
    min-height: min(700px, 78vh);
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg-img {
    position: absolute;
    right: -12%;
    top: 0%;
    width: 92%;
    height: 118%;
    max-width: none;
    object-fit: cover;
    object-position: top center;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.95) 30%, rgba(255,255,255,0.5) 42%, rgba(255,255,255,0.05) 55%, rgba(255,255,255,0) 60%);
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 50px 0 16px;
    max-width: 600px;
    text-align: left;
    color: #000;
}

.hero__title {
    font-size: clamp(36px, 4.2vw, 62px);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 4px;
}

.hero__subtitle {
    font-size: clamp(26px, 3.6vw, 56px);
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    white-space: nowrap;
}

.hero__badge {
    background: linear-gradient(150deg, #e82020 0%, #9c0d0d 100%);
    color: #fff;
    padding: 6px 22px;
    border-radius: 10px;
    font-size: clamp(22px, 3.2vw, 52px);
    font-weight: 700;
    display: inline-block;
}

.hero__form-wrap {
    max-width: 600px;
    padding: 12px 14px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 79px;
    backdrop-filter: blur(16px);
}

.hero__form {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.hero__input {
    flex: 1;
    padding: 22px 28px;
    font-size: clamp(16px, 1.5vw, 22px);
    border-radius: 79px;
    background: #fff;
    color: #000;
    min-width: 0;
    border: none;
}

.hero__input::placeholder {
    color: #666;
}

.hero__submit {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #0b57d0 0%, #174896 100%);
    color: #fff;
    padding: 14px 16px 14px 28px;
    font-size: clamp(14px, 1.2vw, 18px);
    font-weight: 700;
    border-radius: 79px;
    white-space: nowrap;
    transition: filter 0.2s;
}

.hero__submit:hover {
    filter: brightness(1.05);
}

.hero__submit-circle {
    width: 46px;
    height: 46px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero__submit-circle svg path {
    stroke: #0b57d0;
}

/* ===== Benefits overlay (bottom of hero) ===== */
.benefits-overlay {
    position: relative;
    z-index: 3;
    padding: 16px 0 0;
}

.benefits-overlay__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.bo-card {
    background: #fff;
    border-radius: 8px;
    padding: 12px 10px 14px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
    position: relative;
}

.bo-card__icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bo-card__icon img {
    width: 100%;
    height: 100%;
}

.bo-card__title {
    font-size: clamp(15px, 1.2vw, 20px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #0b57d0 0%, #174896 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.bo-card__text {
    font-size: clamp(12px, 0.9vw, 14px);
    color: #000;
    line-height: 1.35;
}

/* ===== Ticker ===== */
.ticker {
    background: #0b57d0;
    padding: 12px 0;
    overflow: hidden;
}

.ticker__track {
    display: flex;
    gap: 80px;
    animation: ticker 20s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.ticker__item {
    font-size: clamp(16px, 1.4vw, 20px);
    font-weight: 700;
    color: #fff;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== Section title ===== */
.section-title {
    font-size: clamp(32px, 3.5vw, 60px);
    font-weight: 700;
    margin-bottom: 50px;
    line-height: 1.15;
    color: #14171c;
}

.section-title--center {
    text-align: center;
}

.section-title--on-dark {
    color: #fff;
}

/* ===== Payments ===== */
.payments {
    padding: 90px 0;
    background: #fff;
}

.payments__grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 23px;
}

.payments__card {
    background: #eff1fd;
    border-radius: 15px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    border: none;
}

.payments__top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.payments__card--main {
    background: linear-gradient(120deg, #0b57d0 0%, #174896 100%);
    border-color: transparent;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.payments__card--main::before {
    content: '';
    position: absolute;
    right: -20px;
    top: -20px;
    width: 300px;
    height: 300px;
    background: url('images/emblem-overlay.png') center/contain no-repeat;
    opacity: 0.05;
    pointer-events: none;
}

.payments__amount {
    font-size: clamp(32px, 3.2vw, 63px);
    font-weight: 700;
    line-height: 1.07;
    margin-bottom: 0;
    white-space: nowrap;
}

.payments__amount--sm {
    font-size: clamp(24px, 2.4vw, 49px);
    color: #14171c;
}

.payments__card--main .payments__amount--sm {
    color: #fff;
}

.payments__amount--gradient {
    background: linear-gradient(135deg, #0b57d0 0%, #174896 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.payments__badge {
    display: inline-block;
    background: linear-gradient(150deg, #e82020 0%, #9c0d0d 100%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.payments__badge--dark {
    background: linear-gradient(150deg, #e82020 0%, #9c0d0d 100%);
    color: #fff;
}

.payments__desc {
    font-size: clamp(16px, 1.4vw, 25px);
    color: #000;
    margin-bottom: 24px;
    flex-grow: 1;
    line-height: 1.16;
}

.payments__card--main .payments__desc {
    color: #fff;
}

.payments__link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    padding: 14px 22px;
    border-radius: 65px;
    transition: filter 0.2s;
    background: linear-gradient(135deg, #0b57d0 0%, #174896 100%);
}

.payments__card--main .payments__link {
    background: #fff;
    color: #0b57d0;
}

.payments__link:hover {
    filter: brightness(0.95);
}

.payments__link-circle {
    width: 43px;
    height: 43px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.payments__link-circle svg path {
    stroke: #fff;
}

.payments__card--main .payments__link-circle {
    background: #0b57d0;
}

.payments__card--main .payments__link-circle svg path {
    stroke: #fff;
}

/* ===== Who Can ===== */
.who-can {
    padding: 60px 0 90px;
    background: #fff;
}

.who-can__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.who-can__card {
    position: relative;
    min-height: 341px;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, #0b57d0 0%, #174896 100%);
    display: flex;
    flex-direction: column;
}

.who-can__card-img {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
}

.who-can__card-img img {
    width: 170%;
    max-width: none;
    height: 110%;
    object-fit: cover;
    object-position: center;
    opacity: 0.05;
}

.who-can__card-body {
    position: relative;
    z-index: 2;
    padding: 0 28px 28px;
    padding-top: 25%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.who-can__card-title {
    font-size: clamp(22px, 2.2vw, 40px);
    font-weight: 700;
    margin-bottom: auto;
    line-height: 1.16;
    color: #fff;
}

.btn--blue-sm {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #0b57d0;
    padding: 14px 22px;
    font-size: clamp(13px, 1vw, 18px);
    font-weight: 700;
    border-radius: 65px;
}

.btn--blue-sm:hover {
    filter: brightness(0.98);
}

.btn__circle-sm {
    width: 43px;
    height: 43px;
    background: #0b57d0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ===== Vacancies ===== */
.vacancies {
    padding: 40px 0 90px;
    background: #fff;
}

.vacancies__box {
    background: #eff1fd;
    border-radius: 25px;
    padding: 50px 40px;
}

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

.vacancy-card {
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e4e8f2;
}

.vacancy-card__img {
    height: 190px;
    overflow: hidden;
}

.vacancy-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.vacancy-card:hover .vacancy-card__img img {
    transform: scale(1.05);
}

.vacancy-card__body {
    padding: 18px 20px 22px;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px;
}

.vacancy-card__title {
    font-size: clamp(20px, 1.6vw, 31px);
    font-weight: 700;
    margin-bottom: 0;
    color: #000;
    width: 100%;
}

.vacancy-card__salary {
    font-size: clamp(13px, 1vw, 19px);
    font-weight: 700;
    color: #000;
    margin-bottom: 0;
}

.vacancy-card__salary span {
    background: linear-gradient(164deg, #e82020 0%, #9c0d0d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.vacancy-card__link {
    font-size: clamp(14px, 1.1vw, 22px);
    font-weight: 400;
    color: #0b57d0;
    transition: opacity 0.2s;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: #0b57d0;
    margin-left: auto;
}

.vacancy-card__link:hover {
    opacity: 0.8;
}

/* ===== Steps ===== */
.steps {
    padding: 90px 0;
    background: #fff;
}

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

.step {
    background: #eff1fd;
    border-radius: 17px;
    overflow: visible;
    border: none;
    display: grid;
    grid-template-columns: 1fr auto;
    position: relative;
    min-height: 225px;
}

.step__media {
    width: 120px;
    height: 185px;
    align-self: end;
    margin-right: 10px;
    order: 2;
    grid-column: 2;
}

.step__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom right;
    display: block;
}

.step__body {
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    order: 1;
    grid-column: 1;
}

.step__top {
    display: contents;
}

.step__title {
    font-size: clamp(24px, 2vw, 36px);
    font-weight: 700;
    line-height: 1.16;
    background: linear-gradient(150deg, #0b57d0 3%, #174896 90%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.step__number {
    display: none;
}

.step__text {
    font-size: clamp(16px, 1.2vw, 22px);
    color: #000;
    line-height: 1.16;
    max-width: 260px;
}

/* ===== Cities ===== */
.cities {
    padding: 40px 0 90px;
    background: #fff;
}

.cities__box {
    border: none;
    border-radius: 25px;
    padding: 50px 40px;
    background: linear-gradient(108deg, #0b57d0 3%, #174896 90%);
}

.cities__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}

.city-card {
    grid-column: span 4;
}

.city-card:nth-child(n+10) {
    grid-column: span 3;
}

.city-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.2s;
    box-shadow: 0 25px 148px rgba(0,0,0,0.03);
}

.city-card::before {
    content: '';
    display: block;
    padding-top: 75%;
}

.city-card:hover {
    transform: scale(1.03);
}

.city-card span {
    position: relative;
    z-index: 1;
    font-size: clamp(18px, 1.6vw, 31px);
    font-weight: 700;
    color: #000;
    background: #fff;
    display: block;
    padding: 18px 20px;
    border-radius: 0 0 15px 15px;
    text-shadow: none;
}

/* ===== Form Bottom ===== */
.form-bottom {
    padding: 40px 0 80px;
    background: #fff;
    position: relative;
    overflow: visible;
}

.form-bottom .container {
    position: relative;
}

.form-bottom__bg {
    display: none;
}

.form-bottom__soldier {
    width: 100%;
    height: auto;
}

.form-bottom__inner {
    position: relative;
    z-index: 2;
    max-width: 100%;
    background: linear-gradient(128deg, #0b57d0 3%, #174896 90%);
    border-radius: 25px;
    padding: 60px 50px;
    overflow: hidden;
}

.form-bottom__title {
    font-size: clamp(40px, 5vw, 95px);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 14px;
    color: #fff;
}

.form-bottom__subtitle {
    font-size: clamp(24px, 3.5vw, 62px);
    font-weight: 700;
    margin-bottom: 32px;
    color: #fff;
}

.form-bottom__form {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: stretch;
}

.form-bottom__input {
    flex: 1;
    padding: 28px 36px;
    font-size: 20px;
    border-radius: 100px;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
    min-width: 0;
}

.form-bottom__input::placeholder {
    color: rgba(255,255,255,0.5);
}

.form-bottom__submit {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    color: #000;
    padding: 20px 28px 20px 40px;
    font-size: 22px;
    font-weight: 700;
    border-radius: 100px;
    white-space: nowrap;
    transition: filter 0.2s;
}

.form-bottom__submit:hover {
    filter: brightness(0.97);
}

.form-bottom__submit-circle {
    width: 53px;
    height: 53px;
    flex-shrink: 0;
    display: flex;
}

.form-bottom__submit-circle img {
    width: 100%;
    height: 100%;
}

.form-bottom__disclaimer {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    line-height: 1.36;
}

.form-bottom__disclaimer-link {
    color: rgba(255,255,255,0.85);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-bottom__disclaimer-link:hover {
    color: #fff;
}

/* ===== FAQ ===== */
.faq {
    padding: 90px 0;
    background: #fff;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 100%;
    margin: 0 auto;
    background: #eff1fd;
    border-radius: 25px;
    padding: 32px;
}

.faq__item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    border: none;
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 32px;
    font-size: clamp(20px, 1.6vw, 30px);
    font-weight: 700;
    color: #14171c;
    text-align: left;
    gap: 16px;
}

.faq__icon {
    width: clamp(50px, 4.5vw, 86px);
    height: clamp(50px, 4.5vw, 86px);
    border-radius: 50%;
    background: #0B57D0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(24px, 2vw, 36px);
    font-weight: 400;
    flex-shrink: 0;
    transition: background 0.3s, transform 0.3s;
    line-height: 1;
}

.faq__item.active .faq__icon {
    background: #e74c3c;
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq__answer p {
    padding: 0 32px 28px;
    font-size: clamp(18px, 1.5vw, 30px);
    color: #000;
    line-height: 1.37;
    opacity: 0.7;
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, #0b57d0 0%, #174896 100%);
    padding: 24px 0;
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.footer .logo {
    background: none;
    -webkit-text-fill-color: #fff;
    color: #fff;
}

.footer .nav {
    position: static;
    transform: none;
    margin-left: auto;
    margin-right: auto;
}

.footer .nav__link {
    font-size: clamp(14px, 1.2vw, 26px);
    color: #fff;
}

.footer .nav__link:hover {
    opacity: 0.85;
}

.footer .btn--header {
    background: #fff;
    color: #0b57d0;
}

.footer .btn--header .btn__arrow-circle {
    background: linear-gradient(135deg, #0b57d0 0%, #174896 100%);
}

.footer .btn--header .btn__arrow-circle svg path {
    stroke: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
    .benefits-overlay__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .cities__grid {
        grid-template-columns: repeat(6, 1fr);
    }
    .city-card {
        grid-column: span 2;
    }
    .city-card:nth-child(n+10) {
        grid-column: span 2;
    }
}

@media (max-width: 900px) {
    .container {
        padding: 0 20px;
    }

    .nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    .header.menu-open .nav {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 52px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        gap: 14px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.1);
        z-index: 99;
        transform: none;
    }

    .hero__content {
        padding: 40px 0 30px;
    }

    .hero__form {
        flex-direction: column;
    }

    .hero__form-wrap {
        border-radius: 24px;
        padding: 12px;
    }

    .hero__input,
    .hero__submit {
        border-radius: 48px;
    }

    .benefits-overlay__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .who-can__grid {
        grid-template-columns: 1fr;
    }

    .vacancies__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .cities__grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .city-card {
        grid-column: span 2;
    }
    .city-card:nth-child(n+10) {
        grid-column: span 1;
    }

    .cities__box {
        padding: 20px;
    }

    .form-bottom__form {
        flex-direction: column;
    }

    .footer__inner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .footer .nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-left: 0;
    }

    .footer .btn--header {
        display: none !important;
    }

    .header .btn--header {
        display: none !important;
    }

    .burger {
        display: flex !important;
    }

    .burger span {
        background: #0b57d0 !important;
    }

    .header {
        height: 70px;
    }

    .header__inner {
        height: 70px;
    }

    .hero {
        padding-top: 70px;
    }
}

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

    /* Hero */
    .hero {
        min-height: auto;
    }

    .hero__overlay {
        background: linear-gradient(to bottom, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.75) 40%, rgba(255,255,255,0.3) 70%, rgba(255,255,255,0) 100%);
    }

    .hero__content {
        max-width: 100%;
        padding: 24px 0 12px;
    }

    .hero__title {
        font-size: 28px;
        margin-bottom: 4px;
    }

    .hero__subtitle {
        font-size: 24px;
        gap: 10px;
    }

    .hero__badge {
        font-size: 22px;
        padding: 5px 14px;
        border-radius: 8px;
    }

    .hero__form-wrap {
        max-width: 100%;
        border-radius: 20px;
        padding: 10px;
    }

    .hero__input {
        padding: 14px 18px;
        font-size: 12px;
    }

    .hero__submit {
        padding: 12px 14px 12px 20px;
        font-size: 12px;
        justify-content: center;
    }

    .hero__submit-circle {
        width: 36px;
        height: 36px;
    }

    /* Benefits */
    .benefits-overlay {
        padding: 16px 0 0;
    }

    .benefits-overlay__grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .bo-card {
        padding: 14px 14px 16px;
        border-radius: 6px;
        border-left: none;
        box-shadow: none;
        background: #eff1fd;
    }

    .bo-card__title {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .bo-card__text {
        font-size: 13px;
        line-height: 1.35;
    }

    .bo-card__icon {
        width: 28px;
        height: 28px;
        top: 12px;
        right: 12px;
    }

    /* Section titles */
    .section-title {
        font-size: 24px;
        margin-bottom: 24px;
        line-height: 1.25;
    }

    /* Payments */
    .payments,
    .who-can,
    .vacancies,
    .cities,
    .steps,
    .faq {
        padding: 40px 0;
    }

    .payments__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .payments__card {
        border-radius: 10px;
        padding: 24px 20px;
    }

    .payments__amount {
        font-size: 28px;
    }

    .payments__amount--sm {
        font-size: 22px;
    }

    .payments__desc {
        font-size: 12px;
    }

    .payments__link {
        padding: 10px 16px;
        font-size: 10px;
    }

    .payments__link-circle {
        width: 30px;
        height: 30px;
    }

    /* Who can */
    .who-can__card {
        min-height: 180px;
    }

    .who-can__card-title {
        font-size: 24px;
    }

    .btn--blue-sm {
        padding: 10px 16px;
        font-size: 12px;
    }

    .btn__circle-sm {
        width: 32px;
        height: 32px;
    }

    /* Vacancies */
    .vacancies__box {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .vacancies__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .vacancy-card__title {
        font-size: 18px;
    }

    .vacancy-card__salary {
        font-size: 12px;
    }

    .vacancy-card__link {
        font-size: 13px;
    }

    /* Steps */
    .steps__grid {
        gap: 12px;
    }

    .step {
        min-height: 140px;
    }

    .step__media {
        width: 80px;
        height: 120px;
    }

    .step__title {
        font-size: 22px;
    }

    .step__text {
        font-size: 14px;
    }

    /* Cities */
    .cities {
        padding: 20px 0 40px;
    }

    .cities__box {
        padding: 20px 14px;
        border-radius: 16px;
    }

    .cities__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .city-card {
        grid-column: span 1 !important;
    }

    .city-card span {
        font-size: 14px;
        padding: 10px 12px;
    }

    /* Form bottom */
    .form-bottom {
        padding: 20px 0 40px;
    }

    .form-bottom__inner {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .form-bottom__title {
        font-size: 26px;
    }

    .form-bottom__subtitle {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .form-bottom__input {
        padding: 14px 18px;
        font-size: 13px;
    }

    .form-bottom__submit {
        padding: 12px 18px 12px 22px;
        font-size: 14px;
    }

    .form-bottom__submit-circle {
        width: 36px;
        height: 36px;
    }

    .form-bottom__disclaimer {
        font-size: 10px;
    }

    /* FAQ */
    .faq__list {
        padding: 16px 10px;
        border-radius: 16px;
        gap: 8px;
        background: #eff1fd;
    }

    .faq__question {
        padding: 14px 14px;
        font-size: 12px;
    }

    .faq__icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .faq__answer p {
        padding: 0 14px 14px;
        font-size: 11px;
    }

    /* Footer */
    .footer {
        padding: 16px 0;
    }

    .footer .logo {
        font-size: 24px;
    }

    .footer .nav__link {
        font-size: 12px;
    }

    /* Header mobile */
    .header {
        height: 56px;
    }

    .header__inner {
        height: 56px;
    }

    .logo {
        font-size: 22px;
    }

    .hero {
        padding-top: 56px;
    }

    .btn--header {
        padding: 8px 12px;
        font-size: 11px;
    }

    .btn__arrow-circle {
        width: 28px;
        height: 28px;
    }
}

/* ===== Mobile 480px — Figma 360px, fixed fonts + fluid layout ===== */
@media (max-width: 480px) {
    .container {
        padding: 0 8.89%;
    }

    /* ── Header ── */
    .header {
        height: 52px;
        box-shadow: 0 12px 69.5px rgba(0,0,0,0.03);
    }

    .header__inner {
        height: 52px;
    }

    .logo {
        font-size: 20.7px;
    }

    .hero {
        padding-top: 52px;
        min-height: auto;
    }

    .burger span {
        height: 3px;
        background: #0b57d0 !important;
    }

    .header .btn--header {
        display: none;
    }

    /* ── Hero ── */
    .hero__bg-img {
        right: -25%;
        top: 0;
        width: 120%;
        height: 110%;
        object-position: top center;
    }

    .hero__overlay {
        background: linear-gradient(
            to right,
            rgba(255,255,255,0.97) 0%,
            rgba(255,255,255,0.88) 30%,
            rgba(255,255,255,0.35) 52%,
            rgba(255,255,255,0.05) 70%,
            rgba(255,255,255,0) 80%
        );
    }

    .hero__content {
        padding: 38px 0 10px;
        max-width: 100%;
    }

    .hero__title {
        font-size: 22.6px;
        line-height: 1.12;
        margin-bottom: 2px;
    }

    .hero__subtitle {
        font-size: 20.7px;
        gap: 4px;
        flex-direction: column;
        align-items: flex-start;
        line-height: 1.12;
        margin-bottom: 12px;
    }

    .hero__badge {
        font-size: 19.1px;
        padding: 2px 10px;
        border-radius: 3px;
        line-height: 1.12;
    }

    .hero__form-wrap {
        background: rgba(0, 0, 0, 0.08);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        border-radius: 6px;
        padding: 10px 14px 11px 12px;
        max-width: 52%;
    }

    .hero__form {
        gap: 4px;
    }

    .hero__input {
        padding: 0 14px;
        height: 34px;
        font-size: 8px;
        border-radius: 29px;
    }

    .hero__submit {
        height: 38px;
        padding: 0 14px;
        font-size: 8px;
        border-radius: 29px;
        gap: 6px;
        justify-content: center;
    }

    .hero__submit-circle {
        width: 23px;
        height: 23px;
    }

    /* ── Ticker ── */
    .ticker {
        padding: 8px 0;
    }

    .ticker__item {
        font-size: 11px;
    }

    .ticker__track {
        gap: 36px;
    }

    /* ── Benefits cards ── */
    .benefits-overlay {
        padding: 12px 0 0;
    }

    .benefits-overlay__grid {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .bo-card {
        background: #eff1fd;
        width: 100%;
        height: auto;
        min-height: 85px;
        border-radius: 6px;
        padding: 16px 18px 16px 22px;
        border-left: none;
        box-shadow: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
    }

    .bo-card__title {
        font-size: 20px;
        margin-bottom: 5px;
        line-height: 1.1;
    }

    .bo-card__text {
        font-size: 12px;
        line-height: 1.35;
    }

    .bo-card__icon {
        width: 28px;
        height: 28px;
        top: 16px;
        right: 18px;
    }

    /* ── Section titles ── */
    .section-title {
        font-size: 21px;
        margin-bottom: 20px;
        line-height: 1.25;
    }

    /* ── Payments ── */
    .payments,
    .who-can,
    .steps,
    .faq {
        padding: 30px 0;
    }

    .vacancies {
        padding: 20px 0 30px;
    }

    .cities {
        padding: 20px 0 30px;
    }

    .payments__grid {
        gap: 9px;
    }

    .payments__card {
        width: 100%;
        height: 109px;
        border-radius: 7px;
        padding: 9px 16px 9px 23px;
        overflow: hidden;
        align-items: flex-start;
    }

    .payments__top-row {
        margin-bottom: 4px;
        gap: 8px;
    }

    .payments__amount {
        font-size: 22.7px;
        line-height: 1.07;
    }

    .payments__amount--sm {
        font-size: 22.7px;
    }

    .payments__desc {
        font-size: 9px;
        margin-bottom: 9px;
        line-height: 1;
    }

    .payments__badge {
        font-size: 8.9px;
        padding: 3px 7px;
        border-radius: 3px;
    }

    .payments__link {
        padding: 6px 11px;
        font-size: 6.5px;
        gap: 5px;
        border-radius: 23px;
        width: 113px;
        align-self: flex-start;
    }

    .payments__link-circle {
        width: 15.5px;
        height: 15.5px;
    }

    .payments__link-circle svg {
        width: 8px;
        height: 6px;
    }

    /* ── Who can ── */
    .who-can__grid {
        gap: 12px;
    }

    .who-can__card {
        width: 100%;
        min-height: 154px;
        border-radius: 8px;
    }

    .who-can__card:first-child {
        min-height: 188px;
    }

    .who-can__card-body {
        padding: 0 24px 16px;
        padding-top: 15%;
    }

    .who-can__card-title {
        font-size: 21.7px;
        line-height: 1.16;
    }

    .btn--blue-sm {
        padding: 9px 18px;
        font-size: 10px;
        gap: 8px;
        border-radius: 36px;
    }

    .btn__circle-sm {
        width: 24px;
        height: 24px;
    }

    .btn__circle-sm svg {
        width: 10px;
        height: 7px;
    }

    /* ── Vacancies ── */
    .vacancies__box {
        padding: 27px 6.5% 28px;
        border-radius: 10px;
    }

    .vacancies__grid {
        grid-template-columns: 1fr;
        gap: 11px;
        justify-items: center;
    }

    .vacancy-card {
        width: 85%;
        max-width: 250px;
        border-radius: 8px;
    }

    .vacancy-card__img {
        height: 104px;
    }

    .vacancy-card__body {
        padding: 10px 10px 12px;
    }

    .vacancy-card__title {
        font-size: 17.1px;
        line-height: 1.16;
    }

    .vacancy-card__salary {
        font-size: 10.6px;
    }

    .vacancy-card__link {
        font-size: 11.8px;
    }

    /* ── Steps ── */
    .steps__grid {
        gap: 18px;
    }

    .step {
        width: 100%;
        height: auto;
        min-height: 130px;
        border-radius: 10px;
        position: relative;
        overflow: hidden;
        display: block;
    }

    .step__body {
        padding: 20px 0 20px 20px;
        gap: 4px;
        width: 55%;
    }

    .step__media {
        width: 40%;
        height: 100%;
        margin-right: 0;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
    }

    .step__img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: bottom right;
    }

    .step__title {
        font-size: 18px;
        line-height: 1.16;
    }

    .step__text {
        font-size: 13px;
        max-width: none;
        line-height: 1.25;
    }

    /* ── Cities ── */
    .cities__box {
        padding: 17px 6.5%;
        border-radius: 10px;
    }

    .cities__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
        justify-content: center;
    }

    .city-card {
        border-radius: 4px;
        grid-column: span 1 !important;
    }

    .city-card::before {
        padding-top: 65%;
    }

    .city-card span {
        font-size: 8.3px;
        padding: 5px 8px;
        border-radius: 0 0 4px 4px;
        font-weight: 700;
    }

    /* ── Bottom form ── */
    .form-bottom {
        padding: 20px 0 30px;
    }

    .form-bottom__inner {
        width: 100%;
        margin: 0 auto;
        padding: 14px 21px;
        border-radius: 10px;
    }

    .form-bottom__title {
        font-size: 21px;
        line-height: 1.25;
        margin-bottom: 3px;
    }

    .form-bottom__subtitle {
        font-size: 14.4px;
        margin-bottom: 10px;
        line-height: 1.12;
    }

    .form-bottom__form {
        gap: 6px;
        margin-bottom: 10px;
        max-width: 175px;
    }

    .form-bottom__input {
        padding: 0 12px;
        height: 36px;
        font-size: 7px;
        border-radius: 25px;
        border: 1px solid rgba(255,255,255,0.4);
    }

    .form-bottom__submit {
        padding: 0 17px;
        height: 38px;
        font-size: 7.7px;
        border-radius: 34px;
        gap: 8px;
        justify-content: center;
    }

    .form-bottom__submit-circle {
        width: 23px;
        height: 23px;
    }

    .form-bottom__submit-circle img {
        width: 100%;
        height: 100%;
    }

    .form-bottom__disclaimer {
        font-size: 7px;
        line-height: 1.36;
    }

    /* ── FAQ ── */
    .faq__list {
        padding: 13px 21px;
        border-radius: 4.5px;
        gap: 3px;
        background: #eff1fd;
    }

    .faq__item {
        border-radius: 2.7px;
    }

    .faq__question {
        padding: 5px 11px;
        font-size: 8.1px;
        gap: 8px;
    }

    .faq__icon {
        width: 15.6px;
        height: 15.6px;
        font-size: 9px;
    }

    .faq__answer p {
        padding: 0 11px 8px;
        font-size: 5.3px;
        line-height: 1.37;
    }

    /* ── Footer ── */
    .footer {
        padding: 14px 0;
    }

    .footer__inner {
        flex-direction: row !important;
        text-align: left !important;
        justify-content: space-between;
        align-items: center;
    }

    .footer .logo {
        font-size: 20.7px;
    }

    .footer .nav {
        display: none !important;
    }
}
