/* ===== GLOBAL STYLES ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-family-main);
    color: var(--color-text-main);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 26px;
    border-radius: 0;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-fast);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.05rem;
    border-radius: 0;
}

.btn-primary {
    background-color: var(--color-accent);
    color: white;
}

.btn-primary:hover {
    background-color: #c2006b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 0, 126, 0.3);
}

.btn-magenta {
    background-color: var(--color-accent);
    color: white;
}

.btn-magenta:hover {
    background-color: #c2006b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 0, 126, 0.3);
}

.btn-outline {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: white;
}

.btn-outline-light {
    border-color: white;
    color: white;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--color-primary);
}

.btn-light {
    background-color: white;
    color: var(--color-primary);
}

.btn-light:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.btn-link {
    color: var(--color-accent);
    font-weight: 600;
    padding: 0;
    border: none;
}

.btn-link:hover {
    text-decoration: underline;
}

.btn-text {
    font-weight: 600;
    color: var(--color-accent);
}

/* ===== HEADER ===== */
.main-header {
    height: var(--header-height);
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition-medium);
}

.main-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: 70px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 var(--spacing-md);
    max-width: 100%;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
    transition: var(--transition-fast);
}

.main-header.scrolled .logo-img {
    height: 40px;
}

.main-nav ul {
    display: flex;
    gap: var(--spacing-sm);
}

.main-nav a {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-primary);
    padding: 8px 4px;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition-fast);
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav a:hover {
    color: var(--color-accent);
}

.header-cta {
    font-size: 0.85rem;
    padding: 10px 20px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    position: absolute;
    left: 0;
    transition: var(--transition-fast);
}

.mobile-menu-toggle span:nth-child(1) { top: 0; }
.mobile-menu-toggle span:nth-child(2) { top: 11px; }
.mobile-menu-toggle span:nth-child(3) { top: 22px; }

.mobile-menu-toggle.open span:nth-child(1) {
    top: 11px;
    transform: rotate(45deg);
}

.mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.open span:nth-child(3) {
    top: 11px;
    transform: rotate(-45deg);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-top: var(--header-height);
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 56, 100, 0.9);
}

.hero-overlay-logo {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 60px;
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
}

.hero-headline {
    font-size: 4rem;
    line-height: 1.15;
    margin-bottom: var(--spacing-md);
    color: white;
    font-weight: 700;
}

.strikethrough-word {
    position: relative;
    display: inline;
}

.strikethrough-word::after {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    top: 50%;
    height: 4px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.strikethrough-word.struck::after {
    transform: scaleX(1);
}

.reveal-word {
    display: none;
    color: var(--color-accent);
}

.reveal-word.visible {
    display: inline;
    animation: fadeInWord 0.5s ease forwards;
}

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

.hero-small {
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0.85;
    margin-bottom: var(--spacing-xs);
}

.hero-line-1,
.hero-line-2 {
    display: block;
}

.hero-subline {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    font-weight: 300;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.85rem;
    opacity: 0;
    animation: fadeIn 1s 3s forwards;
    z-index: 2;
}

.arrow-down {
    width: 18px;
    height: 18px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    margin-top: 8px;
    animation: bounce 2s infinite;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
    40% { transform: translateY(-10px) rotate(45deg); }
    60% { transform: translateY(-5px) rotate(45deg); }
}

/* ===== TRUST SECTION ===== */
.trust-section {
    background-color: var(--color-light-gray);
    padding: var(--spacing-md) 0;
    text-align: center;
}

.trust-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.trust-label {
    font-weight: 600;
    color: var(--color-text-light);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.trust-logos {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: var(--spacing-xs);
}

.trust-item {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-item i {
    color: var(--color-secondary);
}

.trust-siegel {
    margin: var(--spacing-sm) auto;
}

.siegel-img {
    max-width: 360px;
    height: auto;
}

.trust-subtext {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-top: var(--spacing-sm);
}

/* ===== GROWTH SECTION (2.5) ===== */
.growth-section {
    padding: var(--spacing-lg) 0;
}

.growth-layout {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.growth-text {
    flex: 1;
}

.growth-text h2 {
    font-size: 2.5rem;
    margin-top: 0.25rem;
}

.growth-text p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-main);
    line-height: 1.75;
}

.growth-image {
    flex: 1;
}

.growth-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eyebrow {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 0;
    line-height: 1.2;
    letter-spacing: 1px;
}

.eyebrow-magenta {
    color: var(--color-accent);
}

.image-placeholder {
    background: linear-gradient(135deg, var(--color-light-gray) 0%, #e8edf2 100%);
    height: 100%;
    min-height: 350px;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    color: var(--color-text-light);
}

.image-placeholder i {
    font-size: 3rem;
    opacity: 0.4;
}

.image-placeholder span {
    font-size: 0.85rem;
    opacity: 0.5;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xs);
}

.section-header .subline {
    font-size: 1.1rem;
    color: var(--color-secondary);
    font-weight: 500;
}

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

.jobs-section > .container {
    max-width: none;
    padding: 0 var(--spacing-lg);
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.job-card {
    background: white;
    border: 1px solid #eee;
    padding: var(--spacing-md);
    border-radius: 0;
    transition: var(--transition-medium);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.job-card .btn-link {
    margin-top: auto;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--color-accent);
}

.job-header h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
}

.job-meta {
    display: flex;
    gap: var(--spacing-sm);
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-sm);
}

.job-meta i {
    color: var(--color-secondary);
}

.job-teaser {
    margin-bottom: var(--spacing-md);
    color: var(--color-text-light);
}

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

.job-stat-box {
    background-color: var(--color-primary);
    color: white;
    padding: var(--spacing-lg) var(--spacing-md);
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 14px;
    position: relative;
    overflow: hidden;
}

.job-stat-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 15%, rgba(213, 23, 98, 0.18), transparent 55%),
        radial-gradient(circle at 10% 100%, rgba(82, 186, 240, 0.12), transparent 50%);
    pointer-events: none;
}

.job-stat-box > * {
    position: relative;
    z-index: 1;
}

.stat-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-accent);
    margin: 0;
}

.stat-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(213, 23, 98, 0.25);
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    margin: 0;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.45;
    margin: 0;
    opacity: 0.9;
    max-width: 220px;
}

.stat-locations {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.07);
    border-left: 2px solid var(--color-accent);
}

.stat-loc-hint {
    font-size: 0.7rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat-loc-cities {
    font-size: 1rem;
    font-weight: 600;
}

.stat-sep-inline {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 6px;
}

.job-stat-box .btn {
    margin-top: 4px;
    align-self: stretch;
}

/* ===== PHILOSOPHY SECTION ===== */
.philosophy-section {
    padding: var(--spacing-xl) 0;
    background-color: #FAFAFA;
}

.split-layout {
    display: flex;
    align-items: stretch;
    gap: var(--spacing-xl);
}

.split-image {
    flex: 1;
    min-height: 400px;
    border-radius: 0;
    overflow: hidden;
    position: relative;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-text h2 {
    margin-top: 0.25rem;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.text-content p {
    margin-bottom: var(--spacing-sm);
    line-height: 1.75;
}

/* ===== TARGET GROUPS ===== */
.target-groups-section {
    padding: var(--spacing-xl) 0;
    background-color: white;
}

.target-groups-section > .container {
    max-width: none;
    padding: 0 var(--spacing-lg);
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-md);
}

.target-card {
    background: white;
    padding: var(--spacing-md) var(--spacing-md) var(--spacing-sm);
    border: 1px solid #e8edf2;
    border-radius: 0;
    text-align: left;
    transition: var(--transition-medium);
    display: flex;
    flex-direction: column;
}

.target-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 64, 100, 0.08);
}

.target-card .icon {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    width: 56px;
    height: 56px;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
}

.target-card .icon img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.target-card h3 {
    font-size: 1.15rem;
    line-height: 1.3;
    min-height: calc(1.15rem * 1.3 * 2);
    margin-bottom: var(--spacing-xs);
}

.target-card p {
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: var(--spacing-sm);
}

.target-card .btn-link {
    font-size: 0.9rem;
}

/* ===== BENEFITS (Scroll Stack) ===== */
.benefits-section {
    padding: var(--spacing-xl) 0;
    background-color: #F0F4F8;
}

.benefits-stack {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.benefit-card {
    background: white;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 100px;
    margin-bottom: var(--spacing-md);
    transition: transform 0.3s ease;
    z-index: 1;
}

.benefit-card[data-index="0"] { z-index: 1; }
.benefit-card[data-index="1"] { z-index: 2; top: 120px; }
.benefit-card[data-index="2"] { z-index: 3; top: 140px; }
.benefit-card[data-index="3"] { z-index: 4; top: 160px; }
.benefit-card[data-index="4"] { z-index: 5; top: 180px; }

.benefit-image {
    width: 336px;
    height: 224px;
    background: linear-gradient(135deg, rgba(0, 158, 227, 0.1) 0%, rgba(0, 64, 100, 0.08) 100%);
    border-radius: 8px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.benefit-image i {
    font-size: 2.5rem;
    color: var(--color-secondary);
}

.benefit-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.6;
}

.benefits-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* ===== STORIES ===== */
.stories-section {
    padding: var(--spacing-xl) 0;
    background-color: white;
}

.stories-section > .container {
    max-width: none;
    padding: 0 var(--spacing-lg);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-md);
}

.story-card {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.story-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.story-info p {
    flex-grow: 1;
}

.story-thumb {
    width: 100%;
    aspect-ratio: 9 / 16;
    /* SuP-Blau statt hellgrau: bei Letterbox-/End-Frames sichtbar, passt zur CI */
    /*background: var(--color-primary);*/
    border-radius: 0;
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-medium);
}


.story-thumb:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 24px rgba(0, 64, 100, 0.15);
}

.story-play {
    width: 52px;
    height: 52px;
    background: rgba(213, 23, 98, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.story-thumb:hover .story-play {
    background: rgba(213, 23, 98, 1);
    transform: scale(1.1);
}

.story-info h4 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.story-info p {
    font-size: 0.88rem;
    color: var(--color-text-light);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.story-tag {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--color-secondary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.story-info .link {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.88rem;
}

.story-info .link:hover {
    text-decoration: underline;
}

.stories-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* ===== AZUBI FOCUS ===== */
.azubi-focus-section {
        background: rgba(0, 56, 100, 0.9);

    padding: var(--spacing-xl) 0;
    color: white;
    text-align: center;
}

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

.azubi-content .badge{
    background: var(--color-accent);
}

.azubi-content h2 {
    color: white;
    font-size: 2.5rem;
}

.azubi-content p {
    line-height: 1.75;
    margin-bottom: var(--spacing-sm);
}

.badge {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 16px;
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
    display: inline-block;
}

.azubi-buttons {
    margin-top: var(--spacing-md);
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

/* ===== PROCESS ===== */
.process-section {
    padding: var(--spacing-xl) 0;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    width: 80%;
    height: 0;
    border-top: 2px dashed var(--color-secondary);
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 var(--spacing-xs);
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: white;
    border: 3px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto var(--spacing-sm);
    color: var(--color-primary);
    transition: var(--transition-medium);
}

.process-step:hover .step-icon {
    background-color: var(--color-primary);
    color: white;
}

.process-step h4 {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin: 0;
}

.step-time {
    font-size: 0.75rem;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

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

/* ===== CONTACT ===== */
.contact-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-light-gray);
}

.contact-grid {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.contact-card {
    background: white;
    padding: var(--spacing-md);
    border-radius: 0;
    border-left: 4px solid var(--color-secondary);
    display: flex;
    gap: var(--spacing-md);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    width: calc(50% - var(--spacing-md));
    max-width: 480px;
}

.contact-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
}

.contact-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-details h3 {
    margin-bottom: 0;
    font-size: 1.15rem;
}

.contact-details .role {
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 0.85rem;
    display: block;
    margin-bottom: var(--spacing-sm);
}

.contact-info p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.contact-info i {
    color: var(--color-accent);
    width: 18px;
}

.contact-details .quote {
    font-style: italic;
    font-size: 0.88rem;
    color: var(--color-text-main);
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    border-top: 1px solid #eee;
}

.contact-extra {
    text-align: center;
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: white;
    border-radius: 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-extra p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.contact-extra p:first-child {
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: var(--spacing-xs);
}

.contact-extra i {
    color: var(--color-secondary);
    width: 18px;
}

/* ===== FAQ ===== */
.faq-section {
    padding: var(--spacing-xl) 0;
    background-color: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e8edf2;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-family-main);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-primary);
    gap: var(--spacing-sm);
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--color-secondary);
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.faq-item.open .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 0;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 0 var(--spacing-md) 0;
}

.faq-answer p {
    color: var(--color-text-light);
    line-height: 1.75;
    margin: 0 0 var(--spacing-sm) 0;
}

.faq-answer .btn-link {
    font-size: 0.9rem;
}

/* ===== EASTER EGG ===== */
.easter-egg-section {
    background-color: #fff0f7;
    padding: var(--spacing-md) 0;
    text-align: center;
}

.egg-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    color: var(--color-primary);
}

.egg-icon {
    font-size: 1.5rem;
    color: var(--color-accent);
}

.egg-content p {
    margin: 0;
    font-size: 0.95rem;
}

/* ===== FINAL CTA ===== */
.final-cta-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, rgba(0, 56, 100, 0.95) 0%, rgba(0, 56, 100, 0.9) 100%);
    color: white;
    text-align: center;
}

.final-cta-section h2 {
    color: white;
    font-size: 2.5rem;
}

.final-cta-section > .container > p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.final-buttons {
    margin-top: var(--spacing-md);
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.phone-cta {
    margin-top: var(--spacing-md);
    opacity: 0.7;
    font-size: 0.95rem;
}

/* ===== FOOTER ===== */
.main-footer {
    background-color: var(--color-primary);
    color: white;
    padding: var(--spacing-xl) 0 var(--spacing-lg);
}

.footer-top {
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    height: 50px;
    width: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.footer-col h4 {
    color: white;
    margin-bottom: var(--spacing-sm);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: white;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1100px) {
    .main-nav ul {
        gap: var(--spacing-xs);
    }

    .main-nav a {
        font-size: 0.82rem;
    }

    .header-cta {
        font-size: 0.8rem;
        padding: 8px 14px;
    }
}

@media (max-width: 960px) {
    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white;
        z-index: 999;
        padding: 100px var(--spacing-md) var(--spacing-md);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav a {
        display: block;
        padding: 16px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid #eee;
    }

    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

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

    .stories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .split-layout {
        flex-direction: column;
    }

    .growth-layout {
        flex-direction: column;
    }

    .contact-card {
        width: 100%;
        max-width: none;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .process-timeline {
        flex-direction: column;
        gap: var(--spacing-md);
        align-items: center;
    }

    .process-timeline::before {
        top: 0;
        left: 50%;
        width: 2px;
        height: 100%;
        transform: translateX(-50%);
    }

    .process-step {
        max-width: 300px;
    }

    .benefit-card {
        position: relative;
        top: auto !important;
    }
}

@media (max-width: 600px) {
    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-subline {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .target-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

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

    .contact-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .final-buttons {
        flex-direction: column;
        align-items: center;
    }

    .azubi-buttons {
        flex-direction: column;
        align-items: center;
    }

    .benefit-card {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-md);
    }

    .benefit-image {
        width: 80px;
        height: 80px;
    }

    .growth-text h2,
    .split-text h2,
    .azubi-content h2,
    .final-cta-section h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .stories-grid {
        grid-template-columns: 1fr;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .trust-logos {
        gap: var(--spacing-sm);
    }

    .trust-item {
        font-size: 0.8rem;
    }
}
/* Footer-Bottom: Social Media + Copyright
   Wird im HTML außerhalb des .container-Divs gerendert,
   deshalb hier selbst container-konform begrenzen. */
.footer-bottom {
    max-width: var(--container-width);
    margin: var(--spacing-lg) auto 0;
    padding: var(--spacing-md) var(--spacing-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.footer-copyright {
    font-size: 0.85rem;
    opacity: 0.65;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
}

.footer-social i {
    font-size: 0.95rem;
}

@media (max-width: 568px) {
    .footer-bottom {
        flex-direction: column-reverse;
        text-align: center;
    }
}
