/* ============================================================================
   KARRIERE (CAREER) PAGE CSS
   ============================================================================ */

/* ============================================
   HERO SECTION
============================================ */
.hero {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.92) 0%, rgba(21, 40, 64, 0.96) 100%);
    background-size: cover;
    background-position: center;
    padding: 180px 0 140px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.02)"/></svg>');
    background-size: 200px;
    opacity: 0.5;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 780px;
}

.hero h1,
.hero p {
    color: var(--white);
}

.hero h1 {
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -0.025em;
}

.hero h1 span {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(230, 126, 34, 0.2);
    border: 1px solid rgba(230, 126, 34, 0.4);
    padding: 12px 20px;
    border-radius: 50px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--accent);
}

.hero-ctas {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* BUTTON-FIX: btn-secondary auf dunklem Hintergrund */
.hero .btn-secondary,
.final-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
}

.hero .btn-secondary:hover,
.final-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   STATS BAR
============================================ */
.stats-bar {
    background: var(--white);
    padding: 50px 60px;
    box-shadow: var(--shadow-2xl);
    position: relative;
    z-index: 10;
    margin-top: -70px;
    border-radius: var(--radius-xl);
    margin-left: auto;
    margin-right: auto;
    max-width: 1050px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item {
    padding: 0 24px;
    border-right: 1px solid var(--gray-200);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 44px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-number span {
    color: var(--accent);
}

.stat-label {
    font-size: 15px;
    color: var(--gray-500);
    margin-top: 12px;
    font-weight: 500;
}

/* ============================================
   LOGO MARQUEE
============================================ */
.logo-marquee {
    background: var(--gray-50);
    padding: 60px 0;
    overflow: hidden;
}

.marquee-title {
    text-align: center;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gray-400);
    margin-bottom: 36px;
    font-weight: 600;
}

.logo-track {
    display: flex;
    animation: marquee 40s linear infinite;
}

.logo-track:hover {
    animation-play-state: paused;
}

.logo-set {
    display: flex;
    align-items: center;
    gap: 90px;
    padding: 0 45px;
    flex-shrink: 0;
}

.logo-item {
    height: 50px;
    opacity: 0.35;
    filter: grayscale(100%);
    transition: all 0.3s;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-item:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   SECTION STYLING
============================================ */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 70px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(30, 58, 95, 0.1);
    color: var(--primary);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 22px;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ============================================
   WHAT WE DO SECTION
============================================ */
.what-we-do-section {
    padding: var(--section-padding);
    background: var(--white);
}

.what-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.what-card {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: 36px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.what-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-xl);
    border-color: var(--gray-200);
    transform: translateY(-4px);
}

.what-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--white);
}

.what-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.what-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.65;
}

/* ============================================
   BENEFITS SECTION
============================================ */
.benefits-section {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.benefits-content h2 {
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 24px;
    line-height: 1.15;
}

.benefits-content h2 span {
    color: var(--accent);
}

.benefits-content > p {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 32px;
}

.benefits-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.benefit-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.benefit-text p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
}

.benefits-image {
    position: relative;
}

.benefits-image img {
    width: 100%;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    color: var(--white);
    padding: 24px 32px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.experience-badge .number {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .number span {
    font-size: 24px;
}

.experience-badge .label {
    font-size: 13px;
    font-weight: 600;
    margin-top: 6px;
    opacity: 0.9;
}

/* ============================================
   JOBS SECTION
============================================ */
.jobs-section {
    padding: var(--section-padding);
    background: var(--white);
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 50px;
}

.job-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 36px;
    transition: all 0.3s ease;
}

.job-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.job-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
}

.job-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.job-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 18px;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-tags li {
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 50px;
}

.jobs-cta {
    text-align: center;
}

.btn-large {
    padding: 18px 36px;
    font-size: 17px;
}

/* ============================================
   PROCESS SECTION
============================================ */
.process-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.process-section .section-header {
    color: var(--white);
}

.process-section .section-label {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.process-section .section-title {
    color: var(--white);
}

.process-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -16px;
    width: 32px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--accent);
    color: var(--white);
    font-size: 32px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(230, 126, 34, 0.4);
}

.step-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.step-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* ============================================
   TESTIMONIALS SECTION
============================================ */
.testimonials-section {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--accent);
    opacity: 0.3;
}

.testimonial-card p {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-info strong {
    display: block;
    font-size: 15px;
    color: var(--gray-900);
}

.author-info span {
    font-size: 13px;
    color: var(--gray-500);
}

/* ============================================
   FAQ SECTION
============================================ */
.faq-section {
    padding: var(--section-padding);
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 28px;
    border-left: 4px solid var(--accent);
}

.faq-item h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.65;
}

/* ============================================
   FINAL CTA SECTION
============================================ */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
}

.final-cta h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.final-cta h2 span {
    color: var(--accent);
}

.final-cta > .container > p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.contact-hint {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-hint p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-hint a {
    color: var(--white);
    font-weight: 600;
}

.contact-hint a:hover {
    color: var(--accent);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
    .what-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .jobs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .benefits-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .process-step::after {
        display: none;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 140px 0 100px;
    }
    
    .stats-bar {
        padding: 32px 24px;
        margin-top: -50px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .stat-item {
        padding: 16px 0;
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .stat-item:nth-child(2n) {
        border-left: 1px solid var(--gray-200);
        padding-left: 24px;
    }
    
    .stat-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .what-grid,
    .jobs-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-highlights {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-badge {
        bottom: -10px;
        right: -10px;
        padding: 18px 24px;
    }
    
    .experience-badge .number {
        font-size: 32px;
    }
    
    .final-cta {
        padding: 70px 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 17px;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 10px 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .what-card,
    .job-card,
    .testimonial-card,
    .faq-item {
        padding: 24px;
    }
}

/* hms go – Badges unter dem Vorteilstext (Bewerber-Seiten und Karriere) */
.benefit-text .app-badges {
    margin-top: 12px;
}

/* Hinweiszeile behält Kleindruck – schlägt .benefit-text p (0,1,1) mit 0,2,1 */
.benefit-text p.app-badges__note {
    margin: 10px 0 0;
    font-size: 13px;
    color: var(--gray-500);
}
