/* ====================================
   KARRIERE PAGE STYLES — MONOCHROME LIGHT
   ==================================== */

.hero-section {
	position: relative;
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 150px 0 100px;
	background: #111111;
}

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

.hero-background img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.15;
	filter: grayscale(1);
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
	z-index: 2;
}

.hero-content {
	position: relative;
	z-index: 3;
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
	padding: 0 20px;
}

.hero-subtitle {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.2em;
	color: #aaaaaa;
	display: block;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.hero-title {
	font-size: 56px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 24px;
	color: #ffffff;
}

.hero-description {
	font-size: 20px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.75);
	margin-bottom: 40px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.hero-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.hero-btn {
	padding: 16px 40px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.3s ease;
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.hero-btn.primary {
	background: #ffffff;
	color: #111111;
	box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.hero-btn.primary:hover {
	background: #f0f0f0;
	transform: translateY(-2px);
}

.hero-btn.secondary {
	background: transparent;
	color: #ffffff;
	border: 2px solid rgba(255,255,255,0.5);
}

.hero-btn.secondary:hover {
	background: rgba(255,255,255,0.1);
	border-color: #ffffff;
	transform: translateY(-2px);
}

/* ====================================
   BENEFITS SECTION
   ==================================== */

.benefits-section {
	padding: 100px 0;
	background: #f5f5f5;
}

.benefits-section .section-header {
	text-align: center;
	margin-bottom: 60px;
}

.benefits-section .section-subtitle {
	color: #888888;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.benefits-section .section-title {
	color: #111111;
}

.benefits-section .section-description {
	color: #555555;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 60px;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.benefit-card {
	background: #ffffff;
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: 16px;
	padding: 40px;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.benefit-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 28px rgba(0,0,0,0.12);
	border-color: rgba(0,0,0,0.15);
}

.benefit-icon {
	width: 72px;
	height: 72px;
	background: #111111;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
}

.benefit-icon svg {
	width: 36px;
	height: 36px;
	color: #ffffff;
}

.benefit-title {
	font-size: 20px;
	font-weight: 700;
	color: #111111;
	margin-bottom: 12px;
}

.benefit-description {
	font-size: 15px;
	line-height: 1.7;
	color: #666666;
}

/* ====================================
   JOBS SECTION
   ==================================== */

.jobs-section {
	padding: 100px 0;
	background: #ffffff;
}

.jobs-section .section-header {
	text-align: center;
	margin-bottom: 60px;
}

.jobs-section .section-subtitle {
	color: #888888;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.jobs-section .section-title {
	color: #111111;
}

.jobs-section .section-description {
	color: #555555;
}

.job-filters {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-bottom: 50px;
	flex-wrap: wrap;
}

.filter-btn {
	padding: 10px 24px;
	font-size: 13px;
	font-weight: 600;
	background: #f5f5f5;
	color: #555555;
	border: 1px solid rgba(0,0,0,0.12);
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.filter-btn:hover {
	border-color: #111111;
	color: #111111;
	background: #f0f0f0;
}

.filter-btn.active {
	background: #111111;
	color: #ffffff;
	border-color: #111111;
}

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

.job-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 32px;
	box-shadow: 0 4px 16px rgba(0,0,0,0.07);
	transition: all 0.3s ease;
	cursor: pointer;
	border: 1px solid rgba(0,0,0,0.09);
}

.job-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(0,0,0,0.13);
	border-color: rgba(0,0,0,0.18);
}

.job-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 16px;
	gap: 16px;
}

.job-badge {
	display: inline-block;
	padding: 5px 14px;
	background: #f0f0f0;
	color: #555555;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	flex-shrink: 0;
}

.job-title {
	font-size: 22px;
	font-weight: 700;
	color: #111111;
	margin-bottom: 12px;
	line-height: 1.3;
}

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

.job-meta-item {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: #777777;
}

.job-meta-item svg {
	width: 16px;
	height: 16px;
	color: #999999;
}

.job-description {
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin-bottom: 16px;
}

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

.job-tag {
	padding: 4px 12px;
	background: #f5f5f5;
	color: #555555;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 500;
	border: 1px solid rgba(0,0,0,0.08);
}

.job-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 16px;
	border-top: 1px solid rgba(0,0,0,0.08);
}

.job-salary {
	font-size: 18px;
	font-weight: 700;
	color: #111111;
}

.job-apply-btn {
	padding: 10px 22px;
	background: #111111;
	color: #ffffff;
	border: none;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.job-apply-btn:hover {
	background: #333333;
	transform: translateY(-2px);
}

.no-jobs {
	text-align: center;
	padding: 60px 20px;
	color: #888888;
	font-size: 18px;
}

/* ====================================
   JOB MODAL
   ==================================== */

.job-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
	align-items: center;
	justify-content: center;
}

.job-modal.active {
	display: flex;
}

.job-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(4px);
}

.job-modal-content {
	position: relative;
	background: #ffffff;
	border-radius: 20px;
	max-width: 800px;
	width: 90%;
	max-height: 85vh;
	overflow-y: auto;
	padding: 50px;
	z-index: 10001;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(0,0,0,0.08);
}

.job-modal-close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	background: #f0f0f0;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 10002;
}

.job-modal-close:hover {
	background: #111111;
	transform: rotate(90deg);
}

.job-modal-close:hover svg {
	color: #ffffff;
}

.job-modal-close svg {
	width: 20px;
	height: 20px;
	color: #555555;
}

.job-modal-header {
	margin-bottom: 30px;
}

.job-modal-badge {
	display: inline-block;
	padding: 6px 16px;
	background: #f0f0f0;
	color: #555555;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 16px;
}

.job-modal-title {
	font-size: 34px;
	font-weight: 700;
	color: #111111;
	margin-bottom: 16px;
	line-height: 1.2;
}

.job-modal-meta {
	display: flex;
	gap: 24px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.job-modal-meta-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	color: #666666;
}

.job-modal-meta-item svg {
	width: 18px;
	height: 18px;
	color: #999999;
}

.job-modal-section {
	margin-bottom: 32px;
}

.job-modal-section-title {
	font-size: 20px;
	font-weight: 700;
	color: #111111;
	margin-bottom: 14px;
}

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

.job-modal-section ul li {
	padding: 8px 0 8px 28px;
	position: relative;
	font-size: 15px;
	line-height: 1.7;
	color: #444444;
	border-bottom: 1px solid rgba(0,0,0,0.06);
}

.job-modal-section ul li:last-child {
	border-bottom: none;
}

.job-modal-section ul li:before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 8px;
	color: #111111;
	font-weight: 700;
	font-size: 14px;
}

.job-modal-section p {
	font-size: 15px;
	line-height: 1.8;
	color: #555555;
	margin-bottom: 12px;
}

.job-modal-salary {
	font-size: 26px;
	font-weight: 700;
	color: #111111;
	margin-bottom: 28px;
	display: block;
}

.job-modal-apply {
	padding: 16px 50px;
	background: #111111;
	color: #ffffff;
	border: none;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	width: 100%;
	display: block;
}

.job-modal-apply:hover {
	background: #333333;
	transform: translateY(-2px);
}

/* ====================================
   APPLICATION PROCESS SECTION
   ==================================== */

.process-section {
	padding: 100px 0;
	background: #f5f5f5;
	position: relative;
}

.process-section .section-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 80px;
}

.process-section .section-subtitle {
	color: #888888;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.process-section .section-title {
	color: #111111;
}

.process-section .section-description {
	font-size: 17px;
	color: #555555;
	margin-top: 12px;
	line-height: 1.6;
}

.process-timeline {
	max-width: 900px;
	margin: 0 auto;
	position: relative;
	padding: 20px 0;
}

.process-timeline::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(to bottom, #dddddd 0%, #dddddd 100%);
	transform: translateX(-50%);
}

.process-step {
	display: flex;
	align-items: center;
	gap: 40px;
	margin-bottom: 70px;
	position: relative;
}

.process-step:last-child {
	margin-bottom: 0;
}

.process-step:nth-child(odd) {
	flex-direction: row;
}

.process-step:nth-child(even) {
	flex-direction: row-reverse;
}

.step-number {
	flex-shrink: 0;
	width: 100px;
	height: 100px;
	background: #111111;
	border: 3px solid #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 36px;
	font-weight: 700;
	color: #ffffff;
	position: relative;
	z-index: 2;
	box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.step-content {
	flex: 1;
	background: #ffffff;
	padding: 36px;
	border-radius: 16px;
	box-shadow: 0 4px 16px rgba(0,0,0,0.07);
	transition: all 0.3s ease;
	border: 1px solid rgba(0,0,0,0.08);
}

.step-content:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(0,0,0,0.12);
	border-color: rgba(0,0,0,0.15);
}

.step-icon {
	width: 48px;
	height: 48px;
	background: #f5f5f5;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	border: 1px solid rgba(0,0,0,0.08);
}

.step-icon svg {
	width: 26px;
	height: 26px;
	color: #111111;
}

.step-title {
	font-size: 22px;
	font-weight: 600;
	color: #111111;
	margin-bottom: 10px;
	line-height: 1.3;
}

.step-description {
	font-size: 15px;
	color: #666666;
	line-height: 1.7;
	margin: 0;
}

/* ====================================
   CTA SECTION
   ==================================== */

.cta-section {
	padding: 100px 0;
	background: #111111;
	color: white;
	text-align: center;
}

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

.cta-title {
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.2;
	color: #ffffff;
}

.cta-description {
	font-size: 18px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 40px;
}

.cta-button {
	display: inline-block;
	padding: 18px 50px;
	background: #ffffff;
	color: #111111;
	text-decoration: none;
	border: none;
	outline: none;
	font-size: 15px;
	font-weight: 600;
	border-radius: 8px;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
}

.cta-button:hover {
	background: #f0f0f0;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(255,255,255,0.15);
}

/* ====================================
   APPLICATION MODAL
   ==================================== */

.application-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
	align-items: center;
	justify-content: center;
}

.application-modal.active {
	display: flex;
}

.application-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(4px);
}

.application-modal-content {
	position: relative;
	background: #ffffff;
	border-radius: 20px;
	max-width: 600px;
	width: 90%;
	max-height: 85vh;
	overflow-y: auto;
	padding: 50px;
	z-index: 10001;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(0,0,0,0.08);
}

.application-modal-close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	background: #f0f0f0;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 10002;
}

.application-modal-close:hover {
	background: #111111;
	transform: rotate(90deg);
}

.application-modal-close:hover svg {
	color: #ffffff;
}

.application-modal-close svg {
	width: 20px;
	height: 20px;
	color: #555555;
}

.application-modal-title {
	font-size: 30px;
	font-weight: 700;
	color: #111111;
	margin-bottom: 8px;
}

.application-modal-subtitle {
	font-size: 15px;
	color: #888888;
	margin-bottom: 28px;
	font-weight: 500;
}

.application-form .form-group {
	margin-bottom: 22px;
}

.application-form label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #333333;
	margin-bottom: 7px;
}

.application-form input[type="text"],
.application-form input[type="email"],
.application-form input[type="tel"],
.application-form textarea {
	width: 100%;
	padding: 12px 16px;
	background: #f8f8f8;
	border: 1px solid rgba(0,0,0,0.15);
	border-radius: 8px;
	color: #111111;
	font-size: 14px;
	transition: all 0.3s ease;
	font-family: inherit;
}

.application-form input:focus,
.application-form textarea:focus {
	outline: none;
	border-color: #111111;
	background: #ffffff;
	box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}

.application-form textarea {
	resize: vertical;
	min-height: 100px;
}

.file-upload-area {
	position: relative;
}

.file-upload-area input[type="file"] {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
	z-index: 2;
}

.file-upload-label {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 28px 20px;
	background: #f8f8f8;
	border: 2px dashed rgba(0,0,0,0.15);
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
}

.file-upload-label:hover {
	border-color: #111111;
	background: #f0f0f0;
}

.file-upload-label svg {
	width: 36px;
	height: 36px;
	color: #888888;
	margin-bottom: 10px;
}

.file-upload-label span {
	color: #777777;
	font-size: 13px;
}

.file-name {
	display: none;
	color: #111111 !important;
	font-weight: 600;
	margin-top: 8px;
	font-size: 13px !important;
}

.form-actions {
	display: flex;
	gap: 12px;
	margin-top: 30px;
}

.btn-primary,
.btn-secondary {
	flex: 1;
	padding: 14px 28px;
	border: none;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.btn-primary {
	background: #111111;
	color: #ffffff;
}

.btn-primary:hover {
	background: #333333;
	transform: translateY(-2px);
}

.btn-primary:disabled {
	opacity: 0.4;
	cursor: not-allowed;
	transform: none;
}

.btn-secondary {
	background: #f0f0f0;
	color: #555555;
	border: 1px solid rgba(0,0,0,0.12);
}

.btn-secondary:hover {
	background: #e8e8e8;
	color: #111111;
}

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

@media (max-width: 1200px) {
	.benefits-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}
}

@media (max-width: 1024px) {
	.hero-section { padding: 120px 0 80px; }
	.hero-title { font-size: 44px; }
	.hero-description { font-size: 17px; }
	.jobs-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
	.hero-section { padding: 100px 0 60px; min-height: 60vh; }
	.hero-title { font-size: 34px; }
	.hero-description { font-size: 16px; }
	.hero-buttons { flex-direction: column; gap: 12px; }
	.hero-btn { padding: 14px 32px; font-size: 14px; width: 100%; max-width: 300px; }
	.benefits-section, .jobs-section, .cta-section { padding: 70px 0; }
	.benefits-grid { grid-template-columns: 1fr; gap: 20px; }
	.benefit-card { padding: 28px; }
	.job-filters { gap: 8px; }
	.filter-btn { padding: 8px 18px; font-size: 13px; }
	.job-card { padding: 24px; }
	.job-title { font-size: 20px; }
	.job-meta { flex-direction: column; gap: 8px; }
	.job-footer { flex-direction: column; gap: 12px; align-items: flex-start; }
	.job-apply-btn { width: 100%; }
	.job-modal-content { padding: 28px 22px; max-height: 90vh; }
	.job-modal-title { font-size: 26px; }
	.job-modal-meta { flex-direction: column; gap: 12px; }
	.job-modal-salary { font-size: 22px; }
	.process-section { padding: 60px 0; }
	.process-section .section-header { margin-bottom: 48px; }
	.process-timeline::before { left: 28px; }
	.process-step { flex-direction: column !important; align-items: flex-start; gap: 16px; margin-bottom: 48px; padding-left: 72px; }
	.step-number { position: absolute; left: 0; width: 55px; height: 55px; font-size: 22px; }
	.step-content { padding: 22px; width: 100%; }
	.step-title { font-size: 19px; }
	.cta-title { font-size: 30px; }
	.cta-description { font-size: 16px; }
	.application-modal-content { padding: 28px 22px; max-height: 90vh; }
	.application-modal-title { font-size: 24px; }
	.form-actions { flex-direction: column; }
	.btn-primary, .btn-secondary { width: 100%; }
}

@media (max-width: 480px) {
	.hero-title { font-size: 28px; }
	.benefit-title { font-size: 18px; }
	.job-title { font-size: 17px; }
	.cta-title { font-size: 24px; }
}
