/* Quiz CTA Inline */
.quiz-cta-inline {
    background: linear-gradient(145deg, #FFF8F0, #FFFFFF);
    border: 1px solid rgba(255, 138, 115, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    margin: 1rem 0;
}

.quiz-cta-inline-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2B2B2B;
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.quiz-cta-inline-desc {
    color: #5a5a5a;
    font-size: 0.95rem;
    margin: 0 0 1.25rem;
    line-height: 1.5;
}

.quiz-cta-inline-btn {
    display: inline-block;
    background: linear-gradient(135deg, #FF8A73, #FF6B54);
    color: white;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(255, 138, 115, 0.3);
    transition: all 0.3s;
}

.quiz-cta-inline-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 138, 115, 0.4);
}

/* Seven Day Meal Plan Ad */
.meal-plan-ad {
    background: linear-gradient(135deg, #FFB4A2 0%, #FF8A73 100%);
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
    color: white;
    margin: 2rem 0;
}

.meal-plan-ad-title {
    font-family: 'Fraunces', serif;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.meal-plan-ad-desc {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.meal-plan-ad-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.meal-plan-ad-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
}

.meal-plan-ad-btn {
    display: inline-block;
    background: white;
    color: #FF8A73;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease;
}

.meal-plan-ad-btn:hover {
    transform: translateY(-3px);
}

.meal-plan-ad-note {
    font-size: 0.85rem;
    margin-top: 1rem;
    opacity: 0.9;
}

/* Sticky Bottom CTA */
.sticky-bottom-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2B2B2B;
    z-index: 999;
    padding: 0.75rem 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    animation: slideUpCta 0.3s ease-out;
}

@keyframes slideUpCta {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.sticky-cta-inner {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.sticky-cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Inter', -apple-system, sans-serif;
}

.sticky-cta-button {
    background: linear-gradient(135deg, #FF8A73, #FF6B54);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.875rem;
    white-space: nowrap;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(255, 138, 115, 0.3);
}

.sticky-cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255, 138, 115, 0.4);
}

.sticky-cta-close {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
}

.sticky-cta-close:hover {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 480px) {
    .sticky-cta-text {
        font-size: 0.8rem;
    }
    .sticky-cta-button {
        padding: 0.5rem 1.25rem;
        font-size: 0.8rem;
    }
}
