/* ===== Plans Page ===== */
.plans-page {
    padding: 120px 20px 60px;
    width: 50%;
    margin: 0 auto;
    height: 100vh;
}

.plans-intro {
    text-align: center;
    margin-bottom: 60px;
    height: auto;
}

.plans-intro h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--accent-violet), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.plans-intro p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== Grid der Karten ===== */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: stretch;
}

/* ===== 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;
}

.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;
}

.plan-features .feature-item {
    display: contents;
    /* für Raster-Layout */
}

.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 */
.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;
}

/* Individuelle Akzentfarben (werden per JS gesetzt) */
.plan-card.personal {
    border-color: #6D3D91;
    background: #28232D;
}

.plan-card.premium {
    border-color: #3A7C91;
    background: #232A2D;
}

section {
    height: unset !important;
}