/* --- 1. DE BASIS WRAPPER --- */
.pricing-page-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    min-height: 100vh !important;
    background-color: var(--light-bg) !important; /* Zacht, modern grijs */
    box-sizing: border-box !important;

    /* Perfecte balans voor Nav en Footer */
    padding-top: 140px !important;
    padding-bottom: 100px !important;
    overflow: hidden;
}

/* --- 2. DE INTRO --- */
.pricing-intro {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.pricing-intro h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #1a1a1a;
    margin-bottom: 10px;
}

/* --- 3. DE GRID --- */
.pricing-grid {
    display: flex !important;
    justify-content: center !important;
    align-items: stretch !important;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    padding: 20px !important;
    box-sizing: border-box;
}

/* --- 4. DE KAARTEN (The "Bright" Look) --- */
.price-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 30px; /* Zachte, moderne hoeken */
    padding: 50px 35px;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.price-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

/* DE GLOW KAART (POPULAIR) */
.price-card.popular {
    border: 2px solid var(--bright-green);
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(46, 204, 113, 0.1);
    transform: scale(1.05);
    z-index: 5;
}

.price-card.popular:hover {
    transform: scale(1.05) translateY(-12px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bright-green);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

/* --- 5. TYPOGRAFIE IN DE KAART --- */
.price-card h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 10px 0;
}

.price-amount {
    font-size: 3.2rem;
    font-weight: 900;
    color: #1a1a1a;
    margin: 20px 0;
    letter-spacing: -0.02em;
}

.price-amount span {
    font-size: 1.1rem;
    color: #999;
    font-weight: 400;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 40px 0;
    text-align: left;
    flex-grow: 1;
}

.feature-list li {
    font-size: 0.95rem;
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #444;
    border-bottom: 1px solid #f0f0f0;
}

.feature-list li:last-child { border-bottom: none; }

.feature-list li.disabled {
    color: #ccc;
    text-decoration: line-through;
    opacity: 0.6;
}

/* --- 6. DE KNOPPEN --- */
.price-card button {
    width: 100%;
    padding: 16px;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: #1a1a1a;
    color: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

.btn-secondary {
    background: #f1f3f5;
    color: #495057;
}

.btn-secondary:hover { background: #e9ecef; }

/* --- 7. MOBIEL (De Fix) --- */
@media (max-width: 768px) {
    .pricing-page-wrapper {
        padding-top: 100px !important;
        padding-bottom: 60px !important; /* Terug naar een normale waarde */
        min-height: auto !important;     /* Laat de pagina groeien met de content */
        overflow: visible !important;    /* Voorkom dat schaduwen of content worden afgekapt */
    }

    .pricing-grid {
        flex-direction: column !important;
        align-items: center !important;
        gap: 40px !important;           /* Meer ruimte tussen de kaartjes onderling */
    }

    .price-card {
        width: 90% !important;          /* Zorgt voor ademruimte aan de zijkanten */
        max-width: 380px;
        transform: none !important;
    }

    /* Juiste selector voor jouw footer */
    .main-footer {
        margin-top: 40px !important;    /* Een gezonde afstand tot de laatste kaart */
    }
    .popular-badge {
        font-size: 0.7rem;
    }
}