.ai-voice-agent-customized {
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

/* ========================================
   Section Header
======================================== */

.ai-voice-agent-customized .ava-section-head {
    margin-bottom: 34px;
    max-width: 1000px;
}

.ai-voice-agent-customized .ava-section-head p {
    letter-spacing: normal;
    text-transform: none;
    color: #5f6778;
    font-weight: 400;
    font-size: 1.02rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0.5rem 0 0;
}

.ai-voice-agent-customized .ava-section-head h2 {
    font-size: clamp(2rem, 3.4vw, 3.4rem);
    line-height: 1.08;
    margin: 10px 0 0;
    color: #111827;
}

.ai-voice-agent-customized .ava-section-head h3 {
    margin: 14px 0 10px;
    max-width: 880px;
    font-size: clamp(1.2rem, 1.7vw, 1.8rem);
    line-height: 1.3;
    color: #1f2430;
}

/* ========================================
   Customized Cards Grid
======================================== */

.ai-voice-agent-customized .ava-customized-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 36px;
}

/* ========================================
   Customized Card
======================================== */

.ai-voice-agent-customized .ava-customized-card {
    position: relative;
    overflow: hidden;

    padding: 30px;

    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.96) 100%
    );

    border: 1px solid #e6ebf2;
    border-radius: 30px;

    box-shadow: 0 28px 80px rgba(15, 18, 32, 0.08);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

/* Top Accent Line */

.ai-voice-agent-customized .ava-customized-card::before {
    content: "";

    position: absolute;
    inset: 0 auto auto 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(
        90deg,
        #ffb21d 0%,
        #ff8f1f 100%
    );
}

/* Card Hover */

.ai-voice-agent-customized .ava-customized-card:hover {
    transform: translateY(-6px);

    border-color: #f3d996;

    box-shadow: 0 34px 90px rgba(15, 18, 32, 0.12);
}

/* Highlight Card */

.ai-voice-agent-customized .ava-customized-card-highlight {
    background: linear-gradient(
        180deg,
        #fffdf4 0%,
        #ffffff 100%
    );

    border-color: #f3e1a1;
}

/* ========================================
   Image Icon
======================================== */

.ai-voice-agent-customized .ava-icon-badge {
    width: 76px;
    height: 76px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    padding: 0;
    margin: 0;

    background: transparent;
    border: none;
    border-radius: 0;

    overflow: hidden;
    flex-shrink: 0;

    transition: transform 0.25s ease;
}

/* Image */

.ai-voice-agent-customized .ava-icon-badge img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;

    border: none;
    border-radius: 0;

    background: transparent;
}

/* Image Hover */

.ai-voice-agent-customized .ava-customized-card:hover .ava-icon-badge {
    transform: scale(1.05);
}

/* ========================================
   Card Content
======================================== */

.ai-voice-agent-customized .ava-customized-card h3 {
    margin: 18px 0 12px;

    color: #111827;

    font-size: 1.25rem;
    line-height: 1.3;
}

.ai-voice-agent-customized .ava-customized-card p,
.ai-voice-agent-customized .ava-customized-card li {
    color: #5f6778;

    line-height: 1.8;

    margin-bottom: 0;
}

/* Space between multiple paragraphs */

.ai-voice-agent-customized .ava-customized-card p + p {
    margin-top: 12px;
}

/* ========================================
   Tablet
======================================== */

@media (max-width: 991px) {

    .ai-voice-agent-customized {
        padding: 80px 0;
    }

    .ai-voice-agent-customized .ava-customized-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

}

/* ========================================
   Mobile
======================================== */

@media (max-width: 767px) {

    .ai-voice-agent-customized {
        padding: 72px 0;
    }

    .ai-voice-agent-customized .ava-section-head {
        margin-bottom: 28px;
    }

    .ai-voice-agent-customized .ava-section-head h2 {
        font-size: clamp(1.9rem, 8vw, 2.8rem);
    }

    .ai-voice-agent-customized .ava-customized-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 28px;
    }

    .ai-voice-agent-customized .ava-customized-card {
        padding: 24px;
        border-radius: 24px;
    }

    /* Mobile Image Icon */

    .ai-voice-agent-customized .ava-icon-badge {
        width: 68px;
        height: 68px;

        padding: 0;

        background: transparent;
        border: none;
        border-radius: 0;
    }

    .ai-voice-agent-customized .ava-icon-badge img {
        width: 100%;
        height: 100%;

        background: transparent;
        border: none;
        border-radius: 0;

        object-fit: contain;
    }

    .ai-voice-agent-customized .ava-customized-card h3 {
        font-size: 1.2rem;
        margin-top: 16px;
    }

}