/* About Section Styles */
.about-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    position: relative;
}

.professional-intro {
    margin-bottom: 40px;
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(126, 87, 194, 0.1), rgba(38, 166, 154, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.professional-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.intro-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.intro-icon {
    font-size: 32px;
}

.main-heading {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.professional-intro p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

.tech-capabilities {
    background: rgba(255, 215, 0, 0.1);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid var(--gold);
    margin-top: 20px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.expertise-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 40px 0;
}

.expertise-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--gold);
    transition: all 0.3s ease;
}

.expertise-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.expertise-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.expertise-content h4 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 20px;
}

.expertise-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 16px;
}

.methodology-section {
    margin: 50px 0;
    padding: 30px;
    background: rgba(30, 30, 40, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.methodology-section h3 {
    font-size: 28px;
    color: white;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
}

.methodology-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.method-step {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.method-step:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.method-step::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 50px;
    bottom: -20px;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.method-step:last-child::before {
    display: none;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 22px;
    flex-shrink: 0;
    position: relative;
    z-index: 3;
}

.rem-step {
    background: linear-gradient(45deg, var(--purple), #5e43a3);
    color: white;
}

.iz-step {
    background: linear-gradient(45deg, var(--gold), #ffea00);
    color: #121212;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.step-icon {
    font-size: 20px;
}

.step-content h4 {
    color: var(--gold);
    margin-bottom: 8px;
    font-size: 18px;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.5;
}

.portfolio-showcase {
    margin: 50px 0;
}

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

.portfolio-icon {
    font-size: 28px;
}

.portfolio-showcase h3 {
    font-size: 26px;
    color: var(--gold);
    margin-bottom: 5px;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
}

.work-process-image {
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.work-process-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.work-process-image:hover img {
    transform: scale(1.02);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
    color: white;
    text-align: center;
    font-size: 14px;
}

.career-highlights {
    margin: 40px 0;
    padding: 25px;
    background: rgba(38, 166, 154, 0.1);
    border-radius: 12px;
    border-left: 4px solid var(--teal);
}

.highlight-title-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.highlight-icon {
    font-size: 32px;
}

.highlight-heading {
    color: var(--teal);
    margin-bottom: 0;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(38, 166, 154, 0.3);
}

.highlight-item {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--teal);
    transition: all 0.3s ease;
    position: relative;
}

.highlight-item:last-child {
    margin-bottom: 0;
}

.highlight-item::before {
    content: '';
    position: absolute;
    left: -3px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 0;
    background: var(--gold);
    border-radius: 3px;
    transition: height 0.3s ease;
}

.highlight-item:hover::before {
    height: 80%;
}

.highlight-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.highlight-year {
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 16px;
    display: inline-block;
    padding: 5px 12px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 20px;
}

.achievement-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.achievement-icon {
    font-size: 22px;
}

.highlight-content h4 {
    color: white;
    margin-bottom: 8px;
    font-size: 18px;
}

.highlight-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    font-size: 15px;
}

.promodj-hit {
    border-left: 3px solid #FF6B00 !important;
    background: rgba(255, 107, 0, 0.1) !important;
}

.promodj-hit .achievement-icon {
    color: #FF6B00;
}

.radio-hit {
    border-left: 3px solid #1DB954 !important;
    background: rgba(29, 185, 84, 0.1) !important;
}

.radio-hit .achievement-icon {
    color: #1DB954;
}

.license-feature {
    text-align: center;
    padding: 25px;
    background: rgba(126, 87, 194, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(126, 87, 194, 0.3);
    margin-top: 30px;
}

.license-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.license-feature h4 {
    color: var(--purple);
    margin-bottom: 10px;
    font-size: 20px;
}

.license-feature p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    line-height: 1.5;
}

.license-check-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.license-check-link:hover {
    color: var(--teal);
}

/* Адаптивность */
@media (max-width: 968px) {
    .about-content {
        flex-direction: column;
    }
    
    .method-step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .method-step::before {
        display: none;
    }
    
    .step-number {
        margin-bottom: 0;
    }
    
    .professional-intro {
        padding: 20px;
    }
    
    .main-heading {
        font-size: 26px;
    }
    
    .intro-header,
    .highlight-title-section {
        flex-direction: column;
        gap: 10px;
    }
    
    .expertise-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}