/* Expertise Hero Section */
.expertise-hero {
	position: relative;
	height: 60vh;
	min-height: 400px;
	width: 100%;
	overflow: hidden;
	margin-top: 70px;
}

.expertise-hero__background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.expertise-hero__background img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.expertise-hero__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
	z-index: 2;
}

.expertise-hero__content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
}

.expertise-hero__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	text-align: center;
	color: white;
}

.expertise-hero__title {
	font-size: 4rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
	line-height: 1.1;
	letter-spacing: -0.02em;
	animation: fadeInUp 0.8s ease-out;
}

.expertise-hero__subtitle {
	font-size: 1.3rem;
	font-weight: 400;
	opacity: 0.95;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
	line-height: 1.5;
	max-width: 700px;
	margin: 0 auto;
	animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Main Content */
.expertise-content {
	padding: 4rem 0;
	background: white;
}

.expertise-content__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* Expertise Section */
.expertise-section {
	padding: 6rem 0;
	position: relative;
}

.expertise-section:first-of-type {
	padding-top: 4rem;
}

.expertise-section--dark {
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.expertise-section--highlight {
	background: linear-gradient(135deg, rgba(255, 20, 20, 0.05), rgba(255, 20, 20, 0.02));
}

.expertise-section__content {
	max-width: 1000px;
	margin: 0 auto;
}

.expertise-section__title {
	font-size: 3rem;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 3rem;
	line-height: 1.1;
	letter-spacing: -0.02em;
	position: relative;
	text-align: center;
	hyphens: none;
}

.expertise-section__title::before {
	content: '';
	display: inline-block;
	width: 0;
}

.expertise-section__title::after {
	content: '';
	position: absolute;
	bottom: -1rem;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: var(--primary);
	border-radius: 2px;
}

.expertise-section__text {
	font-size: 1.15rem;
	color: #555;
	line-height: 1.8;
}

.expertise-section__text p {
	margin-bottom: 1.5rem;
}

.expertise-section__text p:last-child {
	margin-bottom: 0;
}

/* Benefits Grid */
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2.5rem;
	margin-top: 3rem;
}

.benefit-card {
	background: white;
	padding: 2.5rem;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	text-align: center;
}

.benefit-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.benefit-card__icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 1.5rem;
	color: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
}

.benefit-card__title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 1rem;
	line-height: 1.3;
}

.benefit-card__description {
	font-size: 1rem;
	color: #666;
	line-height: 1.6;
}

/* Applications List */
.applications-list {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin-top: 3rem;
}

.application-item {
	padding: 2rem;
	background: white;
	border-radius: 16px;
	border-left: 4px solid var(--primary);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.application-item:hover {
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	transform: translateX(5px);
}

.application-item__title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.75rem;
}

.application-item__description {
	font-size: 1.05rem;
	color: #666;
	line-height: 1.7;
}

.application-item__link {
	color: var(--primary);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.application-item__link:hover {
	color: #e01212;
	text-decoration: underline;
}

/* Specs Grid */
.specs-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 3rem;
}

.spec-item {
	text-align: center;
	padding: 2rem;
	background: white;
	border-radius: 16px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.spec-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.spec-item__label {
	font-size: 0.9rem;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.spec-item__value {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--primary);
}

/* Call to Action */
.expertise-cta {
	padding: 6rem 0;
	background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
	color: white;
	text-align: center;
}

.expertise-cta__content {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 2rem;
}

.expertise-cta__title {
	font-size: 3rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.expertise-cta__description {
	font-size: 1.2rem;
	opacity: 0.9;
	margin-bottom: 3rem;
	line-height: 1.6;
}

.expertise-cta__actions {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
	.expertise-hero {
		height: 50vh;
		min-height: 300px;
		margin-top: 50px;
	}

	.expertise-hero__title {
		font-size: 2.5rem;
	}

	.expertise-hero__subtitle {
		font-size: 1.1rem;
	}

	.expertise-content {
		padding: 2rem 0;
	}

	.expertise-content__container {
		padding: 0 1rem;
	}

	.expertise-section {
		padding: 4rem 0;
	}

	.expertise-section__title {
		font-size: 2rem;
		margin-bottom: 2rem;
	}

	.expertise-section__text {
		font-size: 1rem;
	}

	.benefits-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.benefit-card {
		padding: 2rem 1.5rem;
	}

	.applications-list {
		gap: 1.5rem;
	}

	.application-item {
		padding: 1.5rem;
	}

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

	.expertise-cta {
		padding: 4rem 0;
	}

	.expertise-cta__title {
		font-size: 2rem;
	}

	.expertise-cta__description {
		font-size: 1rem;
	}

	.expertise-cta__actions {
		flex-direction: column;
		align-items: center;
	}

	.expertise-cta__actions .btn {
		width: 100%;
		max-width: 300px;
	}
}

