/* Pricing V2 page specific styles (coupon section + overrides) */

/* ===== Promo Banner ===== */
.promo-banner {
    background: radial-gradient(ellipse at 20% 50%, #C5E67380, transparent 50%),
                radial-gradient(ellipse at 80% 50%, #D4B9FB80, transparent 50%),
                radial-gradient(ellipse at 50% 50%, #3C4BFB4D, transparent 60%),
                #EBEDFF;
    text-align: center;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    cursor: pointer;
    transition: opacity 0.2s;
}

.promo-banner:hover {
    opacity: 0.9;
}

.promo-banner-code {
    display: inline-block;
    color: #3C4BFB;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    margin: 0 0.15rem;
}

@media (max-width: 767px) {
    .promo-banner {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }
    .promo-banner-code {
        font-size: 0.85rem;
    }
}

/* ===== Coupon Section ===== */
.coupon-section {
    padding: 0 1rem 2rem;
    max-width: 460px;
    margin: 0 auto;
}

.coupon-container {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(60, 75, 251, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.coupon-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a2b4a;
    margin-bottom: 0.75rem;
}

.coupon-input-row {
    display: flex;
    gap: 0.5rem;
}

.coupon-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    background: #f9f9f9;
    color: #333;
    transition: border-color 0.2s;
}

.coupon-input:focus {
    outline: none;
    border-color: rgba(60, 75, 251, 0.4);
}

.coupon-btn {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #3C4BFB 0%, #667eea 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
    white-space: nowrap;
}

.coupon-btn:hover {
    background: linear-gradient(135deg, #3040e0 0%, #5a6fd8 100%);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(60, 75, 251, 0.3);
}

.coupon-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.coupon-message {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    min-height: 1.3em;
}

.coupon-message-success {
    color: #2e7d32;
}

.coupon-message-error {
    color: #c62828;
}

/* ===== Plan card tagline ===== */
.plan-card-tagline {
    font-weight: 600;
    font-size: 0.8rem;
    margin-top: 0.4rem;
}

/* ===== Plan Feature List ===== */
.plan-feature-list {
    list-style: none;
    padding: 0;
    margin: 0.32rem 0 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.plan-feature-list li {
    font-size: 0.85rem;
    color: #1a2b4a;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plan-feature-icon {
    width: 14px;
    height: 10px;
    flex-shrink: 0;
    color: #3C4BFB;
}

/* ===== Discounted price display ===== */
.plan-discounted-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2e7d32;
}

.plan-price-struck {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    font-weight: 400;
}

@media (max-width: 767px) {
    .coupon-section {
        max-width: 400px;
    }
    .coupon-container {
        padding: 1rem;
    }
    .coupon-input {
        min-width: 0;
    }
}
