<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Comparison Section Styles */
.comparison-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-side {
    border-radius: 24px;
    padding: 40px;
    position: relative;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.traditional-side {
    background: #f9f7f4;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.agl-side {
    background: #ffffff;
    border: 4px solid var(--primary);
    box-shadow: 0 8px 32px rgba(0,114,177,0.12);
    position: relative;
}

.agl-side::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: var(--primary);
    border-radius: 28px;
    z-index: -1;
}

.comparison-header {
    text-align: left;
    margin-bottom: 40px;
}

.comparison-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    text-align: left;
    line-height: 1.3;
}

.comparison-points {
    flex: 1;
    margin-bottom: 20px;
}

.comparison-point {
    margin-bottom: 32px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.comparison-point:last-child {
    margin-bottom: 0;
}

.point-icon {
    font-size: 16px;
    font-weight: 900;
    margin-top: 2px;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    font-style: normal;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

.traditional-side .point-icon {
    color: #ffffff;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.traditional-side .point-icon:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(239, 68, 68, 0.4);
}

.agl-side .point-icon {
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 4px 12px rgba(0, 114, 177, 0.3);
}

.agl-side .point-icon:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 114, 177, 0.4);
}

/* Add subtle glow effect */
.traditional-side .point-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    filter: blur(4px);
}

.agl-side .point-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    filter: blur(4px);
}

.comparison-point-content {
    flex: 1;
}

.comparison-point h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.comparison-point p {
    font-size: 15px;
    color: var(--dark);
    margin: 0;
    line-height: 1.5;
}

/* Process Steps */
.process-steps {
    max-width: 800px;
    margin: 40px auto 0;
}

.process-step {
    position: relative;
    padding: 0 0 60px 80px;
    margin-bottom: 0;
}

.process-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    height: calc(100% + 0px);
    width: 2px;
    background: var(--primary);
}

.step-number {
    position: absolute;
    left: 0;
    top: 10px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(99,102,241,.3);
    z-index: 2;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 18px;
    color: var(--dark);
    font-weight: 700;
}

.process-step p {
    color: var(--dark);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .comparison-container {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .comparison-side {
        padding: 30px 24px;
        min-height: auto;
    }
    
    .comparison-header {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .comparison-header h3 {
        font-size: 20px;
        text-align: center;
    }
    
    .comparison-point h4 {
        font-size: 16px;
    }
    
    .comparison-point p {
        font-size: 14px;
    }
    
    .comparison-point {
        margin-bottom: 28px;
    }
    
    .process-step {
        padding: 10px 0 40px 65px;
    }
    
    .process-step:not(:last-child)::before {
        left: 20px;
        top: 45px;
        height: calc(100% - 5px);
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        left: 0;
        top: 5px;
    }
    
    .process-step h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .process-step p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .comparison-side {
        padding: 24px 20px;
    }
    
    .comparison-header {
        text-align: center;
        margin-bottom: 24px;
    }
    
    .comparison-header h3 {
        font-size: 18px;
    }
    
    .comparison-point {
        margin-bottom: 24px;
        gap: 12px;
    }
    
    .comparison-point h4 {
        font-size: 15px;
    }
    
    .comparison-point p {
        font-size: 13px;
    }
    
    .point-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .process-step {
        padding: 10px 0 35px 55px;
    }
    
    .process-step:not(:last-child)::before {
        left: 17px;
        top: 40px;
        height: calc(100% - 10px);
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        top: 5px;
    }
    
    .process-step h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .process-step p {
        font-size: 0.95rem;
    }
} </pre></body></html>