/* Process Section */
.process-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.process-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.process-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="process-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><rect width="100" height="100" fill="none"/><circle cx="20" cy="20" r="1" fill="%23A2DFCB" opacity="0.1"/><circle cx="80" cy="80" r="1" fill="%23B9ECDA" opacity="0.08"/><path d="M0,50 Q25,25 50,50 Q75,75 100,50" stroke="%23A2DFCB" stroke-width="0.5" fill="none" opacity="0.1"/><path d="M0,25 Q25,0 50,25 Q75,50 100,25" stroke="%23B9ECDA" stroke-width="0.3" fill="none" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23process-pattern)"/></svg>');
    opacity: 0.4;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-5px) translateY(-5px); }
    50% { transform: translateX(5px) translateY(5px); }
    75% { transform: translateX(-3px) translateY(3px); }
    100% { transform: translateX(0) translateY(0); }
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-shapes .shape {
    position: absolute;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

.floating-shapes .shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-shapes .shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-shapes .shape-3 {
    width: 40px;
    height: 40px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.floating-shapes .shape-4 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 25%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

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

/* Process Header */
.process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(9, 92, 84, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px solid rgba(9, 92, 84, 0.2);
    backdrop-filter: blur(10px);
    margin-bottom: 1.5rem;
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.process-badge i {
    font-size: 1rem;
    animation: spin 4s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.process-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Process Timeline Container */
.process-timeline-container {
    position: relative;
    margin: 4rem 0;
}

.timeline-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(162, 223, 203, 0.3);
    box-shadow: 
        0 20px 40px rgba(162, 223, 203, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.timeline-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(162, 223, 203, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(185, 236, 218, 0.08) 0%, transparent 50%);
    border-radius: 30px;
    animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Process Timeline */
.process-timeline {
    position: relative;
    padding: 4rem 2rem;
    z-index: 2;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 8%;
    right: 8%;
    height: 6px;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 25%, 
        var(--accent-color) 50%, 
        var(--secondary-color) 75%, 
        var(--primary-color) 100%);
    transform: translateY(-50%);
    z-index: 1;
    border-radius: 3px;
    box-shadow: 0 4px 15px rgba(162, 223, 203, 0.4);
    overflow: hidden;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(255, 255, 255, 0.6) 50%, 
        rgba(255, 255, 255, 0.3) 100%);
    border-radius: 3px;
    animation: progressFlow 3s ease-in-out infinite;
}

@keyframes progressFlow {
    0% { transform: translateX(-100%); width: 30%; }
    50% { transform: translateX(50%); width: 40%; }
    100% { transform: translateX(100%); width: 30%; }
}

/* Process Steps */
.process-step {
    position: relative;
    z-index: 3;
    margin-bottom: 2rem;
}

.step-number {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.number-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    box-shadow: 
        0 0 0 6px rgba(255, 255, 255, 1),
        0 0 0 8px var(--primary-color),
        0 10px 30px rgba(9, 92, 84, 0.3);
    animation: numberPulse 2s ease-in-out infinite;
}

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

.step-number span {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 2;
}

.step-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    animation: stepPulse 2s ease-in-out infinite;
}

@keyframes stepPulse {
    0% { transform: scale(0.8); opacity: 0; }
    50% { opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0; }
}

.step-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 
        0 15px 35px rgba(162, 223, 203, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(162, 223, 203, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 50px rgba(162, 223, 203, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(9, 92, 84, 0.3);
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

.card-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0;
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    flex: 1;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(9, 92, 84, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(9, 92, 84, 0.2);
}

.feature-tag i {
    font-size: 0.7rem;
}

.step-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-gray);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: auto;
}

.step-duration i {
    color: var(--primary-color);
}

/* Process Benefits */
.process-benefits {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    padding: 3rem;
    margin-top: 4rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(162, 223, 203, 0.3);
    box-shadow: 0 20px 40px rgba(162, 223, 203, 0.1);
}

.benefits-header {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefits-subtitle {
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(162, 223, 203, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(162, 223, 203, 0.15);
}

.benefit-icon {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-icon .icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(9, 92, 84, 0.1), rgba(162, 223, 203, 0.1));
    border-radius: 50%;
    border: 1px solid rgba(9, 92, 84, 0.2);
    animation: iconBg 3s ease-in-out infinite;
}

@keyframes iconBg {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.benefit-icon i {
    position: relative;
    z-index: 2;
}

.benefit-content {
    flex: 1;
}

.benefit-content h6 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.benefit-content p {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.benefit-metric {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.metric-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.metric-label {
    font-size: 0.8rem;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Process CTA */
.process-cta {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.process-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><rect width="20" height="20" fill="none"/><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
    opacity: 0.3;
    animation: patternMove 15s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.cta-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.cta-buttons .btn-primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-buttons .btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.cta-buttons .btn-outline-primary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.cta-buttons .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* New Process Steps Container */
.process-steps-container {
    position: relative;
    margin: 4rem 0;
    padding: 3rem 0;
}

.connection-line {
    position: absolute;
    top: 50%;
    left: 8%;
    right: 8%;
    height: 6px;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 25%, 
        var(--accent-color) 50%, 
        var(--secondary-color) 75%, 
        var(--primary-color) 100%);
    transform: translateY(-50%);
    z-index: 1;
    border-radius: 3px;
    box-shadow: 0 4px 15px rgba(162, 223, 203, 0.4);
}

.process-card {
    position: relative;
    z-index: 3;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 
        0 15px 35px rgba(162, 223, 203, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(162, 223, 203, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 25px 50px rgba(162, 223, 203, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.card-number {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.card-number .number-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    box-shadow: 
        0 0 0 6px rgba(255, 255, 255, 1),
        0 0 0 8px var(--primary-color),
        0 10px 30px rgba(9, 92, 84, 0.3);
    animation: numberPulse 2s ease-in-out infinite;
}

.card-number span {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 2;
}

.card-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    animation: stepPulse 2s ease-in-out infinite;
}

.card-icon {
    width: 60px;
    height: 60px;
    margin: 2rem auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(9, 92, 84, 0.3);
    animation: iconFloat 3s ease-in-out infinite;
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.card-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    flex: 1;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.card-features .feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(9, 92, 84, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(9, 92, 84, 0.2);
}

.card-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-gray);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: auto;
}

.card-duration i {
    color: var(--primary-color);
}

/* Process Stats Section */
.process-stats-section {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-top: 4rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(162, 223, 203, 0.3);
    box-shadow: 0 20px 40px rgba(162, 223, 203, 0.1);
}

.process-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.process-stats .stat-item {
    text-align: center;
    position: relative;
}

.process-stats .stat-item::after {
    content: '';
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 1px;
}

.process-stats .stat-item:last-child::after {
    display: none;
}

.process-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
}

.process-stats .stat-label {
    font-size: 0.9rem;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .process-stats {
        gap: 2rem;
    }
    
    .process-stats .stat-item::after {
        display: none;
    }
    
    .process-stats .stat-number {
        font-size: 2rem;
    }
    
    .connection-line {
        left: 5%;
        right: 5%;
    }
    
    .card-number {
        width: 60px;
        height: 60px;
        top: -30px;
    }
    
    .card-number .number-bg {
        box-shadow: 
            0 0 0 4px rgba(255, 255, 255, 1),
            0 0 0 6px var(--primary-color),
            0 8px 20px rgba(9, 92, 84, 0.3);
    }
    
    .card-number span {
        font-size: 1.2rem;
    }
    
    .process-card {
        padding: 2rem 1.5rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        margin: 1.5rem auto 1rem;
        font-size: 1.3rem;
    }
    
    .card-content h4 {
        font-size: 1.2rem;
    }
    
    .card-content p {
        font-size: 0.9rem;
    }
    
    .process-stats-section {
        padding: 2rem 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-item {
        padding: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Professional Process Container */
.professional-process-container {
    position: relative;
    margin: 4rem 0;
    padding: 3rem 0;
    z-index: 2;
}

.professional-process-container .process-timeline {
    position: relative;
    padding: 2rem 0;
}

.professional-process-container .timeline-line {
    position: absolute;
    top: 50%;
    left: 8%;
    right: 8%;
    height: 8px;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 25%, 
        var(--accent-color) 50%, 
        var(--secondary-color) 75%, 
        var(--primary-color) 100%);
    transform: translateY(-50%);
    z-index: 1;
    border-radius: 4px;
    box-shadow: 0 6px 20px rgba(162, 223, 203, 0.5);
    overflow: hidden;
}

.professional-process-container .timeline-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        rgba(255, 255, 255, 0.4) 50%, 
        rgba(255, 255, 255, 0.2) 100%);
    animation: progressFlow 4s ease-in-out infinite;
}

.professional-step-card {
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 2rem 1.5rem;
    box-shadow: 
        0 20px 40px rgba(162, 223, 203, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(162, 223, 203, 0.25);
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.professional-step-card:hover {
    transform: translateY(-15px);
    box-shadow: 
        0 30px 60px rgba(162, 223, 203, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.professional-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(162, 223, 203, 0.05) 0%, 
        rgba(185, 236, 218, 0.03) 50%, 
        rgba(215, 255, 237, 0.05) 100%);
    border-radius: 25px;
    z-index: -1;
}

.step-header {
    position: relative;
    text-align: center;
    margin-bottom: 2rem;
}

.step-number {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    z-index: 5;
    box-shadow: 
        0 0 0 8px rgba(255, 255, 255, 1),
        0 0 0 12px var(--primary-color),
        0 15px 40px rgba(9, 92, 84, 0.4);
    animation: numberPulse 3s ease-in-out infinite;
}

.step-connector {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    z-index: 4;
}

.timeline-badge {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    z-index: 6;
    box-shadow: 0 8px 25px rgba(162, 223, 203, 0.3);
    border: 2px solid var(--primary-color);
    animation: badgeFloat 2s ease-in-out infinite;
}

.step-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-icon-container {
    margin-bottom: 1.5rem;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba(9, 92, 84, 0.4);
    animation: iconFloat 4s ease-in-out infinite;
    transition: all 0.3s ease;
}

.professional-step-card:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(9, 92, 84, 0.5);
}

.step-content {
    flex: 1;
    width: 100%;
}

.step-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.step-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.feature-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(9, 92, 84, 0.08);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(9, 92, 84, 0.15);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(9, 92, 84, 0.12);
    transform: translateY(-2px);
}

.feature-item i {
    font-size: 0.8rem;
}

.step-duration {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-gray);
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: auto;
    padding: 0.5rem 1rem;
    background: rgba(108, 117, 125, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(108, 117, 125, 0.2);
}

.step-duration i {
    color: var(--primary-color);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .professional-process-container .timeline-line {
        left: 5%;
        right: 5%;
        height: 6px;
    }
    
    .step-number {
        width: 70px;
        height: 70px;
        top: -50px;
        font-size: 1.5rem;
        box-shadow: 
            0 0 0 6px rgba(255, 255, 255, 1),
            0 0 0 10px var(--primary-color),
            0 12px 30px rgba(9, 92, 84, 0.4);
    }
    
    .timeline-badge {
        width: 40px;
        height: 40px;
        top: -35px;
        font-size: 1rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .professional-step-card {
        padding: 1.5rem 1rem;
    }
    
    .step-features {
        gap: 0.5rem;
    }
    
    .feature-item {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .professional-process-container .timeline-line {
        left: 3%;
        right: 3%;
        height: 4px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        top: -40px;
        font-size: 1.3rem;
        box-shadow: 
            0 0 0 4px rgba(255, 255, 255, 1),
            0 0 0 8px var(--primary-color),
            0 10px 25px rgba(9, 92, 84, 0.4);
    }
    
    .timeline-badge {
        width: 35px;
        height: 35px;
        top: -30px;
        font-size: 0.9rem;
    }
    
    .step-connector {
        width: 4px;
        height: 25px;
        top: -12px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .step-title {
        font-size: 1.1rem;
    }
    
    .step-description {
        font-size: 0.85rem;
    }
    
    .professional-step-card {
        padding: 1.5rem 0.8rem;
    }
    
    .step-features {
        flex-direction: column;
        align-items: center;
        gap: 0.4rem;
    }
    
    .feature-item {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .step-duration {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 576px) {
    .process-steps-container {
        padding: 2rem 0;
    }
    
    .connection-line {
        left: 3%;
        right: 3%;
        height: 4px;
    }
    
    .card-number {
        width: 50px;
        height: 50px;
        top: -25px;
    }
    
    .card-number .number-bg {
        box-shadow: 
            0 0 0 3px rgba(255, 255, 255, 1),
            0 0 0 5px var(--primary-color),
            0 6px 15px rgba(9, 92, 84, 0.3);
    }
    
    .card-number span {
        font-size: 1rem;
    }
    
    .process-card {
        padding: 1.5rem 1rem;
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
        margin: 1rem auto 0.8rem;
        font-size: 1.1rem;
    }
    
    .card-content h4 {
        font-size: 1.1rem;
    }
    
    .card-content p {
        font-size: 0.85rem;
    }
    
    .process-stats {
        gap: 1.5rem;
        flex-direction: column;
    }
    
    .process-stats .stat-number {
        font-size: 1.8rem;
    }
    
    .process-stats-section {
        padding: 1.5rem 1rem;
    }
    
    .process-benefits {
        padding: 2rem 1rem;
    }
    
    .benefits-title {
        font-size: 1.8rem;
    }
    
    .floating-shapes .shape {
        display: none;
    }
}

/* Modern Process Workflow - Complete Redesign */
:root {
    --primary-color: #095c54;
    --secondary-color: #a2dfcb;
    --accent-color: #d7ffed;
    --text-color: #2c3e50;
    --dark-gray: #6c757d;
    --light-gray: #f8f9fa;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-light: rgba(162, 223, 203, 0.1);
    --shadow-medium: rgba(162, 223, 203, 0.2);
    --shadow-heavy: rgba(162, 223, 203, 0.3);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.modern-process-workflow {
    position: relative;
    margin: 6rem 0;
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    overflow: hidden;
}

.modern-process-workflow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="modern-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><rect width="40" height="40" fill="none"/><circle cx="20" cy="20" r="1" fill="%23A2DFCB" opacity="0.1"/><path d="M0,20 Q10,10 20,20 Q30,30 40,20" stroke="%23A2DFCB" stroke-width="0.5" fill="none" opacity="0.08"/></pattern></defs><rect width="200" height="200" fill="url(%23modern-pattern)"/></svg>');
    opacity: 0.6;
    animation: patternMove 30s linear infinite;
}

@keyframes patternMove {
    0% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-10px) translateY(-10px); }
    50% { transform: translateX(10px) translateY(10px); }
    75% { transform: translateX(-5px) translateY(5px); }
    100% { transform: translateX(0) translateY(0); }
}

.workflow-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Interactive Timeline */
.interactive-timeline {
    position: relative;
    margin: 3rem 0 5rem;
    padding: 2rem 0;
}

.timeline-track {
    position: relative;
    height: 12px;
    margin: 0 8%;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 25%, 
        var(--accent-color) 50%, 
        var(--secondary-color) 75%, 
        var(--primary-color) 100%);
    border-radius: 6px;
    box-shadow: 
        0 8px 32px rgba(162, 223, 203, 0.4),
        inset 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.timeline-track::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(255, 255, 255, 0.6) 25%, 
        rgba(255, 255, 255, 0.3) 50%, 
        rgba(255, 255, 255, 0.6) 75%, 
        rgba(255, 255, 255, 0.3) 100%);
    animation: timelineFlow 4s ease-in-out infinite;
}

@keyframes timelineFlow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.8) 0%, 
        rgba(255, 255, 255, 0.4) 100%);
    border-radius: 6px;
    width: 25%;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-dots {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 8%;
}

.timeline-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 4px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.timeline-dot.active {
    background: var(--primary-color);
    border-color: white;
    box-shadow: 0 0 0 6px rgba(9, 92, 84, 0.2);
}

.timeline-dot:hover {
    transform: scale(1.2);
    box-shadow: 0 0 0 8px rgba(9, 92, 84, 0.3);
}

/* Process Steps Grid */
.process-steps-grid {
    margin: 4rem 0;
}

.process-step-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 32px;
    padding: 3rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(162, 223, 203, 0.2);
    box-shadow: 
        0 20px 60px rgba(162, 223, 203, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(162, 223, 203, 0.03) 0%, 
        rgba(185, 236, 218, 0.02) 30%, 
        rgba(215, 255, 237, 0.04) 70%, 
        rgba(162, 223, 203, 0.02) 100%);
    border-radius: 32px;
    z-index: -1;
    transition: all 0.6s ease;
}

.process-step-card:hover {
    transform: translateY(-25px) scale(1.02);
    box-shadow: 
        0 40px 100px rgba(162, 223, 203, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: var(--primary-color);
}

.process-step-card:hover::before {
    background: linear-gradient(135deg, 
        rgba(162, 223, 203, 0.08) 0%, 
        rgba(185, 236, 218, 0.06) 30%, 
        rgba(215, 255, 237, 0.08) 70%, 
        rgba(162, 223, 203, 0.06) 100%);
}

/* Step Number Badge */
.step-number-badge {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    box-shadow: 
        0 0 0 6px rgba(255, 255, 255, 1),
        0 0 0 10px var(--primary-color),
        0 15px 40px rgba(9, 92, 84, 0.4);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.step-ripple {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    animation: rippleEffect 3s ease-in-out infinite;
}

@keyframes rippleEffect {
    0% { transform: scale(0.8); opacity: 0; }
    50% { opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

.process-step-card:hover .step-number {
    transform: scale(1.15);
    box-shadow: 
        0 0 0 6px rgba(255, 255, 255, 1),
        0 0 0 10px var(--accent-color),
        0 20px 50px rgba(9, 92, 84, 0.5);
}

/* Step Visual Elements */
.step-visual {
    position: relative;
    text-align: center;
    margin: 2rem 0;
}

.step-icon-container {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.step-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.2rem;
    box-shadow: 0 15px 40px rgba(9, 92, 84, 0.3);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.icon-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    animation: pulseRing 2s ease-in-out infinite;
}

.pulse-ring-delay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    opacity: 0;
    animation: pulseRing 2s ease-in-out infinite 0.5s;
}

@keyframes pulseRing {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
    50% { opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.4); opacity: 0; }
}

.process-step-card:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 50px rgba(9, 92, 84, 0.5);
}

.step-connector-line {
    position: absolute;
    top: 50%;
    right: -2rem;
    width: 4rem;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 2px;
    transform: translateY(-50%);
    opacity: 0.6;
}

.step-connector-line::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--primary-color);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

/* Step Content */
.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.step-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.step-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 2rem;
    opacity: 0.9;
    flex: 1;
}

/* Feature Pills */
.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(9, 92, 84, 0.08);
    color: var(--primary-color);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(9, 92, 84, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-pill:hover {
    background: rgba(9, 92, 84, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(9, 92, 84, 0.2);
}

.feature-pill i {
    font-size: 0.8rem;
}

/* Step Metrics */
.step-metrics {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: auto;
}

.metric {
    text-align: center;
    padding: 1rem;
    background: rgba(108, 117, 125, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(108, 117, 125, 0.1);
    flex: 1;
    transition: all 0.3s ease;
}

.metric:hover {
    background: rgba(108, 117, 125, 0.1);
    transform: translateY(-3px);
}

.metric-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Innovation Panel */
.innovation-panel {
    margin-top: 6rem;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(248, 249, 250, 0.8) 100%);
    border-radius: 40px;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(162, 223, 203, 0.2);
    box-shadow: 
        0 30px 80px rgba(162, 223, 203, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.panel-header {
    text-align: center;
    margin-bottom: 3rem;
}

.panel-header h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.panel-header p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.innovation-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 25px;
    border: 1px solid rgba(162, 223, 203, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.innovation-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(162, 223, 203, 0.2);
    border-color: var(--primary-color);
}

.innovation-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba(9, 92, 84, 0.3);
    transition: all 0.4s ease;
}

.innovation-item:hover .innovation-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(9, 92, 84, 0.4);
}

.innovation-content h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.innovation-content p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 992px) {
    .workflow-container {
        padding: 0 1rem;
    }
    
    .timeline-track {
        margin: 0 5%;
    }
    
    .timeline-dots {
        padding: 0 5%;
    }
    
    .step-connector-line {
        display: none;
    }
    
    .process-step-card {
        padding: 2.5rem 1.5rem;
    }
    
    .step-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .innovation-grid {
        grid-template-columns: 1fr;
    }
    
    .innovation-panel {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .modern-process-workflow {
        margin: 4rem 0;
        padding: 3rem 0;
    }
    
    .timeline-track {
        margin: 0 3%;
        height: 8px;
    }
    
    .timeline-dots {
        padding: 0 3%;
    }
    
    .timeline-dot {
        width: 20px;
        height: 20px;
        border-width: 3px;
    }
    
    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
        top: -35px;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .step-title {
        font-size: 1.4rem;
    }
    
    .step-description {
        font-size: 1rem;
    }
    
    .step-features {
        gap: 0.6rem;
    }
    
    .feature-pill {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .panel-header h3 {
        font-size: 2rem;
    }
    
    .innovation-item {
        padding: 1.5rem;
    }
    
    .innovation-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .process-step-card {
        padding: 2rem 1rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
        top: -30px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .step-metrics {
        flex-direction: column;
        gap: 1rem;
    }
    
    .metric {
        padding: 0.8rem;
    }
    
    .metric-value {
        font-size: 1.2rem;
    }
    
    .innovation-panel {
        padding: 2rem 1rem;
    }
    
    .panel-header h3 {
        font-size: 1.8rem;
    }
    
    .innovation-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .innovation-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}