@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue: #0057B7;
    --blue-dark: #003D7A;
    --orange: #FF6B00;
    --orange-dark: #E55F00;
    --dark: #1a1a1a;
    --gray: #666666;
    --light: #F8F9FA;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.2rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s var(--transition-smooth);
}

header.scrolled {
    padding: 0.8rem 5%;
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--blue);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: all 0.3s var(--transition-smooth);
}

.logo:hover {
    transform: scale(1.05);
}

.logo span {
    color: var(--orange);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s var(--transition-smooth);
    position: relative;
}

.nav-links a:not(.btn):hover {
    color: var(--blue);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: width 0.3s var(--transition-smooth);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.betriebe-cta-small {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--light) 0%, #e8eaf0 100%);
    text-align: center;
}

.betriebe-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.betriebe-cta-small h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.betriebe-cta-small p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    font-weight: 500;
}
.hero-betriebe {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-stats-betriebe {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.stat-box-betriebe {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.stat-box-betriebe::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), #FFD700);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-box-betriebe:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.stat-box-betriebe:hover::before {
    transform: scaleX(1);
}

.stat-number-betriebe {
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--orange) 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.8rem;
    line-height: 1;
    letter-spacing: -2px;
}

.stat-label-betriebe {
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.4;
    display: block;
}

.hero-cta-betriebe {
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.btn-large {
    font-size: 1.3rem;
    padding: 1.5rem 4.5rem;
    box-shadow: 0 10px 35px rgba(255, 107, 0, 0.4);
}

.btn-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 107, 0, 0.5);
}

@media (max-width: 968px) {
    .hero-stats-betriebe {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 1.5rem;
    }
    
    .stat-number-betriebe {
        font-size: 3.5rem;
    }
    
    .stat-label-betriebe {
        font-size: 1rem;
    }
    
    .btn-large {
        font-size: 1.1rem;
        padding: 1.3rem 3rem;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .hero-betriebe {
        min-height: 85vh;
    }
    
    .stat-box-betriebe {
        padding: 2.5rem 1.5rem;
    }
    
    .stat-number-betriebe {
        font-size: 3rem;
    }
    
    .hero-stats-betriebe {
        margin-bottom: 2rem;
    }
}
.betriebe-cta-small .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
}

.pricing-simple {
    padding: 7rem 5%;
    background: var(--light);
}

.pricing-cards-simple {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.pricing-card-simple {
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    border: 2px solid #E0E0E0;
    position: relative;
    transition: all 0.4s var(--transition-smooth);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.pricing-card-simple:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.pricing-card-simple.featured {
    border-color: var(--blue);
    background: linear-gradient(135deg, #f0f4ff 0%, var(--white) 100%);
}

.pricing-badge-simple {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: var(--white);
    padding: 0.5rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 87, 183, 0.3);
}

.pricing-icon {
    margin-bottom: 2rem;
}

.pricing-card-simple h3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.pricing-card-simple p {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 500;
}

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

.pricing-features-simple li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    color: var(--dark);
}

.pricing-features-simple li svg {
    width: 20px;
    height: 20px;
    stroke: var(--orange);
    stroke-width: 3;
}

.pricing-cta-simple {
    margin-top: 2rem;
}

.btn svg {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
}

.stelle-ort svg {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.3rem;
}

.search-btn svg {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    stroke-width: 1.5;
}

.step-icon svg {
    width: 50px;
    height: 50px;
    stroke-width: 1.5;
}

.bewerber-icon svg {
    width: 50px;
    height: 50px;
    stroke-width: 1.5;
}

.pricing-icon svg {
    width: 60px;
    height: 60px;
    stroke-width: 1.5;
}

.bewerber-vorteile {
    padding: 7rem 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.bewerber-vorteile::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -350px;
    right: -200px;
    animation: pulse 8s ease-in-out infinite;
}

.bewerber-vorteile .section-title h2,
.bewerber-vorteile .section-title p {
    color: var(--white);
}

.bewerber-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.bewerber-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: left;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s var(--transition-smooth);
}

.bewerber-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.bewerber-icon {
    margin-bottom: 1.2rem;
    display: block;
    line-height: 1;
}

.bewerber-card h3 {
    color: var(--white);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.bewerber-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 400;
    font-size: 0.9rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002; /* FIX: höher als mobile-menu */
    transition: all 0.3s var(--transition-smooth);
    position: relative; /* FIX: z-index wirksam */
}

.hamburger:hover {
    transform: scale(1.05);
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: all 0.3s var(--transition-smooth);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
    background: var(--orange);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
    background: var(--orange);
}

.mobile-menu {
    display: none; /* bleibt so */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    z-index: 1001;
    padding: 2rem;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.4s var(--transition-smooth);
    overflow-y: auto;

    pointer-events: none; /* FIX: unsichtbar = nicht klickbar */
}

.mobile-menu.active {
    display: block;        /* FIX: aktiv = sichtbar */
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;  /* FIX: aktiv = klickbar */
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255,255,255,0.2);
}

.mobile-menu-logo {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-menu-logo:hover {
    transform: scale(1.05);
}

.mobile-menu-logo span {
    color: var(--orange);
}

.mobile-close {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
}

.mobile-close:hover {
    background: rgba(255,255,255,0.25);
    transform: rotate(90deg);
}

.mobile-close svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
    stroke-width: 3;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu a {
    display: block;
    padding: 1.5rem 0;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.4rem;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s var(--transition-smooth);
    position: relative;
    padding-left: 0;
}

.mobile-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 3px;
    background: var(--orange);
    transition: width 0.3s var(--transition-smooth);
}

.mobile-menu a:hover {
    color: var(--orange);
    padding-left: 2rem;
}

.mobile-menu a:hover::before {
    width: 1.2rem;
}

.mobile-menu .btn {
    margin-top: 2rem;
    width: 100%;
    text-align: center;
    padding: 1.3rem;
    font-size: 1.2rem;
    background: var(--white);
    color: var(--blue);
    border: none;
}

.mobile-menu .btn:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-3px);
}

.mobile-menu .btn-secondary {
    background: transparent;
    border: 3px solid var(--white);
    color: var(--white);
    margin-top: 1rem;
}

.mobile-menu .btn-secondary:hover {
    background: var(--white);
    color: var(--blue);
}

.btn {
    padding: 0.75rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s var(--transition-smooth);
    border: none;
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 600px;
    height: 600px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 87, 183, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 87, 183, 0.4);
}

.btn-secondary:active {
    transform: translateY(-1px);
}

.hero {
    margin-top: 75px;
    min-height: 95vh;
    background: linear-gradient(135deg, #0057B7 0%, #003D7A 50%, #002654 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 5% 5%;
}

.hero::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -400px;
    right: -200px;
    animation: pulse 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -300px;
    left: -150px;
    animation: pulse 10s ease-in-out infinite reverse;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.5; 
    }
    50% { 
        transform: scale(1.1); 
        opacity: 0.8; 
    }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-text {
    text-align: center;
    margin-bottom: 3.5rem;
}

.hero-text h1 {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
    letter-spacing: -1px;
}

.hero-text .highlight {
    background: linear-gradient(135deg, var(--orange) 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-text p {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 0;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    font-weight: 500;
}

.quick-search {
    max-width: 950px;
    margin: 0 auto 4rem;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.search-form {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 1.8rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 1.2rem;
    align-items: center;
}

.search-input {
    padding: 1.2rem 1.8rem;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    font-size: 1rem;
    font-family: inherit;
    font-weight: 500;
    transition: all 0.3s var(--transition-smooth);
    background: rgba(255,255,255,0.95);
    color: var(--dark);
}

.search-input::placeholder {
    color: var(--gray);
    font-weight: 400;
}

.search-input:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.15);
    background: var(--white);
    transform: translateY(-2px);
}

.search-btn {
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    font-family: inherit;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
}

.search-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 0, 0.4);
}

.search-btn:active {
    transform: translateY(-1px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.stat-box {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), #FFD700);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.stat-box:hover::before {
    transform: scaleX(1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--orange) 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: rgba(255,255,255,0.95);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
}

.wie-funktionierts {
    padding: 7rem 5%;
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
}

.step-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s var(--transition-smooth);
    border: 2px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border-color: var(--orange);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    background: var(--white);
    color: var(--orange);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    border: 3px solid var(--orange);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
    line-height: 1;
}

.step-card h3 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.step-card p {
    color: var(--gray);
    line-height: 1.7;
    font-weight: 400;
    font-size: 0.95rem;
}

.step-arrow {
    font-size: 2rem;
    color: var(--orange);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aktuelle-stellen {
    padding: 7rem 5%;
    background: var(--light);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
    line-height: 1.1;
}

.section-title .accent {
    color: var(--orange);
}

.section-title p {
    color: var(--gray);
    font-size: 1.1rem;
    font-weight: 400;
}

.stellen-grid {
    max-width: 1400px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.stelle-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.4s var(--transition-smooth);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.stelle-card:hover {
    transform: translateY(-10px);
    border-color: var(--orange);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.stelle-logo {
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 900;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 87, 183, 0.25);
    transition: all 0.3s var(--transition-smooth);
}

.stelle-card:hover .stelle-logo {
    transform: scale(1.05) rotate(2deg);
}

.stelle-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
    padding: 0.5rem;
    background: var(--white);
}

.stelle-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.8rem;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.stelle-firma {
    color: var(--blue);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.stelle-meta {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.stelle-ort {
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.stelle-typ {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(255, 107, 0, 0.25);
}

.stelle-card .btn {
    margin-top: auto;
    width: 100%;
    text-align: center;
    padding: 1rem;
}

.no-stellen {
    text-align: center;
    padding: 5rem 2rem;
    background: var(--white);
    border-radius: 20px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.no-stellen-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.4;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.no-stellen h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 800;
}

.no-stellen p {
    color: var(--gray);
    margin-bottom: 2.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.features {
    padding: 7rem 5%;
    background: var(--white);
}

.features-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-card {
    background: var(--light);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    transition: all 0.4s var(--transition-smooth);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--orange);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    background: var(--white);
}

.feature-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(0, 87, 183, 0.25);
    transition: all 0.4s var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.7;
    font-weight: 400;
    font-size: 0.95rem;
}

.testimonials {
    padding: 7rem 5%;
    background: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.testimonial-stars {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #FFB800;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 2rem;
    font-style: normal;
    font-weight: 400;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 3px 12px rgba(255, 107, 0, 0.3);
}

.author-name {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.author-company {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 400;
}

.pricing {
    padding: 7rem 5%;
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.pricing-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.pricing-card {
    background: var(--white);
    padding: 3.5rem;
    border-radius: 30px;
    border: 3px solid #E0E0E0;
    position: relative;
    transition: all 0.4s var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.pricing-card.featured {
    border-color: var(--orange);
    transform: scale(1.08);
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.25);
    background: linear-gradient(135deg, #FFF8F0 0%, var(--white) 100%);
}

.pricing-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover {
    transform: scale(1.1);
}

.pricing-badge {
    position: absolute;
    top: -18px;
    right: 35px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
    padding: 0.6rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.3);
}

.pricing-card h3 {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.price {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.price small {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray);
}

.pricing-features {
    list-style: none;
    margin: 2.5rem 0;
}

.pricing-features li {
    padding: 1rem 0;
    border-bottom: 1px solid #E0E0E0;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    color: var(--dark);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    color: var(--white);
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.3);
}

.cta {
    padding: 7rem 5%;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 50%, #D44F00 100%);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -300px;
    right: -100px;
    animation: pulse 8s ease-in-out infinite;
}

.cta::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -250px;
    left: -150px;
    animation: pulse 10s ease-in-out infinite reverse;
}

.cta h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 5%;
    text-align: center;
}

footer .logo {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 2rem;
    display: inline-block;
}

footer p {
    margin-bottom: 1rem;
    opacity: 0.8;
    font-weight: 500;
}

footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin: 0 1rem;
    transition: all 0.3s var(--transition-smooth);
    font-weight: 500;
}

footer a:hover {
    color: var(--orange);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step-arrow {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .bewerber-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-cards-simple {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    .hero-text h1 {
        font-size: 3rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .search-form {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .stellen-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card:hover {
        transform: scale(1.02);
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: none; /* FIX: NICHT dauerhaft blocken – nur mit .active anzeigen */
    }

    .cta h2 {
        font-size: 2.2rem;
    }
    
    .step-card {
        padding: 2rem 1.5rem;
    }

    .wie-funktionierts {
        padding: 5rem 2rem;
    }

    .testimonials {
        padding: 5rem 2rem;
    }

    .bewerber-vorteile {
        padding: 5rem 2rem;
    }

    .bewerber-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .section-title p {
        font-size: 1rem;
    }

    .cta h2 {
        font-size: 1.8rem;
    }

    .cta p {
        font-size: 1rem;
    }

    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.95rem;
        left: 20px;
    }

    .step-icon {
        font-size: 2rem;
    }

    .bewerber-icon {
        font-size: 2rem;
    }
    
    .bewerber-card {
        padding: 2rem 1.5rem;
    }
    
    .bewerber-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .betriebe-cta-small h3 {
        font-size: 1.4rem;
    }
    
    .pricing-card-simple {
        padding: 2rem 1.5rem;
    }
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
