/* ===================================
   Vertriebspartner – Stellen-Detailseite
   =================================== */

.vp-section {
    padding: 90px 0;
    background: var(--white);
}

.vp-section--alt {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.vp-h2 {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 20px;
}

.vp-h2 i {
    color: var(--primary);
    font-size: 24px;
    margin-right: 10px;
}

/* ===================================
   Hero-Ergänzungen
   =================================== */

.vp-hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.vp-fact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

.vp-fact i {
    font-size: 13px;
    opacity: 0.9;
}

.vp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

/* ===================================
   Einleitung + Fakten-Karte
   =================================== */

.vp-intro {
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: 50px;
    align-items: start;
}

.vp-intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 18px;
}

.vp-intro-text p:last-child {
    margin-bottom: 0;
}

.vp-facts-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 20px;
    padding: 30px 28px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
    position: sticky;
    top: 110px;
}

.vp-facts-title {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.vp-facts-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.vp-facts-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
}

.vp-facts-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.vp-facts-list li > i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    font-size: 13px;
    flex-shrink: 0;
}

.vp-facts-list li > div {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.5;
}

.vp-facts-list li strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--gray-500);
    margin-bottom: 2px;
}

.vp-facts-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: var(--primary-gradient);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.vp-facts-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

/* ===================================
   Ablauf-Schritte
   =================================== */

.vp-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.vp-step {
    position: relative;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 18px;
    padding: 34px 26px 28px;
    transition: all 0.3s ease;
}

.vp-step:hover {
    transform: translateY(-4px);
    border-color: var(--primary-light, rgba(37, 99, 235, 0.4));
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.1);
}

.vp-step-num {
    position: absolute;
    top: -18px;
    left: 26px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--primary-gradient);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.vp-step h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin: 8px 0 10px;
}

.vp-step p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--gray-600);
    margin: 0;
}

/* ===================================
   Zwei-Spalten (Aufgaben / Profil)
   =================================== */

.vp-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.vp-panel {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 20px;
    padding: 34px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.vp-panel .vp-h2 {
    font-size: 24px;
    margin-bottom: 18px;
}

.vp-panel .vp-h2 i {
    font-size: 20px;
}

/* ===================================
   Verdienst
   =================================== */

.vp-earnings {
    max-width: 900px;
    margin: 50px auto 0;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 20px;
    padding: 34px 34px 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

/* ===================================
   Benefits
   =================================== */

.vp-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.vp-benefit {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 18px;
    padding: 30px 26px;
    transition: all 0.3s ease;
}

.vp-benefit:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.12);
    border-color: rgba(16, 185, 129, 0.35);
}

.vp-benefit > i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    font-size: 19px;
    margin-bottom: 18px;
}

.vp-benefit h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.vp-benefit p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--gray-600);
    margin: 0;
}

/* ===================================
   FAQ-Anpassungen
   =================================== */

.faq-section.vp-section--alt {
    padding: 90px 0;
}

.faq-section .faq-category {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-answer p a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
}

.faq-answer p a:hover {
    text-decoration: underline;
}

/* ===================================
   Bewerben-CTA
   =================================== */

.vp-apply {
    padding: 90px 0;
    background: var(--primary-gradient);
}

.vp-apply-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.vp-apply-title {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 18px;
}

.vp-apply-text {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.vp-apply-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.vp-apply .cta-btn.primary {
    background: #ffffff;
    color: var(--primary);
    border-color: #ffffff;
}

.vp-apply .cta-btn.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.vp-apply .cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #ffffff;
}

.vp-apply-hint {
    margin-top: 26px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.vp-apply-hint a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: underline;
}

/* ===================================
   Responsive
   =================================== */

@media (max-width: 1024px) {
    .vp-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 34px 24px;
    }

    .vp-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .vp-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vp-facts-card {
        position: static;
    }

    .vp-two-col {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .vp-section,
    .faq-section.vp-section--alt,
    .vp-apply {
        padding: 60px 0;
    }

    .vp-h2 {
        font-size: 24px;
    }

    .vp-panel .vp-h2 {
        font-size: 21px;
    }

    .vp-steps,
    .vp-benefits {
        grid-template-columns: 1fr;
        gap: 34px 20px;
    }

    .vp-fact {
        font-size: 13px;
        padding: 8px 14px;
    }

    .vp-hero-actions .cta-btn {
        width: 100%;
        justify-content: center;
    }

    .vp-panel,
    .vp-earnings {
        padding: 26px 22px;
    }

    .vp-facts-card {
        padding: 26px 22px;
    }

    .vp-apply-title {
        font-size: 26px;
    }

    .vp-apply-text {
        font-size: 15px;
    }

    .vp-apply-buttons .cta-btn {
        width: 100%;
        justify-content: center;
    }
}
