* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f7fd;
    color: #18213d;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 42px;
    background: #ffffff;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: #2553ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.logo-text strong {
    display: block;
    font-size: 20px;
}

.logo-text span {
    font-size: 14px;
    color: #6c7695;
}

.nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav a {
    text-decoration: none;
    color: #1a2552;
    font-weight: 600;
}

.active-link {
    color: #2553ff !important;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.support-btn {
    text-decoration: none;
    background: #1739c7;
    color: white;
    padding: 14px 22px;
    border-radius: 12px;
    font-weight: 700;
}

.user-btn {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    border: 1px solid #dfe4f3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    font-size: 22px;
}

/* TOP BANNER */
.top-banner {
    max-width: 1280px;
    margin: 18px auto;
    background: #eef2ff;
    border-radius: 18px;
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-banner-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.info-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #2553ff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: bold;
}

.top-banner h3 {
    margin: 0 0 6px;
    font-size: 18px;
}

.top-banner p {
    margin: 0;
    color: #4c5678;
}

.more-btn {
    text-decoration: none;
    background: white;
    color: #2553ff;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 700;
}

/* HERO */
.hero {
    max-width: 100%;
    min-height: 560px;
    background: linear-gradient(90deg, #071a63 0%, #112c9b 55%, #153dc9 100%);
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    padding: 70px 70px 110px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 60%, rgba(119, 124, 255, 0.30), transparent 25%),
        radial-gradient(circle at 76% 62%, rgba(119, 124, 255, 0.23), transparent 34%);
    pointer-events: none;
}

.hero-left {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-left h1 {
    margin: 0 0 20px;
    font-size: 78px;
    line-height: 0.98;
    font-weight: 800;
}

.hero-left h1 span {
    color: #8670ff;
}

.hero-left p {
    font-size: 18px;
    margin-bottom: 34px;
    color: rgba(255,255,255,0.9);
}

.stats {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 14px;
    color: white;
}

.stat-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: rgba(104, 119, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.stat-box strong {
    display: block;
    font-size: 20px;
    margin-bottom: 4px;
}

.stat-box span {
    color: rgba(255,255,255,0.86);
}

/* HERO RIGHT */
.hero-right {
    position: relative;
    min-height: 430px;
    z-index: 2;
}

.hero-circles {
    position: absolute;
    right: 40px;
    bottom: -10px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background:
        radial-gradient(circle at center,
        rgba(126, 120, 255, 0.55) 0 28%,
        rgba(126, 120, 255, 0.30) 28% 42%,
        rgba(126, 120, 255, 0.16) 42% 54%,
        transparent 54%);
}

.hero-man {
    position: absolute;
    right: 60px;
    bottom: 0;
    width: 700px;
    transform: scale(1.25) translateY(90px);
    z-index: 2;
}

.job-mini-card {
    position: absolute;
    right: 0;
    width: 220px;
    background: white;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 12px 30px rgba(143, 144, 150, 0.22);
    z-index: 3;
}

.card-1 { top: 20px; }
.card-2 { top: 145px; }
.card-3 { top: 270px; }

.flag-line {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.flag-line img {
    width: 26px;
    height: 18px;
    margin-top: 4px;
    border-radius: 3px;
}

.flag-line strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
    color: #1d2755;
}

.flag-line span {
    display: block;
    color: #66708f;
    margin-bottom: 6px;
    font-size: 14px;
}

.flag-line small {
    color: #364163;
    font-size: 14px;
    font-weight: 700;
}

/* SEARCH PANEL */
.search-panel {
    max-width: 1280px;
    margin: -58px auto 0;
    background: white;
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 12px 32px rgba(24, 33, 61, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr 0.9fr 220px;
    gap: 16px;
    position: relative;
    z-index: 4;
}

.search-field {
    display: flex;
    align-items: center;
    border: 1px solid #dce2f2;
    border-radius: 16px;
    padding: 0 16px;
    background: #fff;
    min-height: 62px;
}

.search-icon {
    margin-right: 10px;
    font-size: 20px;
}

.search-field input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 16px;
    color: #1c2552;
}

.salary-box {
    border: 1px solid #dce2f2;
    border-radius: 16px;
    padding: 14px 16px;
    background: white;
}

.salary-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: #38446b;
    font-weight: 600;
}

.salary-box input[type="range"] {
    width: 100%;
    accent-color: #5a63ff;
}

.find-btn {
    background: #5964ff;
    color: white;
    text-decoration: none;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    min-height: 62px;
}

/* FEATURES */
.features {
    max-width: 1280px;
    margin: 80px auto 0;
    padding: 0 10px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: transparent;
    padding: 10px;
}

.feature-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: #eef2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    flex-shrink: 0;
}

.feature h4 {
    margin: 2px 0 8px;
    font-size: 24px;
}

.feature p {
    margin: 0;
    color: #6b748f;
    line-height: 1.6;
}

/* PARTNERS */
.partners {
    padding: 45px 20px 30px;
    background: #f5f7fd;
    text-align: center;
}

.partners-title {
    font-size: 34px;
    margin-bottom: 26px;
    color: #1b2552;
}

.partners-marquee {
    overflow: hidden;
    max-width: 1280px;
    margin: 0 auto 22px;
    background: white;
    border-radius: 18px;
    padding: 20px 0;
    box-shadow: 0 8px 24px rgba(24, 33, 61, 0.06);
}

.marquee-track {
    display: flex;
    width: max-content;
    align-items: center;
    animation: marquee 22s linear infinite;
}

.marquee-track img {
    width: 120px;
    height: 60px;
    object-fit: contain;
    margin: 0 26px;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.partners-text {
    max-width: 900px;
    margin: 0 auto;
    color: #5b6481;
    line-height: 1.7;
    font-size: 17px;
}

/* COUNTRIES */
.countries {
    padding: 40px 20px 70px;
    text-align: center;
}

.countries h2 {
    font-size: 34px;
    margin-bottom: 26px;
    color: #1b2552;
}

.flags {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    justify-content: center;
}

.flags a {
    width: 120px;
    background: white;
    border-radius: 18px;
    padding: 14px 10px;
    text-decoration: none;
    color: #1b2552;
    box-shadow: 0 8px 24px rgba(24, 33, 61, 0.06);
    transition: 0.2s;
}

.flags a:hover {
    transform: translateY(-4px);
}

.flags img {
    width: 46px;
    height: 32px;
    display: block;
    margin: 0 auto 10px;
    border-radius: 4px;
}

.flags span {
    font-size: 14px;
    font-weight: 700;
}

/* ADAPTIVE */
@media (max-width: 1200px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 50px 30px 120px;
    }

    .hero-left h1 {
        font-size: 58px;
    }

    .hero-right {
        min-height: 520px;
    }

    .search-panel {
        grid-template-columns: 1fr;
        margin: -45px 20px 0;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
        margin: 60px 20px 0;
    }
}

@media (max-width: 900px) {
    .header {
        flex-direction: column;
        gap: 18px;
        padding: 20px;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

    .top-banner {
        margin: 18px 20px;
        flex-direction: column;
        gap: 18px;
        align-items: flex-start;
    }

    .hero-left h1 {
        font-size: 46px;
    }

    .hero-man {
        width: 250px;
        right: 60px;
    }

    .hero-circles {
        width: 360px;
        height: 360px;
        right: 10px;
    }

    .job-mini-card {
        width: 190px;
    }
}

@media (max-width: 700px) {
    .hero {
        padding: 36px 20px 100px;
    }

    .hero-left h1 {
        font-size: 38px;
    }

    .stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero-right {
        min-height: 420px;
    }

    .hero-man {
        width: 180px;
        right: 55px;
        bottom: 0;
    }

    .hero-circles {
        width: 250px;
        height: 250px;
        right: 0;
        bottom: 20px;
    }

    .job-mini-card {
        width: 150px;
        padding: 12px;
    }

    .flag-line strong {
        font-size: 13px;
    }

    .flag-line span,
    .flag-line small {
        font-size: 11px;
    }

    .card-1 { top: 10px; }
    .card-2 { top: 108px; }
    .card-3 { top: 206px; }

    .features {
        grid-template-columns: 1fr;
    }

    .feature h4 {
        font-size: 20px;
    }
}
/* ПУТЬ КАНДИДАТА */
.candidate-path {
    background: #f6f7fb;
    padding: 70px 20px 60px;
}

.candidate-path-inner {
    max-width: 1450px;
    margin: 0 auto;
}

.candidate-path h2 {
    text-align: center;
    font-size: 54px;
    margin: 0 0 55px;
    color: #1b2552;
    font-weight: 800;
}

.candidate-path h2 span {
    color: #d8006b;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
    position: relative;
    z-index: 2;
}

.step-item {
    position: relative;
    text-align: center;
}

.step-number {
    width: 66px;
    height: 66px;
    margin: 0 auto 22px;
    background: linear-gradient(180deg, #e5006d, #ffb03a);
    clip-path: polygon(50% 0%, 92% 25%, 92% 75%, 50% 100%, 8% 75%, 8% 25%);
    color: white;
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(216, 0, 107, 0.25);
}

.step-card {
    background: white;
    border: 2px solid #e10070;
    border-radius: 24px;
    min-height: 330px;
    padding: 28px 18px 24px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.step-icon {
    font-size: 52px;
    margin-bottom: 16px;
}

.step-card h3 {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.25;
    color: #1b2552;
}

.step-card p {
    margin: 0;
    color: #4e5056;
    line-height: 1.65;
    font-size: 15px;
}

.path-button-wrap {
    text-align: center;
    margin-top: 38px;
}

.why-company-btn {
    display: inline-block;
    background: linear-gradient(90deg, #d8006b, #f03a8c);
    color: white;
    text-decoration: none;
    padding: 16px 34px;
    border-radius: 999px;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(216, 0, 107, 0.22);
}

/* НИЖНИЕ ЛОГОТИПЫ */
.bottom-certificates {
    background: white;
    padding: 26px 20px;
}

.bottom-certificates-inner {
    max-width: 1450px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 26px;
    align-items: center;
}

.bottom-certificates-inner img {
    width: 100%;
    max-height: 110px;
    object-fit: contain;
}

/* ФУТЕР */
.main-footer {
    background: #ececef;
    padding: 34px 20px 42px;
}

.main-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-main {
    margin: 0 0 12px;
    font-size: 20px;
    color: #2f3342;
    font-weight: 500;
}

.footer-sub {
    margin: 0 0 20px;
    font-size: 17px;
    color: #3b4158;
    line-height: 1.6;
}

.footer-text {
    margin: 0 auto;
    max-width: 1100px;
    color: #4f556e;
    line-height: 1.7;
    font-size: 16px;
}

/* АДАПТАЦИЯ */
@media (max-width: 1300px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bottom-certificates-inner {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 800px) {
    .candidate-path h2 {
        font-size: 34px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .step-card {
        min-height: auto;
    }

    .bottom-certificates-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-company-btn {
        font-size: 18px;
        padding: 14px 22px;
    }
}

@media (max-width: 500px) {
    .bottom-certificates-inner {
        grid-template-columns: 1fr;
    }
}

.job-mini-card {
    cursor: pointer;
}

.job-mini-card:hover {
    transform: translateY(-5px);
}
.job-mini-card {
    cursor: pointer;
}

.job-mini-card:hover {
    transform: translateY(-5px);
}

.success-people {
    max-width: 1300px;
    margin: 70px auto 30px;
    padding: 50px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: center;
}

.small-title {
    display: inline-block;
    background: #eef2ff;
    color: #2b4eff;
    padding: 9px 14px;
    border-radius: 999px;
    font-weight: bold;
    margin-bottom: 14px;
}

.success-left h2 {
    font-size: 38px;
    color: #1b2552;
    margin: 0 0 16px;
}

.success-left p {
    color: #6b748f;
    line-height: 1.7;
    font-size: 17px;
}

.success-stats {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin: 24px 0;
}

.success-stats div {
    background: white;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(24,33,61,0.08);
}

.success-stats strong {
    display: block;
    font-size: 26px;
    color: #2b4eff;
}

.success-stats span {
    color: #6b748f;
    font-size: 14px;
}

.success-btn {
    display: inline-block;
    background: linear-gradient(90deg, #0b1b4d, #2b4eff);
    color: white;
    padding: 15px 28px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: bold;
}

.success-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.success-gallery img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(24,33,61,0.12);
}

.success-gallery img:nth-child(2),
.success-gallery img:nth-child(3) {
    transform: translateY(25px);
}

@media (max-width: 850px) {
    .success-people {
        grid-template-columns: 1fr;
    }

    .success-left h2 {
        font-size: 30px;
    }

    .success-gallery img:nth-child(2),
    .success-gallery img:nth-child(3) {
        transform: none;
    }
}


.candidate-road {
    max-width: 1300px;
    margin: 70px auto;
    padding: 50px 20px;
    text-align: center;
}

.candidate-road h2 {
    font-size: 38px;
    color: #1b2552;
    margin-bottom: 10px;
}

.road-subtitle {
    color: #6b748f;
    margin-bottom: 50px;
    font-size: 18px;
}

.road-line {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
    position: relative;
}

.road-line::before {
    content: "";
    position: absolute;
    top: 42px;
    left: 8%;
    right: 8%;
    height: 4px;
    background: linear-gradient(90deg, #0b1b4d, #2b4eff);
    border-radius: 10px;
    z-index: 0;
}

.road-step {
    background: white;
    border-radius: 22px;
    padding: 22px 15px;
    box-shadow: 0 10px 30px rgba(24,33,61,0.08);
    position: relative;
    z-index: 1;
    transition: 0.25s;
}

.road-step:hover {
    transform: translateY(-7px);
}

.road-number {
    width: 46px;
    height: 46px;
    margin: -45px auto 14px;
    border-radius: 50%;
    background: linear-gradient(90deg, #0b1b4d, #2b4eff);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 5px solid white;
}

.road-icon {
    font-size: 34px;
    margin-bottom: 10px;
}

.road-step h4 {
    color: #1b2552;
    font-size: 20px;
    margin: 8px 0;
}

.road-step p {
    color: #6b748f;
    font-size: 14px;
    line-height: 1.5;
}

.road-btn {
    display: inline-block;
    margin-top: 35px;
    background: linear-gradient(90deg, #0b1b4d, #2b4eff);
    color: white;
    padding: 15px 28px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: bold;
}

@media (max-width: 1000px) {
    .road-line {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 18px;
    }

    .road-line::before {
        display: none;
    }
}

@media (max-width: 600px) {
    .road-line {
        grid-template-columns: 1fr;
    }
}

.big-career-banner {
    max-width: 1450px;
    min-height: 720px;
    margin: 70px auto;
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background:
        radial-gradient(circle at 80% 15%, rgba(43,78,255,0.95), transparent 35%),
        linear-gradient(120deg, #06194f 0%, #092878 45%, #1455ff 100%);
    color: white;
    box-shadow: 0 18px 45px rgba(10, 30, 90, 0.25);
}

.banner-bg-map {
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background-image: radial-gradient(circle, rgba(255,255,255,0.55) 1px, transparent 1px);
    background-size: 18px 18px;
}

.banner-center {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    padding-top: 95px;
}

.banner-center h2 {
    font-size: 56px;
    line-height: 1.18;
    margin: 0 0 26px;
    font-weight: 900;
    text-shadow: 0 8px 24px rgba(0,0,0,0.22);
}

.banner-center p {
    font-size: 24px;
    line-height: 1.45;
    margin: 0 0 36px;
}

.banner-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 36px;
}

.banner-btn-main,
.banner-btn-light {
    min-width: 255px;
    padding: 19px 28px;
    border-radius: 16px;
    text-decoration: none;
    color: white;
    font-size: 21px;
    font-weight: 800;
    transition: 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-btn-main {
    background: linear-gradient(90deg, #1f6fff, #4a7cff);
    box-shadow: 0 0 25px rgba(56,120,255,0.7);
}

.banner-btn-light {
    border: 2px solid rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.04);
}

.banner-buttons img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    object-fit: contain;
}

.banner-socials {
    display: flex;
    justify-content: center;
    gap: 22px;
}

.banner-socials a {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    border: 1px solid rgba(255,255,255,0.65);
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-socials img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.banner-person {
    position: absolute;
    bottom: 150px;
    height: 540px;
    z-index: 1;
    pointer-events: none;
}

.banner-woman {
    left: -210px;
}

.banner-man {
    right: -210px;
}

.banner-features {
    position: absolute;
    left: 55px;
    right: 55px;
    bottom: 0;
    z-index: 6;

    min-height: 150px;
    padding: 28px;
    border-radius: 24px;
    border: 1px solid rgba(125,170,255,0.5);
    background: rgba(5, 28, 91, 0.58);
    backdrop-filter: blur(10px);

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.banner-feature {
    display: flex;
    align-items: center;
    gap: 18px;
    border-right: 1px solid rgba(255,255,255,0.18);
    padding-right: 18px;
}

.banner-feature:last-child {
    border-right: none;
}

.bf-icon {
    width: 78px;
    height: 78px;
    border-radius: 16px;
    background: linear-gradient(145deg, #0e4cff, #0b2c90);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bf-icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.banner-feature h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.banner-feature p {
    margin: 5px 0 0;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.82);
    opacity: 1;
}

/* VIDEO */
.video-info {
    max-width: 1300px;
    margin: 70px auto;
    padding: 30px 20px;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 35px;
    align-items: center;
}

.video-text {
    background: white;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(24,33,61,0.08);
}

.video-text span {
    color: #2b4eff;
    font-weight: 800;
}

.video-text h2 {
    color: #1b2552;
    font-size: 34px;
    margin: 12px 0;
}

.video-text p {
    color: #6b748f;
    line-height: 1.7;
    font-size: 17px;
}

.video-box {
    background: white;
    padding: 14px;
    border-radius: 26px;
    box-shadow: 0 12px 35px rgba(24,33,61,0.12);
}

.video-box video {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

/* FOOTER */
.footer {
    background: #f5f6fa;
    padding: 40px 20px;
    text-align: center;
    border-top: 2px solid #e5e8f5;
}

.footer-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 25px;
}

.footer-logos img {
    height: 55px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: 0.3s;
}

.footer-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.footer-info p {
    margin: 6px 0;
    color: #2d355f;
    font-size: 14px;
}

.footer-small {
    max-width: 900px;
    margin: 10px auto 0;
    font-size: 13px;
    color: #6b748f;
    line-height: 1.6;
}

/* ICONS */
.feature-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.feature-icon video {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.road-icon video {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* ADAPTIVE */
@media (max-width: 1200px) {
    .banner-person {
        display: none;
    }

    .big-career-banner {
        min-height: auto;
        padding-bottom: 40px;
    }

    .banner-center {
        padding: 70px 20px 40px;
    }

    .banner-features {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin: 0 30px 30px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 850px) {
    .video-info {
        grid-template-columns: 1fr;
    }

    .video-box video {
        height: 260px;
    }
}

@media (max-width: 700px) {
    .big-career-banner {
        margin: 40px 15px;
        border-radius: 22px;
    }

    .banner-center h2 {
        font-size: 34px;
    }

    .banner-center p {
        font-size: 17px;
    }

    .banner-buttons {
        flex-direction: column;
        gap: 14px;
    }

    .banner-btn-main,
    .banner-btn-light {
        min-width: auto;
        width: 100%;
        font-size: 18px;
    }

    .banner-socials {
        gap: 12px;
    }

    .banner-features {
        grid-template-columns: 1fr;
        margin: 0 18px 20px;
    }

    .banner-feature {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.15);
        padding-bottom: 18px;
    }

    .banner-feature:last-child {
        border-bottom: none;
    }
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-woman {
  position: absolute;
  left: 70px;
  bottom: 0;
  z-index: 2;
}

.info-section {
  position: relative;
  z-index: 3;
  margin-top: 0;
  transform: none;
}

.info-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  width: 100%;
  position: relative;
  z-index: 5;
}

/* Родитель */
.banner-features {
    display: flex;
    justify-content: space-between;
    background: #122a6b;
    margin-top: -0.1px; /* поднимает блок вверх как на макете */
    position: relative;
    z-index: 5;
}

/* Один блок */
.banner-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    flex: 1;
    color: white;
    border-left: 1px solid rgba(255,255,255,0.1);
}

/* Убрать линию у первого */
.banner-feature:first-child {
    border-left: none;
}

/* Иконка */
.bf-icon {
    background: linear-gradient(145deg, #2f5bff, #1a3fd1);
    padding: 15px;
    border-radius: 12px;
}

.bf-icon img {
    width: 30px;
}

/* Текст */
.banner-feature h4 {
    margin: 0;
    font-size: 18px;
}

.banner-feature p {
    margin: 5px 0 0;
    font-size: 14px;
    opacity: 0.8;
}

.banner-features {
    padding-left: 40px;
    padding-right: 40px; /* чтобы симметрия была */
}

.banner-features {
    transform: translateX(-20px);
}
.banner-features {
    margin-left: -40px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, #2f5bff, #1a3fd1);
    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon img {
    width: 24px;
    height: 24px;
}

.stat-icon {
    box-shadow: 0 0 15px rgba(47, 91, 255, 0.5);
}

.stats {
    display: flex;
    flex-direction: row; 
    gap: 20px;
}

.stats {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
}


.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, #2f5bff, #1a3fd1);
    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 0 15px rgba(47, 91, 255, 0.5);
}

.stat-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.stats {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 20px !important;
}

.stat-box {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    width: auto !important;
}

.stat-box > div:last-child {
    display: flex !important;
    flex-direction: column !important;
}

.stat-icon {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    background: linear-gradient(145deg, #2f5bff, #1a3fd1);
    border-radius: 12px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.stat-icon img {
    width: 30px !important;
    height: 30px !important;
    object-fit: contain !important;
}

.home-application {
    padding: 80px 20px;
    background: #f3f6ff;
}

.home-application-box {
    max-width: 1250px;
    margin: 0 auto;
    background: linear-gradient(135deg, #06184a, #123cff, #5a63ff);
    border-radius: 34px;
    padding: 45px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 22px 55px rgba(24,33,61,0.18);
}

.home-form-label {
    display: inline-block;
    background: rgba(255,255,255,0.14);
    color: white;
    padding: 9px 14px;
    border-radius: 100px;
    font-weight: 800;
    margin-bottom: 18px;
}

.home-application-content h2 {
    color: white;
    font-size: 42px;
    line-height: 1.15;
    margin: 0 0 16px;
}

.home-application-content p {
    color: rgba(255,255,255,0.85);
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
}

.home-form {
    background: white;
    border-radius: 26px;
    padding: 28px;
}

.home-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.home-form input,
.home-form select {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid #dde4ff;
    border-radius: 16px;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
    background: #f7f9ff;
}

.home-form input:focus,
.home-form select:focus {
    border-color: #2b4eff;
    background: white;
}

.home-form button {
    width: 100%;
    margin-top: 16px;
    padding: 17px;
    border: none;
    border-radius: 17px;
    background: linear-gradient(90deg, #2b4eff, #6f57ff);
    color: white;
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
}

.home-form button:hover {
    transform: translateY(-2px);
}

.home-form small {
    display: block;
    margin-top: 13px;
    color: #6b748f;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
}

@media (max-width: 850px) {
    .home-application-box {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .home-application-content h2 {
        font-size: 32px;
    }

    .home-form-grid {
        grid-template-columns: 1fr;
    }
}



.company-footer{
    background:#f3f4f8;
    padding:50px 20px;
    text-align:center;
    margin-top:80px;
}

.footer-logos{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:40px;
    margin-bottom:35px;
}

.footer-logos img{
    width:120px;
    max-width:100%;
    object-fit:contain;
    opacity:0.95;
}

.footer-text{
    max-width:1000px;
    margin:0 auto;
}

.footer-text p{
    color:#3a3f52;
    line-height:1.7;
    margin-bottom:14px;
    font-size:17px;
}


@media (max-width:768px){

    .company-footer{
        padding:40px 15px;
    }

    .footer-logos{
        gap:20px;
    }

    .footer-logos img{
        width:80px;
    }

    .footer-text p{
        font-size:14px;
        line-height:1.5;
    }

}

