.conversion-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.conversion-modal.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.conversion-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.conversion-content {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    padding: 48px 40px;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.conversion-modal.show .conversion-content {
    transform: scale(1);
}

/* Close Button */
.conversion-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border: none;
    background: #f3f4f6;
    color: #6b7280;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.conversion-close:hover {
    background: #e5e7eb;
    color: #111827;
    transform: rotate(90deg);
}

/* Header */
.conversion-header {
    text-align: center;
    margin-bottom: 40px;
}

.conversion-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #ff914d 0%, #ff711a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 145, 77, 0.3);
}

.conversion-icon i {
    font-size: 36px;
    color: white;
}

.conversion-title {
    font-size: 32px;
    font-weight: 800;
    color: #11222C;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.conversion-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
}

/* Stats */
.conversion-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    padding: 24px;
    background: #f9fafb;
    border-radius: 16px;
}

.conversion-stat {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #ff914d;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

/* Plans */
.conversion-plans {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.conversion-plan {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.3s ease;
}

.conversion-plan:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.conversion-plan-pro {
    border-color: #ff914d;
    background: linear-gradient(135deg, #fff6ed 0%, #ffffff 100%);
    position: relative;
}

.conversion-plan-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff914d 0%, #ff711a 100%);
    border-radius: 16px 16px 0 0;
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.plan-name {
    font-size: 20px;
    font-weight: 700;
    color: #11222C;
    margin: 0;
}

.plan-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.plan-badge-current {
    background: #e5e7eb;
    color: #6b7280;
}

.plan-badge-recommended {
    background: #ff914d;
    color: white;
}

.plan-price {
    margin-bottom: 24px;
}

.price-amount {
    font-size: 42px;
    font-weight: 800;
    color: #11222C;
}

.price-period {
    font-size: 16px;
    color: #6b7280;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: #374151;
}

.feature-item i {
    font-size: 16px;
    color: #12b981;
}

.feature-item.feature-disabled {
    opacity: 0.5;
}

.feature-item.feature-disabled i {
    color: #ef4444;
}

.plan-cta {
    width: 100%;
    padding: 16px 24px;
    border: none;
    background: linear-gradient(135deg, #ff914d 0%, #ff711a 100%);
    color: white;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(255, 145, 77, 0.3);
}

.plan-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 145, 77, 0.4);
}

.plan-cta:active {
    transform: translateY(0);
}

/* Social Proof */
.conversion-social-proof {
    text-align: center;
    margin-bottom: 32px;
    padding: 24px;
    background: #f9fafb;
    border-radius: 12px;
}

.social-proof-stars {
    color: #fbbf24;
    font-size: 20px;
    margin-bottom: 12px;
}

.social-proof-text {
    font-size: 15px;
    color: #374151;
    margin: 0 0 16px 0;
}

.social-proof-avatars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: -8px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff914d 0%, #4dbbfe 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
    margin-left: -8px;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-more {
    margin-left: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
}

/* Alternatives */
.conversion-alternatives {
    text-align: center;
    margin-bottom: 24px;
}

.alternatives-text {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 16px 0;
}

.alternatives-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-alternative {
    padding: 12px 24px;
    border: 2px solid #e5e7eb;
    background: white;
    color: #374151;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.btn-alternative:hover {
    border-color: #ff914d;
    color: #ff914d;
    background: #fff6ed;
}

/* Trust Badges */
.conversion-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 13px;
    font-weight: 500;
}

.trust-badge i {
    color: #12b981;
    font-size: 16px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .conversion-content {
        padding: 32px 24px;
        width: 95vw;
        max-height: 95vh;
    }

    .conversion-title {
        font-size: 24px;
    }

    .conversion-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        padding: 16px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 11px;
    }

    .conversion-plans {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .plan-name {
        font-size: 18px;
    }

    .price-amount {
        font-size: 32px;
    }

    .feature-item {
        font-size: 14px;
        padding: 8px 0;
    }

    .alternatives-buttons {
        flex-direction: column;
    }

    .btn-alternative {
        width: 100%;
        justify-content: center;
    }

    .conversion-trust {
        gap: 16px;
    }

    .trust-badge {
        font-size: 12px;
    }
}
