/* ================================================
   HOMEOFJOBS - Modern Design nach rocken.jobs
   KEINE Umlaut-Konvertierung!
   Farben: #f6a200, #ffd900, #ffffff, #000000, #f0f0f0
   ================================================ */

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

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

:root {
    --primary: #f6a200;
    --primary-dark: #e09500;
    --secondary: #ffd900;
    --accent: #f6a200;
    --white: #ffffff;
    --black: #000000;
    --gray-50: #f0f0f0;
    --gray-100: #e5e5e5;
    --gray-200: #d4d4d4;
    --gray-300: #b3b3b3;
    --gray-400: #8a8a8a;
    --gray-500: #6b6b6b;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gradient: linear-gradient(135deg, #f6a200 0%, #ffd900 100%);
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.06);
    --shadow: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-card: 0 0 0 1px rgba(0,0,0,0.05), 0 4px 16px rgba(0,0,0,0.08);
    --radius-full: 9999px;
    --radius-xl: 24px;
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--gray-800);
    line-height: 1.6;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 50px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
button { font-family: inherit; }

/* ================================================
   HEADER - Floating Card Style
   ================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 24px;
}

.header-card {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-full);
    padding: 8px 8px 8px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-lg);
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
}

.logo svg { width: 28px; height: 28px; }

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: color 0.2s;
}

.nav-link:hover { color: var(--primary); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    white-space: nowrap;
}

.btn svg { width: 16px; height: 16px; }

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

.btn-primary:hover {
    background: var(--gray-800);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

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

.btn-accent:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(246,162,0,0.4);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--gray-200);
    color: var(--gray-700);
}

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

.btn-ghost {
    background: transparent;
    color: var(--gray-600);
}

.btn-ghost:hover { color: var(--primary); }

.btn-lg { padding: 14px 28px; font-size: 0.95rem; }
.btn-sm { padding: 8px 16px; font-size: 0.8rem; }

/* ================================================
   HERO - Gradient Background
   ================================================ */
.hero {
    background: linear-gradient(135deg, #f6a200 0%, #ffab04 50%, #ffd900 100%);
    padding: 140px 24px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 50m-2 0a2 2 0 1 0 4 0a2 2 0 1 0-4 0' fill='%23ffffff' fill-opacity='0.1'/%3E%3C/svg%3E");
    opacity: 0.5;
}

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

.hero h1 {
    font-size: 2.75rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 32px;
    line-height: 1.2;
    font-style: italic;
}

/* Filter Pills */
.filter-pills {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.filter-pill {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--white);
    padding: 10px 18px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

.filter-pill:hover,
.filter-pill.active {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.5);
}

.filter-pill svg {
    width: 14px;
    height: 14px;
    opacity: 0.8;
    transition: transform 0.2s;
}

.filter-pill.active svg {
    transform: rotate(180deg);
}

/* Filter Dropdown */
.filter-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    z-index: 100;
}

.filter-pill.active .filter-dropdown {
    opacity: 1;
    visibility: visible;
}

.filter-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: var(--gray-700);
    font-size: 0.875rem;
    cursor: pointer;
    transition: background 0.15s;
}

.filter-dropdown-item:hover {
    background: var(--gray-50);
}

.filter-dropdown-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
}

.filter-dropdown-btn {
    margin: 12px 16px 4px;
    width: calc(100% - 32px);
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.filter-dropdown-btn:hover {
    background: var(--primary-dark);
}

/* Lohn Slider Dropdown */
.filter-dropdown.lohn-dropdown {
    min-width: 280px;
    padding: 20px;
}

.lohn-range {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.lohn-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--gray-200);
    outline: none;
    -webkit-appearance: none;
    margin-bottom: 16px;
}

.lohn-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.lohn-inputs {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.lohn-inputs input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    text-align: center;
}

/* Search Box */
.search-box {
    background: var(--white);
    border-radius: var(--radius-full);
    padding: 6px;
    display: flex;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.search-field {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 10px;
}

.search-field svg {
    width: 18px;
    height: 18px;
    color: var(--gray-400);
    flex-shrink: 0;
}

.search-field input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.95rem;
    padding: 14px 0;
    background: transparent;
}

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

.search-divider {
    width: 1px;
    height: 32px;
    background: var(--gray-200);
}

.search-distance {
    padding: 0 12px;
    font-size: 0.9rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.search-btn {
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 14px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.search-btn:hover {
    background: var(--gray-800);
}

.hero-stats {
    margin-top: 20px;
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
}

/* ================================================
   SECTIONS
   ================================================ */
.section {
    padding: 80px 24px;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 48px;
}

/* ================================================
   HOW IT WORKS
   ================================================ */
.how-section {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.how-left h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.3;
}

.how-left p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.how-left p strong {
    color: var(--black);
}

.how-visual {
    position: relative;
    background: linear-gradient(135deg, #e8f4fd 0%, #d4e8fb 100%);
    border-radius: var(--radius-xl);
    padding: 40px;
    min-height: 400px;
}

/* Steps */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-num {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 6px;
}

.step-content p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.testimonials-nav {
    display: flex;
    gap: 8px;
}

.testimonials-nav button {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.testimonials-nav button:hover {
    border-color: var(--primary);
    color: var(--primary);
}

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: relative;
    border: 1px solid var(--gray-100);
    transition: all 0.2s;
}

.testimonial-card::before,
.testimonial-card::after {
    content: '+';
    position: absolute;
    font-size: 1.5rem;
    color: var(--gray-200);
    font-weight: 300;
}

.testimonial-card::before { top: 16px; right: 16px; }
.testimonial-card::after { bottom: 16px; right: 16px; }

.testimonial-card:hover {
    box-shadow: var(--shadow);
}

.testimonial-card.featured {
    background: var(--gradient);
    border: none;
}

.testimonial-card.featured * { color: var(--white); }
.testimonial-card.featured::before,
.testimonial-card.featured::after { color: rgba(255,255,255,0.3); }

.testimonial-icon {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.testimonial-card.featured .testimonial-icon {
    background: rgba(255,255,255,0.2);
}

.testimonial-icon svg {
    width: 16px;
    height: 16px;
    color: var(--white);
}

.testimonial-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--black);
}

.testimonial-card p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.testimonial-card.featured p { color: rgba(255,255,255,0.9); }

.testimonial-author {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--gray-700);
}

/* ================================================
   JOBS PAGE - Split View
   ================================================ */
.jobs-layout {
    display: flex;
    min-height: calc(100vh - 80px);
    /*padding-top: 80px;*/
}

.jobs-sidebar {
    width: 680px;
    min-width: 681px;
    background: var(--white);
    border-right: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
    height: calc(100vh - 80px);
    position: sticky;
    top: 80px;
}

.jobs-sidebar-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-100);
}

.jobs-sidebar-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
}

.jobs-sidebar-header span { color: var(--gray-500); font-weight: 400; }

.jobs-search {
    padding: 16px 24px;
    border-bottom: 1px solid var(--gray-100);
}

.jobs-search-box {
    display: flex;
    gap: 8px;
}

.jobs-search-input {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--white);
}

.jobs-search-input svg {
    width: 16px;
    height: 16px;
    color: var(--gray-400);
}

.jobs-search-input input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.875rem;
}

.jobs-search-btn {
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
}

.jobs-filters {
    display: flex;
    gap: 8px;
    padding: 12px 24px;
    border-bottom: 1px solid var(--gray-100);
    flex-wrap: wrap;
}

.jobs-filter-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    background: var(--white);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.15s;
    position: relative;
}

.jobs-filter-pill:hover,
.jobs-filter-pill.active {
    border-color: var(--primary);
    color: var(--primary);
}

.jobs-filter-pill svg {
    width: 12px;
    height: 12px;
    transition: transform 0.2s;
}

.jobs-filter-pill.active > svg {
    transform: rotate(180deg);
}

.jobs-filter-pill .filter-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    transform: none;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    z-index: 100;
}

.jobs-filter-pill.active .filter-dropdown {
    opacity: 1;
    visibility: visible;
}

.jobs-filter-pill .filter-dropdown.lohn-dropdown {
    min-width: 280px;
    padding: 20px;
}

.jobs-filter-more {
    margin-left: auto;
    color: var(--gray-500);
}

.jobs-list {
    flex: 1;
    overflow-y: auto;
    padding: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.jobs-list::-webkit-scrollbar {
    display: none;
}

.job-item {
    display: block;
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-100);
    transition: all 0.15s;
    cursor: pointer;
    position: relative;
}

.job-item:hover { 
    background: var(--gray-50); 
}

.job-item.active {
    background: var(--gray-50);
    border-left: 3px solid var(--primary);
}

.job-item.active::after {
    content: '';
    position: absolute;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 12px solid var(--gray-50);
    z-index: 10;
}

.job-item h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
    line-height: 1.4;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 0;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: var(--gray-500);
}

.job-meta svg { width: 14px; height: 14px; }

.job-salary {
    font-weight: 600;
    color: var(--black) !important;
}

.job-tags { 
    display: flex; 
    gap: 6px; 
    flex-wrap: wrap;
    margin-top: 10px;
}

.job-tag {
    background: var(--gray-100);
    color: var(--gray-600);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
}

/* Pagination */
.jobs-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    border-top: 1px solid var(--gray-100);
}

.jobs-pagination button {
    width: 36px;
    height: 36px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.15s;
}

.jobs-pagination button:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.jobs-pagination button.active {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
}

.jobs-pagination span {
    color: var(--gray-400);
}

/* Job Detail Panel */
.jobs-main {
    flex: 1;
    background: var(--gray-50);
    overflow-y: auto;
    height: calc(100vh - 80px);
    position: sticky;
    top: 80px;
}

.job-detail {
    max-width: 800px;
    margin: 0 auto;
    padding: 32px;
}

.job-detail-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    position: relative;
}

.job-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M120 0 L120 120 L0 0 Z' fill='%23f0f0f0'/%3E%3Cline x1='60' y1='20' x2='100' y2='60' stroke='%23d4d4d4' stroke-width='1'/%3E%3Cline x1='80' y1='20' x2='100' y2='40' stroke='%23d4d4d4' stroke-width='1'/%3E%3C/svg%3E") no-repeat;
    background-size: contain;
}

.job-detail-header {
    padding: 32px;
    border-bottom: 1px solid var(--gray-100);
    position: relative;
}

.job-detail-header h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
    padding-right: 100px;
}

.job-detail-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.meta-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meta-box-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-box-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--black);
}

.job-detail-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.job-detail-tag {
    background: rgba(246, 162, 0, 0.1);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
}

.job-detail-actions { 
    display: flex; 
    gap: 12px; 
}

.job-detail-actions .btn-accent {
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-detail-actions .btn-accent svg {
    width: 16px;
    height: 16px;
}

/* Recruiter Info */
.job-recruiter {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 32px;
    border-bottom: 1px solid var(--gray-100);
    background: var(--gray-50);
}

.job-recruiter-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.job-recruiter-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--black);
}

.job-recruiter-info p {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.job-recruiter-action {
    margin-left: auto;
}

.job-detail-body { padding: 32px; }

.job-section { margin-bottom: 32px; }
.job-section:last-child { margin-bottom: 0; }

.job-section h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 16px;
}

.job-section p {
    color: var(--gray-600);
    line-height: 1.8;
}

.job-section ul {
    list-style: none;
    padding: 0;
}

.job-section li {
    color: var(--gray-600);
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.job-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.job-section li strong {
    color: var(--black);
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.benefit-text {
    font-size: 0.85rem;
    color: var(--gray-700);
}

/* ================================================
   AUTH PAGES
   ================================================ */
.auth-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.auth-form-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.auth-form-box {
    width: 100%;
    max-width: 380px;
}

.auth-form-box .logo { margin-bottom: 32px; }

.auth-form-box h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 32px;
}

.auth-visual-side {
    background: linear-gradient(135deg, #f6a200 0%, #ffd900 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
}

/* Auth Tabs */
.auth-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 32px;
}

.auth-tab {
    flex: 1;
    padding: 14px 28px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
    text-decoration: none;
}

.auth-tab:first-child {
    border-radius: 50px 0 0 50px;
    background: var(--black);
    color: var(--primary);
}

.auth-tab:last-child {
    border-radius: 0 50px 50px 0;
    background: var(--black);
    color: var(--primary);
}

.auth-tab.active {
    background: var(--primary);
    color: var(--black);
}

.auth-tab:hover:not(.active) {
    background: var(--gray-800);
}

/* ================================================
   FORMS
   ================================================ */
.form-group { margin-bottom: 20px; }

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-label.required::after {
    content: ' *';
    color: #ef4444;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    transition: all 0.2s;
    background: var(--white);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(246,162,0,0.1);
}

.form-input::placeholder { color: var(--gray-400); }

.password-wrapper { position: relative; }

.password-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-400);
    padding: 0;
}

.password-toggle:hover { color: var(--primary); }

.form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gray-600);
    cursor: pointer;
}

.checkbox-label input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.form-link {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
}

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

.form-btn { width: 100%; padding: 14px; }

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background: var(--gray-50);
    padding: 60px 24px 24px;
    border-top: 1px solid var(--gray-100);
}

.footer-inner { max-width: 1100px; margin: 0 auto; }

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--primary); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
    font-size: 0.85rem;
    color: var(--gray-500);
}

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

.social-link {
    width: 36px;
    height: 36px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: all 0.2s;
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.social-link svg { width: 16px; height: 16px; }

/* ================================================
   FOOTER SLIDE-IN SYSTEM
   ================================================ */
.footer-slide {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.footer-slide.open {
    transform: translateY(0);
}

.footer-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: all 0.2s;
    z-index: 10001;
}

.footer-close:hover {
    background: var(--gray-100);
    color: var(--gray-800);
}

/* Footer Bar - Button ragt über Linie */
.footer-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: var(--white);
    z-index: 9999;
    transition: all 0.3s;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.footer-bar.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
}

.footer-bar-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    /*height: 1px;
    background: var(--gray-300);*/
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.footer-bar-button {
    position: absolute;
    top: -24px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.footer-bar-circle {
    width: 48px;
    height: 48px;
    background: #6b7280;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.2s;
}

.footer-bar-button:hover .footer-bar-circle {
    background: #4b5563;
    transform: scale(1.05);
}

.footer-bar-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ================================================
   ALERTS
   ================================================ */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}

.alert svg { width: 20px; height: 20px; flex-shrink: 0; }

.alert-error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.alert-success {
    background: #f0fdf4;
    color: #15803d;
    border: 1px solid #bbf7d0;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    .jobs-layout { flex-direction: column; }
    .jobs-sidebar {
        width: 100%;
        min-width: 100%;
        height: auto;
        max-height: 50vh;
        position: relative;
        top: 0;
    }
    .jobs-main {
        height: auto;
        position: relative;
        top: 0;
    }
    .job-item.active::after {
        display: none;
    }
    .how-section { grid-template-columns: 1fr; gap: 40px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .job-detail-meta { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .header-card { border-radius: var(--radius-lg); }
    .nav { display: none; }
    .hero { padding: 120px 20px 60px; }
    .hero h1 { font-size: 1.75rem; }
    .search-box { flex-direction: column; padding: 16px; gap: 12px; }
    .search-field { width: 100%; padding: 0; }
    .search-divider { width: 100%; height: 1px; }
    .search-btn { width: 100%; }
    .auth-layout { grid-template-columns: 1fr; }
    .auth-visual-side { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .job-detail-meta { grid-template-columns: 1fr; }
    .filter-pills { gap: 6px; }
    .filter-pill { padding: 8px 12px; font-size: 0.8rem; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
