:root {
    --primary: #4A90E2;
    --primary-light: #A4C8E1;
    --primary-dark: #003D66;
    --accent: #FF7D47;
    --accent-light: #FFA07D;
    --accent-dark: #D45C2F;
    --text: #333333;
    --text-light: #555555;
    --background: #F4F4F4;
    --card-bg: #FFFFFF;
    --border: #E2E8F0;
    --success: #48BB78;яы
    --warning: #ED8936;
    --error: #F56565;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    max-width: 100%;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/* Header */
.header {
    background: var(--gradient);
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 95%);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at 75% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    z-index: 0;
    animation: float 15s infinite alternate ease-in-out;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(2deg); }
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.header-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 25px;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 40px;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Main vacancies section */
.vacancies {
    padding: 80px 0;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 40px;
}

.section-subtitle {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 3px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 0 0 25px;
    color: var(--primary);
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.section-description {
    color: var(--text-light);
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 800px;
}

.vacancies-list {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Vacancy card */
.vacancy-card {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    border: 1px solid var(--border);
    position: relative;
}

.vacancy-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.vacancy-image-container {
    width: 280px;
    min-width: 280px;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.vacancy-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.vacancy-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--accent);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(247, 37, 133, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vacancy-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.vacancy-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.vacancy-title {
    color: var(--primary-dark);
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.vacancy-salary {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.25rem;
    background: rgba(74, 144, 226, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    white-space: nowrap;
    margin-left: 1.5rem;
}

.vacancy-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.vacancy-meta i {
    margin-right: 0.5rem;
    font-size: 1rem;
    color: var(--primary);
}

.vacancy-details {
    margin: 1.5rem 0;
}

.vacancy-field {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.field-icon {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.field-content {
    flex-grow: 1;
}

.field-label {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.field-label:after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
    margin-left: 1rem;
}

.field-value {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.7;
}

.field-value ul {
    padding-left: 1.25rem;
    margin: 0.5rem 0;
}

.field-value li {
    margin-bottom: 0.5rem;
    position: relative;
}

.field-value li:before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.vacancy-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.tag {
    background-color: var(--border);
    color: var(--text);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.tag:hover {
    background-color: var(--primary);
    color: white;
}

.vacancy-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: white;
    padding: 1rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.2);
    margin-top: auto;
    letter-spacing: 0.5px;
}

.vacancy-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
}

.vacancy-button i {
    margin-left: 0.75rem;
    transition: transform 0.3s ease;
}

.vacancy-button:hover i {
    transform: translateX(5px);
}

.no-vacancies {
    text-align: center;
    padding: 3rem;
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.no-vacancies p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Benefits section */
.benefits {
    background-color: var(--card-bg);
    padding: 80px 0;
    margin: 60px 0;
    position: relative;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 100%;
}
.benefits-title {
    font-size: 1.8rem; /* Размер шрифта */
    margin-bottom: 3rem; /* Отступ снизу */
    color: var(--primary-dark); /* Цвет текста */
    font-weight: 600; /* Жирность текста */
    text-align: center; /* Центрирование текста */
}
.benefits:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: var(--gradient);
}

.benefits-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.benefit-card {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.benefit-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.benefit-icon {
    font-size: 2.75rem;
    color: var(--primary);
    margin-bottom: 1.75rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(164, 200, 225, 0.1) 100%);
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.15) 0%, rgba(164, 200, 225, 0.15) 100%);
}

.benefit-title {
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.benefit-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

/* Modal window */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--card-bg);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    width: 100%;
    max-width: 550px;
    box-shadow: var(--shadow-xl);
    transform: translateY(20px);
    transition: var(--transition);
    position: relative;
    margin: 1rem;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    background-color: var(--accent);
    color: white;
}

.modal-title {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 0 0 25px;
    text-align: center;
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text);
    font-weight: 500;
    font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
}

.form-submit {
    width: 100%;
    padding: 1.25rem;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.2);
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
}

.form-submit i {
    margin-left: 0.75rem;
    transition: transform 0.3s ease;
}

.form-submit:hover i {
    transform: translateX(5px);
}

.file-upload {
    display: flex;
    align-items: center;
    margin-top: 0.75rem;
}

.file-upload-label {
    background-color: var(--border);
    color: var(--text);
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.file-upload-label:hover {
    background-color: #dee2e6;
}

.file-upload-label i {
    margin-right: 0.75rem;
}

.file-name {
    margin-left: 1.25rem;
    font-size: 0.95rem;
    color: var(--text-light);
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Navigation Styles */
.svn-navbar {
    background: linear-gradient(135deg, #3A7BD5, #2A5298);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.svn-navbar.scrolled {
    background: linear-gradient(135deg, #4A90E2, #003D66);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.1);
}

.navbar-logo i {
    font-size: 2rem;
    color: var(--accent);
}

.navbar-logo span {
    font-weight: 700;
    color: white;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
}

.navbar-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.navbar-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

a {
    text-decoration: none;
}

.navbar-links a {
    color: white;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
}

.navbar-links a:hover {
    color: var(--accent);
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: all 0.3s ease;
}

.navbar-links a:hover::after {
    width: 100%;
}

.navbar-actions {
    display: flex;
    gap: 15px;
}

.navbar-button {
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-button.primary {
    background-color: var(--accent);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.navbar-button.primary:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.navbar-button.secondary {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.navbar-button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.mobile-menu-button:hover {
    transform: rotate(90deg);
}

/* Footer Styles */
.footer {
    background-color: #2D3748;
    color: white;
    padding: 40px 20px;
    position: relative;
}
.licenses-list {
    margin-top: 10px;
}

.licenses-list a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.licenses-list a:hover {
    color: white;
    text-decoration: underline;
}

.licenses-links {
    display: flex;
    align-items: left;
    flex-direction: column;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.7);
    gap: 5px;
    flex-wrap: wrap;
}

.licenses-links a {
    color: #fff;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.licenses-links a:hover {
    color: #4a90e2;
    text-decoration: underline;
}
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.footer-about {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-logo span {
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.footer-about-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0 0 15px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background-color: var(--accent);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(255, 107, 53, 0.3);
}

.footer-links h3 {
    font-size: 1.1rem;
    color: white;
    margin: 0 0 15px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--accent);
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-block;
    padding: 3px 0;
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-contacts .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contacts .contact-item i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-contacts .contact-item a:hover {
    color: white;
    text-decoration: underline;
}


.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    transition: var(--transition);
    text-decoration: none;
}

.footer-legal a:hover {
    color: white;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .section-title {
        font-size: 2.5rem;
    }

    .vacancy-image-container {
        width: 220px;
        min-width: 220px;
    }
}

@media (max-width: 992px) {
    .header {
        padding: 100px 0;
    }

    .header-title {
        font-size: 2.8rem;
    }

    .vacancies {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 80px 0;
        clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
    }
    .svn-navbar{display:none;}
    .header-title {
        font-size: 2.3rem;
    }

    .header-description {
        font-size: 1.15rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .vacancy-card {
        flex-direction: column;
    }

    .vacancy-image-container {
        width: 100%;
        height: 250px;
        min-width: auto;
    }

    .vacancy-header {
        flex-direction: column;
        gap: 1rem;
    }

    .vacancy-salary {
        margin-left: 0;
    }

    .vacancy-field {
        flex-direction: column;
        gap: 1rem;
    }

    .field-icon {
        margin-bottom: 0.5rem;
    }

    .benefits-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 0 20px;
    }

    .footer-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 576px) {
    .header-title {
        font-size: 2rem;
    }

    .header-description {
        font-size: 1.05rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }

    .vacancies-list {
        padding: 0 1rem;
    }

    .vacancy-content {
        padding: 1.5rem;
    }

    .modal-content {
        padding: 1.75rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade {
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.animate-pulse {
    animation: pulse 2s infinite;
}