/* Simple Navbar Styles */
.simple-navbar {
	background-color: #ffffff;
	border-bottom: 1px solid #e5e7eb;
	padding: 0;
	position: sticky;
	top: 0;
	z-index: 1000;
}

.simple-navbar .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 70px;
}

.navbar-logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
}

.navbar-logo svg {
	width: 28px;
	height: 28px;
	color: #00bcd4;
}

.navbar-logo-text {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1f2937;
}

.navbar-logo-text .asterisk {
	color: #00bcd4;
}

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

.navbar-link {
	color: #4b5563;
	text-decoration: none;
	font-weight: 500;
	font-size: 0.9375rem;
	transition: color 0.2s ease;
}

.navbar-link:hover {
	color: #00bcd4;
}

.navbar-actions {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.btn-login {
	background: transparent;
	color: #4b5563;
	border: none;
	padding: 0.5rem 1.25rem;
	font-weight: 500;
	font-size: 0.9375rem;
	cursor: pointer;
	transition: color 0.2s ease;
}

.btn-login:hover {
	color: #00bcd4;
}

.btn-signup {
	background: #00bcd4;
	color: white;
	border: none;
	padding: 0.625rem 1.5rem;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.9375rem;
	cursor: pointer;
	transition: all 0.2s ease;
}

.btn-signup:hover {
	background: #00acc1;
	transform: translateY(-1px);
	box-shadow: 0 4px 8px rgba(0, 188, 212, 0.2);
}

.mobile-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
}

.mobile-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: #1f2937;
	margin: 5px 0;
	transition: all 0.3s ease;
}

@media (max-width: 768px) {
	.navbar-center {
		position: absolute;
		top: 70px;
		left: 0;
		right: 0;
		background: white;
		flex-direction: column;
		gap: 0;
		padding: 1rem 0;
		border-bottom: 1px solid #e5e7eb;
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
		display: none;
	}

	.navbar-center.active {
		display: flex;
	}

	.navbar-link {
		padding: 0.75rem 2rem;
		width: 100%;
	}

	.navbar-actions {
		padding: 1rem 2rem;
		width: 100%;
		flex-direction: column;
	}

	.btn-login,
	.btn-signup {
		width: 100%;
		text-align: center;
	}

	.mobile-toggle {
		display: block;
	}

	.mobile-toggle.active span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}

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

	.mobile-toggle.active span:nth-child(3) {
		transform: rotate(-45deg) translate(7px, -6px);
	}
}

/* Hero Section Styles */
.hero-section {
	position: relative;
	min-height: 100vh;
	background-image: url('../../assets/photo.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(0, 188, 212, 0.5) 0%,
		rgba(38, 50, 56, 0.7) 100%
	);
}

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

.hero-badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	color: white;
	padding: 0.625rem 1.5rem;
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.5px;
	margin-bottom: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-title {
	color: #ffffff;
	font-size: 3.75rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
	background: linear-gradient(135deg, #00bcd4 0%, #4dd0e1 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	filter: drop-shadow(0 2px 4px rgba(0, 188, 212, 0.4));
}

.hero-description {
	color: rgba(255, 255, 255, 0.95);
	font-size: 1.25rem;
	line-height: 1.8;
	margin-bottom: 3rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	font-weight: 400;
}

.hero-buttons {
	display: flex;
	flex-direction: row;
	gap: 1.25rem;
	justify-content: center;
	flex-wrap: wrap;
}

.btn-hero-primary {
	background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
	color: #00bcd4;
	min-width: 200px;
	font-weight: 700;
	border: none;
	box-shadow: 0 8px 16px rgba(0, 188, 212, 0.3);
	transition: all 0.3s ease;
}

.btn-hero-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(0, 188, 212, 0.4);
	background: linear-gradient(135deg, #ffffff 0%, #e0f7fa 100%);
}

.btn-hero-secondary {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	color: #ffffff;
	border: 2px solid rgba(255, 255, 255, 0.8);
	min-width: 200px;
	font-weight: 600;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: white;
	transform: translateY(-2px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Featured Companies Section */
.companies-section {
	background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
	padding: 4rem 0;
	overflow: hidden;
}

.companies-header {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

.companies-title {
	color: #1f2937;
	margin-bottom: 2.5rem;
	font-weight: 700;
	font-size: 0.875rem;
	letter-spacing: 2px;
	position: relative;
	display: inline-block;
	left: 50%;
	transform: translateX(-50%);
}

.companies-title::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, #00bcd4 0%, #4dd0e1 100%);
	border-radius: 2px;
}

.logos-slider {
	width: 100vw;
	overflow: hidden;
	position: relative;
	padding: 1rem 0;
	margin-left: calc(-50vw + 50%);
}

.logos-track {
	display: flex;
	animation: scroll 40s linear infinite;
	width: fit-content;
}

.logo-item {
	flex-shrink: 0;
	width: 160px;
	height: 80px;
	margin: 0 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	cursor: pointer;
	border: 2px solid transparent;
	border-radius: 12px;
	padding: 0.75rem;
	text-decoration: none;
	background-color: transparent;
}

.logo-item:hover {
	transform: scale(1.08);
	border-color: #00bcd4;
	background-color: #f8f9fa;
	box-shadow: 0 4px 12px rgba(0, 188, 212, 0.15);
}

.logo-item:active,
.logo-item.clicked {
	border-color: #0097a7;
	box-shadow: 0 6px 16px rgba(0, 151, 167, 0.25);
	background-color: #e3f2fd;
}

.logo-item img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	opacity: 1;
	transition: all 0.3s ease;
}

.logo-item:hover img {
	opacity: 1;
}

@keyframes scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

.logos-slider:hover .logos-track {
	animation-play-state: paused;
}

/* Features Section */
.features-section {
	background: linear-gradient(to bottom, #ffffff 0%, #f0f9ff 100%);
	padding: 4rem 1rem;
}

.features-grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 4rem;
	align-items: center;
	max-width: 1300px;
	margin: 0 auto;
}

.features-image-container {
	position: relative;
}

.features-decoration-1 {
	position: absolute;
	top: -20px;
	right: -20px;
	width: 150px;
	height: 150px;
	background: linear-gradient(135deg, #00bcd4 0%, #00acc1 100%);
	border-radius: 50%;
	opacity: 0.1;
	z-index: 0;
}

.features-decoration-2 {
	position: absolute;
	bottom: -30px;
	left: -30px;
	width: 200px;
	height: 200px;
	background: linear-gradient(135deg, #4dd0e1 0%, #00bcd4 100%);
	border-radius: 50%;
	opacity: 0.08;
	z-index: 0;
}

.features-image {
	width: 115%;
	height: auto;
	display: block;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 188, 212, 0.2);
	position: relative;
	z-index: 1;
	transform: perspective(1000px) rotateY(-5deg);
	transition: transform 0.3s ease;
	margin-left: -7.5%;
}

.features-image:hover {
	transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.features-title {
	color: #1a1a1a;
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 0.75rem;
	line-height: 1.2;
}

.features-title .gradient-text {
	background: linear-gradient(135deg, #00bcd4 0%, #4dd0e1 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.features-description {
	color: #64748b;
	margin-bottom: 2.5rem;
	font-size: 1rem;
	line-height: 1.7;
}

.features-list {
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
}

.feature-item {
	display: flex;
	gap: 1.25rem;
	transition: transform 0.2s ease;
}

.feature-item:hover {
	transform: translateX(8px);
}

.feature-icon {
	width: 52px;
	height: 52px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.feature-icon-1 {
	background: linear-gradient(135deg, #00bcd4 0%, #00bcd4dd 100%);
	box-shadow: 0 4px 12px #00bcd430;
}

.feature-icon-2 {
	background: linear-gradient(135deg, #00acc1 0%, #00acc1dd 100%);
	box-shadow: 0 4px 12px #00acc130;
}

.feature-icon-3 {
	background: linear-gradient(135deg, #4dd0e1 0%, #4dd0e1dd 100%);
	box-shadow: 0 4px 12px #4dd0e130;
}

.feature-icon-4 {
	background: linear-gradient(135deg, #26c6da 0%, #26c6dadd 100%);
	box-shadow: 0 4px 12px #26c6da30;
}

.feature-icon svg {
	width: 26px;
	height: 26px;
}

.feature-text h3 {
	color: #1a1a1a;
	font-size: 1.125rem;
	font-weight: 700;
	margin-bottom: 0.375rem;
}

.feature-text p {
	color: #64748b;
	margin: 0;
	line-height: 1.6;
	font-size: 0.9375rem;
}

@media (max-width: 768px) {
	.features-grid {
		grid-template-columns: 1fr !important;
		gap: 2rem !important;
	}
}

/* Stats Section */
/* ===========================
   Stats Section - Enhanced
   =========================== */
.stats-section {
	background: linear-gradient(135deg, #0097a7 0%, #00bcd4 50%, #4dd0e1 100%);
	padding: 3.5rem 1rem;
	position: relative;
	overflow: hidden;
}

.stats-decoration-1 {
	position: absolute;
	top: -80px;
	right: 10%;
	width: 250px;
	height: 250px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	filter: blur(60px);
	animation: float 6s ease-in-out infinite;
}

.stats-decoration-2 {
	position: absolute;
	bottom: -60px;
	left: 5%;
	width: 200px;
	height: 200px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 50%;
	filter: blur(50px);
	animation: float 8s ease-in-out infinite reverse;
}

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

.stats-grid-pattern {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: linear-gradient(
			rgba(255, 255, 255, 0.04) 1px,
			transparent 1px
		),
		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 50px 50px;
	opacity: 0.6;
}

.stats-container {
	position: relative;
	z-index: 1;
}

.stats-header {
	text-align: center;
	margin-bottom: 2.5rem;
}

.stats-title {
	color: #ffffff;
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.stats-subtitle {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1rem;
	max-width: 600px;
	margin: 0 auto;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-bottom: 2rem;
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
}

.stat-card {
	text-align: center;
	padding: 1.75rem 1.25rem;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(15px);
	border-radius: 20px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	animation: fadeInUp 0.6s ease-out forwards;
	opacity: 0;
}

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

.stat-card:nth-child(1) {
	animation-delay: 0.1s;
}

.stat-card:nth-child(2) {
	animation-delay: 0.2s;
}

.stat-card:nth-child(3) {
	animation-delay: 0.3s;
}

.stat-card::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(
		circle,
		rgba(255, 255, 255, 0.15) 0%,
		transparent 70%
	);
	opacity: 0;
	transition: opacity 0.4s;
}

.stat-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	transition: left 0.6s;
}

.stat-card:hover::after {
	left: 100%;
}

.stat-card:hover {
	transform: translateY(-15px) scale(1.05);
	background: rgba(255, 255, 255, 0.25);
	border-color: rgba(255, 255, 255, 0.5);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25),
		0 0 0 1px rgba(255, 255, 255, 0.2) inset, 0 0 40px rgba(255, 255, 255, 0.1);
}

.stat-card:hover::before {
	opacity: 1;
}

.stat-card-highlight {
	background: rgba(255, 255, 255, 0.25);
	border-color: rgba(255, 255, 255, 0.4);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2), 0 0 60px rgba(255, 255, 255, 0.15);
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
	0%,
	100% {
		box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2),
			0 0 60px rgba(255, 255, 255, 0.15);
	}
	50% {
		box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2),
			0 0 80px rgba(255, 255, 255, 0.25);
	}
}

.stat-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 1rem;
	background: rgba(255, 255, 255, 0.25);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-icon svg {
	width: 30px;
	height: 30px;
	stroke: white;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.stat-card:hover .stat-icon {
	transform: scale(1.15) rotate(360deg);
	background: rgba(255, 255, 255, 0.4);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.stat-number {
	font-size: 3rem;
	color: #ffffff;
	font-weight: 800;
	margin-bottom: 0.5rem;
	line-height: 1;
	text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	background: linear-gradient(
		135deg,
		#ffffff 0%,
		rgba(255, 255, 255, 0.9) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	transition: transform 0.3s;
}

.stat-card:hover .stat-number {
	transform: scale(1.08);
}

.stat-label {
	color: rgba(255, 255, 255, 0.95);
	font-size: 1.05rem;
	font-weight: 600;
	margin-bottom: 0;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.stat-description {
	display: none;
}

.stat-badge {
	display: inline-block;
	margin-top: 1rem;
	padding: 0.4rem 1rem;
	background: rgba(255, 255, 255, 0.25);
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
	color: white;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Stats Footer Metrics */
.stats-footer {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-metrics {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2.5rem;
	flex-wrap: wrap;
}

.metric-item {
	text-align: center;
}

.metric-value {
	display: block;
	font-size: 1.5rem;
	font-weight: 700;
	color: white;
	margin-bottom: 0.25rem;
}

.metric-label {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.85);
}

.metric-divider {
	width: 1px;
	height: 35px;
	background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
	.stats-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.stats-title {
		font-size: 2rem;
	}

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

	.stats-metrics {
		gap: 1.5rem;
	}

	.metric-divider {
		display: none;
	}
}

/* ===========================
   How It Works Section - Enhanced
   =========================== */
.how-it-works-section {
	background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
	padding: 4rem 1rem;
	position: relative;
}

.how-it-works-header {
	text-align: center;
	margin-bottom: 3.5rem;
}

.section-title {
	color: #1a1a1a;
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	position: relative;
	display: inline-block;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, #00bcd4, #4dd0e1);
	border-radius: 2px;
}

.section-subtitle {
	color: #64748b;
	font-size: 1rem;
	margin-top: 1rem;
}

.workflow-container {
	margin-bottom: 3.5rem;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.workflow-container:last-of-type {
	margin-bottom: 0;
}

.workflow-header {
	display: flex;
	justify-content: center;
	margin-bottom: 2.5rem;
}

.workflow-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.75rem 1.5rem;
	background: white;
	border-radius: 50px;
	box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
	border: 2px solid transparent;
	transition: all 0.3s;
}

.student-badge {
	border-color: #00bcd4;
}

.company-badge {
	border-color: #ef5350;
}

.workflow-badge:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.workflow-icon {
	width: 24px;
	height: 24px;
	color: #00bcd4;
}

.company-badge .workflow-icon {
	color: #ef5350;
}

.workflow-title {
	color: #00bcd4;
	font-size: 1.35rem;
	font-weight: 600;
	margin: 0;
}

.company-badge .workflow-title {
	color: #ef5350;
}

/* Timeline Layout */
.steps-timeline {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.timeline-line {
	position: absolute;
	left: 40px;
	top: 60px;
	bottom: 60px;
	width: 2px;
	background: linear-gradient(180deg, #00bcd4 0%, #4dd0e1 100%);
	opacity: 0.25;
	z-index: 0;
}

.company-line {
	background: linear-gradient(180deg, #ef5350 0%, #ff7675 100%);
}

.step-card {
	background: white;
	border-radius: 16px;
	padding: 1.5rem;
	position: relative;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1.25rem;
	align-items: start;
	z-index: 1;
	border: 2px solid transparent;
}

.student-step {
	border-left: 4px solid #00bcd4;
}

.company-step {
	border-left: 4px solid #ef5350;
}

.step-card:hover {
	transform: translateX(10px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
	border-color: rgba(0, 188, 212, 0.3);
}

.company-step:hover {
	border-color: rgba(239, 83, 80, 0.3);
}

.step-number {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.35rem;
	font-weight: 700;
	color: white;
	flex-shrink: 0;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
	position: relative;
}

.step-number::after {
	content: '';
	position: absolute;
	inset: -6px;
	border-radius: 50%;
	background: inherit;
	opacity: 0.15;
	z-index: -1;
}

.student-number {
	background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
}

.company-number {
	background: linear-gradient(135deg, #ef5350 0%, #e53935 100%);
}

.step-icon-bg {
	display: none;
}

.student-icon-bg {
	display: none;
}

.company-icon-bg {
	display: none;
}

.step-icon-bg svg {
	display: none;
}

.company-step .step-icon-bg svg {
	display: none;
}

.step-card:hover .step-icon-bg {
	display: none;
}

.step-content {
	flex: 1;
}

.step-title {
	color: #1a1a1a;
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.step-description {
	color: #475569;
	font-size: 0.925rem;
	line-height: 1.6;
	margin-bottom: 0;
}

.step-features {
	display: none;
}

.step-features li {
	display: none;
}

.step-features li::before {
	display: none;
}

.company-step .step-features li::before {
	display: none;
}

/* Responsive */
@media (max-width: 1024px) {
	.step-card {
		grid-template-columns: auto 1fr;
		gap: 1.5rem;
	}

	.step-icon-bg {
		display: none;
	}

	.timeline-line {
		left: 28px;
	}
}

@media (max-width: 768px) {
	.how-it-works-section {
		padding: 4rem 1rem;
	}

	.section-title {
		font-size: 2rem;
	}

	.workflow-title {
		font-size: 1.35rem;
	}

	.workflow-container {
		margin-bottom: 4rem;
	}

	.step-card {
		grid-template-columns: 1fr;
		gap: 1.25rem;
		padding: 1.5rem;
	}

	.step-card:hover {
		transform: translateY(-5px) translateX(0);
	}

	.step-number {
		width: 48px;
		height: 48px;
		font-size: 1.5rem;
		margin: 0 auto;
	}

	.timeline-line {
		display: none;
	}

	.step-content {
		text-align: center;
	}

	.step-features {
		text-align: left;
	}
}

/* Success Stories Section */
.success-stories-section {
	background-color: #f0f4f8;
	padding: 5rem 1rem;
}

.success-stories-header {
	text-align: center;
	margin-bottom: 3rem;
}

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

.success-story-card {
	background: white;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	cursor: pointer;
	display: flex;
	flex-direction: column;
}

.success-story-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.success-story-image {
	width: 100%;
	height: 200px;
	background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
	position: relative;
	overflow: hidden;
}

.success-story-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.9;
}

.success-story-category {
	position: absolute;
	top: 16px;
	left: 16px;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: white;
}

.category-student {
	background: rgba(0, 188, 212, 0.95);
}

.category-company {
	background: rgba(239, 83, 80, 0.95);
}

.category-career {
	background: rgba(76, 175, 80, 0.95);
}

.success-story-content {
	padding: 1.75rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.success-story-title {
	color: #1a1a1a;
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	line-height: 1.4;
}

.success-story-excerpt {
	color: #64748b;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.25rem;
	flex: 1;
}

.success-story-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 1rem;
	border-top: 1px solid #e5e7eb;
	font-size: 0.875rem;
	color: #78909c;
}

.success-story-date {
	color: #78909c;
}

.success-story-read-more {
	color: #00bcd4;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 0.25rem;
	transition: gap 0.3s ease;
}

.success-story-card:hover .success-story-read-more {
	gap: 0.5rem;
}

.success-stories-footer {
	text-align: center;
}

.btn-more-stories {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: #00bcd4;
	color: white;
	padding: 1rem 2.5rem;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 188, 212, 0.3);
}

.btn-more-stories:hover {
	background: #00acc1;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 188, 212, 0.4);
}

.btn-more-stories svg {
	width: 20px;
	height: 20px;
	transition: transform 0.3s ease;
}

.btn-more-stories:hover svg {
	transform: translateX(4px);
}

/* Story Modal Styles */
.story-modal-content {
	max-width: 800px;
	max-height: 90vh;
	overflow-y: auto;
}

.story-modal-body {
	padding: 0;
}

.story-modal-image-container {
	width: 100%;
	height: 300px;
	background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
	position: relative;
	overflow: hidden;
	margin-bottom: 2rem;
	border-radius: 8px;
}

.story-modal-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.9;
}

.story-modal-category {
	position: absolute;
	top: 16px;
	left: 16px;
	background: rgba(0, 188, 212, 0.95);
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 6px;
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.story-modal-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 2rem;
	margin-bottom: 1.5rem;
	flex-wrap: wrap;
	gap: 1rem;
}

.story-modal-author {
	font-size: 1.125rem;
	font-weight: 600;
	color: #263238;
	margin-bottom: 0.25rem;
}

.story-modal-role {
	font-size: 0.9375rem;
	color: #78909c;
}

.story-modal-meta-info {
	display: flex;
	gap: 1.5rem;
	font-size: 0.875rem;
	color: #78909c;
}

.story-modal-text {
	padding: 0 2rem 2rem 2rem;
	color: #37474f;
	font-size: 1.0625rem;
	line-height: 1.8;
}

.story-modal-text p {
	margin-bottom: 1.5rem;
}

@media (max-width: 1024px) {
	.success-stories-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.success-stories-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.success-stories-section {
		padding: 3rem 1rem;
	}

	.btn-more-stories {
		padding: 0.875rem 2rem;
		font-size: 0.9375rem;
	}
}

/* CTA Section */
.cta-section {
	background-color: #00bcd4;
	padding: 10rem 1rem 7rem;
	min-height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cta-title {
	color: #1a1a2e;
	margin-bottom: 2rem;
	text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
	font-weight: 700;
	font-size: 3rem;
}

.cta-description {
	color: #2d3748;
	font-size: 1.25rem;
	margin-bottom: 2.5rem;
	text-shadow: 0 1px 2px rgba(255, 255, 255, 0.2);
	font-weight: 500;
	line-height: 2;
	padding-top: 0.5rem;
}

.cta-description strong,
.cta-description b {
	color: #00bcd4;
	font-weight: 700;
	text-shadow: 0 2px 8px rgba(0, 188, 212, 0.4);
	font-size: 1.35rem;
	display: inline-block;
	padding: 0.2rem 0.5rem;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 8px;
}

.btn-cta {
	background: linear-gradient(135deg, #00bcd4 0%, #00acc1 100%);
	color: white;
	font-weight: 700;
	font-size: 1.1rem;
	padding: 1rem 2.5rem;
	border-radius: 50px;
	box-shadow: 0 8px 20px rgba(0, 188, 212, 0.4);
	transition: all 0.3s ease;
	border: 3px solid white;
}

.btn-cta:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 12px 30px rgba(0, 188, 212, 0.6);
	background: linear-gradient(135deg, #00acc1 0%, #0097a7 100%);
}

/* Modal Inline Styles */
.modal-content-custom {
	max-width: 560px;
}

.modal-content-login {
	max-width: 480px;
}
