.about-v2 {
	font-family: "Montserrat", sans-serif;
	color: #1a1a1a;
}

.about-v2 > section {
	margin-bottom: 24px;
}

.about-v2 .h2 {
	position: relative;
	margin: 0 0 14px;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-size: 28px;
	line-height: 1.25;
	letter-spacing: -0.01em;
	color: #171717;
}

.about-v2-hero {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 20px;
	padding: 24px;
	border: 1px solid #f2f2f2;
	border-radius: 12px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
	background: #ffffff;
	margin-bottom: 24px;
}

.about-v2-hero__text p {
	margin: 0 0 16px;
	font-size: 14px;
	color: #444;
	line-height: 1.6;
}

.about-v2-hero__actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	align-items: stretch;
}

.about-v2-btn {
	display: inline-flex;
	flex: 0 0 auto;
	min-height: 38px;
	padding: 8px 16px;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 14px;
	font-weight: 700;
	font-family: "Montserrat", sans-serif;
	border-radius: 12px;
	text-decoration: none;
	cursor: pointer;
	transition:
		background 0.25s ease,
		box-shadow 0.25s ease,
		border-color 0.25s ease,
		opacity 0.25s ease,
		transform 0.2s ease;
	border: 1px solid transparent;
	box-sizing: border-box;
	white-space: nowrap;
	line-height: 1.2;
}

.about-v2-btn--primary {
	background: #ffcc33;
	color: #1a1a1a;
	border-color: rgba(255, 204, 51, 0.45);
	box-shadow:
		0 2px 8px rgba(255, 204, 51, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.about-v2-btn--primary:hover {
	background: #ffcc33;
	box-shadow:
		0 4px 12px rgba(255, 204, 51, 0.45),
		inset 0 1px 0 rgba(255, 255, 255, 0.5);
	transform: translateY(-1px);
}

.about-v2-btn--primary:active {
	transform: translateY(0);
	box-shadow:
		0 1px 4px rgba(255, 204, 51, 0.35),
		inset 0 1px 2px rgba(0, 0, 0, 0.08);
}

.about-v2-btn--ghost {
	background: #f9fafb;
	color: #1f2937;
	border-color: rgba(0, 0, 0, 0.1);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.about-v2-btn--ghost:hover {
	background: #ffffff;
	border-color: #d1d5db;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
	transform: translateY(-1px);
}

.about-v2-btn--ghost:active {
	transform: translateY(0);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
	opacity: 1;
}

.about-v2-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.about-v2-stat {
	padding: 14px 16px;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.about-v2-stat__value {
	display: block;
	font-size: 28px;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1;
	margin-bottom: 6px;
}

.about-v2-stat__label {
	display: block;
	font-size: 14px;
	line-height: 1.4;
	color: #555;
}

.about-v2-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 24px;
}

.about-v2-card {
	position: relative;
	padding: 20px;
	border-radius: 12px;
	border: 1px solid #f3f3f3;
	background: #fff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.about-v2-card__head {
	display: block;
	margin-bottom: 12px;
}

.about-v2-card .h3 {
	margin: 0;
	padding-right: 14px;
	font-size: 19px;
	font-weight: 700;
	line-height: 1.35;
}

.about-v2-card p {
	margin: 0 0 12px;
	font-size: 14px;
	line-height: 1.6;
	color: #444;
}

.about-v2-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.about-v2-list li {
	position: relative;
	padding-left: 18px;
	margin-bottom: 10px;
	font-size: 14px;
	line-height: 1.5;
	color: #333;
}

.about-v2-list li:before {
	content: "";
	position: absolute;
	top: 9px;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #ffcc33;
}

.about-v2-map {
	padding: 24px;
	border-radius: 12px;
	border: 1px solid #f3f3f3;
	background: #fff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	margin-bottom: 24px;
}

.about-v2-map__heading {
	margin-bottom: 14px;
}

.about-v2-map__heading .h2 {
	margin: 0 0 8px;
}

.about-v2-map__heading p {
	margin: 0;
	font-size: 14px;
	color: #555;
}

.about-v2-map__canvas {
	position: relative;
}

.about-v2-map__figure {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}

.about-v2-map__img {
	display: block;
	width: 100%;
	height: auto;
	filter: grayscale(1);
}

.markerAbout {
	position: absolute;
	width: 16px;
	height: 16px;
	transform: translate(-50%, -50%) scale(0.75);
	opacity: 0;
	transition: transform 0.3s ease, opacity 0.4s ease;
	z-index: 2;
	border-radius: 50%;
	background: #ffcc33;
	border: 2px solid #1a1a1a;
	box-shadow:
		0 0 0 0 rgba(255, 204, 51, 0.45),
		0 2px 4px rgba(0, 0, 0, 0.2);
	animation: aboutMarkerPulse 2.1s infinite;
}

.markerAbout img {
	display: none;
}

.markerAbout:hover {
	transform: translate(-50%, -50%) scale(1.1);
}

@keyframes aboutMarkerPulse {
	0% {
		box-shadow:
			0 0 0 0 rgba(255, 204, 51, 0.45),
			0 2px 4px rgba(0, 0, 0, 0.2);
	}
	70% {
		box-shadow:
			0 0 0 7px rgba(255, 204, 51, 0),
			0 2px 4px rgba(0, 0, 0, 0.2);
	}
	100% {
		box-shadow:
			0 0 0 0 rgba(255, 204, 51, 0),
			0 2px 4px rgba(0, 0, 0, 0.2);
	}
}

.about-v2-map__note {
	margin-top: 12px;
	max-width: 460px;
	padding: 10px 12px;
	background: rgba(26, 26, 26, 0.86);
	color: #fff;
	border-radius: 8px;
	font-size: 14px;
	line-height: 1.45;
}

.about-v2-partners {
	padding: 24px;
	border-radius: 12px;
	border: 1px solid #f3f3f3;
	background: #fff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.about-v2-partners .h2 {
	margin: 0 0 16px;
	text-align: center;
}

.about-v2-partners__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(180px, 1fr));
	gap: 12px;
	align-items: center;
}

.about-v2-partner-pill {
	min-height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 10px 14px;
	border: 1px solid #efefef;
	border-radius: 10px;
	background: #ffffff;
	color: #1f2937;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
	transition:
		box-shadow 0.2s ease,
		border-color 0.2s ease,
		transform 0.2s ease;
}

.about-v2-partner-pill:hover {
	border-color: rgba(255, 204, 51, 0.5);
	box-shadow: 0 4px 12px rgba(255, 204, 51, 0.2);
	transform: translateY(-1px);
}

@media (max-width: 1360px) {
	.about-v2-hero {
		grid-template-columns: 1fr 1fr;
		gap: 16px;
		padding: 20px;
	}

	.about-v2 .h2 {
		font-size: 26px;
	}

	.about-v2-stat__value {
		font-size: 24px;
	}
}

@media (max-width: 1200px) {
	.about-v2 {
		padding-right: 4px;
	}

	.about-v2-hero,
	.about-v2-map,
	.about-v2-partners {
		padding: 20px;
	}

	.about-v2-grid {
		gap: 14px;
	}

	.about-v2-card {
		padding: 18px;
	}

	.about-v2-card .h3 {
		font-size: 18px;
	}

	.about-v2-list li,
	.about-v2-card p {
		font-size: 14px;
	}

	.about-v2-map__note {
		max-width: 100%;
	}

	.about-v2-partners__grid {
		grid-template-columns: repeat(2, minmax(180px, 1fr));
	}
}

@media (max-width: 1100px) {
	.about-v2-hero {
		grid-template-columns: 1fr;
	}

	.about-v2-grid {
		grid-template-columns: 1fr;
	}

	.about-v2-stats {
		grid-template-columns: repeat(4, minmax(130px, 1fr));
	}

	.about-v2-stat {
		padding: 12px;
	}

	.about-v2-stat__value {
		font-size: 22px;
	}

	.about-v2-stat__label {
		font-size: 14px;
	}
}

@media (max-width: 760px) {
	.about-v2 {
		padding-right: 0;
	}

	.about-v2 > section {
		margin-bottom: 18px;
	}

	.about-v2-hero,
	.about-v2-map,
	.about-v2-partners,
	.about-v2-card {
		padding: 16px;
	}

	.about-v2 .h2 {
		font-size: 22px;
		line-height: 1.3;
		margin-bottom: 12px;
	}

	.about-v2-hero__text p {
		font-size: 14px;
		line-height: 1.55;
		margin-bottom: 12px;
	}

	.about-v2-hero__actions {
		gap: 8px;
	}

	.about-v2-btn {
		flex: 1 1 auto;
		width: 100%;
		min-height: 40px;
	}

	.about-v2-stats {
		grid-template-columns: 1fr 1fr;
		gap: 8px;
	}

	.about-v2-card .h3 {
		font-size: 17px;
		line-height: 1.3;
	}

	.about-v2-card p,
	.about-v2-list li {
		font-size: 14px;
		line-height: 1.5;
	}

	.about-v2-list li {
		margin-bottom: 8px;
	}

	.about-v2-map__heading p {
		font-size: 14px;
		line-height: 1.45;
	}

	.about-v2-partners__grid {
		grid-template-columns: repeat(1, minmax(180px, 1fr));
		gap: 8px;
	}

	.about-v2-map__note {
		font-size: 14px;
		padding: 8px 10px;
		max-width: 100%;
	}

	.markerAbout {
		width: 14px;
		height: 14px;
		border-width: 1.5px;
	}
}

@media (max-width: 520px) {
	.about-v2-hero,
	.about-v2-map,
	.about-v2-partners,
	.about-v2-card {
		padding: 14px;
		border-radius: 10px;
	}

	.about-v2 .h2 {
		font-size: 20px;
	}

	.about-v2-card .h3 {
		font-size: 16px;
		padding-right: 8px;
	}

	.about-v2-btn {
		font-size: 14px;
		min-height: 38px;
		padding: 8px 12px;
	}

	.about-v2-stat__value {
		font-size: 20px;
	}

	.about-v2-map__figure {
		border-radius: 8px;
	}

	.markerAbout {
		width: 12px;
		height: 12px;
		border-width: 1px;
	}
}
