/* ===================================
   COMPARISON SECTION REDESIGN
   Professional comparison table styling
   =================================== */

/* Section spacing */
.time-saving {
    padding: 4rem 0;
    background: #f8fafc;
}

/* Comparison wrapper */
.comparison-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

/* Modern comparison table */
.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* Comparison columns */
.comparison-column {
    padding: 2.5rem;
    position: relative;
}

.comparison-bad {
    background: #fef2f2;
    border-right: 1px solid #fee2e2;
}

.comparison-good {
    background: #f0fdf4;
}

/* Headers */
.comparison-header {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comparison-bad .comparison-header {
    color: #dc2626;
}

.comparison-good .comparison-header {
    color: #16a34a;
}

/* List styling */
.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
    padding-left: 1.75rem;
}

.comparison-list li:last-child {
    border-bottom: none;
}

/* Custom bullets */
.comparison-bad .comparison-list li::before {
    content: "×";
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: #dc2626;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.comparison-good .comparison-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: #16a34a;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
}

/* Testimonial redesign */
.testimonial-highlight {
    background: white;
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-quote {
    font-size: 1.125rem;
    font-style: italic;
    color: #1e293b;
    margin: 0;
    line-height: 1.6;
}

.testimonial-note {
    margin-top: 1rem;
    font-weight: 600;
    color: #dc2626;
    font-size: 0.95rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .comparison-table {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .comparison-column {
        padding: 2rem 1.5rem;
    }
    
    .comparison-bad {
        border-right: none;
        border-bottom: 2px solid #fee2e2;
    }
    
    .comparison-header {
        font-size: 1.25rem;
    }
    
    .comparison-list li {
        font-size: 0.95rem;
        padding: 0.6rem 0 0.6rem 1.5rem;
    }
}

/* Hover effects */
.comparison-column {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.comparison-column:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Add subtle pattern to bad column */
.comparison-bad::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(220, 38, 38, 0.02) 10px,
            rgba(220, 38, 38, 0.02) 20px
        );
    pointer-events: none;
}

/* Add subtle pattern to good column */
.comparison-good::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(22, 163, 74, 0.02) 10px,
            rgba(22, 163, 74, 0.02) 20px
        );
    pointer-events: none;
}

/* Section title */
.time-saving .section-title {
    color: #1e293b !important;
    background: none !important;
    -webkit-text-fill-color: #1e293b !important;
    font-size: 2.25rem !important;
    margin-bottom: 1rem !important;
}

.time-saving .section-title::after {
    display: none !important;
}