.additional-works-section {
        width: 100%;
        padding: 100px 0;
        background: linear-gradient(135deg, 
            #f8fafc 0%, 
            #f1f8ff 50%, 
            #e8f4fd 100%);
        position: relative;
        overflow: hidden;
    }

    .additional-works-section .container {
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 2;
    }

    .additional-works-section .section-title {
        text-align: center;
        margin-bottom: 70px;
    }

    .additional-works-section .section-title h2 {
        font-size: 2.8rem;
        font-weight: 800;
        color: #1a2a3a;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }

    .additional-works-section .section-title h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #27ae60, #2ecc71);
        border-radius: 2px;
    }

    .additional-works-section .section-title p {
        font-size: 1.3rem;
        color: #5a6c7d;
        max-width: 700px;
        margin: 25px auto 0;
        line-height: 1.6;
    }

    .additional-works-section .works-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 30px;
        margin-bottom: 70px;
    }

    .additional-works-section .work-card {
        background: white;
        border-radius: 20px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 
            0 5px 20px rgba(0, 0, 0, 0.05),
            0 1px 5px rgba(0, 0, 0, 0.03);
        border: 1px solid rgba(0, 0, 0, 0.05);
        overflow: hidden;
        position: relative;
    }

    .additional-works-section .work-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, #27ae60, #2ecc71);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .additional-works-section .work-card:hover {
        transform: translateY(-10px);
        box-shadow: 
            0 20px 40px rgba(0, 0, 0, 0.1),
            0 8px 16px rgba(39, 174, 96, 0.1);
    }

    .additional-works-section .work-card:hover::before {
        transform: scaleX(1);
    }

    .additional-works-section .work-card-inner {
        padding: 35px 30px;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .additional-works-section .work-icon {
        position: relative;
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }

    .additional-works-section .work-icon i {
        font-size: 2.5rem;
        color: #27ae60;
        position: relative;
        z-index: 2;
        transition: all 0.3s ease;
    }

    .additional-works-section .work-card:hover .work-icon i {
        color: white;
        transform: scale(1.1);
    }

    .additional-works-section .icon-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #27ae60, #2ecc71);
        border-radius: 18px;
        transform: scale(0);
        transition: transform 0.4s ease;
        opacity: 0.9;
    }

    .additional-works-section .work-card:hover .icon-bg {
        transform: scale(1);
    }

    .additional-works-section .work-card h3 {
        font-size: 1.4rem;
        font-weight: 700;
        color: #1a2a3a;
        margin-bottom: 15px;
        transition: color 0.3s ease;
    }

    .additional-works-section .work-card:hover h3 {
        color: #27ae60;
    }

    .additional-works-section .work-card p {
        font-size: 1.05rem;
        line-height: 1.7;
        color: #5a6c7d;
        margin-bottom: 20px;
        flex-grow: 1;
    }

    .additional-works-section .work-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 10px;
    }

    .additional-works-section .tag {
        background: rgba(39, 174, 96, 0.1);
        color: #27ae60;
        font-size: 0.85rem;
        font-weight: 600;
        padding: 5px 12px;
        border-radius: 50px;
        transition: all 0.3s ease;
    }

    .additional-works-section .work-card:hover .tag {
        background: rgba(39, 174, 96, 0.2);
        transform: translateY(-2px);
    }

    .additional-works-section .works-description {
        margin-top: 40px;
    }

    .additional-works-section .description-card {
        background: white;
        border-radius: 25px;
        padding: 50px;
        box-shadow: 
            0 10px 40px rgba(0, 0, 0, 0.08),
            0 5px 15px rgba(39, 174, 96, 0.1);
        border: 1px solid rgba(39, 174, 96, 0.1);
        position: relative;
        overflow: hidden;
    }

    .additional-works-section .description-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 8px;
        height: 100%;
        background: linear-gradient(to bottom, #27ae60, #2ecc71);
    }

    .additional-works-section .description-header {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 25px;
    }

    .additional-works-section .description-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #27ae60, #2ecc71);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .additional-works-section .description-icon i {
        font-size: 1.8rem;
        color: white;
    }

    .additional-works-section .description-card h3 {
        font-size: 1.8rem;
        font-weight: 700;
        color: #1a2a3a;
        margin: 0;
    }

    .additional-works-section .description-text {
        font-size: 1.15rem;
        line-height: 1.8;
        color: #5a6c7d;
        margin-bottom: 40px;
        padding-left: 80px;
    }

    .additional-works-section .capabilities {
        margin-top: 40px;
        padding-top: 40px;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .additional-works-section .capabilities-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 30px;
    }

    .additional-works-section .capabilities-icon {
        width: 40px;
        height: 40px;
        background: rgba(39, 174, 96, 0.1);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .additional-works-section .capabilities-icon i {
        font-size: 1.3rem;
        color: #27ae60;
    }

    .additional-works-section .capabilities h4 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1a2a3a;
        margin: 0;
    }

    .additional-works-section .capabilities-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .additional-works-section .capability-item {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 20px;
        background: rgba(39, 174, 96, 0.03);
        border-radius: 15px;
        border: 1px solid rgba(39, 174, 96, 0.08);
        transition: all 0.3s ease;
    }

    .additional-works-section .capability-item:hover {
        background: rgba(39, 174, 96, 0.08);
        transform: translateX(10px);
        border-color: rgba(39, 174, 96, 0.2);
    }

    .additional-works-section .capability-item i {
        font-size: 1.5rem;
        color: #27ae60;
        flex-shrink: 0;
    }

    .additional-works-section .capability-item div {
        display: flex;
        flex-direction: column;
    }

    .additional-works-section .capability-item strong {
        font-size: 1.1rem;
        font-weight: 600;
        color: #1a2a3a;
        margin-bottom: 5px;
    }

    .additional-works-section .capability-item span {
        font-size: 0.95rem;
        color: #5a6c7d;
    }

    .additional-works-section .description-footer {
        margin-top: 50px;
        text-align: center;
    }

    .additional-works-section .cta-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
        color: white;
        font-size: 1.2rem;
        font-weight: 600;
        padding: 18px 40px;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 
            0 5px 20px rgba(39, 174, 96, 0.3),
            0 2px 8px rgba(0, 0, 0, 0.1);
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .additional-works-section .cta-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #1e8449 0%, #27ae60 100%);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
        border-radius: 50px;
    }

    .additional-works-section .cta-button:hover {
        transform: translateY(-5px);
        box-shadow: 
            0 12px 30px rgba(39, 174, 96, 0.4),
            0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .additional-works-section .cta-button:hover::before {
        opacity: 1;
    }

    .additional-works-section .cta-button i {
        font-size: 1.1rem;
        transition: transform 0.3s ease;
    }

    .additional-works-section .cta-button:hover i {
        transform: translateX(8px);
    }

    /* Декоративные элементы */
    .additional-works-section .decor-shape {
        position: absolute;
        border-radius: 50%;
        z-index: 1;
        opacity: 0.1;
    }

    .additional-works-section .decor-shape-1 {
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, #27ae60 0%, transparent 70%);
        top: 10%;
        left: 5%;
        animation: float 20s infinite ease-in-out;
    }

    .additional-works-section .decor-shape-2 {
        width: 150px;
        height: 150px;
        background: radial-gradient(circle, #3498db 0%, transparent 70%);
        bottom: 15%;
        right: 10%;
        animation: float 25s infinite ease-in-out reverse;
    }

    .additional-works-section .decor-shape-3 {
        width: 100px;
        height: 100px;
        background: radial-gradient(circle, #9b59b6 0%, transparent 70%);
        top: 40%;
        right: 20%;
        animation: float 30s infinite ease-in-out;
    }

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

    /* Анимация появления элементов */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .additional-works-section .work-card,
    .additional-works-section .description-card {
        animation: fadeInUp 0.8s ease forwards;
        opacity: 0;
    }

    .additional-works-section .work-card:nth-child(1) { animation-delay: 0.1s; }
    .additional-works-section .work-card:nth-child(2) { animation-delay: 0.2s; }
    .additional-works-section .work-card:nth-child(3) { animation-delay: 0.3s; }
    .additional-works-section .work-card:nth-child(4) { animation-delay: 0.4s; }
    .additional-works-section .work-card:nth-child(5) { animation-delay: 0.5s; }
    .additional-works-section .work-card:nth-child(6) { animation-delay: 0.6s; }
    .additional-works-section .description-card { animation-delay: 0.8s; }

    /* Адаптивность */
    @media (max-width: 1200px) {
        .additional-works-section .works-grid {
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        }
    }

    @media (max-width: 992px) {
        .additional-works-section {
            padding: 80px 0;
        }
        
        .additional-works-section .section-title h2 {
            font-size: 2.4rem;
        }
        
        .additional-works-section .section-title p {
            font-size: 1.2rem;
        }
        
        .additional-works-section .works-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }
        
        .additional-works-section .description-card {
            padding: 40px 30px;
        }
        
        .additional-works-section .description-text {
            padding-left: 0;
        }
        
        .additional-works-section .capabilities-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .additional-works-section {
            padding: 70px 0;
        }
        
        .additional-works-section .section-title h2 {
            font-size: 2.2rem;
        }
        
        .additional-works-section .section-title p {
            font-size: 1.1rem;
        }
        
        .additional-works-section .works-grid {
            grid-template-columns: 1fr;
            max-width: 500px;
            margin: 0 auto 50px;
        }
        
        .additional-works-section .work-card-inner {
            padding: 30px 25px;
        }
        
        .additional-works-section .description-header {
            flex-direction: column;
            text-align: center;
            gap: 15px;
        }
        
        .additional-works-section .capabilities-grid {
            grid-template-columns: 1fr;
        }
        
        .additional-works-section .decor-shape {
            display: none;
        }
    }

    @media (max-width: 480px) {
        .additional-works-section {
            padding: 60px 0;
        }
        
        .additional-works-section .section-title h2 {
            font-size: 2rem;
        }
        
        .additional-works-section .description-card {
            padding: 30px 20px;
        }
        
        .additional-works-section .description-card h3 {
            font-size: 1.5rem;
        }
        
        .additional-works-section .cta-button {
            width: 100%;
            justify-content: center;
        }
    }