body {
    font-family: Bahnschrift, sans-serif;
    font-size: 26px;
}

.hero-section {
    position: relative;
    min-height: 700px;
    margin-top: -60px;
    border-radius: 54px 54px 0 54px;
    overflow: hidden;
    background: linear-gradient(135deg, #003c96 0%, #002c6d 100%);
}

.hero-container {
    position: relative;
    height: 100%;
    padding: 80px 100px;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
    color: white;
}

.hero-title {
    font-size: 5.0rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    margin-top: 150px;
    color: white;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 2.4rem;
    margin-bottom: 78px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    line-height: 1.4;
}

.hero-btn {
    background: #ffba00;
    border: none;
    color: white;
    font-weight: 700;
    padding: 20px 50px;
    font-size: 2.4rem;
    border-radius: 56px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
    min-width: 700px;
    text-align: center;
}

    .hero-btn:hover {
        background: #ffed4a;
        transform: translateY(-3px);
        box-shadow: 0 12px 40px rgba(255, 215, 0, 0.5);
    }

.hero-image-container {
    position: absolute;
    right: 0;
    top: 40px;
    height: 96%;
    width: 54%;
    overflow: hidden;
    border-radius: 54px 0 0 54px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.hero-overlay {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 55%;
    background: linear-gradient(90deg, #003c96 15%, transparent 50%);
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.benefits-section {
    padding: 80px 00px;
    background: white;
    position: relative;
    overflow: hidden;
    width: 100%;
    cursor: pointer;
}

.benefits-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #003c96;
    text-align: center;
    margin-bottom: 20px;
    padding: 0 40px;
}

.benefits-container {
    position: relative;
    padding: 160px 140px;
    margin: 0 auto;
    background-color: #003c96;
    border-radius: 54px;
    overflow: hidden;
}

.benefits-hint {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 1.4rem;
    font-weight: 600;
    color: #FFD700;
    transform: rotate(5deg);
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 2px solid #FFD700;
    z-index: 5;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: rotate(5deg) scale(1);
    }

    50% {
        transform: rotate(5deg) scale(1.02);
    }

    100% {
        transform: rotate(5deg) scale(1);
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    position: relative;
}

.benefit-card {
    background: white;
    border-radius: 54px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.6s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 3px solid transparent;
    position: relative;
    opacity: 0.9;
}

    /* Через одну карточку затемняем */
    .benefit-card:nth-child(odd) {
        transform: translateY(30px) rotate(-2deg);
        opacity: 0.7;
    }

    .benefit-card:nth-child(even) {
        transform: translateY(-20px) rotate(2deg);
        opacity: 0.8;
    }

.benefits-grid.expanded .benefit-card {
    transform: translateY(0) rotate(0deg) !important;
    opacity: 1 !important;
    border-color: #FFD700;
}

.benefit-icon {
    width: 180px;
    height: 180px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .benefit-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.benefit-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #003c96;
    margin-bottom: 15px;
    line-height: 1.2;
}

.benefit-description {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.4;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease 0.3s;
}

.benefits-grid.expanded .benefit-description {
    max-height: 200px;
    opacity: 1;
    margin-top: 20px;
}

.collapse-trigger {
    position: absolute;
    right: 40px;
    bottom: 30px;
    background: #FFD700;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    z-index: 20;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.benefits-grid.expanded ~ .collapse-trigger {
    opacity: 1;
    transform: translateY(0);
}

.collapse-trigger:hover {
    background: #ffed4a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.collapse-arrow {
    width: 24px;
    height: 24px;
    border: solid #003c96;
    border-width: 0 3px 3px 0;
    transform: rotate(-135deg);
    transition: all 0.3s ease;
}

.collapse-trigger:hover .collapse-arrow {
    transform: rotate(-135deg) translateY(2px);
}

.process .step {
    text-align: center;
    padding: 20px;
}

.jobs-section {
    padding: 100px 40px;
    background: white;
    position: relative;
    overflow: visible;
}

.jobs-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #003c96;
    text-align: center;
    margin-bottom: 10px;
}

/* Стили для карусели */
.jobs-carousel {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.owl-carousel .owl-stage {
    display: flex;
    padding: 20px 0;
}

.job-card {
    background: white;
    border-radius: 24px;
    padding: 0;
    margin: 15px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 3px solid #ffba00;
    box-shadow: none !important;
}

    .job-card:hover {
        transform: translateY(-5px) scale(1.02);
        border-width: 5px;
        border-color: #ffba00;
    }

.job-image {
    height: 300px;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
}

    .job-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        display: block;
    }

.job-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.job-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #003c96;
    margin-bottom: 15px;
}

.job-title-end {
    font-weight: 700;
    color: #003c96;
    text-align: center;
}

.job-salary {
    font-size: 2.6rem;
    font-weight: 600;
    color: #FFD700;
    margin-bottom: 12px;
}

.job-info {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

    .job-info i {
        margin-right: 10px;
        color: #003c96;
    }

.job-buttons {
    margin-top: auto;
    display: flex;
    gap: 12px;
    padding-top: 20px;
}

.job-btn-primary {
    background: #FFD700;
    border: none;
    color: #000;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 12px;
    flex: 1;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .job-btn-primary:hover {
        background: #ffed4a;
        transform: translateY(-2px);
    }

.job-btn-secondary {
    background: #002c6d;
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 12px;
    flex: 1;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .job-btn-secondary:hover {
        background: #003c96;
        transform: translateY(-2px);
    }

/* Стрелка и надпись внизу */
.carousel-scroll-hint {
    text-align: center;
    margin-top: 30px;
    padding: 0 20px;
}

.scroll-text {
    font-size: 1.6rem;
    color: #003c96;
    font-weight: 500;
    margin-bottom: 10px;
}

.scroll-arrow {
    display: inline-block;
    width: 300px;
    height: 8px;
    background: #ffba00;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 4px 15px rgba(255, 186, 0, 0.3);
}

    .scroll-arrow:after {
        content: "";
        position: absolute;
        right: -15px;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-top: 15px solid transparent;
        border-bottom: 15px solid transparent;
        border-left: 20px solid #ffba00;
    }

.owl-nav {
    display: none !important;
}

.all-vacancies {
    min-height: 102px !important;
    align-content: center !important;
}

.process-section {
    padding: 100px 40px;
    background: white;
    position: relative;
}

.process-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #003c96;
    text-align: center;
    margin-bottom: 80px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1400px;
    margin: 0 auto 80px auto;
    gap: 30px;
}

.process-step {
    background: white;
    border-radius: 24px;
    padding: 30px;
    text-align: left;
    flex: 1;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    border: 3px solid #ffba00;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: #003c96;
    margin-bottom: 20px;
    line-height: 1;
}

.step-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #003c96;
    margin-bottom: 15px;
}

.step-description {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.4;
    flex-grow: 1;
}

.step-button {
    margin-top: 25px;
    text-align: center;
}

.step-btn {
    background: #FFD700;
    border: none;
    color: #000;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 16px;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

    .step-btn:hover {
        background: #ffed4a;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    }

/* Линии между этапами */
.step-arrow {
    position: absolute;
    top: 50%;
    width: 80px;
    height: 40px;
    transform: translateY(-50%);
    z-index: 2;
}

.step-arrow-1 {
    left: calc(25% - 40px);
}

.step-arrow-2 {
    left: calc(50% - 40px);
}

.step-arrow-3 {
    left: calc(75% - 40px);
}

.step-arrow path {
    stroke: #ffba00;
    stroke-width: 3;
    fill: none;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawArrow 1.5s ease-in-out forwards;
}

@keyframes drawArrow {
    to {
        stroke-dashoffset: 0;
    }
}

/* Широкая карточка внизу */
.process-cta {
    background: linear-gradient(135deg, #003c96 0%, #002c6d 100%);
    border-radius: 34px;
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.cta-content {
    flex: 1;
    color: white;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.cta-text {
    font-size: 1.6rem;
    opacity: 0.9;
    line-height: 1.4;
}

.cta-image {
    flex: 1;
    border-radius: 54px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    object-fit:cover;
    object-position:top;
}

    .cta-image img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        object-position:top;
        display: block;
    }

.reviews-section {
    padding: 100px 40px;
    background: white;
    position: relative;
}

.reviews-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #003c96;
    text-align: center;
    margin-bottom: 80px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.review-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    gap: 30px;
    border: 3px solid #ffba00;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-height: 300px;
}

    .review-card:hover {
        transform: translateY(-5px);
        border-width: 5px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

.review-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.review-name {
    font-size: 2rem;
    font-weight: 700;
    color: #003c96;
    margin-bottom: 8px;
}

.review-position {
    font-size: 1.4rem;
    color: #FFD700;
    font-weight: 600;
    margin-bottom: 25px;
}

.review-text {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.5;
    flex-grow: 1;
    position: relative;
    padding-left: 25px;
}

    .review-text:before {
        content: """; position: absolute; left: 0;
        top: -10px;
        font-size: 4rem;
        color: #ffba00;
        font-family: serif;
        line-height: 1;
    }

.review-image {
    flex: 0 0 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .review-image img {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid #ffba00;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

/* Анимация появления */
.review-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

    .review-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .review-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .review-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .review-card:nth-child(4) {
        animation-delay: 0.4s;
    }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.final-form-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #003c96 0%, #002c6d 100%);
    position: relative;
}



/* Валидация */
.form-input:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

.form-input:valid:not(:placeholder-shown) {
    border-color: #28a745;
}

.privacy-modal .modal-content {
    border-radius: 24px;
    border: 3px solid #ffba00;
    overflow: hidden;
}

.privacy-modal .modal-header {
    border-bottom: 2px solid #e9ecef;
    padding: 25px 30px;
    background: #f8f9fa;
}

.privacy-modal .modal-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #003c96;
    margin: 0;
    padding: 0 15px;
}

.privacy-modal .btn-close {
    margin-right: 15px;
    font-size: 1.8rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

    .privacy-modal .btn-close:hover {
        opacity: 1;
        transform: rotate(90deg);
    }

.privacy-modal .modal-body {
    padding: 30px;
    font-size: 1.4rem;
    line-height: 1.6;
    color: #333;
}

.privacy-modal .modal-text {
    margin-bottom: 20px;
    padding: 0 15px;
}

.privacy-modal .modal-section {
    margin-bottom: 25px;
    padding: 0 15px;
}

.privacy-modal .section-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #003c96;
    margin-bottom: 12px;
}

.privacy-modal .modal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .privacy-modal .modal-list li {
        margin-bottom: 8px;
        padding-left: 40px;
        position: relative;
    }

        .privacy-modal .modal-list li:before {
            content: "•";
            position: absolute;
            left: 0px;
            color: #ffba00;
            font-weight: bold;
            font-size: 1.6rem;
        }

.privacy-modal .modal-footer {
    border-top: 2px solid #e9ecef;
    padding: 20px 30px;
    background: #f8f9fa;
    text-align: center;
}

.privacy-modal .agree-btn {
    background: #ffba00;
    border: none;
    color: #000;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 12px;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

    .privacy-modal .agree-btn:hover {
        background: #ffed4a;
        transform: translateY(-2px);
    }



/* Адаптивность для планшетов */
@media (max-width: 1199.98px) {
    .hero-section {
        min-height: 600px;
        margin-top: -50px;
    }

    .hero-container {
        padding: 60px 70px;
    }

    .hero-title {
        font-size: 4rem;
        margin-top: 120px;
    }

    .hero-subtitle {
        font-size: 2rem;
        margin-bottom: 60px;
    }

    .hero-btn {
        padding: 18px 45px;
        font-size: 2rem;
        min-width: 600px;
    }

    .hero-image-container {
        width: 50%;
        top: 30px;
    }

    .hero-overlay {
        width: 50%;
    }

    .benefits-title {
        font-size: 3rem;
    }

    .benefits-container {
        padding: 40px;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .jobs-title {
        font-size: 3rem;
    }

    .scroll-arrow {
        width: 250px;
    }

    .process-title {
        font-size: 3rem;
    }

    .process-steps {
        gap: 20px;
    }

    .process-step {
        padding: 25px;
        min-height: 280px;
    }

    .step-number {
        font-size: 3.5rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-image img {
        height: 250px;
    }

    .reviews-title {
        font-size: 3rem;
    }

    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
        gap: 30px;
    }

    .review-card {
        padding: 30px;
    }

    .review-name {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 30px;
    }

    .privacy-modal .modal-dialog {
        max-width: 90%;
        margin: 1.75rem auto;
    }

    .privacy-modal .modal-header {
        padding: 22px 28px;
    }

    .privacy-modal .modal-title {
        font-size: 2rem;
        padding: 0 12px;
    }

    .privacy-modal .modal-body {
        padding: 28px;
        font-size: 1.35rem;
    }

    .privacy-modal .modal-text,
    .privacy-modal .modal-section {
        padding: 0 12px;
    }

    .privacy-modal .section-title {
        font-size: 1.5rem;
    }

    .privacy-modal .modal-list li:before {
        font-size: 1.5rem;
    }

    .privacy-modal .modal-footer {
        padding: 18px 28px;
    }

    .privacy-modal .agree-btn {
        padding: 11px 28px;
        font-size: 1.35rem;
    }
}

/* Адаптивность для мелких планшетов*/
@media (max-width: 991.98px) {
    /* Hero section */
    .hero-section {
        min-height: 500px;
        margin-top: -40px;
        border-radius: 40px 40px 0 40px;
    }

    .hero-container {
        padding: 300px 30px 40px 30px;
        text-align: center;
        justify-content: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 3rem;
        margin-top: 0;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1.6rem;
        margin-bottom: 40px;
    }

    .hero-btn {
        padding: 16px 40px;
        font-size: 1.6rem;
        min-width: auto;
        width: 100%;
        max-width: 400px;
    }

    .hero-image-container {
        top: 0;
        left: 0;
        width: 100%;
        height: 250px;
        border-radius: 40px 40px 0 0;
    }

    .hero-overlay {
        width: 100%;
        height: 250px;
        background: linear-gradient(180deg, #003c96 20%, transparent 80%);
    }

    .hero-gradient {
        display: none;
    }

    .benefits-section {
        padding: 60px 0;
    }

    .benefits-title {
        font-size: 2.5rem;
        padding: 0 20px;
    }

    .benefits-container {
        padding: 30px 20px;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }

    .benefit-card {
        border-radius: 40px;
        padding: 30px 20px;
    }

    .benefit-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .benefit-title {
        font-size: 1.6rem;
    }

    .collapse-trigger {
        right: 20px;
        bottom: 20px;
        width: 50px;
        height: 50px;
    }

    .jobs-section {
        padding: 80px 30px;
    }

    .jobs-title {
        font-size: 2.5rem;
    }

    .job-title {
        font-size: 1.6rem;
    }

    .job-salary {
        font-size: 1.4rem;
    }

    .job-info {
        font-size: 1.2rem;
    }

    .scroll-text {
        font-size: 1.4rem;
    }

    .scroll-arrow {
        width: 200px;
        height: 6px;
    }

        .scroll-arrow:after {
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
            border-left: 16px solid #ffba00;
            right: -12px;
        }

    .process-section {
        padding: 80px 30px;
    }

    .process-title {
        font-size: 2.5rem;
        margin-bottom: 60px;
    }

    .process-steps {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 60px;
    }

    .process-step {
        min-height: auto;
        padding: 30px;
    }

    .step-arrow {
        display: none;
    }

    .process-cta {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        gap: 30px;
    }

    .cta-title {
        font-size: 2.2rem;
    }

    .cta-text {
        font-size: 1.4rem;
    }

    .cta-image {
        width: 100%;
    }

        .cta-image img {
            height: 200px;
        }

    .reviews-section {
        padding: 80px 30px;
    }

    .reviews-title {
        font-size: 2.5rem;
        margin-bottom: 60px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .review-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
        min-height: auto;
    }

    .review-content {
        order: 2;
    }

    .review-image {
        order: 1;
        margin-bottom: 20px;
    }

    .review-text:before {
        left: 50%;
        transform: translateX(-50%);
        top: -25px;
    }

    .review-text {
        padding-left: 0;
        padding-top: 20px;
    }

    .final-form-section {
        padding: 80px 30px;
    }

    

    .privacy-modal .modal-dialog {
        max-width: 95%;
        margin: 1.5rem auto;
    }

    .privacy-modal .modal-header {
        padding: 20px 25px;
    }

    .privacy-modal .modal-title {
        font-size: 1.8rem;
        padding: 0 10px;
    }

    .privacy-modal .btn-close {
        margin-right: 12px;
        font-size: 1.6rem;
    }

    .privacy-modal .modal-body {
        padding: 25px;
        font-size: 1.3rem;
        line-height: 1.5;
    }

    .privacy-modal .modal-text {
        margin-bottom: 18px;
        padding: 0 10px;
    }

    .privacy-modal .modal-section {
        margin-bottom: 22px;
        padding: 0 10px;
    }

    .privacy-modal .section-title {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .privacy-modal .modal-list li {
        margin-bottom: 7px;
        padding-left: 37px;
    }

        .privacy-modal .modal-list li:before {
            left: 0px;
            font-size: 1.4rem;
        }

    .privacy-modal .modal-footer {
        padding: 16px 25px;
    }

    .privacy-modal .agree-btn {
        padding: 10px 25px;
        font-size: 1.3rem;
    }
}

/* Адаптивность для смартфонов*/
@media (max-width: 575.98px) {
    body {
        margin-top: 100px;
    }

    /* Hero section */
    .hero-section {
        display: flex;
        flex-direction: column; /* фото сверху, текст снизу */
        min-height: auto; /* убираем фикс */
        margin-top: -30px;
        border-radius: 30px 30px 0 30px;
        overflow: hidden;
    }

    .hero-image-container {
        position: relative; /* отменяем absolute */
        width: 100%;
        height: auto;
        border-radius: 30px 30px 0 0;
        order: -1; /* чтобы фото было сверху */
    }

    .hero-image {
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: center bottom; /* обрезаем снизу */
        display: block;
    }

    .hero-container {
        position: relative;
        padding: 30px 20px; /* текст ниже фото */
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }

    .hero-btn {
        padding: 14px 30px;
        font-size: 1.4rem;
        max-width: 350px;
        min-width: unset; /* убираем жёсткую ширину */
    }

    .hero-overlay {
        display: none; /* убираем градиент поверх фото */
    }

    .benefits-section {
        padding: 40px 0;
    }

    .benefits-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .benefits-container {
        padding: 20px 15px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 90px;
    }

    .benefits-hint {
        transform: rotate(25deg);
        font-size: 1.0rem;
    }

    @keyframes pulse {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.02);
        }

        100% {
            transform: scale(1);
        }
    }

    .benefit-card {
        border-radius: 30px;
        padding: 25px 15px;
    }

    .benefit-icon {
        width: 160px;
        height: 160px;
        margin-bottom: 15px;
    }

    .benefit-title {
        font-size: 1.4rem;
    }

    .benefit-description {
        font-size: 1.2rem;
    }

    .collapse-trigger {
        right: 15px;
        bottom: 15px;
        width: 45px;
        height: 45px;
    }

    .collapse-arrow {
        width: 20px;
        height: 20px;
    }

    .jobs-section {
        padding: 60px 20px;
    }

    .jobs-title {
        font-size: 2rem;
    }

    .job-image {
        height: 260px;
    }

    .job-content {
        padding: 20px;
    }

    .job-title {
        font-size: 1.4rem;
    }

    .job-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .scroll-text {
        font-size: 1.2rem;
    }

    .scroll-arrow {
        width: 150px;
        height: 5px;
    }

        .scroll-arrow:after {
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 12px solid #ffba00;
            right: -10px;
        }

    .process-section {
        padding: 60px 20px;
    }

    .process-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .process-step {
        padding: 25px 20px;
    }

    .step-number {
        font-size: 3rem;
    }

    .step-title {
        font-size: 1.6rem;
    }

    .step-description {
        font-size: 1.2rem;
    }

    .step-btn {
        padding: 12px 25px;
        font-size: 1.2rem;
    }

    .process-cta {
        padding: 30px 20px;
        border-radius: 24px;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-text {
        font-size: 1.2rem;
    }

    .cta-image {
        border-radius: 24px;
    }

        .cta-image img {
            height: 180px;
        }

    .reviews-section {
        padding: 60px 20px;
    }

    .reviews-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .review-card {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .review-name {
        font-size: 1.6rem;
    }

    .review-position {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .review-text {
        font-size: 1.2rem;
    }

        .review-text:before {
            font-size: 3rem;
            top: -20px;
        }

    .review-image img {
        width: 100px;
        height: 100px;
    }

    .final-form-section {
        padding: 60px 20px;
    }

    .privacy-modal .modal-dialog {
        max-width: 100%;
        margin: 0.5rem;
    }

    .privacy-modal .modal-content {
        border-radius: 20px;
        border-width: 2px;
    }

    .privacy-modal .modal-header {
        padding: 18px 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .privacy-modal .modal-title {
        font-size: 1.6rem;
        padding: 0;
        order: 2;
    }

    .privacy-modal .btn-close {
        margin-right: 0;
        font-size: 1.4rem;
        align-self: flex-end;
        order: 1;
    }

    .privacy-modal .modal-body {
        padding: 20px;
        font-size: 1.2rem;
        line-height: 1.4;
    }

    .privacy-modal .modal-text {
        margin-bottom: 15px;
        padding: 0 8px;
    }

    .privacy-modal .modal-section {
        margin-bottom: 20px;
        padding: 0 8px;
    }

    .privacy-modal .section-title {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .privacy-modal .modal-list li {
        margin-bottom: 6px;
        padding-left: 35px;
    }

        .privacy-modal .modal-list li:before {
            left: 0px;
            font-size: 1.3rem;
        }

    .privacy-modal .modal-footer {
        padding: 15px 20px;
    }

    .privacy-modal .agree-btn {
        padding: 10px 20px;
        font-size: 1.2rem;
        border-radius: 10px;
        width: 100%;
        max-width: 200px;
    }

    .privacy-modal .modal-text,
    .privacy-modal .modal-section p {
        text-align: justify;
    }
}