/* ==============================================
   Audience — Для якого бізнесу Local SEO
   ============================================== */

.aud {
    background: #0D0D0D;
    padding: 90px 0 100px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    box-sizing: border-box;
    overflow: hidden;
}

.aud__wrap {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ---------- Badge ---------- */
.aud__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 26px;
    border: 2px solid rgba(219, 43, 43, 0.3);
    border-radius: 100px;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 32px;
    line-height: 1;
    background: #141414;
}

/* ---------- Title ---------- */
.aud__heading {
    font-family: 'Wix Madefor Display', sans-serif;
    color: #FFFFFF;
    font-size: 46px;
    font-weight: 700;

    line-height: 1.12;
    text-transform: uppercase;
    margin: 0 0 56px;
    max-width: 860px;
}

.aud__accent {
    color: #EA4335;
}

/* ---------- Grid ---------- */
.aud__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

/* ---------- Card ---------- */
.aud__card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 22px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    transition: background .3s ease;
}

.aud__card:hover {
    background: rgba(255, 255, 255, 0.07);
}

/* Иконка */
.aud__card-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Заголовок */
.aud__card-title {
    font-family: 'Wix Madefor Display', sans-serif;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

/* Поиск SVG */
.aud__card-search {
    width: 100%;
    height: auto;
    max-height: 40px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: auto;
}

/* ==============================================
   Анимации
   ============================================== */
.aud-anim {
    opacity: 0;
    will-change: transform, opacity;
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.aud-anim[data-delay="0"] { transition-delay: 0s; }
.aud-anim[data-delay="1"] { transition-delay: 0.15s; }
.aud-anim[data-delay="2"] { transition-delay: 0.3s; }

.aud-anim[data-anim="fadeUp"] { transform: translateY(30px); }

.aud-anim--visible {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

/* ==============================================
   Tablet
   ============================================== */
@media (max-width: 1024px) {
    .aud__heading {
        font-size: 40px;
    }

    .aud__card {
        padding: 24px 20px;
    }

    .aud__card-title {
        font-size: 16px;
    }
}

/* ==============================================
   Mobile
   ============================================== */
@media (max-width: 768px) {
    .aud {
        padding: 60px 0 72px;
    }

    .aud__wrap {
        padding: 0 16px;
    }

    .aud__heading {
        font-size: 28px;
        margin-bottom: 36px;
    }

    .aud__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .aud__card {
        padding: 24px 20px;
    }
}
