/* AI Influencer Course Styles */

/* Hero Section */
.ai-influencer-hero {
    background-size: cover;
    background-position: center;
}

.ai-influencer-hero .bh-text span {
    color: #e32879;
    font-weight: 700;
    letter-spacing: 2px;
}

.ai-influencer-hero .bh-text h2 {
    font-size: 64px;
    text-shadow: 0 0 20px rgba(227, 40, 121, 0.5);
}

.ai-influencer-hero .bh-text p {
    color: #fff;
    font-size: 20px;
    max-width: 800px;
    margin: 20px auto;
}

/* Price Tag */
.course-price-tag {
    margin-top: 30px;
}

.course-price-tag .old-price {
    text-decoration: line-through;
    color: #aaa;
    font-size: 24px;
    margin-right: 15px;
}

.course-price-tag .new-price {
    color: #fff;
    font-size: 48px;
    font-weight: 800;
}

.course-price-tag .price-note {
    color: #e32879;
    font-weight: 600;
}

/* Details Section */
.ai-course-details {
    background: linear-gradient(107deg, #000302, #0e334a);
}

.ai-course-details .bd-title h2 {
    color: #fff;
    margin-bottom: 40px;
    border-left: 4px solid #e32879;
    padding-left: 20px;
}

.course-benefits-list {
    list-style: none;
    padding: 0;
}

.course-benefits-list li {
    margin-bottom: 20px;
    color: #ccc;
    display: flex;
    align-items: flex-start;
}

.course-benefits-list li i {
    color: #e32879;
    margin-right: 15px;
    margin-top: 5px;
}

/* Quote */
.ai-course-quote {
    margin: 60px 0;
    background: rgba(227, 40, 121, 0.05);
    border-left: 5px solid #e32879;
}

.ai-course-quote p {
    color: #fff;
    font-size: 22px;
    font-style: normal;
}

/* Info Blocks */
.course-info-item h4 {
    color: #fff;
    margin-bottom: 25px;
}

.course-info-list {
    list-style: none;
    padding: 0;
    color: #ccc;
}

.course-info-list li {
    margin-bottom: 12px;
}

.course-info-list li i {
    color: #e32879;
    margin-right: 10px;
}

/* Bonus Box */
.bonus-section {
    margin-top: 50px;
    padding: 30px;
    border: 2px dashed #e32879;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.3);
}

.bonus-section h3 {
    color: #e32879;
    margin-bottom: 15px;
}

.bonus-section p {
    color: #fff;
    font-size: 18px;
}

/* Author Box */
.author-box {
    margin-top: 80px;
    padding: 40px;
    background: #071a24;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.author-box img {
    width: 120px;
    height: 120px;
    border-radius: 60px;
    object-fit: cover;
    border: 3px solid #e32879;
}

.author-box h5 {
    color: #e32879;
    font-size: 20px;
    margin-bottom: 10px;
}

.author-box p {
    color: #ccc;
    margin: 0;
}

/* Payment CTA */
.payment-cta {
    margin-top: 60px;
}

.payment-cta h2 {
    color: #fff;
    margin-bottom: 30px;
}

.payment-cta .primary-btn {
    padding: 15px 50px;
    font-size: 24px;
}

@media screen and (max-width: 768px) {
    .ai-influencer-hero .bh-text h2 {
        font-size: 36px;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
    }
}