/* =========================
   AUDIENCE INSIGHTS SECTION
   ========================= */

.audience-section {
    background: linear-gradient(180deg,
            #f8fafc 0%,
            #eef2ff 100%);
    color: #0f172a;
}

/* Badge */
.audience-badge {
    background: rgba(99, 102, 241, 0.1);
    color: #4f46e5;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
}

/* Title */
.audience-title {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 700;
}

/* Description */
.audience-description {
    max-width: 620px;
    color: #475569;
}

/* Card */
.audience-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(20, 20, 40, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.audience-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 55px rgba(15, 23, 42, 0.12);
}

/* Icon */
.audience-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto;
    border-radius: 16px;
    background: linear-gradient(135deg,
            #6366f1,
            #818cf8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.audience-icon i {
    color: #ffffff;
    font-size: 22px;
}

.audience-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.audience-card li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    color: #444;
    padding-bottom: 8px;
    margin-bottom: 12px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
}
.audience-card strong {
    color: #6a5cff;
    font-weight: 700;
}

.audience-card.highlight {
    background: linear-gradient(145deg, #f0efff, #ffffff);
    border: 1px solid rgba(106, 92, 255, 0.25);
}
.audience-card.highlight h3 {
    font-size: 19px;
    margin-bottom: 22px;
    color: #5b4dff;
}
.audience-card.highlight p {
    font-size: 15.5px;
    color: #444;
    line-height: 1.7;
}


/*
.audience-value {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 4px;
}

.audience-label {
  font-size: 14px;
  color: #64748b;
}
*/
/* Mobile polish */
@media (max-width: 575px) {
    .audience-card {
        padding: 24px 18px;
    }
}