/* About company: stats + year timeline (Alma-inspired structure) */
.gsc_stats,
.gsc_history {
	--gsc-ink: #1f2a1c;
	--gsc-muted: #5f6b5a;
	--gsc-green: #319030;
	--gsc-gold: #d7b46a;
	--gsc-soft: #f3f1ed;
	font-family: "Nunito", "ProximaNova", sans-serif;
}

.gsc_stats {
	position: relative;
	z-index: 10;
	padding: 36px 0 12px;
}

.gsc_stats_head {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 28px;
}

.gsc_stats_eyebrow {
	margin: 0 0 8px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gsc-green);
}

.gsc_stats_title {
	margin: 0;
	font-size: 30px;
	line-height: 1.25;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--gsc-ink);
}

.gsc_stats_title::after {
	content: "";
	display: block;
	width: 56px;
	height: 3px;
	margin: 14px auto 0;
	border-radius: 3px;
	background: var(--gsc-gold);
}

.gsc_stats_grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 14px;
}

.gsc_stat {
	background: #fff;
	border: 1px solid rgba(49, 144, 48, 0.12);
	border-radius: 14px;
	padding: 22px 16px 20px;
	text-align: center;
	box-shadow: 0 4px 16px rgba(28, 36, 24, 0.05);
}

.gsc_stat_value {
	margin: 0 0 6px;
	font-size: 28px;
	line-height: 1.1;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--gsc-green);
}

.gsc_stat_label {
	margin: 0 0 8px;
	font-size: 14px;
	line-height: 1.35;
	font-weight: 700;
	color: var(--gsc-ink);
}

.gsc_stat_note {
	margin: 0;
	font-size: 12px;
	line-height: 1.45;
	color: var(--gsc-muted);
}

/* Timeline */
.gsc_history {
	position: relative;
	z-index: 10;
	padding: 28px 0 48px;
}

.gsc_history_welcome {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 32px;
}

.gsc_history_eyebrow {
	margin: 0 0 10px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gsc-green);
}

.gsc_history_brand {
	margin: 0 0 14px;
	font-size: 34px;
	line-height: 1.2;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--gsc-ink);
}

.gsc_history_lead {
	margin: 0;
	font-size: 17px;
	line-height: 1.7;
	color: var(--gsc-muted);
}

.gsc_history_years {
	display: flex;
	flex-wrap: nowrap;
	gap: 8px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	padding: 10px 4px 16px;
	margin: 0 0 28px;
	border-bottom: 1px solid rgba(36, 48, 34, 0.1);
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.gsc_history_year {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 64px;
	padding: 10px 14px;
	border-radius: 999px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 800;
	color: var(--gsc-muted);
	background: #fff;
	border: 1px solid rgba(36, 48, 34, 0.1);
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.gsc_history_year:hover,
.gsc_history_year.is-active {
	color: #fff;
	background: var(--gsc-green);
	border-color: var(--gsc-green);
	transform: translateY(-1px);
}

.gsc_history_head {
	text-align: center;
	margin: 0 0 36px;
}

.gsc_history_kicker {
	margin: 0 0 6px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gsc-muted);
}

.gsc_history_title {
	margin: 0;
	font-size: 32px;
	line-height: 1.25;
	font-weight: 800;
	color: var(--gsc-ink);
}

.gsc_history_title::after {
	content: "";
	display: block;
	width: 56px;
	height: 3px;
	margin: 14px auto 0;
	border-radius: 3px;
	background: var(--gsc-gold);
}

.gsc_history_list {
	max-width: 820px;
	margin: 0 auto;
}

.gsc_history_item {
	position: relative;
	padding: 0 0 40px 28px;
	border-left: 2px solid rgba(49, 144, 48, 0.22);
}

.gsc_history_item:last-child {
	padding-bottom: 0;
	border-left-color: transparent;
}

.gsc_history_item::before {
	content: "";
	position: absolute;
	left: -7px;
	top: 6px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--gsc-green);
	box-shadow: 0 0 0 4px rgba(49, 144, 48, 0.15);
}

.gsc_history_item_year {
	margin: 0 0 8px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gsc-green);
}

.gsc_history_item_title {
	margin: 0 0 12px;
	font-size: 24px;
	line-height: 1.3;
	font-weight: 800;
	color: var(--gsc-ink);
}

.gsc_history_item_text {
	margin: 0;
	font-size: 16px;
	line-height: 1.75;
	color: var(--gsc-muted);
}

.about_wr .about_legacy {
	padding-top: 8px;
	padding-bottom: 8px;
}

.about_wr .about_legacy .left.article,
.about_wr .about_legacy .right .article {
	font-size: 16px;
	line-height: 1.7;
	color: var(--gsc-muted, #5f6b5a);
}

@media screen and (max-width: 1100px) {
	.gsc_stats_grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media screen and (max-width: 720px) {
	.gsc_stats_grid {
		grid-template-columns: 1fr 1fr;
	}
	.gsc_stat:last-child {
		grid-column: 1 / -1;
	}
	.gsc_stats_title,
	.gsc_history_brand,
	.gsc_history_title {
		font-size: 24px;
	}
	.gsc_history_item_title {
		font-size: 20px;
	}
	.gsc_history_item {
		padding-left: 22px;
	}
	.gsc_history_years {
		top: 0;
	}
}
