/* ========================================
   PLANS & LIZENZ KARTE (für Dashboard)
   ======================================== */

/* ===== Einzelne Karte ===== */
.plan-card {
    background: #242424;
    border-radius: 18px;
    border: 1px solid #3A3A3A;
    padding: 26px;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    width: 20%;
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.plan-card .logo {
    text-align: center;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.plan-card .logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.plan-card .plan-title {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    color: #fff;
    margin-bottom: 6px;
}

.plan-card .plan-subtitle {
    text-align: center;
    color: #A8A8A8;
    font-size: 13px;
    margin-bottom: 16px;
}

.plan-card .plan-price {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* ===== Features-Liste ===== */
.plan-features {
    display: grid;
    grid-template-columns: 0.2fr 1fr 1fr;
    gap: 8px 12px;
    margin: 16px 0 24px;
    flex: 1;
}

.feature-icon {
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    justify-self: start;
}

.feature-label {
    color: #D6D6D6;
    font-size: 13px;
    justify-self: start;
}

.feature-value {
    color: #B0B0B0;
    font-size: 13px;
    text-align: right;
    justify-self: end;
}

/* ===== Button (Standard) ===== */
.plan-card .plan-btn {
    display: block;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    text-align: center;
    text-decoration: none;
    color: #181818;
    background: var(--accent-violet);
    margin-top: auto;
}

.plan-card .plan-btn:hover {
    transform: scale(1.02);
}

.plan-card .plan-btn:disabled {
    background: #3a3a3a;
    color: #808080;
    cursor: not-allowed;
}

/* ===== LICENSE ACTIONS (Upgrade + Details) ===== */
.license-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.license-actions .btn-primary,
.license-actions .btn-secondary {
    padding: 8px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: 0.2s;
    border: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 120px;
}

.license-actions .btn-primary {
    background: var(--accent-violet);
    color: #fff;
}

.license-actions .btn-primary:hover {
    background: var(--accent-pink);
    transform: scale(1.02);
}

.license-actions .btn-secondary {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.license-actions .btn-secondary:hover {
    border-color: var(--accent-violet);
    color: var(--text-primary);
}

/* ===== Individuelle Akzentfarben (werden per JS gesetzt) ===== */
.plan-card.personal {
    border-color: #6D3D91;
    background: #28232D;
}

.plan-card.premium {
    border-color: #3A7C91;
    background: #232A2D;
}

.plan-card.free {
    border-color: #3A3A3A;
    background: #242424;
}