.page-pluskijker {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    color: #e2e8f0;
}

.pluskijker-section {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2rem;
    color: #e2e8f0;
    text-align: center;
    margin-bottom: 2.5rem;
}

/* Intro Section */
.pluskijker-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.pluskijker-intro-text h2 {
    font-size: 2.5rem;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
}

.pluskijker-intro-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #c3c7d5;
    margin-bottom: 1.5rem;
}

.pluskijker-benefits-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.pluskijker-benefits-list li {
    padding: 0.5rem 0;
    color: #c3c7d5;
    font-size: 1rem;
}

.pluskijker-intro-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pluskijker-visual-card {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid rgba(255, 123, 58, 0.3);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.pluskijker-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff7b3a;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pluskijker-icons {
    font-size: 3rem;
    margin-top: 1rem;
}

/* Feature Cards */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(31, 41, 55, 1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    color: #e2e8f0;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Steps */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(31, 41, 55, 1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff7b3a 0%, #ff4b3a 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1.25rem;
    color: #e2e8f0;
    margin-bottom: 0.75rem;
}

.step p {
    color: #94a3b8;
    line-height: 1.6;
}

/* Package Cards */
.package-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.package-card {
    background: rgba(15, 23, 42, 0.95);
    border: 2px solid rgba(255, 123, 58, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(255, 123, 58, 0.2);
    border-color: rgba(255, 123, 58, 0.6);
}

.package-card h3 {
    font-size: 1.5rem;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.package-description {
    color: #94a3b8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.package-price {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 8px;
}

.package-price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e2e8f0;
    display: block;
}

.package-price-interval {
    font-size: 1rem;
    color: #94a3b8;
    display: block;
    margin-top: 0.5rem;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.package-features li {
    padding: 0.5rem 0;
    color: #c3c7d5;
    padding-left: 1.5rem;
    position: relative;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff7b3a;
    font-weight: 700;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(31, 41, 55, 1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.faq-question {
    font-size: 1.125rem;
    color: #e2e8f0;
    margin-bottom: 0.75rem;
}

.faq-answer {
    color: #94a3b8;
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .pluskijker-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-cards,
    .steps-container,
    .package-cards {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .pluskijker-intro-text h2 {
        font-size: 2rem;
    }
}




