/* ============================================================================
   NAVTTC - Modern homepage variant (minimalist, 3D / foldable cards)
   ============================================================================ */
.hm { font-family: var(--font-primary); color: var(--color-text); }
.hm .container { max-width: var(--container-max); margin-inline: auto; padding-inline: var(--container-pad); }
.hm h1, .hm h2, .hm h3 { margin: 0; }

/* ── Section scaffolding ──────────────────────────────────────────────────── */
.hm-section { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.hm-section--soft { background: var(--color-bg-light); }
.hm-section--dark { background: linear-gradient(135deg, #0A6847, #0F172A); }
/* "I am interested in" — soft brand-tinted backdrop so the bordered white cards pop */
.hm-section--interest {
	position: relative;
	background-color: var(--color-bg-light);
	background-image:
		linear-gradient(180deg, rgba(255,255,255,.82) 0%, rgba(255,255,255,.76) 45%, rgba(255,255,255,.88) 100%),
		var(--bg-img, none);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
/* Shared gold heading highlight (same gold as the hero "Skilled Workforce") */
.navttc-hl { color: var(--color-accent); }

/* ── "Get Started As…" image cards (single row, yellow flip on hover) ──────── */
.gsa-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.gsa-card { position: relative; height: 360px; perspective: 1400px; outline: none; text-decoration: none; cursor: pointer; }
.gsa-card__inner { position: absolute; inset: 0; transform-style: preserve-3d; transition: transform .65s cubic-bezier(.3,.7,.25,1); }
.gsa-card:not(.gsa-card--static):hover .gsa-card__inner,
.gsa-card:not(.gsa-card--static):focus-visible .gsa-card__inner,
.gsa-card:not(.gsa-card--static).is-open .gsa-card__inner { transform: rotateY(180deg); }

.gsa-card__face, .gsa-card__back {
	position: absolute; inset: 0; border-radius: 1.4rem; overflow: hidden;
	-webkit-backface-visibility: hidden; backface-visibility: hidden;
	display: flex; flex-direction: column; background: #fff;
	border: 1px solid var(--color-border); box-shadow: 0 10px 28px -18px rgba(2,6,23,.35);
	transition: box-shadow .4s ease, border-color .4s ease;
}
/* Front: photo on top, title + subtitle below, yellow accent strip */
.gsa-card__media { display: block; height: 60%; overflow: hidden; background: var(--color-bg-light); }
.gsa-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gsa-card:hover .gsa-card__media img { transform: scale(1.06); }
.gsa-card__body { flex: 1; display: flex; flex-direction: column; gap: .3rem; padding: 1.1rem 1.3rem; }
.gsa-card__title { font-size: 1.18rem; font-weight: 800; color: var(--color-text); letter-spacing: -.01em; }
.gsa-card__sub { margin: 0; font-size: .92rem; color: var(--color-text-muted); line-height: 1.5; }
.gsa-card__face::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 5px; background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light)); }
.gsa-card:hover .gsa-card__face, .gsa-card:focus-visible .gsa-card__face {
	box-shadow: 0 34px 64px -28px color-mix(in srgb, var(--color-accent) 55%, rgba(0,0,0,.4));
	border-color: color-mix(in srgb, var(--color-accent) 50%, transparent);
}
.gsa-card__go { margin-top: auto; display: inline-flex; align-items: center; gap: .45rem; font-weight: 800; font-size: .9rem; color: #B45309; transition: gap .2s ease; }
.gsa-card--static:hover .gsa-card__go { gap: .75rem; }

/* Back: brand-yellow gradient + white pill CTAs */
.gsa-card__back {
	transform: rotateY(180deg); justify-content: center; gap: .75rem; padding: 1.5rem;
	border-color: transparent;
	background:
		radial-gradient(120% 80% at 100% 0%, rgba(255,255,255,.45), transparent 60%),
		linear-gradient(150deg, var(--color-accent-light) 0%, var(--color-accent) 100%);
	box-shadow: 0 34px 64px -26px color-mix(in srgb, var(--color-accent) 60%, rgba(0,0,0,.4));
}
.gsa-card__rtitle { font-size: 1.1rem; font-weight: 800; color: #1f2937; }
.gsa-card__ctas { display: flex; flex-direction: column; gap: .55rem; }
.gsa-card__cta {
	display: flex; align-items: center; justify-content: space-between; gap: .6rem;
	padding: .65rem 1rem; border-radius: .7rem; font-size: .86rem; font-weight: 700;
	color: var(--color-dark) !important; background: rgba(255,255,255,.92);
	border: 1px solid rgba(0,0,0,.06); box-shadow: 0 6px 14px -8px rgba(0,0,0,.25);
	transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.gsa-card__cta i { font-size: .72rem; transition: transform .2s ease; }
.gsa-card__cta:hover { background: var(--color-dark); color: #fff !important; transform: translateX(3px); }
.gsa-card__cta:hover i { transform: translateX(3px); }

/* Sequential reveal of the back content on flip */
.gsa-card__back .gsa-card__rtitle,
.gsa-card__ctas .gsa-card__cta { opacity: 0; transform: translateY(12px); transition: opacity .3s ease, transform .35s ease; }
.gsa-card:is(:hover, :focus-visible, .is-open) .gsa-card__back .gsa-card__rtitle { opacity: 1; transform: none; transition-delay: .32s; }
.gsa-card:is(:hover, :focus-visible, .is-open) .gsa-card__ctas .gsa-card__cta:nth-child(1) { opacity: 1; transform: none; transition-delay: .42s; }
.gsa-card:is(:hover, :focus-visible, .is-open) .gsa-card__ctas .gsa-card__cta:nth-child(2) { opacity: 1; transform: none; transition-delay: .52s; }
.gsa-card:is(:hover, :focus-visible, .is-open) .gsa-card__ctas .gsa-card__cta:nth-child(3) { opacity: 1; transform: none; transition-delay: .62s; }
.gsa-card:is(:hover, :focus-visible, .is-open) .gsa-card__ctas .gsa-card__cta:nth-child(4) { opacity: 1; transform: none; transition-delay: .72s; }

@media (prefers-reduced-motion: reduce) {
	.gsa-card__inner { transition: none; }
	.gsa-card__back .gsa-card__rtitle, .gsa-card__ctas .gsa-card__cta { opacity: 1; transform: none; transition: none; }
}
@media (max-width: 1024px) { .gsa-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .gsa-grid { grid-template-columns: 1fr; max-width: 24rem; margin-inline: auto; } }
.hm-head { text-align: center; max-width: 46rem; margin: 0 auto clamp(2.25rem, 5vw, 3.5rem); }
.hm-tag {
	display: inline-flex; align-items: center; gap: .5rem;
	font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
	color: var(--color-primary); background: var(--color-primary-light);
	border: 1px solid color-mix(in srgb, var(--color-primary) 22%, transparent);
	padding: .4rem 1.05rem; border-radius: 999px; margin-bottom: 1.1rem;
}
.hm-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--color-primary); box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary) 18%, transparent); }
.hm-head h2 { font-size: clamp(2rem, 4.4vw, 3rem); font-weight: 800; letter-spacing: -.025em; line-height: 1.1; }
.hm-head h2::after { content: ''; display: block; width: 64px; height: 4px; margin: 1rem auto 0; border-radius: 4px; background: linear-gradient(90deg, var(--color-primary), var(--color-accent)); }
.hm-head p { color: var(--color-text-muted); margin-top: 1.1rem; font-size: 1.08rem; line-height: 1.7; max-width: 42rem; margin-inline: auto; }
.hm-center { text-align: center; margin-top: 2.5rem; }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.hm-btn { display: inline-flex; align-items: center; justify-content: center; gap: .55rem; padding: .85rem 1.7rem; border-radius: 999px; font-weight: 700; font-size: var(--fs-sm); line-height: 1; transition: transform .25s, box-shadow .25s, background .2s, gap .2s; }
.hm-btn--primary { background: var(--color-primary); color: #fff !important; box-shadow: 0 10px 30px -8px color-mix(in srgb, var(--color-primary) 60%, transparent); }
.hm-btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 36px -8px color-mix(in srgb, var(--color-primary) 70%, transparent); }
.hm-btn--accent { background: var(--color-accent); color: #1f2937 !important; }
.hm-btn--accent:hover { transform: translateY(-3px); }
.hm-btn--ghost { border: 1.5px solid var(--color-border); color: var(--color-text) !important; background: #fff; }
.hm-btn--ghost:hover { border-color: var(--color-primary); color: var(--color-primary) !important; transform: translateY(-2px); }
.hm-btn--ghost-light { border: 1.5px solid rgba(255,255,255,.4); color: #fff !important; }
.hm-btn--ghost-light:hover { background: rgba(255,255,255,.12); }
.hm-link { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; font-size: .9rem; color: var(--c, var(--color-primary)); transition: gap .2s; }
.hm-link:hover { gap: .7rem; color: var(--c, var(--color-primary)); }

/* ── Intro ────────────────────────────────────────────────────────────────── */
.hm-intro { text-align: center; padding: clamp(3.5rem, 9vw, 7rem) 0 clamp(2rem, 5vw, 4rem); }
.hm-intro .container { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hm-eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-size: .8rem; font-weight: 700; color: var(--color-primary); background: var(--color-primary-light); padding: .5rem 1.1rem; border-radius: 999px; margin-bottom: 1.5rem; }
.hm-intro__title { font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 800; letter-spacing: -.025em; line-height: 1.08; max-width: 16ch; margin: 0 auto 1.25rem; }
.hm-intro__sub { color: var(--color-text-muted); font-size: 1.15rem; max-width: 44rem; margin: 0 auto 2rem; line-height: 1.7; }
.hm-intro__cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
/* Intro elements rise in one by one on scroll-in */
.hm-intro .container[data-reveal] > * { opacity: 0; translate: 0 26px; }
.hm-intro .container[data-reveal].is-revealed > * { animation: hm-rise .65s ease both; }
.hm-intro .container[data-reveal].is-revealed > *:nth-child(1) { animation-delay: .08s; }
.hm-intro .container[data-reveal].is-revealed > *:nth-child(2) { animation-delay: .24s; }
.hm-intro .container[data-reveal].is-revealed > *:nth-child(3) { animation-delay: .40s; }
.hm-intro .container[data-reveal].is-revealed > *:nth-child(4) { animation-delay: .56s; }
@media (prefers-reduced-motion: reduce) {
	.hm-intro .container[data-reveal] > * { opacity: 1; translate: 0 0; animation: none !important; }
}

/* ── Glossy 3D flip cards (front = icon+title+subtitle, hover = FLIP to back) ─ */
.hm-folds { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
.hm-fold { position: relative; height: 280px; cursor: pointer; outline: none; perspective: 1300px; }
.hm-fold__inner {
	position: absolute; inset: 0;
	transform-style: preserve-3d;
	transition: transform .65s cubic-bezier(.3,.7,.25,1);
}
.hm-fold:hover .hm-fold__inner,
.hm-fold:focus-visible .hm-fold__inner,
.hm-fold.is-open .hm-fold__inner { transform: rotateY(180deg); }

/* Both faces share the card shell */
.hm-fold__face,
.hm-fold__reveal {
	position: absolute; inset: 0; padding: 1.9rem; border-radius: 1.5rem; overflow: hidden;
	-webkit-backface-visibility: hidden; backface-visibility: hidden;
	display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
}
/* Front: white, glossy sheen + accent strip, visible border on all sides */
.hm-fold__face {
	gap: .85rem;
	background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
	border: 1.5px solid color-mix(in srgb, var(--c) 24%, var(--color-border));
	box-shadow: 0 6px 18px -10px rgba(0,0,0,.18);
	transition: box-shadow .4s, border-color .4s;
}
.hm-fold__face::before { /* diagonal gloss highlight */
	content: ''; position: absolute; top: -60%; left: -20%; width: 90%; height: 120%;
	background: linear-gradient(115deg, rgba(255,255,255,0) 30%, rgba(255,255,255,.85) 50%, rgba(255,255,255,0) 70%);
	transform: rotate(8deg); opacity: .5; pointer-events: none;
}
.hm-fold__face::after { /* accent strip at the bottom */
	content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 5px;
	background: linear-gradient(90deg, var(--c), color-mix(in srgb, var(--c) 55%, #000)); opacity: .9;
}
.hm-fold:hover .hm-fold__face,
.hm-fold:focus-visible .hm-fold__face,
.hm-fold.is-open .hm-fold__face {
	box-shadow: 0 40px 70px -24px color-mix(in srgb, var(--c) 45%, rgba(0,0,0,.35));
	border-color: color-mix(in srgb, var(--c) 40%, transparent);
}
/* Outlined icon: the glyph carries the accent color, no filled container. */
.hm-fold__icon {
	width: 3.5rem; height: 3.5rem; border-radius: 1rem; display: flex; align-items: center; justify-content: center;
	font-size: 1.5rem; color: var(--c); background: transparent;
	border: 1.5px solid color-mix(in srgb, var(--c) 40%, transparent); box-shadow: none;
	transition: background-color .3s ease, transform .3s ease;
}
.hm-fold:hover .hm-fold__icon { background: color-mix(in srgb, var(--c) 8%, transparent); transform: translateY(-2px); }
.hm-fold__title { font-size: 1.2rem; font-weight: 800; color: var(--color-text); letter-spacing: -.01em; }
.hm-fold__subtitle { font-size: .9rem; color: var(--color-text-muted); }
/* Back: accent gradient, glossy, white text + pill button */
.hm-fold__reveal {
	gap: .75rem; transform: rotateY(180deg);
	background:
		linear-gradient(150deg, rgba(255,255,255,.22) 0%, rgba(255,255,255,.05) 38%, rgba(0,0,0,.18) 100%),
		linear-gradient(135deg, var(--c), color-mix(in srgb, var(--c) 58%, #000));
	box-shadow: 0 40px 70px -24px color-mix(in srgb, var(--c) 50%, rgba(0,0,0,.35));
}
.hm-fold__reveal::before { /* soft top-corner glow on the glossy back */
	content: ''; position: absolute; top: -30%; right: -20%; width: 70%; height: 80%; border-radius: 50%;
	background: radial-gradient(circle, rgba(255,255,255,.30), transparent 70%); pointer-events: none;
}
.hm-fold__rtitle { font-size: 1.05rem; font-weight: 800; color: #fff; }
.hm-fold__desc { color: rgba(255,255,255,.88); font-size: .88rem; line-height: 1.6; margin: 0; }
/* Benefits list on the flipped back */
.hm-fold__points { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .55rem; }
.hm-fold__points li { display: flex; align-items: flex-start; gap: .5rem; font-size: .86rem; line-height: 1.45; color: rgba(255,255,255,.94); }
.hm-fold__points i { margin-top: .22rem; font-size: .72rem; color: rgba(255,255,255,.85); }
.hm-fold__btn {
	align-self: flex-start; display: inline-flex; align-items: center; gap: .45rem; margin-top: .35rem;
	padding: .6rem 1.2rem; border-radius: 999px; font-weight: 700; font-size: .85rem;
	color: var(--c) !important; background: #fff;
	box-shadow: 0 10px 22px -8px rgba(0,0,0,.35);
	transition: gap .2s, transform .2s;
}
.hm-fold__btn:hover { gap: .8rem; transform: translateY(-2px); }
/* CTA on the front face */
.hm-fold__facecta { display: inline-flex; align-items: center; gap: .4rem; margin-top: .15rem; font-size: .85rem; font-weight: 700; color: var(--c); transition: gap .2s ease; }
.hm-fold:hover .hm-fold__facecta { gap: .7rem; }

/* Front-face flip hint + the solo CTA on the static (non-flipping) card */
.hm-fold__hint { display: inline-flex; align-items: center; gap: .45rem; margin-top: .15rem; font-size: .82rem; font-weight: 700; color: var(--c); opacity: .85; transition: gap .2s ease, opacity .2s ease; }
.hm-fold:hover .hm-fold__hint { gap: .7rem; opacity: 1; }
.hm-fold__solo {
	margin-top: .35rem; display: inline-flex; align-items: center; gap: .5rem;
	padding: .7rem 1.35rem; border-radius: 999px; font-weight: 700; font-size: .85rem;
	color: #fff !important; background: linear-gradient(135deg, var(--c), color-mix(in srgb, var(--c) 60%, #000));
	box-shadow: 0 12px 26px -10px color-mix(in srgb, var(--c) 70%, rgba(0,0,0,.4));
	transition: gap .2s ease, transform .2s ease;
}
.hm-fold__solo:hover { gap: .8rem; transform: translateY(-2px); }

/* Action CTAs stacked on the flipped back face (replaces the old bullet list) */
.hm-fold__ctas { display: flex; flex-direction: column; gap: .5rem; width: 100%; }
.hm-fold__cta {
	display: flex; align-items: center; justify-content: space-between; gap: .6rem;
	padding: .6rem .95rem; border-radius: .7rem; font-size: .85rem; font-weight: 700;
	color: #fff !important; background: rgba(255,255,255,.14);
	border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(2px);
	transition: background .2s ease, transform .2s ease, padding .2s ease;
}
.hm-fold__cta i { font-size: .72rem; opacity: .9; transition: transform .2s ease; }
.hm-fold__cta:hover { background: #fff; color: var(--c) !important; transform: translateX(2px); }
.hm-fold__cta:hover i { transform: translateX(3px); }

/* Static card: never flips, pointer stays default */
.hm-fold--static { cursor: default; }
.hm-fold--static:hover .hm-fold__inner,
.hm-fold--static:focus-visible .hm-fold__inner { transform: none; }
.hm-fold--static:hover .hm-fold__face { transform: none; }

/* On flip, the back content reveals in sequence: heading, then each CTA button */
.hm-fold__reveal .hm-fold__rtitle,
.hm-fold__reveal .hm-fold__cta { opacity: 0; transform: translateY(12px); transition: opacity .3s ease, transform .35s ease; }
.hm-fold:is(:hover, :focus-visible, .is-open) .hm-fold__reveal .hm-fold__rtitle { opacity: 1; transform: none; transition-delay: .34s; }
.hm-fold:is(:hover, :focus-visible, .is-open) .hm-fold__reveal .hm-fold__cta:nth-child(1) { opacity: 1; transform: none; transition-delay: .46s; }
.hm-fold:is(:hover, :focus-visible, .is-open) .hm-fold__reveal .hm-fold__cta:nth-child(2) { opacity: 1; transform: none; transition-delay: .56s; }
.hm-fold:is(:hover, :focus-visible, .is-open) .hm-fold__reveal .hm-fold__cta:nth-child(3) { opacity: 1; transform: none; transition-delay: .66s; }
.hm-fold:is(:hover, :focus-visible, .is-open) .hm-fold__reveal .hm-fold__cta:nth-child(4) { opacity: 1; transform: none; transition-delay: .76s; }
@media (prefers-reduced-motion: reduce) {
	.hm-fold__reveal .hm-fold__rtitle,
	.hm-fold__reveal .hm-fold__cta { opacity: 1; transform: none; transition: none; }
}

/* Entrance: slow, gradual, sequential. The header reveals first (eyebrow,
   heading, sub), then each card rises and its own contents cascade in
   (icon, title, subtitle) before the next card begins. --d = the card's
   start delay; inner elements key off it so the sequence stays in order. */
.hm-head[data-reveal] > * { opacity: 0; translate: 0 22px; }
.hm-head[data-reveal].is-revealed > * { animation: hm-rise .8s ease both; }
.hm-head[data-reveal].is-revealed > *:nth-child(1) { animation-delay: .1s; }
.hm-head[data-reveal].is-revealed > *:nth-child(2) { animation-delay: .45s; }
.hm-head[data-reveal].is-revealed > *:nth-child(3) { animation-delay: .8s; }

.hm-folds[data-reveal] .hm-fold { opacity: 0; translate: 0 36px; }
.hm-folds[data-reveal].is-revealed .hm-fold { animation: hm-rise .8s cubic-bezier(.22,.61,.36,1) both; animation-delay: var(--d, 0s); }
.hm-folds[data-reveal].is-revealed .hm-fold:nth-child(1) { --d: .4s; }
.hm-folds[data-reveal].is-revealed .hm-fold:nth-child(2) { --d: 1.3s; }
.hm-folds[data-reveal].is-revealed .hm-fold:nth-child(3) { --d: 2.2s; }
.hm-folds[data-reveal].is-revealed .hm-fold:nth-child(4) { --d: 3.1s; }
/* Front-face contents cascade after their own card has appeared */
.hm-folds[data-reveal] .hm-fold__face > * { opacity: 0; translate: 0 14px; }
.hm-folds[data-reveal].is-revealed .hm-fold__face > * { animation: hm-rise .6s ease both; }
.hm-folds[data-reveal].is-revealed .hm-fold__face > *:nth-child(1) { animation-delay: calc(var(--d, 0s) + .25s); }
.hm-folds[data-reveal].is-revealed .hm-fold__face > *:nth-child(2) { animation-delay: calc(var(--d, 0s) + .42s); }
.hm-folds[data-reveal].is-revealed .hm-fold__face > *:nth-child(3) { animation-delay: calc(var(--d, 0s) + .59s); }
.hm-folds[data-reveal].is-revealed .hm-fold__face > *:nth-child(4) { animation-delay: calc(var(--d, 0s) + .76s); }
@keyframes hm-rise { to { opacity: 1; translate: 0 0; } }
@media (prefers-reduced-motion: reduce) {
	.hm-fold__inner { transition: none; }
	.hm-head[data-reveal] > *, .hm-folds[data-reveal] .hm-fold, .hm-folds[data-reveal] .hm-fold__face > * { opacity: 1; translate: 0 0; animation: none !important; }
}

/* ── "Partner with NAVTTC": numbered-step variation of the flip cards ──────── */
.hm-folds--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .hm-folds--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .hm-folds--3 { grid-template-columns: 1fr; } }
/* Ghost step numeral on the front face */
.hm-fold__step {
	position: absolute; top: 1.3rem; right: 1.6rem; z-index: 1;
	font-size: 2.6rem; font-weight: 800; line-height: 1; letter-spacing: -.03em;
	color: color-mix(in srgb, var(--c) 30%, transparent); pointer-events: none;
}
.partner__trust { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1rem; font-size: .9rem; font-weight: 600; color: var(--color-text-muted); }
.partner__trust i { color: var(--color-primary-mid); }

/* ══════════════════════════════════════════════════════════════════════════
   "I am interested in" - MODERN variant (cream cards with flip + featured card)
   ══════════════════════════════════════════════════════════════════════════ */
.im-sec { position: relative; overflow: hidden; padding: clamp(3rem, 6vw, 5.5rem) 0; background: #F6F5EE; }
/* Soft organic leaf decor in the corners */
.im-leaf { position: absolute; pointer-events: none; border-radius: 50%; filter: blur(8px); }
.im-leaf--tl { top: -7rem; left: -7rem; width: 22rem; height: 22rem; background: radial-gradient(circle at 60% 60%, rgba(120,150,60,.20), transparent 65%); }
.im-leaf--br { bottom: -8rem; right: -6rem; width: 26rem; height: 26rem; background: radial-gradient(circle at 40% 40%, rgba(120,150,60,.18), transparent 65%); }
.im-sec::before { /* faint dotted texture, top-left */
	content: ''; position: absolute; top: 0; left: 0; width: 40%; height: 50%; opacity: .5; pointer-events: none;
	background-image: radial-gradient(rgba(74,93,35,.14) 1.5px, transparent 1.5px); background-size: 22px 22px;
	-webkit-mask-image: radial-gradient(circle at 0 0, #000, transparent 70%); mask-image: radial-gradient(circle at 0 0, #000, transparent 70%);
}
.im-sec > .container { position: relative; z-index: 1; }

.im-head { text-align: center; max-width: 42rem; margin: 0 auto clamp(2.25rem, 5vw, 3.5rem); }
.im-eyebrow { display: inline-block; font-size: .72rem; font-weight: 800; letter-spacing: .28em; text-transform: uppercase; color: #4A5D23; margin-bottom: 1rem; }
.im-head h2 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; letter-spacing: -.025em; line-height: 1.05; color: #1f2410; }
.im-head p { margin-top: .9rem; color: var(--color-text-muted); font-size: 1.02rem; }

.im-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.im-card { position: relative; height: 300px; perspective: 1300px; cursor: pointer; outline: none; }
.im-card__inner { position: absolute; inset: 0; transform-style: preserve-3d; transition: transform .65s cubic-bezier(.3,.7,.25,1); }
.im-card:hover .im-card__inner, .im-card:focus-visible .im-card__inner, .im-card.is-open .im-card__inner { transform: rotateY(180deg); }

.im-card__front, .im-card__back {
	position: absolute; inset: 0; border-radius: 1.5rem; overflow: hidden; padding: 2rem 1.5rem;
	-webkit-backface-visibility: hidden; backface-visibility: hidden;
	display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
}
/* Front: light card */
.im-card__front {
	gap: .85rem; background: #FBFBF7; border: 1px solid #e9e8df;
	box-shadow: 0 12px 30px -18px rgba(31,36,16,.25);
}
.im-card__icon {
	width: 4rem; height: 4rem; display: flex; align-items: center; justify-content: center;
	border-radius: 1.1rem; font-size: 1.5rem; color: #4A5D23;
	background: linear-gradient(160deg, #eef3df, #e2ebc9);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
}
.im-card__title { font-size: 1.18rem; font-weight: 800; color: #1f2410; line-height: 1.25; letter-spacing: -.01em; }
.im-card__desc { font-size: .9rem; color: var(--color-text-muted); line-height: 1.55; max-width: 18ch; }
.im-card__arrow { margin-top: .25rem; color: #4A5D23; font-size: 1rem; transition: transform .3s ease; }
.im-card:hover .im-card__arrow { transform: translateX(4px); }
/* Featured card: gradient top strip + green glow */
.im-card--featured .im-card__front { box-shadow: 0 18px 40px -16px rgba(74,93,35,.4), 0 0 0 1px rgba(74,93,35,.18); }
.im-card--featured .im-card__front::before {
	content: ''; position: absolute; top: 0; left: 0; right: 0; height: 9.36px;
	background: linear-gradient(270deg, #4A5D23 0%, #B2DA62 49.04%, #4A5D23 100%);
}
/* Back: green gradient with same content + CTA */
.im-card__back {
	gap: .7rem; transform: rotateY(180deg); color: #fff;
	background: linear-gradient(150deg, #4A5D23 0%, #6f8a33 55%, #B2DA62 130%);
	box-shadow: 0 24px 48px -20px rgba(74,93,35,.55);
}
.im-card__btitle { font-size: 1.15rem; font-weight: 800; color: #fff; line-height: 1.25; }
.im-card__bdesc { font-size: .9rem; color: rgba(255,255,255,.9); line-height: 1.55; }
.im-card__btn {
	display: inline-flex; align-items: center; gap: .45rem; margin-top: .4rem;
	padding: .6rem 1.3rem; border-radius: 999px; font-size: .85rem; font-weight: 800;
	background: #fff; color: #4A5D23 !important; box-shadow: 0 10px 22px -8px rgba(0,0,0,.35);
	transition: gap .2s ease, transform .2s ease;
}
.im-card__btn:hover { gap: .8rem; transform: translateY(-2px); color: #4A5D23 !important; }

/* Staggered scroll-in */
.im-head[data-reveal] > * { opacity: 0; translate: 0 20px; }
.im-head[data-reveal].is-revealed > * { animation: hm-rise .7s ease both; }
.im-head[data-reveal].is-revealed > *:nth-child(1) { animation-delay: .05s; }
.im-head[data-reveal].is-revealed > *:nth-child(2) { animation-delay: .2s; }
.im-head[data-reveal].is-revealed > *:nth-child(3) { animation-delay: .35s; }
.im-grid[data-reveal] .im-card { opacity: 0; translate: 0 30px; }
.im-grid[data-reveal].is-revealed .im-card { animation: hm-rise .7s cubic-bezier(.22,.61,.36,1) both; }
.im-grid[data-reveal].is-revealed .im-card:nth-child(1) { animation-delay: .3s; }
.im-grid[data-reveal].is-revealed .im-card:nth-child(2) { animation-delay: .55s; }
.im-grid[data-reveal].is-revealed .im-card:nth-child(3) { animation-delay: .8s; }
.im-grid[data-reveal].is-revealed .im-card:nth-child(4) { animation-delay: 1.05s; }

@media (max-width: 980px) { .im-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .im-grid { grid-template-columns: 1fr; } .im-card { height: 260px; } }
@media (prefers-reduced-motion: reduce) {
	.im-card__inner { transition: none; }
	.im-head[data-reveal] > *, .im-grid[data-reveal] .im-card { opacity: 1; translate: 0 0; animation: none !important; }
}

/* ── Flagship Initiatives: full-width auto-scroll image slider ─────────────── */
.fslider-sec { padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(1rem, 2.5vw, 2rem); overflow: hidden; }
/* Break out of the container to span the full viewport width (padding-safe) */
.fslider { position: relative; width: 100vw; max-width: none; margin-left: 50%; transform: translateX(-50%); margin-top: clamp(1.5rem, 3vw, 2.5rem); }
.fslider__viewport { overflow: hidden; }
.fslider__track { display: flex; will-change: transform; transition: transform .7s cubic-bezier(.4,0,.2,1); }
/* 1920x700 art: a full-width slide at that exact ratio fills perfectly - no bars, no crop. */
.fslider__slide { position: relative; flex: 0 0 100%; aspect-ratio: 1920 / 700; overflow: hidden; background: #0b1322; display: block; }
.fslider__slide img { display: block; width: 100%; height: 100%; object-fit: cover; }
/* Arrows */
.fslider__nav {
	position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
	width: 48px; height: 48px; border: none; border-radius: 50%; cursor: pointer;
	display: flex; align-items: center; justify-content: center; font-size: 1.05rem; color: #0f172a;
	background: rgba(255,255,255,.92); box-shadow: 0 8px 22px -6px rgba(2,6,23,.45);
	transition: background-color .2s ease, transform .2s ease;
}
.fslider__nav:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.fslider__nav--prev { left: clamp(.75rem, 2vw, 2rem); }
.fslider__nav--next { right: clamp(.75rem, 2vw, 2rem); }
/* Dots */
.fslider__dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.1rem; }
.fslider__dot { width: 10px; height: 10px; border-radius: 999px; border: none; cursor: pointer; padding: 0; background: color-mix(in srgb, var(--color-primary) 28%, var(--color-border)); transition: width .3s ease, background-color .3s ease; }
.fslider__dot.is-active { width: 30px; background: var(--color-primary); }
@media (max-width: 768px) {
	.fslider__nav { width: 40px; height: 40px; }
}
.fslider[data-reveal] { opacity: 0; translate: 0 30px; }
.fslider[data-reveal].is-revealed { animation: hm-rise .8s ease .2s both; }
@media (prefers-reduced-motion: reduce) {
	.fslider__track { transition: none; }
	.fslider[data-reveal] { opacity: 1; translate: 0 0; animation: none; }
}

/* ── 3D tilt cards ────────────────────────────────────────────────────────── */
.hm-tilt { transform-style: preserve-3d; transition: transform .2s ease, box-shadow .3s ease; will-change: transform; }
.hm-grid { display: grid; gap: 1.75rem; }
.hm-grid--3 { grid-template-columns: repeat(3, 1fr); }
.hm-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--color-border); border-radius: 1.5rem; overflow: hidden; box-shadow: 0 8px 24px -14px rgba(0,0,0,.2); color: inherit; }
.hm-card:hover { box-shadow: 0 40px 70px -24px rgba(0,0,0,.3); }
.hm-card__top { position: relative; height: 130px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 2.4rem; }
.hm-card__top::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 70% 20%, rgba(255,255,255,.25), transparent 60%); }
.hm-card__top i { position: relative; filter: drop-shadow(0 6px 14px rgba(0,0,0,.25)); }
.hm-card__body { padding: 1.5rem 1.75rem 1.75rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.hm-card__badge { align-self: flex-start; font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--color-primary); background: var(--color-primary-light); padding: .25rem .7rem; border-radius: 999px; }
.hm-card__title { font-size: 1.2rem; font-weight: 700; }
.hm-card__desc { color: var(--color-text-muted); font-size: .9rem; line-height: 1.6; flex: 1; }

/* ── Sectors ──────────────────────────────────────────────────────────────── */
.hm-sectors { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.hm-sector { display: flex; flex-direction: column; align-items: center; text-align: center; gap: .6rem; padding: 1.9rem 1rem; background: #fff; border: 1px solid var(--color-border); border-radius: 1.25rem; color: inherit; box-shadow: 0 8px 22px -14px rgba(0,0,0,.18); transition: border-color .3s, box-shadow .3s; }
.hm-sector:hover { box-shadow: 0 28px 50px -20px color-mix(in srgb, var(--c) 40%, rgba(0,0,0,.25)); border-color: color-mix(in srgb, var(--c) 35%, transparent); }
.hm-sector__icon { width: 3.5rem; height: 3.5rem; border-radius: 1rem; display: flex; align-items: center; justify-content: center; font-size: 1.35rem; color: #fff; background: linear-gradient(135deg, var(--c), color-mix(in srgb, var(--c) 62%, #000)); box-shadow: 0 10px 22px -8px color-mix(in srgb, var(--c) 60%, transparent); transition: transform .3s; }
.hm-sector:hover .hm-sector__icon { transform: translateY(-3px) scale(1.06); }
.hm-sector__name { font-weight: 700; font-size: .95rem; color: var(--color-text); }
.hm-sector__count { font-size: .78rem; color: var(--color-text-muted); }

/* ── Stats ────────────────────────────────────────────────────────────────── */
.hm-section--dark { position: relative; overflow: hidden; }
.hm-section--dark::before { content: ''; position: absolute; width: 30rem; height: 30rem; border-radius: 50%; background: radial-gradient(circle, rgba(52,211,153,.25), transparent 70%); top: -10rem; right: -8rem; pointer-events: none; }
.hm-stats { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.hm-stat { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 1.25rem; padding: 2rem 1rem; backdrop-filter: blur(6px); transition: transform .3s; }
.hm-stat:hover { transform: translateY(-6px); }
.hm-stat__num { display: block; font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; color: var(--color-accent-light); letter-spacing: -.02em; }
.hm-stat__lbl { display: block; font-size: .85rem; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: .06em; margin-top: .25rem; }

/* ── CTA ──────────────────────────────────────────────────────────────────── */
.hm-cta { text-align: center; padding: clamp(2.5rem, 5vw, 4rem) 0; background: radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--color-primary) 12%, #fff), #fff); }
.hm-cta h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -.02em; }
.hm-cta p { color: var(--color-text-muted); font-size: 1.1rem; margin: .75rem auto 2rem; max-width: 38rem; }
.hm-cta__btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.hm-cta .hm-btn--ghost-light { border-color: var(--color-border); color: var(--color-text) !important; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
	.hm-folds { grid-template-columns: repeat(2, 1fr); }
	.hm-grid--3 { grid-template-columns: 1fr; }
	.hm-sectors { grid-template-columns: repeat(3, 1fr); }
	.hm-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
	.hm-folds, .hm-sectors { grid-template-columns: 1fr 1fr; }
	.hm-tilt { transform: none !important; } /* disable tilt on touch */
	.hm-fold { height: 320px; }
	.hm-fold__face, .hm-fold__reveal { padding: 1.4rem; }
}
@media (max-width: 400px) {
	.hm-folds, .hm-sectors { grid-template-columns: 1fr; }
	.hm-fold { height: 280px; }
}

/* Get Started As - Verify Certificate inline field + button */
.gsa-card--verify .gsa-card__body { gap: .55rem; }
.gsa-verify { position: relative; display: flex; align-items: center; margin-top: .35rem; }
.gsa-verify__icon { position: absolute; left: .9rem; color: var(--color-text-light); font-size: .85rem; pointer-events: none; }
.gsa-verify__input { width: 100%; padding: .72rem .9rem .72rem 2.3rem; border: 1.5px solid var(--color-border); border-radius: var(--r-md, .75rem); background: #fff; font: inherit; font-size: .9rem; color: var(--color-text); transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease; }
.gsa-verify__input::placeholder { color: var(--color-text-light); }
.gsa-verify__input:hover { border-color: color-mix(in srgb, var(--color-accent) 45%, var(--color-border)); }
.gsa-verify__input:focus { outline: 0; border-color: var(--color-accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-accent) 22%, transparent); background: #fffdf7; }
.gsa-verify__btn { margin-top: .35rem; align-self: flex-start; padding: .6rem 1.15rem; border-radius: var(--r-full, 9999px); background: linear-gradient(135deg, var(--color-accent), #d97706); color: #fff; box-shadow: 0 10px 22px -10px rgba(245,158,11,.7); }
.gsa-card--verify:hover .gsa-verify__btn { gap: .75rem; transform: translateY(-2px); box-shadow: 0 14px 26px -10px rgba(245,158,11,.75); }
.gsa-verify__btn:hover { color: #fff; }
@media (prefers-reduced-motion: reduce) { .gsa-card--verify:hover .gsa-verify__btn { transform: none; } }
