/* Стили для Scanning Process секции */
    .scanning-process-section {
        width: 100%;
        padding: 100px 0;
        background: linear-gradient(135deg, 
            #ffffff 0%, 
            #f9fbfd 50%, 
            #f2f7fc 100%);
        position: relative;
        overflow: hidden;
    }

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

    .scanning-process-section .section-title {
        text-align: center;
        margin-bottom: 70px;
    }

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

    .scanning-process-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;
    }

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

    .scanning-process-section .process-steps {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        margin-bottom: 50px;
        position: relative;
    }

    .scanning-process-section .process-step {
        position: relative;
        z-index: 2;
    }

    .scanning-process-section .step-card {
        background: white;
        border-radius: 20px;
        padding: 40px 30px;
        text-align: center;
        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);
        position: relative;
        overflow: hidden;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .scanning-process-section .step-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;
    }

    .scanning-process-section .step-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);
    }

    .scanning-process-section .step-card:hover::before {
        transform: scaleX(1);
    }

    .scanning-process-section .step-number-wrapper {
        position: relative;
        width: 100%;
        margin-bottom: 30px;
    }

    .scanning-process-section .step-number {
        font-size: 3.5rem;
        font-weight: 900;
        color: rgba(39, 174, 96, 0.1);
        line-height: 1;
        transition: all 0.3s ease;
        display: inline-block;
    }

    .scanning-process-section .step-card:hover .step-number {
        color: rgba(39, 174, 96, 0.2);
        transform: scale(1.1);
    }

    .scanning-process-section .step-line {
        position: absolute;
        top: 50%;
        left: 60px;
        right: -15px;
        height: 2px;
        background: linear-gradient(90deg, rgba(39, 174, 96, 0.2), transparent);
        transform: translateY(-50%);
    }

    .scanning-process-section .step-line-end {
        position: absolute;
        top: 50%;
        left: 60px;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, rgba(39, 174, 96, 0.2), transparent);
        transform: translateY(-50%);
    }

    .scanning-process-section .step-icon-container {
        position: relative;
        width: 90px;
        height: 90px;
        margin-bottom: 25px;
    }

    .scanning-process-section .step-icon-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #27ae60, #2ecc71);
        border-radius: 50%;
        opacity: 0.1;
        transition: all 0.4s ease;
        transform: scale(0.8);
    }

    .scanning-process-section .step-card:hover .step-icon-bg {
        opacity: 0.2;
        transform: scale(1);
    }

    .scanning-process-section .step-icon {
        font-size: 2.8rem;
        color: #27ae60;
        position: relative;
        z-index: 2;
        line-height: 90px;
        transition: all 0.3s ease;
    }

    .scanning-process-section .step-card:hover .step-icon {
        color: #2ecc71;
        transform: scale(1.1);
    }

    .scanning-process-section .step-card h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1a2a3a;
        margin-bottom: 15px;
        transition: color 0.3s ease;
    }

    .scanning-process-section .step-card:hover h3 {
        color: #27ae60;
    }

    .scanning-process-section .step-card > p {
        font-size: 1.05rem;
        line-height: 1.7;
        color: #5a6c7d;
        margin-bottom: 25px;
        flex-grow: 1;
    }

    .scanning-process-section .step-details {
        width: 100%;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        text-align: left;
    }

    .scanning-process-section .step-details ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .scanning-process-section .step-details li {
        font-size: 0.95rem;
        color: #5a6c7d;
        margin-bottom: 8px;
        padding-left: 20px;
        position: relative;
    }

    .scanning-process-section .step-details li::before {
        content: '•';
        position: absolute;
        left: 0;
        color: #27ae60;
        font-weight: bold;
        font-size: 1.2rem;
    }

    .scanning-process-section .step-time {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
        padding: 10px 20px;
        background: rgba(39, 174, 96, 0.05);
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 600;
        color: #27ae60;
        width: 100%;
    }

    .scanning-process-section .step-time i {
        font-size: 1rem;
    }

    .scanning-process-section .step-result {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
        padding: 12px 25px;
        background: linear-gradient(135deg, #27ae60, #2ecc71);
        border-radius: 25px;
        font-size: 1rem;
        font-weight: 600;
        color: white;
        width: 100%;
        box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
    }

    .scanning-process-section .step-result i {
        font-size: 1.2rem;
    }

    .scanning-process-section .process-timeline {
        position: relative;
        height: 4px;
        margin: 40px auto 80px;
        max-width: 90%;
    }

    .scanning-process-section .timeline-line {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 4px;
        background: rgba(0, 0, 0, 0.1);
        border-radius: 2px;
        transform: translateY(-50%);
    }

    .scanning-process-section .timeline-dot {
        position: absolute;
        top: 50%;
        width: 20px;
        height: 20px;
        background: linear-gradient(135deg, #27ae60, #2ecc71);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        box-shadow: 0 0 0 8px rgba(39, 174, 96, 0.1);
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.4);
        }
        70% {
            box-shadow: 0 0 0 15px rgba(39, 174, 96, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(39, 174, 96, 0);
        }
    }

    .scanning-process-section .process-summary {
        max-width: 900px;
        margin: 0 auto;
    }

    .scanning-process-section .summary-card {
        background: white;
        border-radius: 25px;
        padding: 40px;
        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);
        display: flex;
        align-items: center;
        gap: 30px;
        position: relative;
        overflow: hidden;
    }

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

    .scanning-process-section .summary-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #27ae60, #2ecc71);
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .scanning-process-section .summary-icon i {
        font-size: 2rem;
        color: white;
    }

    .scanning-process-section .summary-content {
        flex-grow: 1;
    }

    .scanning-process-section .summary-content h4 {
        font-size: 1.6rem;
        font-weight: 700;
        color: #1a2a3a;
        margin-bottom: 10px;
    }

    .scanning-process-section .summary-content .highlight {
        color: #27ae60;
    }

    .scanning-process-section .summary-content p {
        font-size: 1.1rem;
        line-height: 1.6;
        color: #5a6c7d;
        margin: 0;
    }

    .scanning-process-section .summary-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: white;
        color: #27ae60;
        font-size: 1rem;
        font-weight: 600;
        padding: 12px 25px;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 
            0 5px 15px rgba(39, 174, 96, 0.15),
            inset 0 0 0 2px #27ae60;
        border: 2px solid transparent;
        flex-shrink: 0;
    }

    .scanning-process-section .summary-btn:hover {
        background: #27ae60;
        color: white;
        transform: translateY(-3px);
        box-shadow: 
            0 10px 25px rgba(39, 174, 96, 0.3);
    }

    .scanning-process-section .summary-btn i {
        font-size: 1.1rem;
    }

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

    .scanning-process-section .decor-1 {
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, #27ae60 0%, transparent 70%);
        top: 10%;
        left: -100px;
        animation: rotate 30s infinite linear;
    }

    .scanning-process-section .decor-2 {
        width: 150px;
        height: 150px;
        background: radial-gradient(circle, #3498db 0%, transparent 70%);
        bottom: 20%;
        right: -75px;
        animation: rotate 25s infinite linear reverse;
    }

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

    @keyframes rotate {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

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

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

    .scanning-process-section .step-card,
    .scanning-process-section .summary-card {
        animation: fadeInUp 0.6s ease forwards;
        opacity: 0;
    }

    .scanning-process-section .step-card:nth-child(1) { animation-delay: 0.1s; }
    .scanning-process-section .step-card:nth-child(2) { animation-delay: 0.2s; }
    .scanning-process-section .step-card:nth-child(3) { animation-delay: 0.3s; }
    .scanning-process-section .step-card:nth-child(4) { animation-delay: 0.4s; }
    .scanning-process-section .summary-card { animation-delay: 0.5s; }

    /* Адаптивность */
    @media (max-width: 1200px) {
        .scanning-process-section .process-steps {
            gap: 20px;
        }
        
        .scanning-process-section .step-card {
            padding: 30px 20px;
        }
        
        .scanning-process-section .summary-card {
            gap: 25px;
            padding: 35px 30px;
        }
    }

    @media (max-width: 992px) {
        .scanning-process-section {
            padding: 80px 0;
        }
        
        .scanning-process-section .section-title h2 {
            font-size: 2.4rem;
        }
        
        .scanning-process-section .section-title p {
            font-size: 1.2rem;
        }
        
        .scanning-process-section .process-steps {
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        
        .scanning-process-section .step-line,
        .scanning-process-section .step-line-end {
            display: none;
        }
        
        .scanning-process-section .process-timeline {
            display: none;
        }
        
        .scanning-process-section .summary-card {
            flex-direction: column;
            text-align: center;
            gap: 20px;
        }
    }

    @media (max-width: 768px) {
        .scanning-process-section {
            padding: 70px 0;
        }
        
        .scanning-process-section .section-title h2 {
            font-size: 2.2rem;
        }
        
        .scanning-process-section .section-title p {
            font-size: 1.1rem;
        }
        
        .scanning-process-section .process-steps {
            grid-template-columns: 1fr;
            max-width: 500px;
            margin: 0 auto 40px;
        }
        
        .scanning-process-section .step-card {
            padding: 35px 25px;
        }
        
        .scanning-process-section .summary-content h4 {
            font-size: 1.4rem;
        }
        
        .scanning-process-section .scan-decor {
            display: none;
        }
    }

    @media (max-width: 480px) {
        .scanning-process-section {
            padding: 60px 0;
        }
        
        .scanning-process-section .section-title h2 {
            font-size: 2rem;
        }
        
        .scanning-process-section .step-card {
            padding: 30px 20px;
        }
        
        .scanning-process-section .step-icon-container {
            width: 80px;
            height: 80px;
        }
        
        .scanning-process-section .step-icon {
            font-size: 2.5rem;
            line-height: 80px;
        }
        
        .scanning-process-section .step-card h3 {
            font-size: 1.4rem;
        }
        
        .scanning-process-section .summary-card {
            padding: 30px 20px;
        }
        
        .scanning-process-section .summary-btn {
            width: 100%;
        }
    }