/* Premium Comparison Cards */
.method-intro {
    font-size: 1.125rem;
    color: #6a6a6a;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin: 3rem 0;
    padding-top: 3rem;
    overflow: visible;
}

.comparison-card {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.standard-card {
    border: 2px solid #fee2e2;
}

.rightfit-card {
    border: 2px solid #8b9a5b;
    box-shadow: 0 4px 20px rgba(139, 154, 91, 0.15);
}

.rightfit-card.featured {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9f6 100%);
}

.card-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    z-index: 10;
}

.badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.badge-success {
    background: #8b9a5b;
    color: white;
}

.card-icon-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f3f4f6;
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.icon-red {
    background: #fee2e2;
    color: #dc2626;
}

.icon-green {
    background: #d4e5c3;
    color: #3f5a1f;
}

.card-icon-header h3 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
    color: #1a1a1a;
}

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

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem;
    background: #fafafa;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.rightfit-card .comparison-item {
    background: rgba(139, 154, 91, 0.05);
}

.comparison-item:hover {
    background: #f3f4f6;
}

.rightfit-card .comparison-item:hover {
    background: rgba(139, 154, 91, 0.1);
}

.item-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.item-text {
    flex: 1;
    color: #4a4a4a;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.card-result {
    margin-top: 1.5rem;
    padding: 1.25rem;
    border-radius: 10px;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.result-bad {
    background: #fef2f2;
    border-left: 4px solid #dc2626;
    color: #7f1d1d;
}

.result-good {
    background: #f0fdf4;
    border-left: 4px solid #8b9a5b;
    color: #14532d;
}

.card-result strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.comparison-note {
    margin-top: 3rem;
    padding: 2rem;
    background: #eff6ff;
    border-left: 4px solid #3b82f6;
    border-radius: 8px;
}

.comparison-note p {
    margin: 0;
    line-height: 1.7;
    color: #1e40af;
    font-size: 1rem;
}

.comparison-note strong {
    color: #1e3a8a;
}

/* Responsive */
@media (max-width: 1024px) {
    .comparison-cards {
        gap: 2rem;
    }
    
    .comparison-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .comparison-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .comparison-card {
        padding: 1.5rem;
    }
    
    .card-icon-header h3 {
        font-size: 1.25rem;
    }
    
    .icon-circle {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .comparison-note {
        padding: 1.5rem;
    }
}
