/* UpSpert Affiliate – Corporate Why Section */
.ua-why-wrap {
    background: #ffffff;
    padding: 64px 16px;
}
.ua-why-container {
    max-width: 1100px;
    margin: 0 auto;
}
.ua-why-title {
    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;
    color: #0F172A; /* slate-900 */
    text-align: center;
    margin: 0 0 28px;
}
.ua-why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 768px) {
    .ua-why-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}
.ua-card {
    border: 1px solid #E2E8F0; /* slate-200 */
    border-radius: 12px;
    padding: 22px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.ua-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827; /* gray-900 */
    margin: 0 0 8px;
}
.ua-card-text {
    color: #374151; /* gray-700 */
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 12px;
}
.ua-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ua-checklist li {
    position: relative;
    padding-left: 24px;
    margin: 8px 0;
    color: #1F2937; /* gray-800 */
    font-size: 15px;
}
.ua-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1;
    font-weight: 700;
    color: #10B981; /* emerald-500 accent */
}
.ua-cta {
    text-align: center;
    margin-top: 28px;
}
.ua-btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 10px;
    background: #111827; /* gray-900 */
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    transition: transform .06s ease, box-shadow .06s ease, background .2s ease;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
.ua-btn:hover,
.ua-btn:focus {
    background: #0B1220;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.16);
}
