/* Comparison Section Styles */
.comparison-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.comparison-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.comparison-section .section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.comparison-section .section-subtitle {
    font-size: 16px;
    color: var(--text-gray);
}

/* Comparison Table */
.comparison-wrapper {
    margin-bottom: 60px;
}

.comparison-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.table-header {
    display: grid;
    grid-template-columns: 150px 1fr 1fr;
    background: linear-gradient(135deg, #f8fafc, #e5e7eb);
    border-bottom: 2px solid #e5e7eb;
}

.header-cell {
    padding: 20px;
    text-align: center;
    position: relative;
}

.header-cell.our-company {
    background: linear-gradient(135deg, #2563EB, #1E40AF);
    color: white;
    position: relative;
}

.company-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.header-cell h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0 5px;
}

.header-cell .rating {
    font-size: 14px;
    opacity: 0.9;
}

.header-cell.competitor {
    background: #f3f4f6;
    color: var(--text-gray);
}

.table-row {
    display: grid;
    grid-template-columns: 150px 1fr 1fr;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.3s ease;
}

.table-row:hover {
    background: #f8fafc;
}

.feature-name {
    padding: 20px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    background: #fafbfc;
}

.feature-name svg {
    flex-shrink: 0;
}

.our-value,
.other-value {
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.our-value {
    background: rgba(37, 99, 235, 0.03);
    border-left: 3px solid #2563EB;
}

.our-value strong {
    color: #2563EB;
    font-size: 18px;
    font-weight: 700;
}

.other-value strong {
    color: #6b7280;
    font-size: 16px;
}

.small {
    font-size: 12px;
    color: #6b7280;
}

/* What's Included Section */
.whats-included {
    margin-bottom: 60px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.included-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.included-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.included-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
}

.our-included h4 {
    color: #10B981;
}

.others-charge h4 {
    color: #EF4444;
}

.included-list,
.charge-list {
    list-style: none;
    padding: 0;
}

.included-list li,
.charge-list li {
    padding: 8px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.included-list li {
    color: #059669;
}

.charge-list li {
    color: #DC2626;
}

/* Real Cases */
.real-cases {
    margin-bottom: 50px;
}

.cases-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.case-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.case-problem {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.problem-icon {
    font-size: 32px;
}

.case-problem h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.price-comparison {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 10px;
}

.competitor-price,
.our-price {
    text-align: center;
}

.label {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 5px;
}

.price {
    font-size: 24px;
    font-weight: 700;
}

.price.crossed {
    color: #DC2626;
    text-decoration: line-through;
    opacity: 0.7;
}

.price.highlight {
    color: #10B981;
}

.savings {
    text-align: center;
    padding: 10px;
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
}

/* CTA Block */
.comparison-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #2563EB, #1E40AF);
    border-radius: 20px;
    color: white;
}

.cta-text {
    font-size: 20px;
    font-weight: 600;
    /*margin-bottom: 20px;*/
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: white;
    color: #2563EB;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.urgency-note {
    display: block;
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.95;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .comparison-section {
        padding: 40px 0;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
    }
    
    .header-cell.empty {
        display: none;
    }
    
    .header-cell {
        padding: 15px;
    }
    
    .header-cell.our-company {
        order: 1;
        border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    }
    
    .header-cell.competitor {
        order: 2;
    }
    
    .table-row {
        display: block;
        padding: 15px;
    }
    
    .feature-name {
        background: none;
        padding: 10px 0;
        border-bottom: 1px solid #e5e7eb;
        margin-bottom: 10px;
    }
    
    .our-value,
    .other-value {
        display: inline-block;
        width: calc(50% - 10px);
        padding: 10px;
        margin: 5px;
    }
    
    .included-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .whats-included {
        padding: 20px;
    }
}