.bg_gra {
	background: linear-gradient(135deg, #FFF4E6 0%, #FFE8D0 100%);
	min-height: 100vh;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
}

.head {
	text-align: center;
	margin-bottom: 60px;
	animation: fadeInDown 1s ease-out;
}

.head_logo {
	width: 200px;
	height: 80px;
	margin: 0 auto 20px;
	background: #FF8A00;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 24px;
	font-weight: bold;
	box-shadow: 0 5px 15px rgba(255, 138, 0, 0.3);
}

h1 {
	color: #333;
	font-size: 36px;
	margin-bottom: 10px;
}

.head_subtitle {
	color: #666;
	font-size: 18px;
}

.roadmap {
	position: relative;
	padding: 40px 0;
}

.timeline {
	position: absolute;
	left: 50%;
	top: 100px;
	bottom: 100px;
	width: 4px;
	background: linear-gradient(180deg, #FF8A00 0%, #FFA500 100%);
	transform: translateX(-50%);
}

.step {
	display: flex;
	align-items: center;
	margin-bottom: 80px;
	position: relative;
	animation: fadeIn 1s ease-out;
}

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

.step-content {
	flex: 1;
	padding: 0 40px;
}

.step-card {
	background: white;
	border-radius: 20px;
	padding: 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	overflow: hidden;
}

.step-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, #FF8A00, #FFA500);
}

.step-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 60px;
	background: #FF8A00;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 24px;
	font-weight: bold;
	box-shadow: 0 5px 15px rgba(255, 138, 0, 0.3);
	z-index: 10;
}

.step-title {
	color: #FF8A00;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 15px;
}

.step-description {
	color: #666;
	line-height: 1.6;
	margin-bottom: 20px;
}

.step-details {
	background: #FFF4E6;
	border-radius: 10px;
	padding: 15px;
	margin-top: 15px;
}

.step-details ul {
	list-style: none;
	padding-left: 0;
}

.step-details li {
	color: #555;
	margin-bottom: 8px;
	padding-left: 20px;
	position: relative;
}

.step-details li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #FF8A00;
	font-weight: bold;
}

.cta-section {
	text-align: center;
	margin-top: 80px;
	padding: 40px;
	background: white;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	animation: fadeInUp 1s ease-out;
}

.cta-button {
	display: inline-block;
	background: #FF8A00;
	color: white;
	padding: 15px 40px;
	border-radius: 50px;
	font-size: 18px;
	font-weight: bold;
	text-decoration: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	margin-top: 20px;
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(255, 138, 0, 0.3);
}

.benefits {
	display: flex;
	justify-content: space-around;
	margin-top: 40px;
	flex-wrap: wrap;
}

.benefit {
	text-align: center;
	margin: 10px;
}

.benefit-icon {
	width: 60px;
	height: 60px;
	background: #FFE8D0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 10px;
	font-size: 30px;
}

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

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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

@media (max-width: 640px) {
	.bg_gra {
		padding: 0 4%;
	}

	.step {
		flex-direction: column !important;
	}

	.timeline {
		left: 30px;
	}

	.step-number {
		left: 30px;
	}

	.step-content {
		margin-left: 80px;
		padding: 0 20px;
	}
}