/**
 * Comparison Section Styles
 * 
 * "Other agencies" vs "Our agency" comparison table
 */

/* ===== Comparison Section ===== */
.comparison-section {
    padding: 100px 20px;
    background: #F5F5F6;
}

.comparison-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Headlines */
.comparison-headlines {
    margin-bottom: 60px;
}

.comparison-headline {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -1.5px;
    color: #060612;
    margin-bottom: 24px;
}

.comparison-headline .highlight {
    color: #FF6321;
    font-style: italic;
}

.comparison-headline .toggle-pill {
    display: inline-flex;
    align-items: center;
    width: 48px;
    height: 26px;
    background: #060612;
    border-radius: 50px;
    padding: 3px;
    vertical-align: middle;
    margin: 0 4px;
}

.comparison-headline .toggle-pill::after {
    content: '';
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    margin-left: auto;
}

/* Comparison Table */
.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 40px;
}

/* Column Headers */
.comparison-column {
    padding: 0;
}

.comparison-column.highlight-column {
    background: #FF6321;
    color: white;
}

.column-header {
    padding: 24px 32px;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.highlight-column .column-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Comparison Items */
.comparison-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 32px;
    font-size: 15px;
    color: #69686E;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.comparison-item:last-child {
    border-bottom: none;
}

.highlight-column .comparison-item {
    color: white;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}

.highlight-column .comparison-item:last-child {
    border-bottom: none;
}

.comparison-item::before {
    content: '›';
    font-size: 16px;
    color: #FF6321;
    font-weight: 600;
}

.highlight-column .comparison-item::before {
    color: white;
}

/* Footer with CTA and Social Proof */
.comparison-footer {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.comparison-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #FF6321;
    color: white;
    font-weight: 500;
    font-size: 14px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.comparison-cta:hover {
    background: #E85A1D;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 99, 33, 0.3);
    color: white;
}

/* Social Proof Row */
.social-proof {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Avatar Stack */
.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-stack img,
.avatar-stack .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -12px;
    object-fit: cover;
    background: #ddd;
}

.avatar-stack img:first-child,
.avatar-stack .avatar:first-child {
    margin-left: 0;
}

.avatar-stack .avatar-count {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -12px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: #060612;
}

/* Rating */
.rating-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating-stars svg {
    width: 14px;
    height: 14px;
    fill: #FF6321;
}

.rating-value {
    font-size: 14px;
    font-weight: 600;
    color: #060612;
    margin-left: 6px;
}

.rating-text {
    font-size: 13px;
    color: #69686E;
}

.rating-text strong {
    color: #FF6321;
}

/* Responsive */
@media (max-width: 768px) {
    .comparison-section {
        padding: 60px 20px;
    }

    .comparison-headline {
        font-size: 28px;
        letter-spacing: -1px;
    }

    .comparison-table {
        grid-template-columns: 1fr;
    }

    .column-header,
    .comparison-item {
        padding: 16px 20px;
    }

    .comparison-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .social-proof {
        flex-wrap: wrap;
    }
}