.page-hero {
	padding: 160px 0 80px;
	background: linear-gradient(135deg, rgba(16, 64, 102, 0.05) 0%, rgba(248, 249, 250, 1) 100%);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.page-hero::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 40%;
	height: 100%;
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><path fill="%23104066" fill-opacity="0.03" d="M200,0 C310.46,0 400,89.54 400,200 C400,310.46 310.46,400 200,400 C89.54,400 0,310.46 0,200 C0,89.54 89.54,0 200,0 Z M200,50 C118.43,50 50,118.43 50,200 C50,281.57 118.43,350 200,350 C281.57,350 350,281.57 350,200 C350,118.43 281.57,50 200,50 Z"></path></svg>') center/contain no-repeat;
	opacity: 0.5;
}

.page-hero h1 {
	font-size: 48px;
	margin-bottom: 20px;
	position: relative;
	z-index: 2;
}

.page-hero p {
	font-size: 20px;
	color: var(--medium-gray);
	max-width: 800px;
	margin: 0 auto 30px;
	position: relative;
	z-index: 2;
}

.platform-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background-color: white;
	padding: 12px 24px;
	border-radius: 30px;
	box-shadow: var(--shadow);
	margin-top: 30px;
	position: relative;
	z-index: 2;
	transition: var(--transition);
	text-decoration: none;
}

.platform-badge:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-hover);
}

.platform-badge i {
	color: var(--primary-red);
	font-size: 24px;
}

.platform-badge span {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 22px;
	color: var(--primary-blue);
}

/* PLATFORM OVERVIEW */
.platform-overview {
	padding: 80px 0;
	background-color: white;
}

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

.section-title h2 {
	font-size: 36px;
	margin-bottom: 15px;
}

.section-title p {
	color: var(--medium-gray);
	max-width: 700px;
	margin: 0 auto;
	font-size: 18px;
}

.overview-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	max-width: 1100px;
	margin: 0 auto;
}

.overview-text h3 {
	font-size: 32px;
	margin-bottom: 20px;
	color: var(--primary-blue);
}

.overview-text p {
	color: var(--medium-gray);
	margin-bottom: 20px;
	font-size: 17px;
	line-height: 1.7;
}

.platform-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 40px;
}

.platform-stat {
	text-align: center;
	padding: 20px;
	background-color: var(--off-white);
	border-radius: 8px;
	transition: var(--transition);
}

.platform-stat:hover {
	background-color: rgba(16, 64, 102, 0.05);
	transform: translateY(-5px);
}

.platform-stat-number {
	font-size: 32px;
	font-weight: 700;
	color: var(--primary-red);
	margin-bottom: 10px;
}

.platform-stat-label {
	color: var(--medium-gray);
	font-size: 14px;
}

.overview-visual {
	height: 325px;
	background: linear-gradient(135deg, rgba(16, 64, 102, 0.1) 0%, rgba(207, 1, 6, 0.1) 100%);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	background-image: url('https://cdn1.bestsuppliers.com/operate/20260306/2026030616353691200.png');
	background-size: cover;
	background-position: center;
}

.overlay-text {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(16, 64, 102, 0.8) 0%, rgba(207, 1, 6, 0.4) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 28px;
	font-weight: 700;
	text-align: center;
	padding: 40px;
}

/* FEATURES SECTION */
.features-section {
	padding: 80px 0;
	background-color: var(--off-white);
}

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

.feature-card {
	background-color: white;
	border-radius: 8px;
	padding: 40px 30px;
	text-align: center;
	transition: var(--transition);
	border-top: 5px solid var(--primary-red);
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-hover);
}

.feature-icon {
	width: 70px;
	height: 70px;
	background-color: rgba(207, 1, 6, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
	color: var(--primary-red);
	font-size: 30px;
}

.feature-card h3 {
	font-size: 22px;
	margin-bottom: 15px;
}

.feature-card p {
	color: var(--medium-gray);
	margin-bottom: 20px;
}

/* HOW IT WORKS */
.how-it-works {
	padding: 80px 0;
	background-color: white;
}

.works-steps {
	max-width: 900px;
	margin: 0 auto;
	position: relative;
}

.work-step {
	display: grid;
	grid-template-columns: 100px 1fr;
	gap: 30px;
	margin-bottom: 50px;
	align-items: start;
}

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

.step-content {
	background-color: var(--off-white);
	border-radius: 8px;
	padding: 30px;
	border-left: 4px solid var(--primary-blue);
}

.step-content h3 {
	font-size: 22px;
	margin-bottom: 15px;
}

.step-content p {
	color: var(--medium-gray);
	margin-bottom: 15px;
}

/* PLATFORM ACCESS */
.platform-access {
	padding: 80px 0;
	background-color: var(--off-white);
}

.access-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	max-width: 1100px;
	margin: 0 auto;
}

.access-text h3 {
	font-size: 32px;
	margin-bottom: 20px;
	color: var(--primary-blue);
}

.access-text p {
	color: var(--medium-gray);
	margin-bottom: 20px;
	font-size: 17px;
	line-height: 1.7;
}

.access-types {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 30px;
}

.access-type {
	padding: 25px;
	background-color: white;
	border-radius: 8px;
	text-align: center;
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.access-type:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-hover);
}

.access-type i {
	font-size: 36px;
	color: var(--primary-red);
	margin-bottom: 15px;
}

.access-type h4 {
	font-size: 18px;
	margin-bottom: 10px;
}

.access-type p {
	font-size: 14px;
	margin-bottom: 0;
}

.access-visual {
	height: 400px;
	background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	padding: 40px;
	text-align: center;
}

.access-visual h3 {
	color: white;
	font-size: 28px;
	margin-bottom: 20px;
}

.access-visual a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background-color: white;
	color: var(--primary-blue);
	padding: 15px 30px;
	border-radius: 8px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	text-decoration: none;
	font-size: 20px;
	transition: var(--transition);
	margin-top: 20px;
}

.access-visual a:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* INTEGRATION SECTION */
.integration-section {
	padding: 80px 0;
	background-color: white;
}

.integration-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	max-width: 1100px;
	margin: 0 auto;
}

.integration-text h3 {
	font-size: 32px;
	margin-bottom: 20px;
	color: var(--primary-blue);
}

.integration-text p {
	color: var(--medium-gray);
	margin-bottom: 20px;
	font-size: 17px;
	line-height: 1.7;
}

.integration-list {
	list-style: none;
	margin-top: 25px;
}

.integration-list li {
	margin-bottom: 15px;
	padding-left: 30px;
	position: relative;
}

.integration-list li:before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--primary-red);
	font-weight: bold;
	font-size: 18px;
}

.integration-visual {
	height: 400px;
	background: linear-gradient(135deg, rgba(16, 64, 102, 0.1) 0%, rgba(207, 1, 6, 0.1) 100%);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	background-image: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=800');
	background-size: cover;
	background-position: center;
}

/* CTA SECTION */
.cta-section {
	padding: 80px 0;
	background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
	color: white;
	text-align: center;
}

.cta-section h2 {
	color: white;
	font-size: 36px;
	margin-bottom: 20px;
}

.cta-section p {
	font-size: 18px;
	max-width: 700px;
	margin: 0 auto 40px;
	opacity: 0.9;
}

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

.cta-buttons .btn-primary {
	background-color: white;
	color: var(--primary-blue);
}

.cta-buttons .btn-primary:hover {
	background-color: var(--light-gray);
}

.cta-buttons .btn-secondary {
	border-color: white;
	color: white;
}

.cta-buttons .btn-secondary:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {

	.overview-content,
	.access-content,
	.integration-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.platform-stats {
		grid-template-columns: repeat(2, 1fr);
	}

}

@media (max-width: 768px) {

	.page-hero {
		padding: 140px 0 60px;
	}

	.page-hero h1 {
		font-size: 36px;
	}

	.page-hero p {
		font-size: 18px;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}

	.work-step {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.step-number {
		margin: 0 auto;
	}

	.access-types {
		grid-template-columns: 1fr;
	}

	.platform-stats {
		grid-template-columns: 1fr;
	}

	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}
}

@media (max-width: 480px) {
	.page-hero h1 {
		font-size: 32px;
	}

	.section-title h2 {
		font-size: 28px;
	}

	.cta-section h2 {
		font-size: 30px;
	}

	.overview-text h3,
	.access-text h3,
	.integration-text h3 {
		font-size: 28px;
	}
}