/**
 * ST landings — CHATGPT COMPARISON component.
 * Two-card side-by-side: ChatGPT (grey/negative) vs Aura (accent/positive).
 */

.st-chatgpt-compare {
    padding: 100px 24px;
    background: linear-gradient(180deg, var(--st-cream) 0%, var(--st-white) 100%);
}

.st-cgc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 56px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.st-cgc-card {
    border-radius: 24px;
    padding: 32px 28px;
    position: relative;
}

.st-cgc-card--negative {
    background: #f5f5f5;
    border: 1.5px solid #e0e0e0;
}

.st-cgc-card--positive {
    background: var(--st-white);
    border: 2px solid var(--st-primary);
    box-shadow: 0 12px 40px rgba(var(--st-primary-rgb), 0.15);
}

.st-cgc-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--st-primary);
    color: white;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 20px;
    white-space: nowrap;
}

.st-cgc-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.st-cgc-card--negative .st-cgc-icon {
    color: #999;
}

.st-cgc-card--positive .st-cgc-icon {
    color: var(--st-primary);
}

.st-cgc-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--st-text);
}

.st-cgc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.st-cgc-list li {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.st-cgc-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--st-text-lt);
}

.st-cgc-value {
    font-size: 15px;
    line-height: 1.5;
}

.st-cgc-value--neg {
    color: #999;
}

.st-cgc-value--pos {
    color: var(--st-text);
    font-weight: 600;
}

.st-cgc-note {
    max-width: 900px;
    margin: 24px auto 0;
    padding: 22px 24px;
    border: 1px solid rgba(var(--st-primary-rgb), 0.18);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--st-text-md);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.65;
    box-shadow: 0 14px 36px rgba(var(--st-primary-rgb), 0.08);
}

.st-cgc-note strong {
    color: var(--st-text);
    font-weight: 800;
}

.st-cgc-cta {
    text-align: center;
    margin-top: 48px;
}

@media (max-width: 768px) {
    .st-chatgpt-compare {
        padding: 70px 20px;
    }

    .st-cgc-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .st-cgc-card {
        padding: 28px 24px;
    }

    .st-cgc-note {
        padding: 18px;
        font-size: 15px;
        line-height: 1.55;
    }

    .st-cgc-header h3 {
        font-size: 20px;
    }
}
