/* Step Comparison Section */
.step-comparison {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.step-comparison .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.step-comparison .section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.step-comparison .section-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Comparison Cards Container */
.comparison-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Individual Comparison Cards */
.comparison-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #eaeaea;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Highlighted Card */
.comparison-card.highlighted {
    border: 2px solid #3498db;
    transform: scale(1.02);
}

.comparison-card.highlighted:hover {
    transform: scale(1.02) translateY(-5px);
}

.highlight-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #3498db;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 24px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 3px 8px rgba(52, 152, 219, 0.2);
}

.comparison-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li {
    padding: 0.7rem 0;
    color: #34495e;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
}

.feature-list li i {
    color: #2ecc71;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Button */
.comparison-card .btn {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
    padding: 0.8rem;
    border-radius: 8px;
    font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .comparison-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .comparison-card.highlighted {
        transform: none;
    }
    
    .comparison-card.highlighted:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 576px) {
    .step-comparison .section-header h2 {
        font-size: 2rem;
    }
    
    .comparison-card {
        padding: 2rem 1.5rem;
    }
    
    .highlight-badge {
        right: 15px;
        padding: 0.4rem 1rem;
    }
}