/* Advanced Voice Intelligence Section Styles */

/* Main Container */
.advanced-voice-section {
    padding: 80px 20px;
    background-color: var(--bg);
}

.advanced-voice-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 48px;
    border: 1px solid #e9eaeb;
    border-radius: 16px;
    box-shadow: 0 4px 16px 0 rgba(56, 81, 120, 0.1);
    background: var(--white);
}

/* Main Content */
.advanced-voice-content {
    display: flex;
    justify-content: space-between;
    gap: 28px;
}

.advanced-voice-image {
    max-width: 425px;
    height: auto;
    width: 100%;
}

.advanced-voice-image img {
    width: 100%;
}

.advanced-voice-text {
    display: flex;
    flex-direction: column;
    max-width: 640px;
    gap: 16px;
}

.advanced-voice-title {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 50px;
    background: linear-gradient(90deg, #ff3c6a 0%, #d704be 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.advanced-voice-subtitle {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 24px;
    line-height: 117%;
    color: var(--black);
}

.advanced-voice-description {
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 18px;
    line-height: 140%;
    color: var(--grey);
}

/* Cards */
.advanced-voice-cards {
    display: flex;
    gap: 24px;
    margin-top: 38px;
    width: 100%;
}

.advanced-voice-card {
    max-width: 540px;
    border: 1px solid #e9eaeb;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 16px 0 rgba(56, 81, 120, 0.1);
    background: var(--white);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.advanced-voice-card-title {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    color: var(--black);
}

/* Perfect For Items */
.perfect-for-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.perfect-for-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.perfect-for-text {
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 16px;
    line-height: 140%;
    color: var(--grey);
}

.perfect-for-title {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.03em;
    color: var(--black);
}

.perfect-for-separator {
    font-weight: 300;
    font-size: 18px;
    line-height: 140%;
    color: var(--grey);
}

.perfect-for-description {
    font-weight: 300;
    line-height: 140%;
    color: var(--grey);
}

/* Use Cases Items */
.use-case-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.use-case-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.use-case-text {
    font-weight: 300;
    line-height: 140%;
    color: var(--grey);
}

/* Responsive Styles */
@media (max-width: 1200px) and (min-width: 769px) {
    .advanced-voice-container {
        padding: 32px;
    }

    .advanced-voice-title {
        font-size: 42px;
    }

    .advanced-voice-subtitle {
        font-size: 22px;
    }

    .advanced-voice-description {
        font-size: 17px;
    }

    .advanced-voice-image {
        max-width: 380px;
    }

    .advanced-voice-card {
        max-width: 48%;
    }
}

@media (max-width: 768px) and (min-width: 551px) {
    .advanced-voice-section {
        padding: 60px 20px;
    }

    .advanced-voice-container {
        padding: 24px;
    }

    .advanced-voice-content {
        flex-direction: column;
    }

    .advanced-voice-text {
        max-width: 100%;
    }

    .advanced-voice-image {
        max-width: 360px;
        margin: 0 auto;
        order: -1;
    }

    .advanced-voice-title {
        font-size: 32px;
    }

    .advanced-voice-subtitle {
        font-size: 20px;
    }

    .advanced-voice-description {
        font-size: 16px;
    }

    .advanced-voice-cards {
        flex-direction: column;
        margin-top: 24px;
    }

    .advanced-voice-card {
        max-width: 100%;
    }
}

@media (max-width: 550px) {
    .advanced-voice-section {
        padding: 40px 20px;
    }

    .advanced-voice-container {
        padding: 16px;
    }

    .advanced-voice-content {
        flex-direction: column;
        gap: 20px;
    }

    .advanced-voice-text {
        max-width: 100%;
    }

    .advanced-voice-image {
        max-width: 100%;
        order: 2;
    }

    .advanced-voice-title {
        font-size: 24px;
    }

    .advanced-voice-subtitle {
        font-size: 18px;
    }

    .advanced-voice-description {
        font-size: 16px;
    }

    .advanced-voice-cards {
        flex-direction: column;
        gap: 16px;
        margin-top: 20px;
    }

    .advanced-voice-card {
        max-width: 100%;
        padding: 16px;
    }

    .perfect-for-icon,
    .use-case-icon {
        flex-shrink: 0;
    }

    .perfect-for-separator {
        font-size: 16px;
    }
}
