﻿.home-page-wrapper {
	--home-text: #ffffff;
	--home-accent: #ebbc38;
	--home-accent-dark: #c9a022;
	--home-cream: #f4e7c7;
	--home-line: rgba(255, 255, 255, 0.28);
	--home-shadow: 0 10px 30px rgba(77, 44, 0, 0.18);
	--home-radius-pill: 999px;
	--home-max-width: 1600px;
	--home-content-width: 760px;
	font-family: inherit;
}

.home-page-wrapper * {
	box-sizing: border-box;
}

/* =====================================================
   Hero Section  (Figma node 295:162)
   ===================================================== */

.hs-hero {
	position: relative;
	height: 774px;
	overflow: hidden;
	background-color: #083e24;
	background-size: cover;
	background-position: center;
}

.hs-hero__media {
	position: absolute;
	top: 0;
	left: 39.53%; /* 759 / 1920 */
	right: 0;
	height: 100%;
	overflow: hidden;
}

.hs-hero__media-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.hs-hero__media-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		235.71deg,
		rgba(21, 92, 49, 0.9)  7.98%,
		rgba(39, 103, 64, 0.88) 41.84%,
		rgba(23, 94, 52, 0)     62.53%
	);
}

/*
 * Left column: holds content (top) and social proof (bottom).
 * Using flex + space-between so the gap is always correct
 * regardless of how tall the title/description actually renders.
 * Figma: left=99px top=92px, social-proof top=599px → bottom≈91px
 */
.hs-hero__left-col {
	position: absolute;
	left: 5.16%; /* 99 / 1920 */
	top: 92px;
	bottom: 91px;
	width: 38.18%; /* 733 / 1920 */
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.hs-hero__content {
	display: flex;
	flex-direction: column;
}

.hs-hero__title {
	font-family: 'Anton', 'Impact', sans-serif;
	font-size: 72px;
	font-weight: 400;
	font-style: normal;
	line-height: 1.5;
	white-space: nowrap;
	margin: 0 0 32px;
	display: flex;
	flex-direction: column;
}

.hs-hero__title-green  { color: #0a562e; }
.hs-hero__title-yellow { color: #e69f15; }

.hs-hero__body {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.hs-hero__desc {
	font-family: 'Roboto', sans-serif;
	font-size: 28px;
	font-weight: 500;
	color: #3f3f46;
	line-height: 1.35;
	max-width: 672px;
	margin: 0;
}

.hs-hero__desc-brand {
	font-family: 'Roboto', sans-serif;
	font-weight: 900;
	color: #225c47;
}

.hs-hero__actions {
	display: flex;
	gap: 24px;
	align-items: center;
	flex-wrap: nowrap;
}

.hs-hero__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 56px;
	padding: 12px 24px;
	border-radius: 4px;
	font-family: 'Roboto', sans-serif;
	font-size: 24px;
	font-weight: 600;
	line-height: 30px;
	text-transform: uppercase;
	text-decoration: none;
	color: #ffffff;
	white-space: nowrap;
	flex-shrink: 0;
	transition: opacity 0.2s ease;
}

.hs-hero__btn:hover  { opacity: 0.88; color: #ffffff; }
.hs-hero__btn--primary   { background: #0a562e; }
.hs-hero__btn--secondary { background: #c90d10; padding: 12px 20px; }

.hs-hero__btn-icon {
	width: 32px;
	height: 32px;
	flex-shrink: 0;
}

/* Social proof – sits at the bottom of left-col via space-between */
.hs-hero__social {
	display: flex;
	gap: 29px;
	align-items: center;
}

.hs-hero__avatars {
	display: flex;
	align-items: center;
}

.hs-hero__avatar {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	border: 3px solid #ffffff;
	background: rgba(255, 255, 255, 0.25); /* placeholder tint */
}

.hs-hero__avatar:not(:first-child) { margin-left: -20px; }

.hs-hero__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hs-hero__avatar--placeholder {
	background: rgba(255, 255, 255, 0.18);
}

.hs-hero__social-copy {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.hs-hero__social-count {
	font-family: 'Roboto', sans-serif;
	font-size: 28px;
	font-weight: 700;
	color: #225c47;
	margin: 0;
	line-height: normal;
}

.hs-hero__social-sub {
	font-family: 'Roboto', sans-serif;
	font-size: 24px;
	font-weight: 500;
	color: #3f3f46;
	margin: 0;
	line-height: normal;
}

/* EDA Academy card */
.hs-hero__eda-card {
	position: absolute;
	left: 65.99%; /* 1267 / 1920 */
	top: 571px;
	background: rgba(10, 86, 46, 0.84);
	border-radius: 32px;
	padding: 32px;
	display: flex;
	gap: 24px;
	align-items: flex-start;
}

.hs-hero__eda-icon {
	width: 96px;
	height: 96px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hs-hero__eda-icon img {
	width: 90px;
	height: 90px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.hs-hero__eda-copy {
	display: flex;
	flex-direction: column;
	gap: 12px;
	color: #ffffff;
}

.hs-hero__eda-name {
	font-family: 'Roboto', sans-serif;
	font-size: 36px;
	font-weight: 700;
	line-height: normal;
	margin: 0;
}

.hs-hero__eda-text {
	font-family: 'Roboto', sans-serif;
	font-size: 28px;
	font-weight: 400;
	line-height: normal;
	margin: 0;
}

/* -- Responsive: Hero --------------------------------------- */
@media (max-width: 1600px) {
	.hs-hero__title { font-size: 58px; }
	.hs-hero__desc  { font-size: 22px; }
	.hs-hero__btn   { font-size: 20px; height: 50px; }
	.hs-hero__social-count { font-size: 22px; }
	.hs-hero__social-sub   { font-size: 18px; }
	.hs-hero__eda-name { font-size: 28px; }
	.hs-hero__eda-text { font-size: 22px; }
	.hs-hero__eda-icon, .hs-hero__eda-icon img { width: 72px; height: 72px; }
}

@media (max-width: 1280px) {
	.hs-hero { height: auto; min-height: 640px; }
	.hs-hero__media    { left: 46%; }
	.hs-hero__left-col { left: 24px; right: 46%; width: auto; top: 56px; bottom: 52px; }
	.hs-hero__title    { font-size: 44px; white-space: normal; }
	.hs-hero__desc     { font-size: 17px; max-width: 100%; }
	.hs-hero__btn      { font-size: 15px; height: 44px; padding: 10px 16px; }
	.hs-hero__btn--secondary { padding: 10px 14px; }
	.hs-hero__btn-icon { width: 24px; height: 24px; }
	.hs-hero__eda-card { display: none; }
}

@media (max-width: 782px) {
	.hs-hero { min-height: auto; padding-bottom: 40px; }
	.hs-hero__media    { left: 0; opacity: 0.15; }
	.hs-hero__left-col { left: 16px; right: 16px; width: auto; top: 40px; bottom: 40px; }
	.hs-hero__title    { font-size: 36px; white-space: normal; }
	.hs-hero__desc     { font-size: 15px; max-width: 100%; }
	.hs-hero__actions  { gap: 12px; }
	.hs-hero__btn      { font-size: 13px; height: 40px; padding: 8px 14px; }
	.hs-hero__btn--secondary { padding: 8px 12px; }
	.hs-hero__btn-icon { width: 20px; height: 20px; }
	.hs-hero__social   { flex-wrap: wrap; gap: 16px; }
	.hs-hero__avatar   { width: 52px; height: 52px; }
	.hs-hero__social-count { font-size: 18px; }
	.hs-hero__social-sub   { font-size: 14px; }
}

/* =====================================================
   Stats Bar  (Figma node 314:986)
   ===================================================== */

.hs-stats {
	display: flex;
	gap: 24px;
	align-items: center;
	padding: 36px 80px;
	background: #0a562e;
	width: 100%;
	position: relative;
	box-sizing: border-box;
}

.hs-stats__item {
	display: flex;
	flex: 1 0 0;
	gap: 24px;
	align-items: flex-start;
	min-width: 1px;
}

.hs-stats__icon-wrap {
	width: 88px;
	height: 88px;
	border: 2px solid #ffffff;
	border-radius: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	flex-shrink: 0;
	box-sizing: border-box;
}

.hs-stats__icon-wrap--plain {
	border: none;
	border-radius: 0;
	padding: 0;
}

.hs-stats__icon {
	width: 52px;
	height: 52px;
	object-fit: contain;
	display: block;
	filter: brightness(0) invert(1);
}

.hs-stats__icon-wrap--plain .hs-stats__icon {
	width: 88px;
	height: 88px;
	filter: none;
}

.hs-stats__copy {
	display: flex;
	flex: 1 0 0;
	flex-direction: column;
	gap: 8px;
	min-width: 1px;
}

.hs-stats__value {
	font-family: 'Anton', 'Impact', sans-serif;
	font-size: 44px;
	line-height: 48px;
	color: #e5a614;
	margin: 0;
}

.hs-stats__labels {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.hs-stats__title {
	font-family: 'Roboto', sans-serif;
	font-size: 28px;
	font-weight: 600;
	color: #ffffff;
	text-transform: uppercase;
	margin: 0;
	line-height: normal;
}

.hs-stats__sub {
	font-family: 'Roboto', sans-serif;
	font-size: 24px;
	font-weight: 400;
	color: #ffffff;
	margin: 0;
	line-height: normal;
}

.hs-stats__divider {
	align-self: stretch;
	width: 1px;
	flex-shrink: 0;
	background: rgba(255, 255, 255, 0.35);
	margin: 6px 0;
}

/* â”€â”€ Responsive: Stats bar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1440px) {
	.hs-stats { padding: 28px 40px; gap: 20px; }
	.hs-stats__value { font-size: 36px; line-height: 40px; }
	.hs-stats__title { font-size: 22px; }
	.hs-stats__sub   { font-size: 18px; }
	.hs-stats__icon-wrap { width: 72px; height: 72px; }
	.hs-stats__icon  { width: 40px; height: 40px; }
	.hs-stats__icon-wrap--plain .hs-stats__icon { width: 72px; height: 72px; }
}

@media (max-width: 1024px) {
	.hs-stats { flex-wrap: wrap; padding: 24px; gap: 16px; }
	.hs-stats__item    { flex: 0 0 calc(50% - 8px); }
	.hs-stats__divider:nth-of-type(3) { display: none; }
}

@media (max-width: 782px) {
	.hs-stats { flex-direction: column; align-items: flex-start; padding: 24px 16px; gap: 20px; }
	.hs-stats__item    { flex: none; width: 100%; }
	.hs-stats__divider { display: none; }
	.hs-stats__value   { font-size: 32px; line-height: 36px; }
	.hs-stats__title   { font-size: 18px; }
	.hs-stats__sub     { font-size: 15px; }
	.hs-stats__icon-wrap { width: 64px; height: 64px; }
	.hs-stats__icon      { width: 36px; height: 36px; }
	.hs-stats__icon-wrap--plain .hs-stats__icon { width: 64px; height: 64px; }
}

/* keep old .home-hero stub so no 404 on cached pages */
.home-hero { display: none; }
.home-metrics { display: none; }

/* --------------------------------------------------- */

.home-values {
	padding: 60px 24px 56px;
	background: #014524;
}

.home-values__inner {
	max-width: var(--home-max-width);
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(380px, 1.05fr) minmax(860px, 1fr);
	align-items: center;
	gap: 30px 44px;
}

.home-values__diagram {
	position: relative;
	min-height: 410px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.home-values__diagram .home-values__diamond-image {
	width: min(100%, 645px);
	height: auto;
	display: block;
	object-fit: contain;
	filter: drop-shadow(0 12px 28px rgba(200, 168, 75, 0.45));
}

.home-values__card-row {
	display: flex;
	justify-content: center;
	gap: 14px;
	width: 100%;
}

.home-values__card-row + .home-values__card-row {
	margin-top: 18px;
}

.home-values__cards {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.home-values__title {
	margin: 0;
	font-size: clamp(1.9rem, 2vw, 2.75rem);
	line-height: 1.08;
	font-weight: 900;
	color: #ebbc38;
	text-align: center;
	text-wrap: balance;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	letter-spacing: -0.02em;
}

.home-values__card-row--top .home-values__card {
	flex: 0 0 270px;
	max-width: 270px;
}

.home-values__card-row--bottom {
	max-width: 100%;
	margin: 0 auto;
}

.home-values__card-row--bottom .home-values__card {
	flex: 0 0 270px;
	max-width: 270px;
}

.home-values__card {
	min-height: 210px;
	padding: 24px 20px 22px;
	border-radius: 18px;
	border: 2px solid #ebbc38;
	background: #ffffff;
	text-align: center;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(200, 168, 75, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.9);
	justify-self: center;
	width: 100%;
	max-width: 150px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-values__card:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(200, 168, 75, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.home-values__card:nth-child(n + 4) {
	grid-column: span 1;
}

.home-values__card--blue { background: #ffffff; border-color: #ebbc38; }
.home-values__card--pink { background: #ffffff; border-color: #ebbc38; }
.home-values__card--green { background: #ffffff; border-color: #ebbc38; }
.home-values__card--gold { background: #ffffff; border-color: #ebbc38; }
.home-values__card--purple { background: #ffffff; border-color: #ebbc38; }

.home-values__card-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 70px;
	margin-bottom: 4px;
}

.home-values__card-icon-image {
	width: 52px;
	height: 52px;
	object-fit: contain;
}

.home-values__card-title {
	margin: 0;
	font-size: 1.28rem;
	line-height: 1.12;
	font-weight: 900;
}

.home-values__card-text {
	margin: 10px 0 0;
	font-size: 1.05rem;
	line-height: 1.35;
	font-weight: 500;
	color: #3d3d3d;
}

.home-values__card--blue .home-values__card-title { color: #014524; }
.home-values__card--pink .home-values__card-title { color: #014524; }
.home-values__card--green .home-values__card-title { color: #014524; }
.home-values__card--gold .home-values__card-title { color: #8a6318; }
.home-values__card--purple .home-values__card-title { color: #014524; }

@media (max-width: 1200px) {
	.home-values__inner {
		grid-template-columns: 1fr;
	}

	.home-values__title {
		text-align: left;
	}

	.home-values__card-row--bottom {
		max-width: 100%;
	}

	.home-values__card-row--top .home-values__card,
	.home-values__card-row--bottom .home-values__card {
		flex-basis: 0;
		flex-grow: 1;
		max-width: none;
	}
}

@media (max-width: 782px) {
	.home-values {
		padding: 40px 16px 44px;
	}

	.home-values__inner {
		gap: 24px;
	}

	.home-values__diagram {
		min-height: 280px;
	}

	.home-values__cards {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.home-values__title {
		grid-column: span 2;
		font-size: 1.55rem;
		text-align: center;
		margin-bottom: 8px;
		text-wrap: balance;
	}

	.home-values__card-row {
		display: contents;
	}

	.home-values__card {
		min-height: auto;
		max-width: none;
		width: 100%;
		padding: 16px 12px;
	}

	.home-values__card-row--bottom .home-values__card:last-child {
		grid-column: span 2;
		justify-self: center;
		max-width: calc(50% - 6px);
	}

	.home-values__card-icon {
		min-height: 50px;
		margin-bottom: 2px;
	}

	.home-values__card-icon-image {
		width: 44px;
		height: 44px;
	}

	.home-values__card-title {
		font-size: 1.15rem;
	}

	.home-values__card-text {
		font-size: 0.85rem;
		margin-top: 6px;
	}
}

.home-cta-banner {
	margin-top: 0;
	border-top: 1px solid #ebbc38;
	padding: 34px 24px;
	background:
		radial-gradient(circle at 14% 46%, rgba(255, 255, 255, 0.05) 0%, transparent 16%),
		radial-gradient(circle at 76% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 18%),
		linear-gradient(90deg, #012d18 0%, #014524 22%, #1a6338 52%, #1a6338 76%, #014524 100%);
	color: #ffffff;
}

.home-cta-banner__inner {
	max-width: var(--home-max-width);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr) 300px;
	align-items: center;
	gap: 28px;
}

.home-cta-banner__media {
	justify-self: center;
}

.home-cta-banner__image {
	display: block;
	width: 220px;
	height: auto;
	object-fit: contain;
}

.home-cta-banner__placeholder {
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: radial-gradient(circle at 50% 40%, rgba(255,255,255,0.9), rgba(255,255,255,0.12) 35%, transparent 60%), linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.04));
}

.home-cta-banner__content {
	max-width: 860px;
}

.home-cta-banner__title {
	margin: 0;
	font-size: clamp(1.4rem, 1.85vw, 2.25rem);
	line-height: 1.4;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: -0.03em;
	color: #ffffff;
	text-wrap: balance;
}

.home-cta-banner__description {
	margin: 18px 0 0;
	font-size: clamp(1.05rem, 1.2vw, 1.35rem);
	line-height: 1.45;
	font-weight: 700;
	color: rgba(255,255,255,0.96);
}

.home-cta-banner__actions {
	display: flex;
	flex-direction: column;
	gap: 14px;
	justify-self: end;
	align-items: stretch;
}

.home-cta-banner__actions .home-cta-banner__button {
	width: 100%;
}

.home-cta-banner__actions .home-cta-banner__button--primary {
	padding-right: 20px;
}

.home-cta-banner__actions .home-cta-banner__button--secondary {
	padding-right: 18px;
}

.home-cta-banner__actions .home-cta-banner__button-text {
	white-space: nowrap;
}

.home-cta-banner__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	min-height: 54px;
	padding: 0 24px;
	border-radius: 3px;
	font-size: 1.05rem;
	font-weight: 600;
	text-decoration: none;
	transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.home-cta-banner__button-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.35em;
	height: 1.35em;
	font-size: 1.35em;
	line-height: 1;
	flex: 0 0 auto;
	object-fit: contain;
}

.home-cta-banner__button-icon--arrow {
	margin-left: 12px;
	font-size: 2.25em;
	font-weight: 900;
}

.home-cta-banner__button-icon--phone {
	font-size: 1.2em;
	margin-left: 6px;
}

.home-cta-banner__button--primary {
	background: #e30613;
	color: #ffffff;
}

.home-cta-banner__button--secondary {
	border: 2px solid rgba(255,255,255,0.92);
	color: #ffffff;
	background: transparent;
}

.home-cta-banner__button:hover {
	transform: translateY(-1px);
}

.home-cta-banner__button--primary:hover {
	background: #ff1f2e;
	color: #ffffff;
}

.home-cta-banner__button--secondary:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255,255,255,0.92);
	color: #ffffff;
}

.home-cta-banner__button--primary:hover .home-cta-banner__button-text,
.home-cta-banner__button--primary:hover .home-cta-banner__button-icon,
.home-cta-banner__button--secondary:hover .home-cta-banner__button-text,
.home-cta-banner__button--secondary:hover .home-cta-banner__button-icon {
	color: inherit;
}

@media (max-width: 1200px) {
	.home-cta-banner__inner {
		grid-template-columns: 180px minmax(0, 1fr);
	}

	.home-cta-banner__actions {
		grid-column: 1 / -1;
		justify-self: end;
		align-items: flex-end;
		flex-direction: column;
	}
}

@media (max-width: 782px) {
	.home-cta-banner {
		padding-inline: 16px;
	}

	.home-cta-banner__inner {
		grid-template-columns: 1fr;
	}

	.home-cta-banner__media {
		justify-self: start;
	}

	.home-cta-banner__actions {
		justify-self: start;
		align-items: stretch;
	}

	.home-cta-banner__image,
	.home-cta-banner__placeholder {
		width: 160px;
		height: 160px;
	}

	.home-cta-banner__actions {
		flex-direction: column;
		width: 100%;
	}

	.home-cta-banner__button {
		width: 100%;
	}
}

.home-core-values {
	padding: 54px 24px 16px;
	background:
		radial-gradient(circle at 0% 100%, rgba(244, 197, 100, 0.42) 0%, transparent 28%),
		radial-gradient(circle at 100% 100%, rgba(244, 197, 100, 0.42) 0%, transparent 28%),
		linear-gradient(180deg, #fbf3e6 0%, #fff9f0 60%, #fff7ea 100%);
}

.home-core-values__inner {
	max-width: var(--home-max-width);
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr) minmax(320px, 0.9fr);
	align-items: center;
	gap: 24px 36px;
}

.home-core-values__heading {
	margin: 0;
	font-size: clamp(1.85rem, 2.6vw, 3.6rem);
	line-height: 1.25;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: #b88418;
	text-wrap: balance;
}

.home-core-values__item-title {
	margin: 0;
	font-size: clamp(1.8rem, 2vw, 2.65rem);
	line-height: 1.05;
	font-weight: 600;
	color: #111111;
}

.home-core-values__center {
	justify-self: center;
}

.home-core-values__center-image {
	display: block;
	width: min(100%, 520px);
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 18px 24px rgba(177, 128, 22, 0.14));
}

.home-core-values__center-placeholder {
	width: min(100%, 520px);
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	background: radial-gradient(circle at 50% 42%, rgba(255,255,255,0.95), rgba(255,255,255,0.22) 42%, transparent 70%), linear-gradient(180deg, rgba(243, 203, 106, 0.55), rgba(243, 203, 106, 0.14));
}

.home-core-values__list {
	display: flex;
	flex-direction: column;
	gap: 32px;
	justify-content: center;
}

.home-core-values__item {
	display: flex;
	align-items: center;
	gap: 22px;
}

.home-core-values__item-icon {
	flex: 0 0 auto;
}

.home-core-values__item-icon-image {
	display: block;
	width: 92px;
	height: 92px;
	object-fit: contain;
}

.home-core-values__item-title {
	margin: 0;
	font-size: clamp(1.8rem, 2vw, 2.65rem);
	line-height: 1.05;
	font-weight: 900;
	color: #111111;
}

.home-core-values__item-text {
	margin: 10px 0 0;
	font-size: clamp(1.02rem, 1.08vw, 1.35rem);
	line-height: 1.25;
	font-weight: 600;
	color: #2e2a25;
}

.home-training-coaching {
	padding: 80px 24px;
	background: #ffffff;
}

.home-training-coaching__inner {
	max-width: var(--home-max-width);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 60px;
}

.home-training-coaching__heading {
	margin: 0;
	font-family: 'Anton', sans-serif;
	font-size: 60px;
	line-height: normal;
	font-weight: 400;
	letter-spacing: normal;
	text-align: center;
	color: #095627;
	text-wrap: balance;
}

.home-training-coaching__track {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: 32px;
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	padding-bottom: 4px;
	scroll-snap-type: x proximity;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
	cursor: grab;
	user-select: none;
}

.home-training-coaching__track.is-dragging {
	cursor: grabbing;
	scroll-snap-type: none;
	scroll-behavior: auto;
}

.home-training-coaching__track::-webkit-scrollbar {
	display: none;
}

.home-training-coaching__card {
	flex: 0 0 460px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding-bottom: 24px;
	border: 1px solid #a1a1aa;
	border-radius: 16px;
	background: #ffffff;
	overflow: hidden;
	scroll-snap-align: start;
}

.home-training-coaching__card-image {
	height: 300px;
	width: 100%;
}

.home-training-coaching__card-image-file {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	pointer-events: none;
}

.home-training-coaching__card-body {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	gap: 28px;
	padding: 20px;
	text-align: center;
}

.home-training-coaching__card-title {
	margin: 0;
	font-family: 'Roboto', sans-serif;
	font-size: 32px;
	line-height: normal;
	font-weight: 700;
	text-transform: uppercase;
	color: #0a562e;
	width: 100%;
}

.home-training-coaching__card-button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	border: none;
	border-radius: 4px;
	background: #0a562e;
	color: #ffffff;
	font-family: 'Roboto', sans-serif;
	font-size: 24px;
	line-height: normal;
	font-weight: 500;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
}

.home-training-coaching__card-button:hover,
.home-training-coaching__card-button:focus-visible {
	background: #095627;
	color: #ffffff;
	outline: none;
}

.home-training-coaching__card-button-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	font-size: 24px;
	line-height: 1;
}

.home-training-coaching__modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.home-training-coaching__modal[hidden] {
	display: none;
}

.home-training-coaching__modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(9, 24, 15, 0.55);
}

.home-training-coaching__modal-dialog {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 560px;
	max-height: 80vh;
	overflow-y: auto;
	padding: 40px;
	border-radius: 16px;
	background: #ffffff;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.home-training-coaching__modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 36px;
	height: 36px;
	border: none;
	background: transparent;
	font-size: 28px;
	line-height: 1;
	color: #52525b;
	cursor: pointer;
}

.home-training-coaching__modal-close:hover,
.home-training-coaching__modal-close:focus-visible {
	color: #0a562e;
	outline: none;
}

.home-training-coaching__modal-title {
	margin: 0 0 16px;
	padding-right: 32px;
	font-family: 'Roboto', sans-serif;
	font-size: 28px;
	font-weight: 700;
	text-transform: uppercase;
	color: #0a562e;
}

.home-training-coaching__modal-desc {
	margin: 0 0 20px;
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
	line-height: 26px;
	color: #27272a;
}

.home-training-coaching__modal-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.home-training-coaching__modal-list:empty {
	display: none;
}

.home-training-coaching__modal-list li {
	position: relative;
	padding-left: 24px;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	line-height: 24px;
	color: #3f3f46;
}

.home-training-coaching__modal-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #0a562e;
}

body.home-training-coaching-modal-open {
	overflow: hidden;
}

.home-training-coaching__controls {
	display: flex;
	align-items: center;
	gap: 32px;
}

.home-training-coaching__nav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	padding: 10px;
	border: 1px solid #095627;
	border-radius: 100px;
	background: #0a562e;
	color: #ffffff;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}

.home-training-coaching__nav:hover,
.home-training-coaching__nav:focus-visible {
	background: #095627;
	outline: none;
}

.home-community-philosophy {
	padding: 12px 24px 72px;
	background: #014524;
}

.home-community-philosophy__inner {
	max-width: var(--home-max-width);
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
	gap: 34px 60px;
	align-items: center;
}

.home-community-philosophy__copy {
	grid-column: 1 / -1;
	text-align: center;
	padding-top: 46px;
}

.home-community-philosophy__eyebrow {
	margin: 0;
	font-size: clamp(1.25rem, 1.8vw, 2.2rem);
	line-height: 1.1;
	font-weight: 600;
	color: #ffffff;
}

.home-community-philosophy__title {
	margin: 12px 0 0;
	font-size: clamp(2rem, 3vw, 4rem);
	line-height: 1.1;
	font-weight: 700;
	letter-spacing: -0.04em;
	color: #ebbc38;
	text-wrap: balance;
}

.home-community-philosophy__text {
	max-width: 980px;
	margin: 18px auto 0;
	font-size: clamp(1.02rem, 1.18vw, 1.45rem);
	line-height: 1.45;
	font-weight: 500;
	color: rgba(255,255,255,0.95);
}

.home-community-philosophy__button {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-top: 24px;
	padding: 14px 24px;
	border-radius: 999px;
	background: #c0392b;
	color: #ffffff;
	font-size: 1.1rem;
	font-weight: 800;
	text-decoration: none;
}

.home-community-philosophy__button--empty {
	background: rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.8);
}

.home-community-philosophy__image {
	justify-self: center;
}

.home-community-philosophy__image-file,
.home-community-philosophy__image-placeholder {
	width: min(100%, 780px);
	display: block;
	object-fit: contain;
}

.home-community-philosophy__image-placeholder {
	aspect-ratio: 4 / 3;
	border-radius: 28px;
	background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.02));
}

.home-community-philosophy__items {
	display: flex;
	flex-direction: column;
	gap: 26px;
	padding-left: 34px;
	border-left: 1px solid rgba(240, 219, 106, 0.35);
}

.home-community-philosophy__item {
	display: flex;
	gap: 18px;
	align-items: flex-start;
}

.home-community-philosophy__item-icon {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border: 2px solid #F0DB6A;
	border-radius: 50%;
	background: transparent;
}

.home-community-philosophy__item-icon-file {
	width: 36px;
	height: 36px;
	object-fit: contain;
	filter: brightness(0) saturate(100%) invert(85%) sepia(26%) saturate(1212%) hue-rotate(357deg) brightness(98%) contrast(91%);
}

.home-community-philosophy__item-title {
	margin: 0;
	font-size: clamp(1.25rem, 1.6vw, 1.8rem);
	line-height: 1.1;
	font-weight: 700;
	color: #ffffff;
}

.home-community-philosophy__item-text {
	margin: 8px 0 0;
	font-size: 1.15rem;
	line-height: 1.4;
	font-weight: 500;
	color: rgba(255,255,255,0.88);
}

@media (max-width: 1200px) {
	.home-community-philosophy__inner {
		grid-template-columns: 1fr;
		gap: 36px;
	}
}

@media (max-width: 782px) {
	.home-community-philosophy {
		padding: 24px 16px 48px;
	}

	.home-community-philosophy__title {
		font-size: 1.8rem;
		text-wrap: balance;
	}

	.home-community-philosophy__copy {
		padding-top: 24px;
	}

	.home-community-philosophy__items {
		padding-left: 0;
		border-left: none;
		gap: 20px;
	}

	.home-community-philosophy__item {
		gap: 14px;
	}

	.home-community-philosophy__item-icon {
		width: 56px;
		height: 56px;
	}

	.home-community-philosophy__item-icon-file {
		width: 28px;
		height: 28px;
	}

	.home-community-philosophy__item-title {
		font-size: 1.25rem;
	}

	.home-community-philosophy__item-text {
		font-size: 0.95rem;
		margin-top: 4px;
	}
}

@media (max-width: 1200px) {
	.home-training-coaching__inner {
		gap: 44px;
	}

	.home-training-coaching__card {
		flex-basis: 400px;
	}

	.home-training-coaching__heading {
		font-size: 44px;
	}
}

@media (max-width: 782px) {
	.home-training-coaching {
		padding: 48px 16px;
	}

	.home-training-coaching__inner {
		gap: 32px;
	}

	.home-training-coaching__heading {
		font-size: 34px;
	}

	.home-training-coaching__track {
		gap: 16px;
	}

	.home-training-coaching__card {
		flex-basis: 84vw;
	}

	.home-training-coaching__card-image {
		height: 220px;
	}

	.home-training-coaching__card-title {
		font-size: 24px;
	}

	.home-training-coaching__card-button {
		font-size: 18px;
	}

	.home-training-coaching__controls {
		display: none;
	}

	.home-training-coaching__modal-dialog {
		padding: 28px;
	}

	.home-training-coaching__modal-title {
		font-size: 22px;
	}
}

@media (max-width: 1200px) {
	.home-core-values__inner {
		grid-template-columns: 1fr;
		justify-items: start;
	}

	.home-core-values__center {
		justify-self: center;
	}

	.home-core-values__list {
		width: 100%;
	}
}

@media (max-width: 782px) {
	.home-core-values {
		padding-inline: 16px;
	}

	.home-core-values__heading {
		font-size: clamp(1.45rem, 7vw, 2.15rem);
		text-wrap: balance;
	}

	.home-core-values__item {
		gap: 14px;
		align-items: flex-start;
	}

	.home-core-values__item-icon-image {
		width: 72px;
		height: 72px;
	}

	.home-core-values__item-title {
		font-size: 1.35rem;
	}

	.home-core-values__item-text {
		font-size: 0.98rem;
	}
}

/* ==========================================================================
   Section 8: Gallery Marquee
   ========================================================================== */
.home-gallery-marquee {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 12px 0;
	background-color: #ffffff;
	overflow: hidden;
	width: 100%;
}

.home-gallery-marquee__row {
	display: flex;
	overflow: hidden;
	width: 100%;
}

.home-gallery-marquee__track {
	display: flex;
	width: max-content;
	gap: 0;
}

.home-gallery-marquee__item {
	flex: 0 0 auto;
	width: 420px;
	height: 280px;
	padding: 0 6px;
}

.home-gallery-marquee__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Left to Right (LTR) Scroll */
.home-gallery-marquee__row--ltr .home-gallery-marquee__track {
	animation: marquee-ltr 30s linear infinite;
}

/* Right to Left (RTL) Scroll */
.home-gallery-marquee__row--rtl .home-gallery-marquee__track {
	animation: marquee-rtl 30s linear infinite;
}

/* Pause animation on hover */
.home-gallery-marquee__row:hover .home-gallery-marquee__track {
	animation-play-state: paused;
}

@keyframes marquee-ltr {
	0% {
		transform: translateX(-50%);
	}
	100% {
		transform: translateX(0);
	}
}

@keyframes marquee-rtl {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

@media (max-width: 782px) {
	.home-gallery-marquee {
		gap: 8px;
		padding: 8px 0;
	}

	.home-gallery-marquee__item {
		width: 270px;
		height: 180px;
		padding: 0 4px;
	}
}

/* ==========================================================================
   Section 9: Customer Testimonials
   ========================================================================== */
.home-testimonials {
	scroll-margin-top: 96px;
	padding: 80px 24px;
	background-color: #ffffff;
}

.home-testimonials__inner {
	max-width: var(--home-max-width);
	margin: 0 auto;
}

.home-testimonials__heading-group {
	text-align: center;
	margin-bottom: 48px;
}

.home-testimonials__heading {
	margin: 0;
	font-size: clamp(1.85rem, 2.8vw, 3.2rem);
	font-weight: 800;
	line-height: 1.15;
	color: #014524;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	text-wrap: balance;
}

.home-testimonials__subheading {
	margin: 14px 0 0;
	font-size: clamp(1rem, 1.25vw, 1.35rem);
	line-height: 1.4;
	font-weight: 600;
	color: #333333;
}

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

.home-testimonials__card {
	display: flex;
	flex-direction: column;
	background: #f7f7f7;
	border-radius: 12px;
	overflow: hidden;
	transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.home-testimonials__card:focus-visible {
	outline: 3px solid #014524;
	outline-offset: 3px;
}

.home-testimonials__card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 30px rgba(1, 69, 36,0.12);
}

.home-testimonials__media {
	position: relative;
	width: 100%;
	padding-top: 56.25%; /* 16:9 Aspect Ratio */
	background-color: #000000;
	overflow: hidden;
}

.home-testimonials__thumbnail {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.home-testimonials__card:hover .home-testimonials__thumbnail {
	transform: scale(1.05);
}

.home-testimonials__play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60px;
	height: 60px;
	background: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
	transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease;
	z-index: 2;
}

.home-testimonials__play-btn svg {
	width: 20px;
	height: 20px;
	margin-left: 2px;
	fill: #014524;
	transition: fill 0.3s ease;
}

.home-testimonials__card:hover .home-testimonials__play-btn {
	transform: translate(-50%, -50%) scale(1.12);
	background: #014524;
}

.home-testimonials__card:hover .home-testimonials__play-btn svg {
	fill: #ffffff;
}

.home-testimonials__content {
	padding: 24px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	justify-content: flex-start;
}

.home-testimonials__name {
	margin: 0;
	font-size: 1.3rem;
	font-weight: 700;
	color: #014524;
	line-height: 1.25;
	text-transform: uppercase;
}

.home-testimonials__role {
	margin: 10px 0 0;
	font-size: 1.2rem;
	font-weight: 500;
	color: #555555;
	line-height: 1.4;
}

/* Video Modal Popup Styles */
.home-video-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.home-video-modal.is-active {
	opacity: 1;
	pointer-events: auto;
}

.home-video-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.home-video-modal__content {
	position: relative;
	width: 90%;
	max-width: 920px;
	background: #000000;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
	z-index: 10;
	transform: scale(0.9);
	transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.home-video-modal.is-active .home-video-modal__content {
	transform: scale(1);
}

.home-video-modal__close {
	position: absolute;
	top: 10px;
	right: 15px;
	background: none;
	border: none;
	color: #ffffff;
	font-size: 40px;
	font-weight: 300;
	line-height: 1;
	cursor: pointer;
	z-index: 12;
	transition: color 0.2s ease, transform 0.2s ease;
}

.home-video-modal__close:hover {
	color: #e5a93b;
	transform: scale(1.1);
}

.home-video-modal__iframe-container {
	position: relative;
	width: 100%;
	padding-top: 56.25%; /* 16:9 aspect ratio */
	height: 0;
}

.home-video-modal__iframe-container iframe,
.home-video-modal__iframe-container video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
	object-fit: contain;
}

/* Responsiveness for Section 9 */
@media (max-width: 1200px) {
	.home-testimonials {
		padding: 64px 24px;
	}

	.home-testimonials__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 28px;
	}
}

@media (max-width: 782px) {
	.home-testimonials {
		padding: 56px 16px;
	}

	.home-testimonials__heading {
		font-size: 1.7rem;
	}

	.home-testimonials__heading-group {
		margin-bottom: 32px;
	}

	.home-testimonials__grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.home-testimonials__card {
		border-radius: 10px;
	}

	.home-testimonials__content {
		padding: 20px;
	}

	.home-testimonials__name {
		font-size: 1.5rem;
	}

	.home-testimonials__role {
		font-size: 1.6rem;
		margin-top: 8px;
	}

	.home-video-modal__close {
		top: 6px;
		right: 12px;
		font-size: 34px;
	}
}

/* ==========================================================================
   Section 10: Partners Marquee
   ========================================================================== */
.home-partners {
	padding: 80px 0;
	background-color: #ffffff;
	overflow: hidden;
	width: 100%;
}

.home-partners__inner {
	max-width: var(--home-max-width);
	margin: 0 auto;
}

.home-partners__heading-group {
	text-align: center;
	margin-bottom: 48px;
	padding: 0 24px;
}

.home-partners__heading {
	margin: 0;
	font-size: clamp(1.85rem, 2.8vw, 3.2rem);
	font-weight: 800;
	line-height: 1.15;
	color: #014524;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	text-wrap: balance;
}

.home-partners__marquee-container {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

.home-partners__row {
	display: flex;
	overflow: hidden;
	width: 100%;
}

.home-partners__track {
	display: flex;
	width: max-content;
	gap: 12px;
	align-items: center;
}

.home-partners__item {
	flex: 0 0 auto;
	width: 200px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	border-radius: 8px;
	padding: 5px 10px;
	transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.home-partners__item:hover {
	transform: scale(1.06);
}

.home-partners__logo {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	display: block;
}

/* Left to Right (LTR) Scroll */
.home-partners__row--ltr .home-partners__track {
	animation: partners-marquee-ltr 40s linear infinite;
}

/* Right to Left (RTL) Scroll */
.home-partners__row--rtl .home-partners__track {
	animation: partners-marquee-rtl 40s linear infinite;
}

/* Pause animation on hover */
.home-partners__row:hover .home-partners__track {
	animation-play-state: paused;
}

@keyframes partners-marquee-ltr {
	0% {
		transform: translateX(-50%);
	}
	100% {
		transform: translateX(0);
	}
}

@keyframes partners-marquee-rtl {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

@media (max-width: 1200px) {
	.home-partners {
		padding: 64px 0;
	}

	.home-partners__marquee-container {
		gap: 12px;
	}

	.home-partners__track {
		gap: 10px;
	}

	.home-partners__item {
		width: 170px;
		height: 85px;
		padding: 4px 8px;
	}
}

@media (max-width: 782px) {
	.home-partners {
		padding: 56px 0;
	}

	.home-partners__heading {
		font-size: 1.7rem;
	}

	.home-partners__heading-group {
		margin-bottom: 32px;
	}

	.home-partners__marquee-container {
		gap: 10px;
	}

	.home-partners__track {
		gap: 8px;
	}

	.home-partners__item {
		width: 140px;
		height: 70px;
		padding: 3px 6px;
	}
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   Section 6 â€“ Training & Coaching: target + features additions
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   Section: Lá»™ trÃ¬nh há»c táº¡i EDA (Learning Journey)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.home-learning-journey {
	padding: 72px 24px 80px;
	background: linear-gradient(180deg, #ffffff 0%, #f4f9f6 100%);
}

.home-learning-journey__inner {
	max-width: var(--home-max-width, 1200px);
	margin: 0 auto;
}

.home-learning-journey__header {
	text-align: center;
	margin-bottom: 56px;
}

.home-learning-journey__heading {
	font-size: clamp(1.6rem, 2.4vw, 3rem);
	font-weight: 900;
	color: #014524;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	margin: 0;
	line-height: 1.1;
}

.home-learning-journey__subheading {
	margin: 14px 0 0;
	font-size: 1.1rem;
	color: #555;
	font-weight: 500;
}

.home-learning-journey__steps {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}

.home-learning-journey__step {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	position: relative;
}

.home-learning-journey__step-number {
	width: 68px;
	height: 68px;
	border-radius: 50%;
	background: #014524;
	color: #ebbc38;
	font-size: 1.4rem;
	font-weight: 900;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
	box-shadow: 0 6px 20px rgba(1, 69, 36, 0.22);
	flex-shrink: 0;
}

.home-learning-journey__step-connector {
	position: absolute;
	top: 34px;
	left: 50%;
	right: -50%;
	height: 2px;
	background: linear-gradient(90deg, #ebbc38 0%, rgba(235, 188, 56, 0.25) 100%);
}

.home-learning-journey__step:last-child .home-learning-journey__step-connector {
	display: none;
}

.home-learning-journey__step-body {
	padding: 20px 10px 0;
}

.home-learning-journey__step-title {
	font-size: 1.3rem;
	font-weight: 800;
	color: #014524;
	margin: 0;
	line-height: 1.2;
}

.home-learning-journey__step-text {
	margin: 10px 0 0;
	font-size: 1rem;
	color: #555;
	line-height: 1.5;
}

@media (max-width: 782px) {
	.home-learning-journey__steps {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.home-learning-journey__step {
		flex-direction: row;
		align-items: flex-start;
		text-align: left;
		gap: 18px;
	}

	.home-learning-journey__step-connector {
		display: none;
	}

	.home-learning-journey__step-body {
		padding: 0;
	}
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   Section: TrÆ°á»›c & Sau khi há»c (Before / After)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.home-before-after {
	padding: 72px 24px 80px;
	background: linear-gradient(135deg, #012d18 0%, #014524 55%, #1a6338 100%);
	color: #ffffff;
}

.home-before-after__inner {
	max-width: 1200px;
	margin: 0 auto;
}

.home-before-after__header {
	text-align: center;
	margin-bottom: 52px;
}

.home-before-after__heading {
	font-size: clamp(1.6rem, 2.4vw, 3rem);
	font-weight: 900;
	color: #ebbc38;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	margin: 0;
	line-height: 1.1;
}

.home-before-after__subheading {
	margin: 14px 0 0;
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.82);
}

.home-before-after__columns {
	display: grid;
	grid-template-columns: 1fr 56px 1fr;
	gap: 0 20px;
	align-items: start;
}

.home-before-after__col {
	border-radius: 20px;
	padding: 32px 28px;
}

.home-before-after__col--before {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
}

.home-before-after__col--after {
	background: rgba(235, 188, 56, 0.1);
	border: 1px solid rgba(235, 188, 56, 0.4);
}

.home-before-after__col-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 22px;
}

.home-before-after__col-icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.05rem;
	font-weight: 900;
	flex-shrink: 0;
}

.home-before-after__col--before .home-before-after__col-icon {
	background: rgba(255, 80, 80, 0.16);
	color: #ff7070;
}

.home-before-after__col--after .home-before-after__col-icon {
	background: rgba(235, 188, 56, 0.2);
	color: #ebbc38;
}

.home-before-after__col-title {
	margin: 0;
	font-size: 1.4rem;
	font-weight: 800;
	line-height: 1.2;
}

.home-before-after__col--before .home-before-after__col-title {
	color: rgba(255, 255, 255, 0.88);
}

.home-before-after__col--after .home-before-after__col-title {
	color: #ebbc38;
}

.home-before-after__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.home-before-after__item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 1.05rem;
	line-height: 1.5;
	font-weight: 500;
}

.home-before-after__item::before {
	content: '\2022';
	flex-shrink: 0;
	margin-top: 2px;
	font-size: 1.1rem;
}

.home-before-after__col--before .home-before-after__item {
	color: rgba(255, 255, 255, 0.78);
}

.home-before-after__col--before .home-before-after__item::before {
	color: rgba(255, 100, 100, 0.75);
}

.home-before-after__col--after .home-before-after__item {
	color: rgba(255, 255, 255, 0.95);
}

.home-before-after__col--after .home-before-after__item::before {
	color: #ebbc38;
}

.home-before-after__divider {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 52px;
}

.home-before-after__arrow {
	font-size: 2rem;
	font-weight: 900;
	color: #ebbc38;
	opacity: 0.65;
	line-height: 1;
}

@media (max-width: 782px) {
	.home-before-after__columns {
		grid-template-columns: 1fr;
		gap: 20px 0;
	}

	.home-before-after__divider {
		padding-top: 0;
		transform: rotate(90deg);
	}
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   Section: Giáº£ng viÃªn & ChuyÃªn gia (Instructors)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.home-instructors {
	padding: 72px 24px 80px;
	background: #f4f9f6;
}

.home-instructors__inner {
	max-width: var(--home-max-width, 1200px);
	margin: 0 auto;
}

.home-instructors__header {
	text-align: center;
	margin-bottom: 52px;
}

.home-instructors__heading {
	font-size: clamp(1.6rem, 2.4vw, 3rem);
	font-weight: 900;
	color: #014524;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	margin: 0;
	line-height: 1.1;
}

.home-instructors__subheading {
	margin: 14px 0 0;
	font-size: 1.05rem;
	color: #555;
}

.home-instructors__grid {
	display: grid;
	/* Fixed-width cards centered: empty tracks collapse so 1-2 cards stay centered, never full width */
	grid-template-columns: repeat(auto-fit, 280px);
	justify-content: center;
	gap: 36px 28px;
}

.home-instructors__card {
	background: transparent;
	border-radius: 0;
	overflow: visible;
	box-shadow: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 4px 12px 0;
	transition: transform 0.25s ease;
}

.home-instructors__card:hover {
	transform: translateY(-6px);
	box-shadow: none;
}

.home-instructors__card-photo {
	width: 196px;
	height: 196px;
	margin: 0 auto 22px;
	padding: 6px;
	border-radius: 50%;
	background: linear-gradient(135deg, #014524 0%, #0d7a41 55%, #ebbc38 100%);
	overflow: visible;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 6px 20px rgba(1, 69, 36, 0.18);
}

.home-instructors__card:hover .home-instructors__card-photo {
	transform: scale(1.045) rotate(2deg);
	box-shadow: 0 10px 28px rgba(1, 69, 36, 0.28);
}

.home-instructors__card-photo-img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	border: 4px solid #ffffff;
	background: #ffffff;
}

.home-instructors__card-photo-placeholder {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #014524 0%, #1a6338 100%);
	border: 4px solid #ffffff;
}

.home-instructors__card-photo-placeholder span {
	font-size: 3.2rem;
	font-weight: 900;
	color: #ebbc38;
	line-height: 1;
}

.home-instructors__card-body {
	padding: 0;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}

.home-instructors__card-name {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 800;
	color: #014524;
	line-height: 1.2;
}

.home-instructors__card-title {
	margin: 0;
	font-size: 0.92rem;
	font-weight: 600;
	color: #c79e20;
}

.home-instructors__card-meta {
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.home-instructors__card-meta-row {
	display: flex;
	gap: 8px;
	align-items: flex-start;
}

.home-instructors__card-meta dt {
	font-size: 0.8rem;
	font-weight: 700;
	color: #014524;
	min-width: 82px;
	flex-shrink: 0;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.home-instructors__card-meta dd {
	margin: 0;
	font-size: 0.88rem;
	color: #444;
	line-height: 1.45;
}

.home-instructors__card-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 12px;
	padding: 10px 22px;
	background: #014524;
	color: #ebbc38;
	border: none;
	border-radius: 100px;
	font-size: 0.92rem;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
	align-self: center;
}

.home-instructors__card-btn:hover {
	background: #02602e;
	color: #ebbc38;
	transform: translateY(-2px);
}

@media (max-width: 782px) {
	.home-instructors__grid {
		grid-template-columns: minmax(0, 280px);
		justify-content: center;
	}
}

.home-instructors__card-org {
	margin: 0;
	font-size: 0.85rem;
	font-weight: 600;
	color: #014524;
	opacity: 0.7;
}

.home-instructors__card.has-bio {
	cursor: pointer;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   Instructor Detail Modal
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.home-instructor-modal {
	position: fixed;
	inset: 0;
	z-index: 9000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.home-instructor-modal[hidden] {
	display: none;
}

.home-instructor-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.62);
	cursor: pointer;
}

.home-instructor-modal__dialog {
	position: relative;
	background: #fff;
	border-radius: 20px;
	width: 100%;
	max-width: 700px;
	max-height: 90vh;
	overflow-y: auto;
	z-index: 1;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.home-instructor-modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	background: #f4f9f6;
	border: none;
	border-radius: 50%;
	width: 38px;
	height: 38px;
	font-size: 1.5rem;
	line-height: 1;
	color: #014524;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	transition: background 0.18s;
}

.home-instructor-modal__close:hover {
	background: #d9ede2;
}

.home-instructor-modal__content {
	padding: 40px 36px 44px;
}

.home-instructor-modal__header {
	display: flex;
	gap: 24px;
	align-items: flex-start;
	margin-bottom: 28px;
	padding-bottom: 24px;
	border-bottom: 2px solid #edf5f0;
}

.home-instructor-modal__photo {
	width: 110px;
	height: 110px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	background: #edf5f0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.home-instructor-modal__photo-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-instructor-modal__photo-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #014524 0%, #1a6338 100%);
}

.home-instructor-modal__photo-placeholder span {
	font-size: 2.4rem;
	font-weight: 900;
	color: #ebbc38;
}

.home-instructor-modal__identity {
	flex: 1;
	min-width: 0;
	padding-top: 6px;
}

.home-instructor-modal__name {
	margin: 0 0 6px;
	font-size: 1.35rem;
	font-weight: 900;
	color: #014524;
	line-height: 1.2;
}

.home-instructor-modal__org {
	margin: 0 0 4px;
	font-size: 0.88rem;
	font-weight: 600;
	color: #c79e20;
	line-height: 1.4;
}

.home-instructor-modal__role {
	margin: 0;
	font-size: 0.88rem;
	color: #555;
	line-height: 1.4;
}

.home-instructor-modal__bio {
	font-size: 0.95rem;
	color: #333;
	line-height: 1.75;
}

.home-instructor-modal__bio p {
	margin: 0 0 10px;
}

.home-instructor-modal__bio strong,
.home-instructor-modal__bio b {
	color: #014524;
}

@media (max-width: 560px) {
	.home-instructor-modal__header {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.home-instructor-modal__content {
		padding: 28px 20px 32px;
	}

	.home-instructor-modal__name {
		font-size: 1.15rem;
	}
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   Section 9 â€“ Testimonials: stars, quote, "Xem thÃªm"
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.home-testimonials__stars {
	display: flex;
	gap: 2px;
	margin-bottom: 8px;
}

.home-testimonials__star {
	font-size: 1.05rem;
	color: #ccc;
	line-height: 1;
}

.home-testimonials__star--filled {
	color: #ebbc38;
}

.home-testimonials__quote {
	margin: 8px 0 0;
	font-size: 0.9rem;
	line-height: 1.5;
	color: #555;
	font-style: italic;
	position: relative;
	padding-left: 20px;
}

.home-testimonials__quote::before {
	content: '\201C';
	position: absolute;
	left: 0;
	top: -4px;
	font-size: 2.2rem;
	line-height: 1;
	color: #ebbc38;
	opacity: 0.6;
	font-family: Georgia, serif;
}

.home-testimonials__more {
	text-align: center;
	margin-top: 44px;
}

.home-testimonials__more-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 36px;
	background: transparent;
	border: 2px solid #014524;
	color: #014524;
	border-radius: 100px;
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

.home-testimonials__more-btn:hover {
	background: #014524;
	color: #ebbc38;
}
