/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background:
        radial-gradient(circle at 20% 50%, rgba(45, 80, 22, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(62, 107, 31, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    background-attachment: fixed;
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%;
    scroll-behavior: smooth;
    min-height: 100vh;
}

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

/* ==========================================================================
   HEADER
   ========================================================================== */

.header {
    background: rgba(45, 80, 22, 0.95);
    backdrop-filter: blur(20px);
    color: white;
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-emblem {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.logo-text h1 {
    font-size: 1.5rem;
    margin: 0;
    line-height: 1.2;
}

.logo-text p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.2;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: #ffd700;
}

.nav-link.active {
    color: #ffd700 !important;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 2px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: -2;
    will-change: transform;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.7), rgba(62, 107, 31, 0.6));
    z-index: -1;
}

.hero-content {
    text-align: center;
    padding: 50px 30px;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    margin: 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 215, 0, 0.9);
    color: #2d5016;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    line-height: 1.2;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 20px;
    opacity: 0.95;
    font-weight: 400;
    animation: fadeInUp 0.6s ease 0.6s both;
}

.special-offer {
    background: rgba(255, 215, 0, 0.95);
    color: #2d5016;
    padding: 20px;
    border-radius: 10px;
    margin: 25px auto 30px;
    max-width: 800px;
    text-align: center;
    animation: fadeInUp 0.6s ease 0.7s both;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.special-offer h3 {
    font-size: 1.6rem;
    margin: 0 0 10px 0;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.special-offer p {
    font-size: 1.2rem;
    margin: 0;
    font-weight: 500;
}

.graduates-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border: 2px solid #2d5016;
}

.graduates-note i {
    color: #2d5016;
    font-size: 1.3rem;
}

.graduates-note span {
    color: #2d5016;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease 0.8s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    animation: fadeInUp 0.6s ease 1s both;
    flex-wrap: wrap;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    color: white;
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.6);
    background: linear-gradient(135deg, #ff8c00, #ff6b00);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffd700;
    border-color: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.btn-alt {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #2d5016;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    border: 2px solid transparent;
}

.btn-alt:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */

.section {
    padding: 100px 0;
    position: relative;
}

.section-alt {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.section-transparent {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(25px);
    border-radius: 32px;
    margin: 60px 20px 120px 20px;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 10px 40px rgba(0, 0, 0, 0.08),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.section-transparent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    border-radius: 32px 32px 0 0;
}

.section-transparent::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    border-radius: 32px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2d5016;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-title i {
    color: #ffd700;
}

/* ==========================================================================
   UNIFIED CARD SYSTEM (для всех карточек: задачи, льготы, требования, этапы)
   ========================================================================== */

.cards-grid, .benefits-grid, .requirements-grid, .employment-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.employment-steps {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* Общий базовый стиль для всех карточек */
.card, .benefit-item, .requirement-item, .step {
    text-align: center;
    padding: 35px 25px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

/* Shimmer эффект для всех карточек */
.card::before, .benefit-item::before, .requirement-item::before, .step::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.card:hover::before, .benefit-item:hover::before, .requirement-item:hover::before, .step:hover::before {
    left: 100%;
}

/* Hover эффекты для всех карточек */
.card:hover, .benefit-item:hover, .requirement-item:hover, .step:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.12),
        0 20px 60px rgba(0, 0, 0, 0.08),
        inset 0 2px 0 rgba(255, 255, 255, 0.7),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

/* Иконки для всех карточек */
.card i, .benefit-item i, .requirement-item i {
    font-size: 3.5rem;
    color: #2d5016;
    margin-bottom: 25px;
    display: block;
}

/* Заголовки для всех карточек */
.card h3, .benefit-item h3, .requirement-item h3, .step h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2d5016;
}

/* Описания для всех карточек */
.card p, .benefit-item p, .requirement-item p, .step p {
    color: #666;
    line-height: 1.6;
}

/* Requirements теперь используют общую систему карточек выше */

/* Employment steps теперь используют общую систему карточек выше */

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2d5016, #3e6b1f, #4d7f28);
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow:
        0 10px 20px rgba(45, 80, 22, 0.3),
        0 6px 16px rgba(45, 80, 22, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow:
        0 15px 30px rgba(45, 80, 22, 0.4),
        0 8px 20px rgba(45, 80, 22, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2d5016;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* ==========================================================================
   SALARY SECTION
   ========================================================================== */

.salary-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.salary-main {
    text-align: center;
}

.salary-amount {
    font-size: 3.5rem;
    font-weight: bold;
    color: #2d5016;
    margin-bottom: 10px;
}

.salary-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.salary-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.salary-item i {
    color: #2d5016;
    font-size: 1.2rem;
}

/* ==========================================================================
   ACCORDION STYLES (для institutes.html)
   ========================================================================== */

.institutes-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 4px 16px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-5px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.accordion-header {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    position: relative;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.1);
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.3rem;
    color: #2d5016;
    font-weight: 600;
}

.accordion-header i {
    font-size: 1.2rem;
    color: #2d5016;
    transition: transform 0.3s ease;
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255, 255, 255, 0.2);
}

.accordion-content.active {
    max-height: 600px;
}

.institute-info {
    padding: 25px 30px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
}

.institute-details p {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #333;
}

.institute-details strong {
    color: #2d5016;
    font-weight: 600;
}

.institute-details ul {
    margin: 8px 0 12px 20px;
    color: #333;
}

.institute-details ul li {
    margin-bottom: 5px;
}

.institute-benefits h4 {
    color: #2d5016;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.institute-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.institute-benefits ul li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: #333;
    line-height: 1.5;
}

.institute-benefits ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d5016;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Стили для экзаменов */
.institute-exams h4 {
    color: #2d5016;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.exam-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.exam-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(45, 80, 22, 0.1);
    border-radius: 12px;
    border-left: 4px solid #2d5016;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.exam-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.4s ease;
}

.exam-item:hover::before {
    left: 100%;
}

.exam-item:hover {
    background: rgba(45, 80, 22, 0.15);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.2);
}

.exam-item.special {
    background: rgba(255, 215, 0, 0.2);
    border-left-color: #ffd700;
}

.exam-item.special:hover {
    background: rgba(255, 215, 0, 0.3);
}

.exam-name {
    font-weight: 500;
    color: #333;
    flex: 1;
}

.exam-score {
    font-weight: 600;
    color: #2d5016;
    background: rgba(255, 255, 255, 0.8);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(45, 80, 22, 0.2);
}

.exam-item.special .exam-score {
    background: rgba(255, 215, 0, 0.8);
    color: #2d5016;
    border-color: rgba(255, 215, 0, 0.5);
}

/* Мобильная версия аккордеона */
@media (max-width: 768px) {
    .institute-info {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 25px;
    }

    .accordion-content.active {
        max-height: 800px;
    }

    .accordion-header {
        padding: 20px 25px;
    }

    .accordion-header h3 {
        font-size: 1.1rem;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .institutes-accordion {
        margin: 0 -10px;
    }

    .accordion-item {
        border-radius: 12px;
        margin-bottom: 15px;
    }

    .accordion-header {
        padding: 18px 20px;
    }

    .accordion-header h3 {
        font-size: 1rem;
        line-height: 1.2;
    }

    .institute-info {
        padding: 18px 20px;
    }

    .accordion-content.active {
        max-height: 1200px;
    }
}

/* ==========================================================================
   FEEDBACK SECTION
   ========================================================================== */

.feedback-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.feedback-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

@media (max-width: 1024px) {
    .feedback-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.feedback-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #2d5016;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 16px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 8px 32px rgba(0, 0, 0, 0.06),
        inset 0 2px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.12),
        0 15px 50px rgba(0, 0, 0, 0.08),
        inset 0 2px 0 rgba(255, 255, 255, 0.7),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.contact-item i {
    color: #2d5016;
    font-size: 1.3rem;
    width: 20px;
}

.telegram-link {
    color: #0088cc;
    text-decoration: none;
    font-weight: 500;
}

.telegram-link:hover {
    text-decoration: underline;
}

/* Form */
.feedback-form {
    background: rgba(255, 255, 255, 0.25);
    padding: 40px;
    border-radius: 24px;
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 10px 40px rgba(0, 0, 0, 0.08),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feedback-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    border-radius: 24px 24px 0 0;
}

.feedback-form h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #2d5016;
    text-align: center;
}

.feedback-form input,
.feedback-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.feedback-form input:focus,
.feedback-form textarea:focus {
    outline: none;
    border-color: #2d5016;
}

.feedback-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    background: #2d5016;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.footer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-contacts {
    text-align: right;
}

/* ==========================================================================
   MOBILE NAVIGATION
   ========================================================================== */

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        order: 1;
    }

    .nav-toggle {
        display: flex;
        order: 2;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(45, 80, 22, 0.95);\n        backdrop-filter: blur(20px);\n        border: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 15px;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .nav.active {
        transform: translateY(0);
    }

    .nav-link {
        padding: 10px 20px;
    }

    .logo-emblem {
        height: 50px;
    }

    .hero {
        min-height: 100vh;
        padding: 0;
    }

    .hero-content {
        padding: 30px 20px;
        margin: 20px 10px;
        border-radius: 16px;
    }

    .hero-content h2 {
        font-size: 2rem;
        margin-bottom: 15px;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
        margin-bottom: 20px;
    }

    .special-offer {
        margin: 15px auto 20px;
        padding: 15px;
    }

    .special-offer h3 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .special-offer p {
        font-size: 1rem;
    }

    .graduates-note {
        flex-direction: column;
        gap: 8px;
        padding: 10px 15px;
    }

    .graduates-note span {
        font-size: 0.9rem;
    }

    .hero-stats {
        flex-direction: row;
        gap: 15px;
        margin-bottom: 25px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }

    .section-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }

    .salary-info,
    .feedback-content,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-contacts {
        text-align: center;
    }

    .salary-amount {
        font-size: 2.5rem;
    }

    .employment-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step {
        padding: 30px 20px;
    }

    .feedback-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feedback-info {
        grid-template-columns: 1fr;
    }

    .requirements-grid, .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

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

    .hero {
        min-height: 100vh;
        padding: 0;
    }

    .hero-content {
        padding: 25px 15px;
        margin: 15px 5px;
        border-radius: 12px;
    }

    .hero-content h2 {
        font-size: 1.7rem;
        margin-bottom: 12px;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 5px 12px;
        margin-bottom: 15px;
    }

    .special-offer {
        margin: 12px auto 18px;
        padding: 12px;
    }

    .special-offer h3 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }

    .special-offer p {
        font-size: 0.9rem;
    }

    .hero-stats {
        flex-direction: row;
        gap: 10px;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 260px;
    }

    .section {
        padding: 50px 0;
    }

    .section-transparent {
        margin: 40px 15px 120px 15px;
    }

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

    .cards-grid,
    .benefits-grid,
    .requirements-grid,
    .employment-steps {
        grid-template-columns: 1fr;
    }

    .feedback-form {
        padding: 25px;
    }
}

/* ==========================================================================
   ACCESSIBILITY & MODERN FEATURES
   ========================================================================== */

@supports (scroll-behavior: smooth) {
    html {
        scroll-behavior: smooth;
    }
}

*:focus-visible {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
    border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-background {
        transform: none !important;
    }
}

.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}