/* Theme variables */
:root {
	/* Core palette - modern cool blue with violet accent */
	--primary: #2563eb;
	--primary-2: #7c3aed;
	--primary-dark: #1d4ed8;
	--secondary: #0f172a;
	--accent: #22d3ee;
	--light: #f8fafc;
	--gray: #64748b;
	--light-gray: #e2e8f0;
	--surface: #ffffff;
	--surface-glass: rgba(255,255,255,0.65);
	--border-glass: rgba(15,23,42,0.08);
	--shadow: 0 8px 30px rgba(2, 6, 23, 0.08);
}

[data-theme="dark"] {
	--secondary: #e2e8f0;
	--light: #0b1220;
	--gray: #94a3b8;
	--light-gray: #213044;
	--surface: #0b1220;
	--surface-glass: rgba(15,23,42,0.6);
	--border-glass: rgba(148,163,184,0.15);
	--shadow: 0 10px 30px rgba(0,0,0,0.45);
}

/* Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	height: 100%;
}

body {
	font-family: 'Open Sans', sans-serif;
	color: var(--secondary);
	line-height: 1.6;
	background-color: var(--light);
}

h1, h2, h3, h4, h5 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	line-height: 1.2;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 12px 28px;
	background-color: var(--primary);
	color: white;
	text-decoration: none;
	border-radius: 6px;
	font-weight: 600;
	transition: all 0.25s ease;
	border: none;
	cursor: pointer;
	font-size: 16px;
}

.btn:hover {
	background-color: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn-outline {
	background-color: transparent;
	border: 2px solid var(--primary);
	color: var(--primary);
}

.btn-outline:hover {
	background-color: var(--primary);
	color: white !important;
}

.btn-accent {
	background-color: var(--accent);
}

.btn-accent:hover {
	background-color: #ea580c;
}

/* Header */
header {
	background-color: transparent;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 100;
	backdrop-filter: saturate(180%) blur(10px);
}

.is-scrolled header .navbar {
	background: var(--surface-glass);
	border: 1px solid var(--border-glass);
	box-shadow: var(--shadow);
}

.navbar {
	background: var(--surface-glass);
	border: 1px solid var(--border-glass);
	box-shadow: var(--shadow);
	border-radius: 14px;
	margin-top: 10px;
}

.navbar { display: flex; justify-content: space-between; align-items: center; padding: 10px 16px; }

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	font-weight: 700;
	color: var(--primary);
	text-decoration: none;
}

.logo span {
	color: var(--secondary);
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 0.2px;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 30px;
	align-items: center;
}

.nav-links li {
	display: flex;
	align-items: center;
}

.nav-links a {
	text-decoration: none;
	color: var(--secondary);
	font-weight: 600;
	transition: color 0.25s ease;
	opacity: 0.9;
}

.nav-links a:hover {
	color: var(--primary);
	opacity: 1;
}

.nav-links a.active {
	color: var(--primary);
}

.mobile-toggle {
	display: none;
	font-size: 24px;
	cursor: pointer;
}

.theme-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	border: 1px solid var(--border-glass);
	background: var(--surface-glass);
	color: var(--secondary);
	margin-left: 10px;
	cursor: pointer;
	transition: all 0.2s ease;
	box-shadow: var(--shadow);
}

.theme-toggle:hover {
	transform: translateY(-1px);
}

[data-theme="dark"] .theme-toggle:hover {
	opacity: 0.95;
}

/* Header CTA styles */
.navbar .btn {
	padding: 10px 16px;
	font-size: 14px;
	line-height: 1;
	border-radius: 999px;
	box-shadow: var(--shadow);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.btn-cta {
	background: linear-gradient(135deg, var(--primary), var(--primary-2));
	border: none;
	color: #ffffff;
	padding: 12px 18px;
	font-weight: 700;
	letter-spacing: 0.2px;
	font-size: 16px !important;
}

.btn-cta:hover {
	filter: brightness(1.06);
	transform: translateY(-1px);
}

/* Ensure header CTA is vertically centered and consistent size */
.navbar .btn-cta {
	height: 44px;
	padding: 0 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
/* Hero */
.hero {
	padding: 160px 0 90px;
	text-align: center;
	background:
		linear-gradient(135deg, rgba(37,99,235,0.16) 0%, rgba(124,58,237,0.16) 50%, rgba(34,211,238,0.12) 100%),
		radial-gradient(60% 80% at 5% -10%, rgba(124,58,237,0.28), rgba(124,58,237,0) 60%),
		radial-gradient(55% 75% at 95% -15%, rgba(34,211,238,0.26), rgba(34,211,238,0) 60%),
		radial-gradient(45% 60% at 50% -20%, rgba(37,99,235,0.24), rgba(37,99,235,0) 60%);
	position: relative;
	overflow: hidden;
}

.hero:before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(2,6,23,0) 0%, rgba(2,6,23,0.18) 100%);
	pointer-events: none;
}

.hero:after {
	content: "";
	position: absolute;
	inset: -20%;
	background:
		conic-gradient(from 0deg at 60% 40%, rgba(124,58,237,0.18), rgba(34,211,238,0.14), rgba(37,99,235,0.18), rgba(124,58,237,0.18));
	filter: blur(80px);
	opacity: 0.65;
	animation: heroAurora 14s ease-in-out infinite alternate;
	pointer-events: none;
	will-change: transform, opacity;
}

@keyframes heroAurora {
	0% {
		transform: translateY(-6%) rotate(0deg) scale(1);
		opacity: 0.55;
	}
	100% {
		transform: translateY(6%) rotate(12deg) scale(1.05);
		opacity: 0.75;
	}
}
.hero .container {
	position: relative;
	z-index: 1;
}

.hero h1 {
	font-size: 3.5rem;
	margin-bottom: 20px;
	color: var(--secondary);
}

.hero p {
	font-size: 1.2rem;
	max-width: 700px;
	margin: 0 auto 40px;
	color: var(--gray);
}

.hero-btns {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 30px;
}

.btn-primary {
	background-image: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
}

.btn-secondary {
	background: transparent;
	border: 2px solid var(--border-glass);
	color: var(--secondary);
}

.hero-features {
	margin-top: 22px;
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
}

.chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border-radius: 999px;
	background: var(--surface-glass);
	color: var(--secondary);
	border: 1px solid var(--border-glass);
	font-weight: 600;
	font-size: 14px;
	backdrop-filter: blur(4px);
	box-shadow: var(--shadow);
}

.chip i {
	color: var(--primary);
}

/* Sections */
.section {
	padding: 100px 0;
}

.section--alt {
	background: linear-gradient(180deg, rgba(2,6,23,0.02) 0%, rgba(2,6,23,0.06) 100%);
}

.section-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 60px;
}

.section-header h2 {
	font-size: 2.5rem;
	margin-bottom: 20px;
	color: var(--secondary);
}

.section-header p {
	color: var(--gray);
	font-size: 1.1rem;
}

/* How it works - modern stepper */
.howit {
	position: relative;
}

.stepper {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
	margin-top: 40px;
}

.stepper:before {
	content: "";
	position: absolute;
	left: 6%;
	right: 6%;
	top: 30px;
	height: 3px;
	background: linear-gradient(90deg, var(--primary) 0%, var(--primary-2) 100%);
	opacity: 0.25;
	border-radius: 999px;
}

.stepper-item {
	text-align: center;
}

.stepper-badge {
	width: 56px;
	height: 56px;
	border-radius: 999px;
	margin: 0 auto 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 800;
	font-size: 18px;
	background: linear-gradient(135deg, var(--primary), var(--primary-2));
	box-shadow: 0 6px 18px rgba(37,99,235,0.25);
}

.stepper-item h3 {
	font-size: 1.15rem;
	margin-bottom: 8px;
	color: var(--secondary);
}

.stepper-item p {
	color: var(--gray);
	font-size: 0.98rem;
	max-width: 260px;
	margin: 0 auto;
}

.howit-cta {
	margin-top: 46px;
	text-align: center;
}

.howit-cta .btn {
	padding: 12px 20px;
}

@media (max-width: 768px) {
	.stepper {
		grid-template-columns: 1fr;
		gap: 18px;
	}
	.stepper:before {
		display: none;
	}
	.stepper-item {
		text-align: left;
		display: grid;
		grid-template-columns: auto 1fr;
		gap: 12px;
		align-items: start;
		background: var(--surface-glass);
		border: 1px solid var(--border-glass);
		border-radius: 12px;
		padding: 16px;
		box-shadow: var(--shadow);
		backdrop-filter: blur(6px);
	}
	.stepper-badge {
		margin: 0;
	}
	.stepper-item p {
		margin: 0;
	}
	.howit-cta {
		text-align: left;
	}
}

/* Process steps */
.process-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;
	margin-top: 50px;
}

.step {
	background: var(--surface-glass);
	border: 1px solid var(--border-glass);
	border-radius: 14px;
	padding: 30px;
	box-shadow: var(--shadow);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-align: center;
	backdrop-filter: blur(6px);
}

.step:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.step-icon {
	width: 70px;
	height: 70px;
	background: #dbeafe;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	color: var(--primary);
	font-size: 28px;
}

.step h3 {
	margin-bottom: 15px;
	font-size: 1.5rem;
}

/* Stories */
.stories {
	background-color: #f1f5f9;
}

[data-theme="dark"] .stories {
	background-color: #0c1424;
}

/* New success stories */
.stories-featured {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 28px;
	margin-bottom: 28px;
}

.story-featured {
	background: var(--surface-glass);
	border: 1px solid var(--border-glass);
	border-radius: 16px;
	padding: 28px;
	box-shadow: var(--shadow);
	backdrop-filter: blur(6px);
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 18px;
	align-items: start;
}

.story-avatar {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background-color: var(--light-gray);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	color: var(--gray);
}

.story-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 8px;
}

.story-info h4 {
	margin-bottom: 2px;
	color: var(--secondary);
}

.story-info p {
	color: var(--gray);
	font-size: 0.9rem;
}

.story-rating {
	color: #fbbf24;
}

.story-quote {
	color: var(--secondary);
	font-size: 1.05rem;
	line-height: 1.65;
}

.stories-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
}

.story-card {
	background: var(--surface-glass);
	border: 1px solid var(--border-glass);
	border-radius: 14px;
	padding: 20px;
	box-shadow: var(--shadow);
	backdrop-filter: blur(6px);
}

.story-card .story-head {
	margin-bottom: 10px;
}

.testimonials::-webkit-scrollbar {
	height: 8px;
}
.testimonials::-webkit-scrollbar-thumb {
	background: #cbd5e1;
	border-radius: 999px;
}
[data-theme="dark"] .testimonials::-webkit-scrollbar-thumb {
	background: #1f2b42;
}

.testimonial-header {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.testimonial-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: var(--light-gray);
	margin-right: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: var(--gray);
}

.testimonial-info h4 {
	margin-bottom: 5px;
}

.testimonial-info p {
	color: var(--gray);
	font-size: 0.9rem;
}

.quote {
	font-style: italic;
	color: var(--secondary);
	position: relative;
	padding-left: 20px;
}

.quote:before {
	content: "“";
	position: absolute;
	left: 0;
	top: -10px;
	font-size: 40px;
	color: var(--primary);
	font-family: Georgia, serif;
	line-height: 1;
}

/* Roles (Join Our Team) */
.roles {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
	margin-top: 28px;
}

.role-card {
	background: var(--surface-glass);
	border: 1px solid var(--border-glass);
	border-radius: 14px;
	padding: 22px;
	box-shadow: var(--shadow);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	backdrop-filter: blur(6px);
}

.role-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.role-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}

.role-title h3 {
	color: var(--primary);
}

.role-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 10px 0 14px;
}

.role-tag {
	padding: 6px 10px;
	border-radius: 999px;
	background: #eff6ff;
	color: #1d4ed8;
	font-size: 12px;
	font-weight: 700;
}

[data-theme="dark"] .role-tag {
	background: #0f1a2e;
	color: #93c5fd;
}

.role-meta {
	display: grid;
	row-gap: 8px;
	margin: 12px 0 16px;
	color: var(--gray);
	font-size: 14px;
}

.role-meta i {
	color: var(--primary);
	width: 18px;
	margin-right: 8px;
}

.role-cta {
	display: flex;
	justify-content: flex-end;
}

/* About */
.about {
	background: linear-gradient(180deg, rgba(2,6,23,0.02) 0%, rgba(2,6,23,0.06) 100%);
}

[data-theme="dark"] .about {
	background-color: #0c1424;
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.about-text h2 {
	margin-bottom: 20px;
}

.about-text p {
	margin-bottom: 20px;
	color: var(--gray);
}

.values {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-top: 40px;
}

.value {
	display: flex;
	gap: 15px;
}

.value-icon {
	width: 50px;
	height: 50px;
	background: #dbeafe;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	font-size: 20px;
	flex-shrink: 0;
}

/* About v2 */
.about-split {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 28px;
	align-items: stretch;
}

.about-panel {
	background: var(--surface-glass);
	border: 1px solid var(--border-glass);
	border-radius: 16px;
	padding: 28px;
	box-shadow: var(--shadow);
	backdrop-filter: blur(6px);
}

.about-panel h3 { margin-bottom: 12px; }

.about-bullets {
	margin-top: 12px;
	display: grid;
	row-gap: 10px;
}

.about-bullet {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: var(--gray);
}

.about-bullet i {
	color: var(--primary);
	margin-top: 2px;
}

.about-highlights {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.highlight-card {
	background: var(--surface-glass);
	border: 1px solid var(--border-glass);
	border-radius: 14px;
	padding: 18px;
	box-shadow: var(--shadow);
	backdrop-filter: blur(6px);
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 12px;
	align-items: start;
}

.highlight-icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: #dbeafe;
	color: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
}

.highlight-card h4 { margin-bottom: 6px; }

/* Stats */
.stats {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	color: white;
	padding: 80px 0;
	text-align: center;
}

.stats-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
}

.stat-item h3 {
	font-size: 3rem;
	margin-bottom: 10px;
}

.stat-item p {
	font-size: 1.1rem;
	opacity: 0.9;
}

/* Stats v2 */
.stats {
	background:
		radial-gradient(60% 80% at 10% -10%, rgba(124,58,237,0.25), rgba(124,58,237,0) 60%),
		radial-gradient(50% 70% at 90% -20%, rgba(34,211,238,0.22), rgba(34,211,238,0) 60%),
		linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	color: white;
	padding: 90px 0;
	text-align: center;
}

.stat-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 22px;
}

.stat-card {
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.12);
	text-align: left;
	backdrop-filter: blur(6px);
}

.stat-top {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
}

.stat-icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: rgba(255,255,255,0.16);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
}

.stat-value {
	font-size: 2.2rem;
	font-weight: 800;
	letter-spacing: 0.5px;
}

.stat-label {
	color: #e2e8f0;
	margin-top: 6px;
}

.stat-note {
	color: #cbd5e1;
	font-size: 0.9rem;
	margin-top: 4px;
	opacity: 0.9;
}
/* CTA */
.cta {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	color: white;
	text-align: center;
	padding: 100px 0;
}

.cta h2 {
	font-size: 2.5rem;
	margin-bottom: 20px;
}

.cta p {
	max-width: 600px;
	margin: 0 auto 40px;
	opacity: 0.9;
}

/* Back to top */
.back-to-top {
	position: fixed;
	right: 24px;
	bottom: 24px;
	width: 44px;
	height: 44px;
	border-radius: 999px;
	background: var(--primary);
	color: #fff;
	display: none;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 30px rgba(37,99,235,0.35);
	cursor: pointer;
	z-index: 120;
	border: none;
}
.back-to-top.is-visible {
	display: inline-flex;
}

/* Footer */
footer {
	background-color: #0f172a;
	color: white;
	padding: 70px 0 30px;
}

/* Ensure footer brand text is visible on dark footer in all themes */
footer .logo span { color: #ffffff; }
footer .logo i { color: #ffffff; }

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 28px;
	margin-bottom: 28px;
}

.footer-column h3 {
	margin-bottom: 20px;
	font-size: 1.3rem;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	color: #cbd5e1;
	text-decoration: none;
	transition: color 0.25s ease;
}

.footer-links a:hover {
	color: white;
}

.social-links {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: #334155;
	border-radius: 50%;
	color: white;
	transition: background-color 0.25s ease;
}

.social-links a:hover {
	background-color: var(--primary);
}

.footer-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding-top: 24px;
	border-top: 1px solid #334155;
	color: #94a3b8;
	font-size: 0.9rem;
	flex-wrap: wrap;
}

.footer-brand p {
	color: #cbd5e1;
	margin-top: 10px;
}

.newsletter-form {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 10px;
	margin-top: 10px;
}

.footer-input {
	background: #334155;
	border: 1px solid #475569;
	border-radius: 10px;
	color: #e2e8f0;
	padding: 12px 14px;
	outline: none;
}

.footer-input::placeholder {
	color: #94a3b8;
}

.footer-submit {
	background-image: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
	color: #fff;
	border: none;
	border-radius: 10px;
	padding: 0 16px;
	cursor: pointer;
	height: 44px;
	transition: filter 0.2s ease, transform 0.2s ease;
}

.footer-submit:hover {
	filter: brightness(1.06);
	transform: translateY(-1px);
}

/* Job pages */
.job-hero {
	padding: 160px 0 80px;
	background:
		radial-gradient(60% 80% at 10% -10%, rgba(124,58,237,0.20), rgba(124,58,237,0) 60%),
		radial-gradient(50% 70% at 90% -20%, rgba(34,211,238,0.18), rgba(34,211,238,0) 60%),
		radial-gradient(40% 50% at 50% 0%, rgba(37,99,235,0.18), rgba(37,99,235,0) 60%),
		linear-gradient(180deg, rgba(2,6,23,0) 0%, rgba(2,6,23,0.06) 100%);
}

[data-theme="dark"] .job-hero {
	background: linear-gradient(135deg, #0b1220 0%, #101a2c 100%);
}

.job-header {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.job-header .job-tag {
	display: inline-block;
	background-color: var(--accent);
	color: white;
	padding: 6px 15px;
	border-radius: 20px;
	font-size: 14px;
	margin-bottom: 20px;
}

.job-header h1 {
	font-size: 2.5rem;
	margin-bottom: 20px;
}

.job-meta {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-top: 20px;
	flex-wrap: wrap;
}

.job-meta-item {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--gray);
}

.job-meta-item i {
	color: var(--primary);
}

.job-content {
	display: grid;
	grid-template-columns: 1fr 350px;
	gap: 50px;
	margin: 70px 0;
}

.job-description {
	background: var(--surface-glass);
	border: 1px solid var(--border-glass);
	padding: 40px;
	border-radius: 14px;
	box-shadow: var(--shadow);
	backdrop-filter: blur(6px);
}

.job-description h2 {
	color: var(--primary);
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 2px solid var(--light-gray);
}

.job-description h3 {
	margin: 25px 0 15px;
	color: var(--secondary);
}

.job-description ul {
	margin: 20px 0 20px 30px;
}

.job-description li {
	margin-bottom: 12px;
}

.apply-section {
	background: var(--surface-glass);
	border: 1px solid var(--border-glass);
	padding: 30px;
	border-radius: 14px;
	box-shadow: var(--shadow);
	backdrop-filter: blur(6px);
	position: sticky;
	top: 120px;
}

.apply-section h3 {
	color: var(--secondary);
	margin-bottom: 25px;
	text-align: center;
}

.apply-options {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.apply-option {
	border: 2px solid var(--light-gray);
	border-radius: 8px;
	padding: 25px;
	text-align: center;
	transition: all 0.25s ease;
}

.apply-option:hover {
	border-color: var(--primary);
	transform: translateY(-3px);
}

.apply-option i {
	font-size: 36px;
	color: var(--primary);
	margin-bottom: 15px;
}

.apply-option h4 {
	margin-bottom: 10px;
}

.apply-option p {
	color: var(--gray);
	font-size: 14px;
	margin-bottom: 15px;
}

.similar-jobs {
	margin: 80px 0;
}

.jobs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.job-card {
	background: var(--surface-glass);
	border: 1px solid var(--border-glass);
	border-radius: 14px;
	padding: 30px;
	box-shadow: var(--shadow);
	backdrop-filter: blur(6px);
	transition: all 0.25s ease;
}

.job-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.job-card h3 {
	color: var(--primary);
	margin-bottom: 15px;
}

.job-card-details {
	margin: 20px 0;
	list-style: none;
}

.job-card-details li {
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	font-size: 14px;
}

.job-card-details li i {
	color: var(--primary);
	margin-right: 10px;
	width: 20px;
}

/* Reading progress bar */
.reading-progress {
	position: fixed;
	left: 0;
	top: 0;
	height: 3px;
	width: 0%;
	background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
	z-index: 150;
}

/* Reveal animations */
.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Buttons polish */
.btn {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	border: none;
}
.btn:after {
	content: "";
	position: absolute;
	top: 0;
	left: -150%;
	width: 120%;
	height: 100%;
	background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.35) 40%, rgba(255,255,255,0) 80%);
	transform: skewX(-20deg);
	transition: left 0.6s ease;
}
.btn:hover:after {
	left: 150%;
}

/* Responsive */
@media (max-width: 992px) {
	.about-content {
		grid-template-columns: 1fr;
	}
	.about-image {
		text-align: center;
	}
	.job-content {
		grid-template-columns: 1fr;
	}
	.apply-section {
		position: static;
		margin-top: 50px;
	}
}

@media (max-width: 768px) {
	.nav-links {
		display: none;
	}
	.nav-links.is-open {
		display: flex;
		position: absolute;
		top: 70px;
		right: 20px;
		left: 20px;
		flex-direction: column;
		gap: 12px;
		padding: 16px;
		background: var(--surface);
		border: 1px solid var(--light-gray);
		border-radius: 10px;
		box-shadow: var(--shadow);
	}
	.mobile-toggle {
		display: block;
	}
	.hero h1 {
		font-size: 2.5rem;
	}
	.hero-btns {
		flex-direction: column;
		align-items: center;
	}
	.section {
		padding: 70px 0;
	}
	.job-hero {
		padding: 140px 0 60px;
	}
	.job-header h1 {
		font-size: 2rem;
	}
	.job-meta {
		flex-direction: column;
		gap: 15px;
	}
}

/* Mobile testimonials slider */
@media (max-width: 768px) {
	.testimonials {
		display: grid;
		grid-auto-flow: column;
		grid-auto-columns: 85%;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		padding-bottom: 10px;
	}
	.testimonial {
		scroll-snap-align: center;
	}
}


