/* PAGE HERO - FOR IMPORTERS */
.page-hero {
	padding: 160px 0 80px;
	background: linear-gradient(135deg,
			rgba(16, 64, 102, 0.1) 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;
}

.hero-stats {
	display: flex;
	justify-content: center;
	gap: 50px;
	margin-top: 40px;
	position: relative;
	z-index: 2;
}

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

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

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

/* IMPORTER CHALLENGES SECTION */
.challenges-section {
	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;
}

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

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

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

.challenge-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;
}

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

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

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

.solutions-tabs {
	max-width: 900px;
	margin: 0 auto;
}

.tab-header {
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
	border-bottom: 2px solid var(--light-gray);
}

.tab-btn {
	background: none;
	border: none;
	padding: 15px 30px;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 16px;
	color: var(--medium-gray);
	cursor: pointer;
	position: relative;
	transition: var(--transition);
}

.tab-btn.active {
	color: var(--primary-blue);
}

.tab-btn.active::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--primary-red);
}

.tab-content {
	display: none;
}

.tab-content.active {
	display: block;
	animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.solution-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.solution-text h3 {
	font-size: 28px;
	margin-bottom: 20px;
}

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

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

.solution-features li {
	margin-bottom: 12px;
	padding-left: 30px;
	position: relative;
}

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

.solution-visual {
	height: 230px;
	/*background: linear-gradient(135deg,*/
	/*		var(--primary-blue) 0%,*/
	/*		var(--dark-blue) 100%);*/
	background-image: url('../../public/img/our-advantages-1.jpg');
	background-size: cover;
	/*border-radius: 8px;*/
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}
.solution-visual1 {
	height: 230px;
	/*background: linear-gradient(135deg,*/
	/*		var(--primary-blue) 0%,*/
	/*		var(--dark-blue) 100%);*/
	background-image: url('../../public/img/our-advantages-2.png');
	background-size: cover;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}
.solution-visual2 {
	height: 230px;
	/*background: linear-gradient(135deg,*/
	/*		var(--primary-blue) 0%,*/
	/*		var(--dark-blue) 100%);*/
	background-image: url('../../public/img/our-advantages-3.png');
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.solution-visual-icon {
	font-size: 100px;
	color: white;
	opacity: 0.9;
	z-index: 2;
}

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

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

.process-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;
}

.step-duration {
	display: inline-block;
	background-color: rgba(16, 64, 102, 0.1);
	color: var(--primary-blue);
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
	margin-top: 10px;
}

/* CASE STUDIES */
.case-studies-section {
	padding: 80px 0;
	background-color: var(--off-white);
}

.case-studies-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}

.case-study-card {
	background-color: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: var(--transition);
}

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

.case-study-header {
	background: linear-gradient(135deg,
			var(--primary-blue) 0%,
			var(--dark-blue) 100%);
	color: white;
	padding: 25px;
	text-align: center;
}

.case-study-header h3 {
	color: white;
	margin-bottom: 10px;
	font-size: 20px;
}

.case-study-location {
	font-size: 14px;
	opacity: 0.9;
}

.case-study-content {
	padding: 30px;
}

.case-study-challenge {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--light-gray);
}

.case-study-challenge h4 {
	font-size: 16px;
	color: var(--primary-red);
	margin-bottom: 10px;
}

.case-study-solution h4 {
	font-size: 16px;
	color: var(--primary-blue);
	margin-bottom: 10px;
}

.case-study-results {
	margin-top: 20px;
	padding: 15px;
	background-color: rgba(16, 64, 102, 0.05);
	border-radius: 6px;
	border-left: 4px solid var(--primary-red);
}

.case-study-results h4 {
	font-size: 16px;
	color: var(--dark-blue);
	margin-bottom: 10px;
}

/* ROI CALCULATOR */
.roi-calculator {
	padding: 80px 0;
	background-color: white;
}

.calculator-container {
	max-width: 800px;
	margin: 0 auto;
	background-color: var(--off-white);
	border-radius: 8px;
	padding: 40px;
	box-shadow: var(--shadow);
}

.calculator-title {
	text-align: center;
	margin-bottom: 30px;
}

.calculator-inputs {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;
	margin-bottom: 30px;
}

.input-group {
	display: flex;
	flex-direction: column;
}

.input-group label {
	margin-bottom: 8px;
	font-weight: 600;
	color: var(--dark-blue);
}

.input-group input,
.input-group select {
	padding: 12px 15px;
	border: 1px solid var(--light-gray);
	border-radius: 4px;
	font-size: 16px;
	transition: var(--transition);
}

.input-group input:focus,
.input-group select:focus {
	outline: none;
	border-color: var(--primary-blue);
	box-shadow: 0 0 0 3px rgba(16, 64, 102, 0.1);
}

.calculator-results {
	background-color: white;
	border-radius: 6px;
	padding: 25px;
	margin-top: 30px;
	border-left: 4px solid var(--primary-red);
}

.calculator-results h4 {
	margin-bottom: 15px;
	color: var(--primary-blue);
}

.result-item {
	display: flex;
	justify-content: space-between;
	padding: 10px 0;
	border-bottom: 1px dashed var(--light-gray);
}

.result-item:last-child {
	border-bottom: none;
	font-weight: 700;
	color: var(--primary-red);
	font-size: 18px;
}

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

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

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

.start-process {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	max-width: 1000px;
	margin: 0 auto 50px;
}

.process-item {
	background-color: rgba(255, 255, 255, 0.1);
	padding: 25px 15px;
	border-radius: 8px;
	transition: var(--transition);
}

.process-item:hover {
	background-color: rgba(255, 255, 255, 0.2);
	transform: translateY(-5px);
}

.process-number {
	width: 40px;
	height: 40px;
	background-color: var(--primary-red);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 15px;
	font-weight: 700;
}

.process-item h4 {
	color: white;
	margin-bottom: 10px;
	font-size: 16px;
}

.process-item p {
	font-size: 14px;
	opacity: 0.8;
	margin-bottom: 0;
}

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

	.case-studies-grid {
		grid-template-columns: 1fr;
	}

	.solution-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.start-process {
		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;
	}

	.hero-stats {
		flex-direction: column;
		gap: 30px;
	}

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

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

	.step-number {
		margin: 0 auto;
	}

	.calculator-inputs {
		grid-template-columns: 1fr;
	}

	.start-process {
		grid-template-columns: 1fr;
	}

	.tab-header {
		flex-direction: column;
		align-items: center;
	}

	.tab-btn {
		width: 100%;
		text-align: center;
		margin-bottom: 10px;
	}
}

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

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

	.solution-text h3 {
		font-size: 24px;
	}

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


}