/**
 * Boldmen Pricing Modal Styles
 * Version: 3.0
 */

/* Modal Base */
.bmt-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.bmt-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
}

.bmt-modal-content {
    position: relative;
    background: #0d0d0d;
    border: 2px solid #FFA028;
    border-radius: 12px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.bmt-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #888;
    font-size: 32px;
    cursor: pointer;
    transition: color 0.2s;
}

.bmt-modal-close:hover {
    color: #FFA028;
}

/* Pricing Grid */
.bmt-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .bmt-pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* Pricing Cards */
.bmt-pricing-card {
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 12px;
    padding: 25px;
    position: relative;
    transition: border-color 0.3s, transform 0.3s;
}

.bmt-pricing-card:hover {
    transform: translateY(-5px);
}

.bmt-pricing-card.free {
    border-color: #555;
}

.bmt-pricing-card.agent {
    border-color: #4CAF50;
}

.bmt-pricing-card.agent:hover {
    border-color: #66BB6A;
}

.bmt-pricing-card.institutional {
    border-color: #FFA028;
}

.bmt-pricing-card.institutional:hover {
    border-color: #FFB74D;
}

.bmt-pricing-card.recommended {
    background: linear-gradient(180deg, #1a1400 0%, #1a1a1a 100%);
}

.bmt-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #FFA028, #FF8C00);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    white-space: nowrap;
}

/* Pricing Header */
.bmt-pricing-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

.bmt-pricing-header h3 {
    margin: 0 0 15px 0;
    font-size: 20px;
    color: #FFF;
}

.bmt-pricing-card.agent .bmt-pricing-header h3 {
    color: #4CAF50;
}

.bmt-pricing-card.institutional .bmt-pricing-header h3 {
    color: #FFA028;
}

.bmt-price {
    font-size: 36px;
    font-weight: bold;
    color: #FFF;
    line-height: 1;
}

.bmt-period {
    color: #888;
    font-size: 14px;
    margin-top: 5px;
}

.bmt-annual {
    color: #666;
    font-size: 12px;
    margin-top: 5px;
}

/* Features List */
.bmt-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.bmt-features li {
    color: #CCC;
    padding: 8px 0;
    border-bottom: 1px solid #222;
    font-size: 14px;
}

.bmt-features li:last-child {
    border-bottom: none;
}

.bmt-features li.mirror-focus {
    color: #4CAF50;
    font-weight: bold;
}

.bmt-features li.note {
    color: #888;
    font-style: italic;
}

.bmt-features li.expires {
    color: #f44336;
}

/* Pricing Footer */
.bmt-pricing-footer {
    text-align: center;
}

.bmt-current {
    display: inline-block;
    color: #555;
    font-size: 14px;
    padding: 10px 20px;
}

.bmt-choose-btn {
    display: inline-block;
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.bmt-choose-btn:not(.primary) {
    background: #4CAF50;
    color: #FFF;
}

.bmt-choose-btn:not(.primary):hover {
    background: #66BB6A;
    transform: scale(1.02);
}

.bmt-choose-btn.primary {
    background: linear-gradient(90deg, #FFA028, #FF8C00);
    color: #000;
}

.bmt-choose-btn.primary:hover {
    transform: scale(1.02);
}

/* Secondary Button */
.bmt-btn-secondary {
    background: transparent;
    border: 2px solid #FFA028;
    color: #FFA028;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.bmt-btn-secondary:hover {
    background: #FFA028;
    color: #000;
}