/* ==========================================================================
   HelpLink Marketing Site — Custom CSS
   Works alongside Bootstrap 5.3 (loaded via CDN). Extends, never duplicates.
   All custom classes use the `hl-` prefix to avoid collisions.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens
   -------------------------------------------------------------------------- */

:root {
	--hl-navy: #1E293B;
	--hl-cornflower: #4A7DCC;
	--hl-pink: #F91B8C;
	--hl-orange: #FC9948;
	--hl-blue-audience: #3B7DD8;
	--hl-pink-audience: #D64D8A;
	--hl-green: #4CAF50;
	--hl-purple: #7B48B5;
	--hl-cyan: #05F5FF;
	--hl-gray: #F5F5F5;
	--hl-charcoal: #333333;
	--hl-white: #FFFFFF;
	--hl-radius: 25px;
	--hl-card-radius: 10px;
	--hl-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Skip-to-content link (keyboard/screen-reader accessibility) */
.hl-skip-link {
	position: absolute;
	top: -100%;
	left: 50%;
	transform: translateX(-50%);
	background: var(--hl-pink);
	color: var(--hl-white);
	padding: 10px 24px;
	border-radius: 0 0 var(--hl-radius) var(--hl-radius);
	font-weight: 600;
	font-size: 0.9rem;
	text-decoration: none;
	z-index: 9999;
	transition: top 0.2s ease;
}

.hl-skip-link:focus {
	top: 0;
	color: var(--hl-white);
}

/* --------------------------------------------------------------------------
   2. Typography & Base
   -------------------------------------------------------------------------- */

html {
	overflow-x: hidden;
}

body {
	font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
	font-size: 17px;
	line-height: 1.6;
	color: var(--hl-charcoal);
	padding-top: 60px;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	color: var(--hl-navy);
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }

@media (max-width: 767px) {
	body { font-size: 16px; }
	h1 { font-size: 2rem; }
	h2 { font-size: 1.75rem; }
	h3 { font-size: 1.25rem; }
}

/* --------------------------------------------------------------------------
   3. Buttons
   -------------------------------------------------------------------------- */

.btn-hl-primary,
.btn-hl-secondary,
.btn-hl-outline,
.btn-hl-donate {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 28px;
	border-radius: var(--hl-radius);
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	border: 2px solid transparent;
	cursor: pointer;
	transition: background-color 0.25s ease, border-color 0.25s ease,
				color 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;
}

.btn-hl-primary {
	background-color: var(--hl-pink);
	color: var(--hl-white);
	border-color: var(--hl-pink);
}
.btn-hl-primary:hover,
.btn-hl-primary:focus-visible {
	background-color: #d9167a;
	border-color: #d9167a;
	color: var(--hl-white);
	box-shadow: 0 4px 12px rgba(249, 27, 140, 0.35);
	transform: translateY(-1px);
}

.btn-hl-secondary {
	background-color: var(--hl-cornflower);
	color: var(--hl-white);
	border-color: var(--hl-cornflower);
}
.btn-hl-secondary:hover,
.btn-hl-secondary:focus-visible {
	background-color: #3e6db8;
	border-color: #3e6db8;
	color: var(--hl-white);
	box-shadow: 0 4px 12px rgba(74, 125, 204, 0.35);
	transform: translateY(-1px);
}

.btn-hl-outline {
	background-color: transparent;
	color: var(--hl-white);
	border-color: var(--hl-white);
}
.btn-hl-outline:hover,
.btn-hl-outline:focus-visible {
	background-color: var(--hl-white);
	color: var(--hl-navy);
	transform: translateY(-1px);
}

.btn-hl-donate {
	background-color: var(--hl-pink);
	color: var(--hl-white);
	border-color: var(--hl-pink);
}
.btn-hl-donate:hover,
.btn-hl-donate:focus-visible {
	background-color: #d9167a;
	border-color: #d9167a;
	color: var(--hl-white);
	box-shadow: 0 4px 12px rgba(249, 27, 140, 0.35);
	transform: translateY(-1px);
}

@media (max-width: 767px) {
	.btn-hl-primary,
	.btn-hl-secondary,
	.btn-hl-outline,
	.btn-hl-donate {
		margin-bottom: 10px;
	}
}

/* --------------------------------------------------------------------------
   4. Utility Classes
   -------------------------------------------------------------------------- */

.hl-section {
	padding: 80px 0;
}

.hl-section-gray {
	background-color: var(--hl-gray);
}

.hl-pink-text {
	color: var(--hl-pink);
}

.hl-card {
	background: var(--hl-white);
	border-radius: var(--hl-card-radius);
	box-shadow: var(--hl-shadow);
	padding: 30px;
}

@media (max-width: 767px) {
	.hl-section { padding: 50px 0; }
}

/* --------------------------------------------------------------------------
   5. Sticky Header
   -------------------------------------------------------------------------- */

.hl-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 60px;
	background-color: var(--hl-navy);
	z-index: 1050;
	display: flex;
	align-items: center;
}

.hl-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.hl-header-logo img {
	height: 36px;
	width: auto;
}

.hl-header-nav {
	display: flex;
	align-items: center;
	gap: 28px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.hl-header-nav a {
	color: var(--hl-white);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.95rem;
	position: relative;
	padding: 4px 0;
	transition: opacity 0.2s ease;
}

.hl-header-nav a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--hl-pink);
	transition: width 0.3s ease;
}

.hl-header-nav a:hover::after,
.hl-header-nav a:focus-visible::after,
.hl-header-nav a.active::after {
	width: 100%;
}

.hl-header-nav a:hover {
	color: var(--hl-white);
	opacity: 0.9;
}

.hl-header-cta .btn-hl-secondary {
	padding: 6px 22px;
	min-height: 38px;
	font-size: 0.9rem;
}

.hl-header.scrolled {
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

/* Hamburger toggle */
.hl-header-toggle {
	display: none;
	flex-direction: column;
	background: none;
	border: none;
	padding: 8px;
	cursor: pointer;
	min-width: 44px;
	min-height: 44px;
	align-items: center;
	justify-content: center;
}

.hl-header-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--hl-white);
	margin: 5px 0;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.hl-header-toggle.is-active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.hl-header-toggle.is-active span:nth-child(2) {
	opacity: 0;
}
.hl-header-toggle.is-active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu drawer — uses height animation via JS */
.hl-mobile-menu {
	display: none;
	position: fixed;
	top: 60px;
	left: 0;
	right: 0;
	background-color: var(--hl-navy);
	z-index: 1049;
	overflow: hidden;
	height: 0;
	transition: height 0.35s ease;
}

.hl-mobile-menu ul {
	list-style: none;
	margin: 0;
	padding: 20px 0;
	text-align: center;
}

.hl-mobile-menu li {
	padding: 12px 0;
}

.hl-mobile-menu a {
	color: var(--hl-white);
	text-decoration: none;
	font-weight: 500;
	font-size: 1.1rem;
}

.hl-mobile-menu a:hover {
	color: var(--hl-pink);
}

/* Offset body for fixed header */
body.hl-has-header {
	padding-top: 60px;
}

@media (max-width: 991px) {
	.hl-header-nav,
	.hl-header-cta {
		display: none;
	}
	.hl-header-toggle {
		display: flex;
	}
	.hl-mobile-menu {
		display: block;
	}
}

/* --------------------------------------------------------------------------
   6. Footer
   -------------------------------------------------------------------------- */

.hl-footer {
	background-color: var(--hl-navy);
	color: var(--hl-white);
	padding: 60px 0 0;
}

.hl-footer a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: color 0.2s ease;
}

.hl-footer a:hover {
	color: var(--hl-white);
}

.hl-footer-logo img {
	height: 40px;
	width: auto;
	margin-bottom: 16px;
}

.hl-footer-mission {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 20px;
}

.hl-footer-social {
	display: flex;
	gap: 14px;
}

.hl-footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	opacity: 0.7;
	transition: opacity 0.2s ease;
}

.hl-footer-social a:hover {
	opacity: 1;
}

.hl-footer-social svg {
	width: 20px;
	height: 20px;
	fill: var(--hl-white);
}

.hl-footer h5 {
	color: var(--hl-white);
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 18px;
}

.hl-footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.hl-footer-links li {
	margin-bottom: 10px;
}

.hl-footer-links a {
	font-size: 0.9rem;
}

.hl-footer-contact p {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 8px;
}

/* Footer class aliases for HTML markup */
.hl-footer-tagline,
.hl-footer-mission {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 20px;
}

.hl-footer-heading {
	color: var(--hl-white);
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 18px;
}

.hl-footer-contact {
	list-style: none;
	padding: 0;
	margin: 0;
}

.hl-footer-contact li {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 8px;
}

.hl-footer-divider {
	margin: 0 8px;
	color: rgba(255, 255, 255, 0.3);
}

.hl-footer-bottom a {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.5);
}

.hl-footer-bottom a:hover {
	color: var(--hl-white);
}

.hl-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	margin-top: 40px;
	padding: 20px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
}

.hl-footer-bottom p {
	margin: 0;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.5);
}

.hl-footer-legal {
	display: flex;
	gap: 20px;
}

.hl-footer-legal a {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.5);
}

.hl-footer-legal a:hover {
	color: var(--hl-white);
}

.hl-footer-signup {
	display: flex;
	gap: 10px;
}

.hl-footer-signup input {
	flex: 1;
	min-width: 0;
	padding: 10px 18px;
	border-radius: var(--hl-radius);
	border: 1px solid rgba(255, 255, 255, 0.25);
	background: rgba(255, 255, 255, 0.1);
	color: var(--hl-white);
	font-size: 0.95rem;
	font-family: inherit;
	outline: none;
	transition: border-color 0.2s ease;
}

.hl-footer-signup input::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.hl-footer-signup input:focus {
	border-color: var(--hl-pink);
}

.hl-footer-signup .btn-hl-primary {
	flex-shrink: 0;
}

.hl-footer-badges {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 20px;
}

.hl-footer-badges img {
	height: 64px;
	width: auto;
}

@media (max-width: 767px) {
	.hl-footer { padding: 40px 0 0; }
	.hl-footer-bottom {
		flex-direction: column;
		text-align: center;
	}
}

/* --------------------------------------------------------------------------
   7. Hero Section
   -------------------------------------------------------------------------- */

.hl-hero {
	background-color: var(--hl-navy);
	padding: 100px 0 90px;
	text-align: center;
	color: var(--hl-white);
	overflow: hidden;
}

.hl-hero h1 {
	color: var(--hl-white);
	font-size: 3.25rem;
	font-weight: 800;
	margin-bottom: 20px;
}

.hl-hero h1 .hl-pink-text {
	color: var(--hl-pink);
}

.hl-hero p {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.85);
	max-width: 620px;
	margin: 0 auto 32px;
}

.hl-hero-actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

.hl-hero--short {
	padding: 80px 0 60px;
}

.hl-hero-subtitle {
	font-size: 1.3rem;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 500;
}

/* Video hero */
.hl-hero--video {
	position: relative;
	overflow: hidden;
	padding: 120px 0 110px;
}

.hl-hero-video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	transform: translate(-50%, -50%);
	object-fit: cover;
	z-index: 0;
}

.hl-hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(30, 41, 59, 0.5);
	z-index: 1;
}

@media (max-width: 767px) {
	.hl-hero {
		padding: 70px 0 60px;
	}
	.hl-hero--short {
		padding: 60px 0 40px;
	}
	.hl-hero--video {
		padding: 90px 0 80px;
	}
	.hl-hero h1 {
		font-size: 2.25rem;
	}
	.hl-hero p {
		font-size: 1.05rem;
	}
	.hl-hero-subtitle {
		font-size: 1.1rem;
	}
	.hl-hero-actions {
		flex-direction: column;
		align-items: center;
		gap: 12px;
	}
}

/* --------------------------------------------------------------------------
   8. Audience Columns
   -------------------------------------------------------------------------- */

.hl-audience {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.hl-audience-col {
	padding: 60px 40px;
	text-align: center;
	color: var(--hl-white);
	text-decoration: none;
	transition: filter 0.3s ease;
}

.hl-audience-col:hover,
.hl-audience-col:focus {
	text-decoration: none;
	color: var(--hl-white);
	filter: brightness(1.08);
}

.hl-audience-col h3 {
	color: var(--hl-white);
	margin-bottom: 14px;
}

.hl-audience-col p {
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 24px;
}

.hl-audience-col--businesses {
	background-color: var(--hl-blue-audience);
}

.hl-audience-col--nonprofits {
	background-color: var(--hl-pink-audience);
}

.hl-audience-col--individuals {
	background-color: #E8893E;
}

.hl-audience-col .hl-audience-icon {
	font-size: 2.5rem;
	margin-bottom: 18px;
	display: block;
}

@media (max-width: 767px) {
	.hl-audience {
		grid-template-columns: 1fr;
	}
	.hl-audience-col {
		padding: 44px 28px;
	}
}

/* --------------------------------------------------------------------------
   9. Impact Stats
   -------------------------------------------------------------------------- */

.hl-stats {
	padding: 70px 0;
	text-align: center;
}

.hl-stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	max-width: 900px;
	margin: 0 auto;
}

.hl-stat-item {
	padding: 20px;
}

.hl-stat-icon {
	color: var(--hl-pink);
	font-size: 2rem;
	margin-bottom: 12px;
}

.hl-stat-number {
	font-size: 3rem;
	font-weight: 800;
	color: var(--hl-navy);
	line-height: 1.1;
	margin-bottom: 6px;
}

.hl-stat-label {
	font-size: 0.95rem;
	color: var(--hl-charcoal);
	font-weight: 500;
}

@media (max-width: 767px) {
	.hl-stats-grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}
	.hl-stat-number {
		font-size: 2.5rem;
	}
}

/* --------------------------------------------------------------------------
   10. "What Makes Us Different" Section
   -------------------------------------------------------------------------- */

.hl-different {
	position: relative;
	padding: 100px 0;
	background-color: var(--hl-navy);
	color: var(--hl-white);
}

.hl-different::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(30, 41, 59, 0.82);
	z-index: 1;
}

.hl-different > .container {
	position: relative;
	z-index: 2;
}

.hl-different h2 {
	color: var(--hl-white);
	text-align: center;
	margin-bottom: 50px;
}

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

.hl-different-card {
	background: var(--hl-white);
	border-radius: var(--hl-card-radius);
	box-shadow: var(--hl-shadow);
	padding: 36px 28px;
	text-align: center;
	color: var(--hl-charcoal);
	border-bottom: 3px solid var(--hl-pink);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hl-different-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hl-different-card h3 {
	font-size: 1.25rem;
	margin-bottom: 12px;
}

.hl-different-card p {
	font-size: 0.95rem;
	color: #666;
	margin-bottom: 20px;
}

@media (max-width: 767px) {
	.hl-different { padding: 60px 0; }
	.hl-different-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

/* --------------------------------------------------------------------------
   11. "How It Works" Section
   -------------------------------------------------------------------------- */

.hl-how-it-works {
	padding: 80px 0;
}

.hl-how-it-works h2 {
	text-align: center;
	margin-bottom: 50px;
}

.hl-steps-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px 30px;
}

.hl-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.hl-step-number {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--hl-white);
	margin-bottom: 18px;
	flex-shrink: 0;
}

.hl-step-number--blue   { background-color: var(--hl-cornflower); }
.hl-step-number--green  { background-color: var(--hl-green); }
.hl-step-number--orange { background-color: var(--hl-orange); }

.hl-step h4 {
	font-size: 1.15rem;
	margin-bottom: 10px;
}

.hl-step p {
	font-size: 0.95rem;
	color: #666;
}

.hl-step-mockup {
	margin-top: 20px;
	width: 100%;
	max-width: 260px;
}

.hl-mockup {
	transform: scale(0.95);
	transition: transform 0.3s ease;
}

.hl-step:hover .hl-mockup {
	transform: scale(1);
}

@media (max-width: 767px) {
	.hl-steps-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}

/* --------------------------------------------------------------------------
   12. HelpLink Heroes
   -------------------------------------------------------------------------- */

.hl-heroes {
	background: linear-gradient(135deg, var(--hl-pink-audience), var(--hl-purple), var(--hl-cornflower));
	padding: 80px 0;
	color: var(--hl-white);
}

.hl-heroes h2 {
	color: var(--hl-white);
	text-align: center;
	margin-bottom: 50px;
}

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

.hl-heroes-card {
	min-width: 0;
	overflow: hidden;
}

.hl-heroes-card {
	background: var(--hl-white);
	border-radius: var(--hl-card-radius);
	box-shadow: var(--hl-shadow);
	padding: 30px 24px;
	color: var(--hl-charcoal);
}

.hl-heroes-card h4 {
	text-align: center;
	font-size: 1.1rem;
	margin-bottom: 20px;
	color: var(--hl-navy);
}

.hl-heroes-list {
	list-style: none;
	padding: 0;
	margin: 0;
	counter-reset: hero;
}

.hl-heroes-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 0;
	border-bottom: 1px solid var(--hl-gray);
	font-size: 0.95rem;
	counter-increment: hero;
}

.hl-heroes-list li > div {
	flex: 1;
	min-width: 0;
}

.hl-heroes-list li > div strong {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.3;
}

.hl-heroes-list li > div small {
	display: block;
	font-size: 0.8rem;
	color: #999;
	line-height: 1.2;
	margin-top: 1px;
}

.hl-heroes-score img {
	vertical-align: middle;
	margin-right: 2px;
}

.hl-heroes-list li:last-child {
	border-bottom: none;
}

.hl-heroes-list li::before {
	content: counter(hero) '.';
	font-weight: 700;
	color: var(--hl-cornflower);
	min-width: 28px;
}

.hl-heroes-score {
	font-weight: 700;
	color: var(--hl-navy);
}

@media (min-width: 768px) and (max-width: 1023px) {
	.hl-heroes-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	.hl-heroes-grid > :last-child {
		grid-column: 1 / -1;
		max-width: 50%;
		margin: 0 auto;
	}
}

@media (max-width: 767px) {
	.hl-heroes { padding: 50px 0; }
	.hl-heroes-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

/* --------------------------------------------------------------------------
   13. Partner Logo Marquee
   -------------------------------------------------------------------------- */

.hl-partners {
	padding: 60px 0;
	overflow: hidden;
}

.hl-partners h2 {
	text-align: center;
	margin-bottom: 40px;
}

.hl-scroll-wrapper {
	overflow: hidden;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.hl-scroll-track {
	display: flex;
	gap: 60px;
	align-items: center;
	width: max-content;
	animation: hl-scroll-left var(--hl-marquee-duration, 45s) linear infinite;
}

.hl-scroll-track:hover {
	animation-play-state: paused;
}

.hl-scroll-track img {
	height: 44px;
	width: auto;
	opacity: 0.7;
	transition: opacity 0.3s ease;
}

.hl-scroll-track img:hover {
	opacity: 1;
}

@keyframes hl-scroll-left {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   14. Current Needs Carousel
   -------------------------------------------------------------------------- */

.hl-needs {
	padding: 80px 0;
}

.hl-needs h2 {
	text-align: center;
	margin-bottom: 40px;
}

.hl-needs-wrapper {
	position: relative;
}

.hl-needs-track {
	display: flex;
	gap: 24px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-ms-overflow-style: none;
	scrollbar-width: none;
	padding-bottom: 4px;
}

.hl-needs-track::-webkit-scrollbar {
	display: none;
}

.hl-needs-card {
	flex: 0 0 calc(33.333% - 16px);
	scroll-snap-align: start;
	background: var(--hl-white);
	border-radius: var(--hl-card-radius);
	box-shadow: var(--hl-shadow);
	padding: 28px 24px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.hl-needs-card-top {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 20px;
}

.hl-needs-card-icon {
	flex-shrink: 0;
}

.hl-needs-card-icon img {
	width: 64px;
	height: 64px;
	object-fit: contain;
}

.hl-needs-card h4 {
	font-size: 1.15rem;
	margin-bottom: 4px;
}

.hl-needs-card-location {
	font-size: 0.85rem;
	color: #999;
	margin: 0;
}

.hl-needs-card-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.hl-needs-card-remaining {
	font-size: 0.95rem;
	color: #666;
	font-weight: 400;
	margin: 0;
	white-space: nowrap;
}

.hl-needs-amount {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--hl-cornflower);
}

.hl-needs-card .btn-hl-donate {
	flex-shrink: 0;
}

.hl-needs-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: none;
	background: var(--hl-white);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	color: var(--hl-navy);
	transition: background-color 0.2s ease, box-shadow 0.2s ease;
	z-index: 3;
}

.hl-needs-arrow:hover {
	background-color: var(--hl-gray);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.hl-needs-arrow--prev { left: -22px; }
.hl-needs-arrow--next { right: -22px; }

@media (max-width: 1199px) {
	.hl-needs-card {
		flex: 0 0 calc(50% - 12px);
	}
}

@media (max-width: 767px) {
	.hl-needs-card {
		flex: 0 0 calc(100% - 8px);
	}
	.hl-needs-arrow {
		display: none !important;
	}
}

/* --------------------------------------------------------------------------
   15. Testimonials
   -------------------------------------------------------------------------- */

.hl-testimonials {
	padding: 80px 0;
	background-color: var(--hl-navy);
	color: var(--hl-white);
}

.hl-testimonials h2 {
	text-align: center;
	margin-bottom: 40px;
	color: var(--hl-white);
}

.hl-testimonials-carousel,
.hl-testimonial-slider {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
	overflow: visible;
	padding-bottom: 10px;
}

.hl-testimonial-slide {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	transition: opacity 0.6s ease;
	pointer-events: none;
}

.hl-testimonial-slide.is-active {
	opacity: 1;
	position: relative;
	pointer-events: auto;
}

/* Short format */
.hl-testimonial-short {
	text-align: center;
	padding: 20px;
}

.hl-testimonial-short p {
	font-size: 1.25rem;
	font-style: italic;
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: 14px;
}

.hl-testimonial-short cite {
	font-size: 0.95rem;
	font-style: normal;
	color: rgba(255, 255, 255, 0.8);
	font-weight: 500;
}

/* Thank-you format (with image) */
.hl-testimonial-thankyou {
	display: flex;
	align-items: center;
	gap: 28px;
	padding: 20px;
	max-width: 700px;
	margin: 0 auto;
}

.hl-ty-image {
	width: 120px;
	height: 120px;
	border-radius: var(--hl-card-radius);
	object-fit: cover;
	flex-shrink: 0;
	border: 3px solid rgba(255, 255, 255, 0.3);
}

.hl-ty-content p {
	font-size: 1.15rem;
	font-style: italic;
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: 12px;
}

.hl-ty-content cite {
	font-size: 0.95rem;
	font-style: normal;
	color: rgba(255, 255, 255, 0.8);
	font-weight: 500;
}

@media (max-width: 767px) {
	.hl-testimonial-thankyou {
		flex-direction: column;
		text-align: center;
	}
	.hl-ty-image {
		width: 100px;
		height: 100px;
	}
}

/* Long format */
.hl-testimonial-long {
	display: flex;
	align-items: flex-start;
	gap: 28px;
	padding: 30px;
}

.hl-testimonial-long img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.hl-testimonial-long blockquote {
	margin: 0;
	padding: 0;
	border: none;
	font-size: 1.05rem;
	line-height: 1.7;
	color: var(--hl-charcoal);
}

.hl-testimonial-long cite {
	display: block;
	margin-top: 12px;
	font-style: normal;
	font-weight: 600;
	color: var(--hl-navy);
	font-size: 0.95rem;
}

/* Dots indicator */
.hl-testimonials-dots,
.hl-testimonial-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 28px;
}

.hl-testimonials-dot,
.hl-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: none;
	background-color: rgba(255, 255, 255, 0.4);
	cursor: pointer;
	padding: 0;
	transition: background-color 0.25s ease, transform 0.15s ease;
}

.hl-testimonials-dot.is-active,
.hl-dot.is-active {
	background-color: rgba(255, 255, 255, 0.9);
	transform: scale(1.2);
}

@media (max-width: 767px) {
	.hl-testimonial-long {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
}

/* --------------------------------------------------------------------------
   16. Blog Cards
   -------------------------------------------------------------------------- */

.hl-blog {
	padding: 80px 0;
}

.hl-blog h2 {
	text-align: center;
	margin-bottom: 40px;
}

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

.hl-blog-card {
	background: var(--hl-white);
	border-radius: var(--hl-card-radius);
	box-shadow: var(--hl-shadow);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hl-blog-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.hl-blog-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
}

.hl-blog-card-body {
	padding: 24px;
}

.hl-blog-card-date {
	font-size: 0.8rem;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 8px;
}

.hl-blog-card h4 {
	font-size: 1.1rem;
	margin-bottom: 10px;
	line-height: 1.4;
}

.hl-blog-card h4 a {
	color: var(--hl-navy);
	text-decoration: none;
	transition: color 0.2s ease;
}

.hl-blog-card h4 a:hover {
	color: var(--hl-pink);
}

.hl-blog-card p {
	font-size: 0.9rem;
	color: #666;
	margin-bottom: 16px;
}

.hl-blog-card .btn-hl-primary {
	padding: 6px 20px;
	min-height: 38px;
	font-size: 0.85rem;
}

@media (max-width: 767px) {
	.hl-blog-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.hl-blog-card img {
		height: 180px;
	}
}

/* --------------------------------------------------------------------------
   16b. Blog Extended — Shared styles for blog listing + blog post pages
   -------------------------------------------------------------------------- */

/* Type badges */
.hl-badge {
	display: inline-block;
	padding: 3px 12px;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.hl-badge--impact {
	background: rgba(233, 30, 140, 0.12);
	color: var(--hl-pink);
}

.hl-badge--news {
	background: rgba(74, 125, 204, 0.12);
	color: var(--hl-cornflower);
}

/* Blog card placeholder when no featured image */
.hl-blog-card-placeholder {
	display: block;
	width: 100%;
	height: 200px;
	background: linear-gradient(135deg, var(--hl-cornflower), var(--hl-purple));
	border-radius: var(--hl-card-radius) var(--hl-card-radius) 0 0;
}

/* Blog card meta row */
.hl-blog-card-meta {
	margin-bottom: 10px;
}

/* Blog card footer (author + date) */
.hl-blog-card-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.8rem;
	color: #999;
	margin-bottom: 14px;
	padding-top: 10px;
	border-top: 1px solid #f0f0f0;
}

.hl-blog-card-author {
	font-weight: 600;
	color: var(--hl-navy);
}

/* Blog card h3 (used on listing + related posts) */
.hl-blog-card h3 {
	font-size: 1.1rem;
	margin-bottom: 10px;
	line-height: 1.4;
}

.hl-blog-card h3 a {
	color: var(--hl-navy);
	text-decoration: none;
	transition: color 0.2s ease;
}

.hl-blog-card h3 a:hover {
	color: var(--hl-pink);
}

/* Blog filter bar */
.hl-blog-filters {
	background: var(--hl-white);
	border-bottom: 1px solid #e5e5e5;
	padding: 14px 0;
	position: sticky;
	top: 60px;
	z-index: 1040;
}

.hl-blog-filter-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 8px;
	justify-content: center;
}

.hl-blog-filter-link {
	display: inline-block;
	padding: 8px 22px;
	border-radius: var(--hl-radius);
	font-weight: 600;
	font-size: 0.9rem;
	text-decoration: none;
	color: var(--hl-charcoal);
	background: var(--hl-gray);
	transition: background-color 0.2s ease, color 0.2s ease;
}

.hl-blog-filter-link:hover {
	background: var(--hl-cornflower);
	color: var(--hl-white);
}

.hl-blog-filter-link.is-active {
	background: var(--hl-navy);
	color: var(--hl-white);
}

@media (max-width: 767px) {
	.hl-blog-filter-link {
		padding: 6px 16px;
		font-size: 0.85rem;
	}
}

/* --------------------------------------------------------------------------
   16c. Blog Post — Article page styles
   -------------------------------------------------------------------------- */

/* Breadcrumb */
.hl-breadcrumb {
	background: var(--hl-gray);
	padding: 12px 0;
}

.hl-breadcrumb ol {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	font-size: 0.85rem;
}

.hl-breadcrumb li + li::before {
	content: ">";
	margin-right: 6px;
	color: #999;
}

.hl-breadcrumb a {
	color: var(--hl-cornflower);
	text-decoration: none;
}

.hl-breadcrumb a:hover {
	text-decoration: underline;
}

.hl-breadcrumb [aria-current] {
	color: var(--hl-charcoal);
	font-weight: 500;
}

/* Article hero */
.hl-article-hero {
	background: linear-gradient(160deg, var(--hl-navy) 0%, #263d6b 100%);
	padding: 60px 0 50px;
	text-align: center;
	color: var(--hl-white);
}

.hl-article-hero h1 {
	color: var(--hl-white);
	font-size: 2.5rem;
	font-weight: 800;
	margin: 16px 0 14px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.hl-article-hero .hl-badge {
	font-size: 0.8rem;
}

.hl-article-meta {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
}

.hl-article-meta strong {
	color: var(--hl-white);
}

.hl-article-meta-sep {
	margin: 0 8px;
}

/* Share bar */
.hl-share-bar {
	background: var(--hl-gray);
	padding: 12px 0;
	border-bottom: 1px solid #e5e5e5;
}

.hl-share-bar .container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.hl-share-label {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--hl-charcoal);
}

.hl-share-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid #ddd;
	background: var(--hl-white);
	color: var(--hl-charcoal);
	text-decoration: none;
	cursor: pointer;
	position: relative;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hl-share-btn:hover {
	background: var(--hl-navy);
	color: var(--hl-white);
	border-color: var(--hl-navy);
}

.hl-share-copied {
	display: none;
	position: absolute;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--hl-navy);
	color: var(--hl-white);
	font-size: 0.7rem;
	padding: 3px 8px;
	border-radius: 4px;
	white-space: nowrap;
}

.hl-share-btn.is-copied .hl-share-copied {
	display: block;
}

/* Article body */
.hl-article {
	max-width: 800px;
	margin: 0 auto;
}

.hl-article-featured {
	margin: 0 0 32px;
}

.hl-article-featured img {
	width: 100%;
	border-radius: var(--hl-card-radius);
	display: block;
}

.hl-article-content {
	font-size: 1.05rem;
	line-height: 1.75;
	color: var(--hl-charcoal);
}

.hl-article-content h2 {
	font-size: 1.5rem;
	margin-top: 36px;
	margin-bottom: 16px;
}

.hl-article-content h3 {
	font-size: 1.25rem;
	margin-top: 28px;
	margin-bottom: 12px;
}

.hl-article-content p {
	margin-bottom: 18px;
}

.hl-article-content img {
	max-width: 100%;
	height: auto;
	border-radius: var(--hl-card-radius);
	margin: 20px 0;
}

.hl-article-content blockquote {
	border-left: 4px solid var(--hl-cornflower);
	margin: 24px 0;
	padding: 16px 24px;
	background: var(--hl-gray);
	border-radius: 0 var(--hl-card-radius) var(--hl-card-radius) 0;
	font-style: italic;
	color: #555;
}

.hl-article-content a {
	color: var(--hl-cornflower);
	text-decoration: underline;
}

.hl-article-content a:hover {
	color: var(--hl-pink);
}

.hl-article-content ul,
.hl-article-content ol {
	margin: 0 0 18px 0;
	padding-left: 1.5em;
}

.hl-article-content li {
	margin-bottom: 6px;
}

.hl-article-content li > ul,
.hl-article-content li > ol {
	margin-top: 6px;
	margin-bottom: 0;
}

.hl-article-content pre {
	background: #1e1e2e;
	color: #cdd6f4;
	padding: 16px 20px;
	border-radius: var(--hl-card-radius);
	overflow-x: auto;
	margin: 24px 0;
	font-size: 0.9rem;
	line-height: 1.6;
}

.hl-article-content .ql-align-center {
	text-align: center;
}

.hl-article-content .ql-align-right {
	text-align: right;
}

.hl-article-content .ql-align-justify {
	text-align: justify;
}

.hl-article-content .ql-indent-1 { padding-left: 3em; }
.hl-article-content .ql-indent-2 { padding-left: 6em; }
.hl-article-content .ql-indent-3 { padding-left: 9em; }

.hl-article-content h1 {
	font-size: 2rem;
	margin-top: 40px;
	margin-bottom: 18px;
}

.hl-article-content strong {
	font-weight: 700;
}

/* Impact Story callout */
.hl-impact-callout {
	margin-top: 48px;
	padding: 32px;
	background: linear-gradient(135deg, rgba(233, 30, 140, 0.04), rgba(74, 125, 204, 0.06));
	border: 1px solid rgba(233, 30, 140, 0.15);
	border-radius: var(--hl-card-radius);
}

.hl-impact-callout-header {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	font-size: 1.1rem;
	color: var(--hl-pink);
	margin-bottom: 12px;
}

.hl-impact-callout-header svg {
	color: var(--hl-pink);
	flex-shrink: 0;
}

.hl-impact-callout > p {
	color: #666;
	margin-bottom: 16px;
}

.hl-impact-callout-details {
	margin-bottom: 16px;
}

.hl-impact-callout-details p {
	margin-bottom: 4px;
}

.hl-impact-location {
	font-size: 0.9rem;
	color: #888;
}

.hl-impact-quote {
	border-left: 4px solid var(--hl-pink);
	margin: 20px 0;
	padding: 14px 20px;
	background: rgba(255, 255, 255, 0.7);
	border-radius: 0 var(--hl-card-radius) var(--hl-card-radius) 0;
	font-style: italic;
	color: #555;
	font-size: 1.05rem;
}

.hl-impact-photo {
	margin: 20px 0;
}

.hl-impact-photo img {
	max-width: 100%;
	height: auto;
	border-radius: var(--hl-card-radius);
	display: block;
}

.hl-impact-callout-cta {
	margin-top: 20px;
	text-align: center;
}

@media (max-width: 767px) {
	.hl-article-hero h1 {
		font-size: 1.75rem;
	}
	.hl-article-hero {
		padding: 40px 0 35px;
	}
	.hl-impact-callout {
		padding: 20px;
	}
}

/* --------------------------------------------------------------------------
   17. Animation System
   -------------------------------------------------------------------------- */

/* Scroll-triggered fade in + slide up */
.mockup-item {
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.is-visible .mockup-item,
.is-visible.mockup-item {
	opacity: 1;
	transform: translateY(0);
}

/* Staggered delay helpers */
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }
.delay-5 { transition-delay: 1.0s; }
.delay-6 { transition-delay: 1.2s; }
.delay-7 { transition-delay: 1.4s; }
.delay-8 { transition-delay: 1.6s; }
.delay-9 { transition-delay: 1.8s; }

/* Generic fade-in */
.fade-in {
	opacity: 0;
	transition: opacity 0.6s ease;
}

.is-visible .fade-in,
.is-visible.fade-in {
	opacity: 1;
}

/* Counter number animation */
.hl-stat-number[data-count] {
	transition: none;
}

/* --------------------------------------------------------------------------
   18. Mockup Components
   -------------------------------------------------------------------------- */

.mockup-card {
	background: var(--hl-white);
	border-radius: var(--hl-card-radius);
	box-shadow: var(--hl-shadow);
	padding: 24px;
	overflow: hidden;
}

.mockup-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--hl-gray);
}

.mockup-card-header h5 {
	margin: 0;
	font-size: 0.95rem;
	color: var(--hl-navy);
}

/* Badge */
.mockup-badge {
	display: inline-flex;
	align-items: center;
	padding: 3px 10px;
	border-radius: 12px;
	font-size: 0.75rem;
	font-weight: 600;
}

.mockup-badge--green {
	background-color: rgba(76, 175, 80, 0.12);
	color: var(--hl-green);
}

.mockup-badge--blue {
	background-color: rgba(74, 125, 204, 0.12);
	color: var(--hl-cornflower);
}

.mockup-badge--pink {
	background-color: rgba(233, 30, 140, 0.12);
	color: var(--hl-pink);
}

.mockup-badge--orange {
	background-color: rgba(255, 167, 38, 0.12);
	color: var(--hl-orange);
}

/* Stat row */
.mockup-stat-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid var(--hl-gray);
}

.mockup-stat-row:last-child {
	border-bottom: none;
}

.mockup-stat-label {
	font-size: 0.85rem;
	color: #888;
}

.mockup-stat-value {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--hl-navy);
}

/* File row */
.mockup-file-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid var(--hl-gray);
}

.mockup-file-row:last-child {
	border-bottom: none;
}

.mockup-file-icon {
	width: 32px;
	height: 32px;
	border-radius: 6px;
	background-color: var(--hl-gray);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--hl-cornflower);
}

.mockup-file-name {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--hl-charcoal);
}

.mockup-file-meta {
	font-size: 0.78rem;
	color: #999;
}

/* Progress bar */
.mockup-progress {
	height: 8px;
	background-color: var(--hl-gray);
	border-radius: 4px;
	overflow: hidden;
	margin: 8px 0;
}

.mockup-progress-fill {
	height: 100%;
	border-radius: 4px;
	transition: width 1s ease;
}

.mockup-progress-fill--green  { background-color: var(--hl-green); }
.mockup-progress-fill--blue   { background-color: var(--hl-cornflower); }
.mockup-progress-fill--pink   { background-color: var(--hl-pink); }
.mockup-progress-fill--orange { background-color: var(--hl-orange); }

/* Mockup form fields (inline) */
.mockup-form-field {
	background-color: var(--hl-gray);
	border: 1px solid #ddd;
	border-radius: 6px;
	padding: 6px 10px;
	font-size: 0.75rem;
	color: var(--hl-charcoal);
	margin-bottom: 6px;
}

/* Mockup button */
.mockup-btn {
	background-color: var(--hl-pink);
	color: var(--hl-white);
	border-radius: var(--hl-radius);
	padding: 6px 14px;
	font-size: 0.7rem;
	font-weight: 600;
	text-align: center;
	margin-top: 8px;
}

/* Mockup avatar circles */
.mockup-avatar {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background-color: var(--hl-cornflower);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.6rem;
	font-weight: 700;
	color: var(--hl-white);
}

/* Mockup stat number */
.mockup-stat-number {
	font-size: 1.1rem;
	font-weight: 800;
	color: var(--hl-navy);
}

/* Form fields */
.mockup-field {
	margin-bottom: 14px;
}

.mockup-field-label {
	display: block;
	font-size: 0.78rem;
	font-weight: 600;
	color: #888;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 6px;
}

.mockup-field-input {
	width: 100%;
	height: 36px;
	border: 1px solid #ddd;
	border-radius: 6px;
	background-color: var(--hl-gray);
}

.mockup-field-textarea {
	width: 100%;
	height: 64px;
	border: 1px solid #ddd;
	border-radius: 6px;
	background-color: var(--hl-gray);
}

/* Chart placeholder */
.mockup-chart {
	display: flex;
	align-items: flex-end;
	gap: 6px;
	height: 80px;
	padding-top: 8px;
}

.mockup-chart-bar {
	flex: 1;
	border-radius: 3px 3px 0 0;
	min-height: 8px;
	transition: height 0.8s ease;
}

.mockup-chart-bar--green  { background-color: var(--hl-green); }
.mockup-chart-bar--blue   { background-color: var(--hl-cornflower); }
.mockup-chart-bar--pink   { background-color: var(--hl-pink); }
.mockup-chart-bar--orange { background-color: var(--hl-orange); }
.mockup-chart-bar--navy   { background-color: var(--hl-navy); }

/* --------------------------------------------------------------------------
   19. CTA Section
   -------------------------------------------------------------------------- */

.hl-cta {
	background-color: var(--hl-navy);
	padding: 80px 0;
	color: var(--hl-white);
}

.hl-cta h2 {
	color: var(--hl-white);
	margin-bottom: 16px;
}

.hl-cta p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.15rem;
	margin-bottom: 30px;
}

@media (max-width: 767px) {
	.hl-cta { padding: 50px 0; }
}

.hl-cta--gray {
	background-color: var(--hl-gray);
	color: var(--hl-charcoal);
}

.hl-cta--gray h2 {
	color: var(--hl-navy);
}

.hl-cta--gray p {
	color: #555;
}

/* --------------------------------------------------------------------------
   20. Blockquote
   -------------------------------------------------------------------------- */

.hl-blockquote {
	border-left: 4px solid var(--hl-cornflower);
	padding-left: 20px;
	margin: 20px 0;
	font-style: italic;
	color: #555;
}

/* --------------------------------------------------------------------------
   21. Stat Bubbles
   -------------------------------------------------------------------------- */

.hl-stat-bubble {
	text-align: center;
	padding: 20px;
}

.hl-stat-bubble-number {
	font-size: 3rem;
	font-weight: 800;
	color: var(--hl-white);
	line-height: 1.1;
	margin-bottom: 10px;
}

.hl-stat-bubble p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.95rem;
	margin-bottom: 8px;
}

/* --------------------------------------------------------------------------
   22. Vertical Steps
   -------------------------------------------------------------------------- */

.hl-steps-grid--vertical {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.hl-step-row {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.hl-step-content h4 {
	font-size: 1.1rem;
	margin-bottom: 6px;
}

.hl-step-content p {
	font-size: 0.95rem;
	color: #666;
	margin: 0;
}

/* --------------------------------------------------------------------------
   23. Path Cards
   -------------------------------------------------------------------------- */

.hl-path-card {
	background: var(--hl-white);
	border-radius: var(--hl-card-radius);
	box-shadow: var(--hl-shadow);
	padding: 36px 28px;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.hl-path-card .hl-path-card-cta {
	margin-top: auto;
	padding-top: 24px;
}

.hl-path-card h2,
.hl-path-card h3 {
	margin-bottom: 12px;
}

.hl-path-card > p {
	color: #666;
	margin-bottom: 24px;
}

/* --------------------------------------------------------------------------
   24. Steps List (vertical, inline)
   -------------------------------------------------------------------------- */

.hl-steps-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.hl-steps-list-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.hl-steps-list-item h4 {
	font-size: 1rem;
	margin-bottom: 4px;
}

.hl-steps-list-item p {
	font-size: 0.9rem;
	color: #666;
	margin: 0;
}

/* --------------------------------------------------------------------------
   25. Benefit List
   -------------------------------------------------------------------------- */

.hl-benefit-list {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: left;
}

.hl-benefit-list li {
	padding: 8px 0;
	padding-left: 24px;
	position: relative;
	font-size: 0.95rem;
	color: #555;
}

.hl-benefit-list li::before {
	content: '\2713';
	position: absolute;
	left: 0;
	color: var(--hl-green);
	font-weight: 700;
}

/* --------------------------------------------------------------------------
   26. Program Cards
   -------------------------------------------------------------------------- */

.hl-program-card {
	background: var(--hl-white);
	border-radius: var(--hl-card-radius);
	box-shadow: var(--hl-shadow);
	padding: 24px 16px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hl-program-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.hl-program-logo {
	width: 140px;
	height: 80px;
	margin: 0 auto 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hl-program-logo img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.hl-program-logo-placeholder {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: var(--hl-gray);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	font-weight: 700;
	color: var(--hl-cornflower);
}

.hl-program-card h4 {
	font-size: 0.95rem;
	margin: 0 0 10px;
}

.hl-program-desc {
	font-size: 0.85rem;
	color: #666;
	margin-bottom: 14px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.hl-program-card .btn-hl-donate {
	margin-top: auto;
	padding: 6px 20px;
	min-height: 36px;
	font-size: 0.85rem;
}

/* Programs carousel track */
.hl-programs-track {
	display: flex;
	gap: 24px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-ms-overflow-style: none;
	scrollbar-width: none;
	padding-bottom: 4px;
}

.hl-programs-track::-webkit-scrollbar {
	display: none;
}

.hl-programs-track .hl-program-card {
	flex: 0 0 calc(25% - 18px);
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
	align-items: center;
}

@media (max-width: 1023px) {
	.hl-programs-track .hl-program-card {
		flex: 0 0 calc(33.333% - 16px);
	}
}

@media (max-width: 767px) {
	.hl-programs-track .hl-program-card {
		flex: 0 0 calc(50% - 12px);
	}
}

/* --------------------------------------------------------------------------
   27. FAQ Accordion
   -------------------------------------------------------------------------- */

.hl-faq-item {
	border: 1px solid #e5e5e5;
	border-radius: var(--hl-card-radius);
	margin-bottom: 12px;
	overflow: hidden;
}

.hl-faq-item summary {
	padding: 18px 24px;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.hl-faq-item summary::-webkit-details-marker {
	display: none;
}

.hl-faq-item summary::after {
	content: '+';
	font-size: 1.25rem;
	color: var(--hl-cornflower);
	font-weight: 700;
	flex-shrink: 0;
	margin-left: 16px;
}

.hl-faq-item[open] summary::after {
	content: '\2212';
}

.hl-faq-item p {
	padding: 0 24px 18px;
	margin: 0;
	color: #555;
	font-size: 0.95rem;
	line-height: 1.7;
}

.hl-faq-item a {
	color: var(--hl-cornflower);
}

/* --------------------------------------------------------------------------
   28. Story & Feature List
   -------------------------------------------------------------------------- */

.hl-story-text p {
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 20px;
}

.hl-feature-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.hl-feature-list li {
	padding: 10px 0 10px 28px;
	position: relative;
	font-size: 0.95rem;
	border-bottom: 1px solid var(--hl-gray);
}

.hl-feature-list li:last-child {
	border-bottom: none;
}

.hl-feature-list li::before {
	content: '\2713';
	position: absolute;
	left: 0;
	color: var(--hl-green);
	font-weight: 700;
}

/* --------------------------------------------------------------------------
   29. Award Cards
   -------------------------------------------------------------------------- */

.hl-award-card {
	display: block;
	background: var(--hl-white);
	border-radius: var(--hl-card-radius);
	box-shadow: var(--hl-shadow);
	padding: 24px;
	text-align: center;
	text-decoration: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
}

.hl-award-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
	text-decoration: none;
}

.hl-award-card img {
	max-width: 100%;
	height: 160px;
	object-fit: contain;
	margin-bottom: 16px;
}

.hl-award-card h4 {
	font-size: 1rem;
	margin: 0;
}

/* --------------------------------------------------------------------------
   29b. Video Embed Cards
   -------------------------------------------------------------------------- */

.hl-video-card {
	background: var(--hl-white);
	border-radius: var(--hl-card-radius);
	overflow: hidden;
	box-shadow: var(--hl-shadow);
	height: 100%;
}

.hl-video-embed {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}

.hl-video-embed iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.hl-video-card p {
	padding: 16px 20px;
	font-size: 0.9rem;
	color: #555;
	margin: 0;
}

/* --------------------------------------------------------------------------
   29c. Team Cards
   -------------------------------------------------------------------------- */

.hl-team-card {
	background: var(--hl-white);
	border-radius: var(--hl-card-radius);
	box-shadow: var(--hl-shadow);
	overflow: hidden;
	height: 100%;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hl-team-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.hl-team-card > img {
	width: 100%;
	height: 280px;
	object-fit: cover;
	object-position: center 20%;
	display: block;
}

.hl-team-placeholder {
	width: 100%;
	height: 280px;
	background: linear-gradient(135deg, var(--hl-cornflower), var(--hl-purple));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	font-weight: 700;
	color: var(--hl-white);
}

.hl-team-info {
	padding: 20px 24px;
}

.hl-team-role {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--hl-cornflower);
	margin-bottom: 4px;
}

.hl-team-card h4 {
	font-size: 1.15rem;
	margin-bottom: 4px;
}

.hl-team-title {
	font-size: 0.9rem;
	color: #666;
	margin-bottom: 12px;
}

.hl-team-quote {
	font-size: 0.9rem;
	font-style: italic;
	color: #999;
	margin: 0;
}

/* --------------------------------------------------------------------------
   30. Responsive Refinements
   -------------------------------------------------------------------------- */

@media (min-width: 768px) and (max-width: 1023px) {
	.hl-different-grid,
	.hl-blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.hl-steps-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	/* Ensure touch targets are accessible */
	.hl-header-nav a,
	.hl-mobile-menu a {
		min-height: 44px;
		display: inline-flex;
		align-items: center;
	}
}

/* --------------------------------------------------------------------------
   30. Section Dividers (inline SVG between sections)
   -------------------------------------------------------------------------- */

.hl-divider {
	margin: 0 0 -1px;
	padding: 0;
	line-height: 0;
	font-size: 0;
	overflow: hidden;
}

.hl-divider svg {
	display: block;
	width: 100%;
	height: 60px;
}

@media (max-width: 767px) {
	.hl-divider svg {
		height: 35px;
	}
}

/* Mobile: hide video, show gradient fallback */
@media (max-width: 767px) {
	.hl-hero-video {
		display: none;
	}
}

/* Reduced motion: disable animations for motion-sensitive users */
@media (prefers-reduced-motion: reduce) {
	.hl-hero-video {
		display: none;
	}
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* Print: hide non-essential sections */
@media print {
	.hl-header,
	.hl-mobile-menu,
	.hl-skip-link,
	.hl-partners,
	.hl-needs-arrow,
	.hl-hero-video,
	.hl-hero-overlay,
	.hl-video-facade,
	.hl-video-frame,
	.hl-cta,
	.hl-share-bar,
	.hl-footer-signup,
	.hl-footer-badges,
	.btn-hl-primary,
	.btn-hl-secondary,
	.btn-hl-outline,
	.btn-hl-donate {
		display: none !important;
	}
	body.hl-has-header {
		padding-top: 0;
	}
}

/* --------------------------------------------------------------------------
   31. Value Prop Circles (Businesses Hero)
   -------------------------------------------------------------------------- */

.hl-value-props {
	display: flex;
	justify-content: center;
	gap: 48px;
	flex-wrap: wrap;
	margin-top: 50px;
}

.hl-value-prop {
	text-align: center;
}

.hl-value-prop-circle {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: var(--hl-white);
	border: 3px solid var(--hl-cornflower);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hl-value-prop:nth-child(1) .hl-value-prop-circle { border-color: var(--hl-pink); }
.hl-value-prop:nth-child(2) .hl-value-prop-circle { border-color: var(--hl-orange); }
.hl-value-prop:nth-child(3) .hl-value-prop-circle { border-color: var(--hl-cornflower); }
.hl-value-prop:nth-child(4) .hl-value-prop-circle { border-color: var(--hl-purple); }

.hl-value-prop-circle:hover {
	transform: translateY(-4px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.hl-value-prop-circle img {
	max-width: 80px;
	max-height: 80px;
	object-fit: contain;
}

.hl-hero--businesses h1,
.hl-hero--nonprofits h1,
.hl-hero--programs h1 {
	font-size: 2.5rem;
}

.hl-value-prop h4 {
	color: var(--hl-white);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.3;
}

@media (max-width: 767px) {
	.hl-value-props {
		gap: 20px;
	}
	.hl-value-prop {
		flex: 0 0 calc(50% - 10px);
	}
	.hl-value-prop-circle {
		width: 90px;
		height: 90px;
	}
	.hl-value-prop-circle img {
		max-width: 60px;
		max-height: 60px;
	}
	.hl-hero--businesses h1,
	.hl-hero--nonprofits h1,
	.hl-hero--programs h1 {
		font-size: 1.75rem;
	}
}

/* --------------------------------------------------------------------------
   32. Learn More / Video Section
   -------------------------------------------------------------------------- */

.hl-learn-more {
	background: linear-gradient(135deg, var(--hl-pink-audience), var(--hl-purple), var(--hl-cornflower));
	padding: 80px 0;
	color: var(--hl-white);
}

.hl-learn-more h2 {
	color: var(--hl-white);
	margin-bottom: 16px;
}

.hl-video-frame {
	background: rgba(0, 0, 0, 0.3);
	border-radius: var(--hl-card-radius);
	aspect-ratio: 16 / 9;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 720px;
	margin: 0 auto 30px;
	overflow: hidden;
}

.hl-video-frame iframe,
.hl-video-frame video {
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: var(--hl-card-radius);
}

@media (max-width: 767px) {
	.hl-learn-more {
		padding: 50px 0;
	}
}

/* --------------------------------------------------------------------------
   33. Stat Circles (Did You Know?)
   -------------------------------------------------------------------------- */

.hl-stat-circles-row {
	max-width: 900px;
	margin: 0 auto;
}

.hl-stat-circle {
	width: 180px;
	height: 180px;
	border-radius: 50%;
	border: 3px solid var(--hl-cornflower);
	background: var(--hl-white);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin: 0 auto 12px;
	padding: 15px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.hl-stat-circle-number {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--hl-navy);
	line-height: 1;
	margin-bottom: 6px;
}

.hl-stat-circle p {
	font-size: 0.75rem;
	color: var(--hl-charcoal);
	margin: 0;
	line-height: 1.3;
}

@media (max-width: 767px) {
	.hl-stat-circle {
		width: 140px;
		height: 140px;
		padding: 10px;
	}
	.hl-stat-circle-number {
		font-size: 2rem;
	}
	.hl-stat-circle p {
		font-size: 0.65rem;
	}
}

@media (max-width: 374px) {
	.hl-stat-circle {
		width: 160px;
		height: 160px;
		padding: 12px;
	}
	.hl-stat-circle-number {
		font-size: 2.25rem;
	}
	.hl-stat-circle p {
		font-size: 0.7rem;
	}
}

/* --------------------------------------------------------------------------
   34. YouTube Video Facade
   -------------------------------------------------------------------------- */

.hl-video-facade {
	position: relative;
	aspect-ratio: 16 / 9;
	border-radius: var(--hl-card-radius);
	overflow: hidden;
	cursor: pointer;
	background: #000;
}

.hl-video-facade img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: opacity 0.2s ease;
}

.hl-video-facade:hover img {
	opacity: 0.85;
}

.hl-video-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 64px;
	height: 64px;
	border-radius: 50%;
	border: none;
	background: rgba(0, 0, 0, 0.7);
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.hl-video-play::after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	margin-left: 4px;
	border-style: solid;
	border-width: 12px 0 12px 22px;
	border-color: transparent transparent transparent #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) translateX(2px);
}

.hl-video-facade:hover .hl-video-play {
	background: rgba(249, 27, 140, 0.9);
	transform: translate(-50%, -50%) scale(1.1);
}

.hl-video-facade iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: none;
}
