/* Architecture Block Styles */
/* Architecture Block with Background Images */
.architecture-block {
	background: #ffffff;
	padding: 80px 60px;
	position: relative;
	overflow: hidden;
}

/* Background Images */
.capabilities-bg-top {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	z-index: 0;
	pointer-events: none;
}

.capabilities-bg-top img {
	width: 100%;
	height: auto;
	display: block;
	opacity: 0.1; /* Adjust opacity as needed */
}

.capabilities-bg-bottom {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: auto;
	z-index: 0;
	pointer-events: none;
}

.capabilities-bg-bottom img {
	width: 100%;
	height: auto;
	display: block;
	opacity: 0.1; /* Adjust opacity as needed */
}

/* Make sure content is above backgrounds */
.architecture-header,
.architecture-features {
	position: relative;
	z-index: 1;
}

.architecture-header {
	text-align: center;
	margin-bottom: 60px;
}

.architecture-header p {
	font-size: 16px;
	color: #4a4a4a;
	line-height: 1.6;
	max-width: 900px;
	margin: 0 auto;
}

/* Architecture Features Grid */
.architecture-features {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0;
	max-width: 1800px;
	margin: 0 auto;
	gap: 40px;
}

.architecture-card {
	display: flex;
	width: 446px;
	padding: 40px;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	text-align: center;
	background-color: #f4f4f4;
	border-radius: 20px;
}

.architecture-card-icon {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.architecture-card-icon svg,
.architecture-card-icon img {
	width: 64px;
	height: 64px;
}

.architecture-card h3 {
	font-size: 24px;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.3;
	margin: 0;
}

.architecture-card h3 span {
	font-weight: 400;
}

@media (max-width: 1400px) {
	.architecture-features {
		justify-content: space-around;
	}
}

@media (max-width: 960px) {
	.architecture-block {
		padding: 60px 40px;
	}

	.architecture-header h2 {
		font-size: 36px;
	}

	.architecture-card {
		width: 100%;
		max-width: 446px;
	}
}

@media (max-width: 640px) {
	.architecture-block {
		padding: 40px 20px;
	}

	.architecture-header h2 {
		font-size: 28px;
	}

	.architecture-card {
		padding: 30px 20px;
	}

	.architecture-card h3 {
		font-size: 20px;
	}
}
/* Platform Lineup Section */
.platform-lineup {
	background: #ffffff;
	padding: 60px 40px;
	width: 100%;
}

.platform-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: auto;
	gap: 30px;
	max-width: 1400px;
	margin: 20px auto 0;
	justify-items: center; /* Центрирует элементы в grid */
}

.platform-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
	max-width: 450px;
	width: 100%;
}

.platform-image-wrapper {
	height: 393px;
	width: 100%;
	aspect-ratio: 160/131;
	border-radius: 20px;
	background: #d0d0d0 50% / cover no-repeat;
	overflow: hidden;
}

.platform-image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.platform-info {
	display: flex;
	flex-direction: column;
	text-align: left;
}

.platform-info h3 {
	color: #2c2c2c;
	text-align: center;
	font-family: Roboto;
	font-size: 32px;
	font-style: normal;
	font-weight: 700;
	line-height: 40px;
	margin: 0;
}

.platform-subtitle {
	color: #2c2c2c;
	font-family: Roboto;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 22.4px;
	margin: 20px 0 0 0;
}

.platform-description {
	color: #2c2c2c;
	text-align: justify;
	font-family: Roboto;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 22.4px;
	margin: 0;
}

.platform-specs {
	list-style: disc;
	padding: 0;
	margin: 10px 0 0 20px;
}

.platform-specs li {
	color: #2c2c2c;
	font-family: Roboto;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 22.4px;
}

.platform-specs li strong {
	font-weight: 700;
}

.platform-learn-more {
	display: inline-block;
	align-self: flex-start;
	margin-top: 20px;
	padding: 10px 30px;
	background: #477a47;
	color: #ffffff;
	text-decoration: none;
	border-radius: 6px;
	font-family: Roboto;
	font-size: 14px;
	font-weight: 700;
	line-height: 22.4px;
	transition: background 0.3s ease;
	display: flex;
	height: 56px;
	padding: 18px 32px;
	justify-content: center;
	align-items: center;
	gap: 16px;
	align-self: center;
}

.platform-learn-more:hover {
	background: #4b884b;
	box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

/* Fourth card centered in second row */
.platform-card:nth-child(4) {
	grid-column: 2 / 3;
}

@media (max-width: 1520px) {
	.platform-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}
	.platform-card {
		max-width: 100%;
	}
}
@media (max-width: 1052px) {
	.architecture-card {
    max-width: 100%;
		width: 100% !important;
	}
}
@media (max-width: 1024px) {
	.platform-grid {
		grid-template-columns: repeat(1, 1fr);
		gap: 15px;
	}
	.platform-card:nth-child(4) {
		grid-column: 1 / 2;
	}

	.platform-info h3 {
		font-size: 28px;
		line-height: 36px;
	}
}

@media (max-width: 640px) {
	.platform-lineup {
		padding: 40px 20px;
	}

	.platform-lineup h2 {
		font-size: 28px;
		line-height: 36px;
	}

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

	.platform-card {
		max-width: 100%;
	}

	.platform-card:nth-child(4) {
		grid-column: 1 / 2;
	}

	.platform-info h3 {
		font-size: 24px;
		line-height: 32px;
	}

	.platform-image-wrapper {
		height: 300px;
	}
}
/* Mission Profiles Section */
.mission-profiles {
	background: #ffffff;
	padding: 60px 40px;
	text-align: center;
}

.mission-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	max-width: 1200px;
	margin: 20px auto 0;
	justify-items: center;
}
.mission-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	margin: 30px auto 0;
}
.mission-card {
	display: flex;
	flex-direction: column;
	gap: 15px;
	max-width: 380px;
	width: 100%;
}

.mission-image-wrapper {
	width: 100%;
	height: 240px;
	border-radius: 12px;
	overflow: hidden;
}

.mission-image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
}

.mission-info {
	display: flex;
	flex-direction: column;
	gap: 8px;
	text-align: center;
}

.mission-info h3 {
	color: #2c2c2c;
	text-align: center;
	font-family: Roboto;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 24px;
	margin: 0;
}

.mission-info p {
	color: #666;
	text-align: center;
	font-family: Roboto;
	font-size: 13px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
	margin: 0;
}

/* Cards 4 and 5 in second row */
.mission-card:nth-child(4) {
	grid-column: 1 / 2;
}

.mission-card:nth-child(5) {
	grid-column: 2 / 3;
}

@media (max-width: 1024px) {
	.mission-grid {
		grid-template-columns: repeat(1, 1fr);
		gap: 25px;
	}
	.mission-wrapper {
		flex-direction: column;
	}
	.mission-card {
		max-width: 100%;
	}
	.mission-image-wrapper {
		height: 650px;
	}
	.mission-card:nth-child(4),
	.mission-card:nth-child(5) {
		grid-column: auto;
	}
}

@media (max-width: 640px) {
	.mission-profiles {
		padding: 40px 20px;
	}

	.mission-profiles h2 {
		font-size: 28px;
		line-height: 36px;
	}

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

	.mission-card {
		max-width: 100%;
	}

	.mission-card:nth-child(4),
	.mission-card:nth-child(5) {
		grid-column: 1 / 2;
	}

	.mission-image-wrapper {
		height: 400px;
	}
}
