/* ================================================
   Helium Digital — Unique Agency Design
   Tech-forward aesthetic with data viz DNA
   ================================================ */

/* --- Base --- */
html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Ensure alignfull blocks span the full viewport with no gaps */
.alignfull {
	width: 100% !important;
	max-width: none !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

/* Kill WP block gap between all top-level page sections */
.entry-content > *,
.wp-site-blocks > *,
.is-layout-flow > .alignfull {
	margin-block-start: 0 !important;
	margin-block-end: 0 !important;
}

/* No gap between header and hero */
.helium-header {
	margin-bottom: 0 !important;
}

/* No gap between last section and footer */
.helium-footer {
	margin-top: 0 !important;
}

/* Kill all block gap at page level */
.wp-site-blocks {
	gap: 0 !important;
}

.wp-site-blocks > * + * {
	margin-block-start: 0 !important;
}

/*
 * Inside alignfull sections that use constrained layout,
 * the FIRST level children should respect the section's contentSize.
 * But columns, flex containers, and custom grids inside should fill
 * their parent width, not get re-constrained.
 */
/*
 * Cover blocks need their inner container full-width so the constrained
 * group INSIDE can handle the 1200px centering. Everything else should
 * rely on WP's generated contentSize rules for consistent alignment.
 */
.wp-block-cover__inner-container {
	max-width: none !important;
	width: 100% !important;
}

/*
 * WP Layout System Override
 * WordPress 6.x adds is-layout-flow / is-layout-constrained classes
 * that constrain children. Override for our custom layout containers.
 */
.helium-diff-grid > *,
.helium-case-scroll-track > *,
.helium-marquee-track > *,
.helium-case-scroll > *,
.helium-case-scroll-wrap > *,
.helium-quote-container > * {
	max-width: none !important;
	margin-inline: 0 !important;
	margin-block-start: 0 !important;
}



:root {
	--h-blue: #007FFB;
	--h-blue-dark: #0055CC;
	--h-orange: #EA8000;
	--h-dark: #001A3F;
	--h-dark-bg: #0A0F1E;
	--h-surface: #F5F7FA;
	--h-muted: #6B7280;
	--h-border: #E5E7EB;
	--h-glow-blue: rgba(0, 127, 251, 0.25);
	--h-glow-orange: rgba(234, 128, 0, 0.2);
	--h-mono: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
	--h-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
	--h-radius: 16px;
}


/* ================================================
   HEADER — Pure CSS, no WP block dependencies
   ================================================ */
.helium-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	transition: box-shadow 0.3s var(--h-ease), background 0.3s var(--h-ease);
}

.helium-header.is-scrolled {
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
	background: rgba(255, 255, 255, 0.97);
}

.helium-header-inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0.85rem 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

/* Logo */
.helium-logo {
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

.helium-logo img {
	height: 36px;
	width: auto;
	display: block;
}

/* Navigation */
.helium-nav-bar {
	display: flex;
	align-items: center;
	gap: 2.25rem;
}

.helium-nav-bar a {
	color: var(--h-dark);
	text-decoration: none;
	font-size: 0.925rem;
	font-weight: 500;
	position: relative;
	padding: 0.4rem 0;
	transition: color 0.3s;
}

.helium-nav-bar a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--h-blue);
	transition: width 0.3s, left 0.3s;
	border-radius: 2px;
}

.helium-nav-bar a:hover {
	color: var(--h-blue);
}

.helium-nav-bar a:hover::after {
	width: 100%;
	left: 0;
}

/* Right side — phone + CTA */
.helium-header-right {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	flex-shrink: 0;
}

.helium-header-phone {
	color: var(--h-dark);
	text-decoration: none;
	font-size: 0.925rem;
	font-weight: 600;
	transition: color 0.3s;
}

.helium-header-phone:hover {
	color: var(--h-blue);
}

.helium-header-btn {
	display: inline-flex;
	align-items: center;
	padding: 0.65rem 1.5rem;
	background: var(--h-blue);
	color: #fff !important;
	font-size: 0.875rem;
	font-weight: 600;
	border-radius: 100px;
	text-decoration: none;
	transition: all 0.3s var(--h-ease);
	box-shadow: 0 2px 12px var(--h-glow-blue);
	white-space: nowrap;
}

.helium-header-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 24px var(--h-glow-blue);
	background: var(--h-blue-dark);
}

/* Mobile toggle */
.helium-mobile-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 8px;
	background: none;
	border: none;
	cursor: pointer;
}

.helium-mobile-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--h-dark);
	border-radius: 2px;
	transition: all 0.3s;
}

@media (max-width: 900px) {
	.helium-nav-bar,
	.helium-header-right {
		display: none;
	}

	.helium-mobile-toggle {
		display: flex;
	}

	.helium-header-inner {
		padding: 0.75rem 1.25rem;
	}
}


/* ================================================
   BUTTONS — Pill + glow
   ================================================ */
.wp-block-button__link {
	border-radius: 100px !important;
	font-weight: 600;
	letter-spacing: 0.01em;
	transition: all 0.3s var(--h-ease);
}

.has-primary-background-color.wp-block-button__link {
	box-shadow: 0 4px 20px var(--h-glow-blue);
}

.has-primary-background-color.wp-block-button__link:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 35px var(--h-glow-blue);
}

.has-secondary-background-color.wp-block-button__link {
	box-shadow: 0 4px 20px var(--h-glow-orange);
}

.has-secondary-background-color.wp-block-button__link:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 35px var(--h-glow-orange);
}

.wp-block-button.is-style-outline .wp-block-button__link {
	border-width: 2px;
	border-style: solid;
	background: transparent !important;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
	background: rgba(255, 255, 255, 0.08) !important;
	transform: translateY(-2px);
}


/* ================================================
   HERO — Command Center Split
   ================================================ */
.helium-hero-v2 {
	position: relative;
	overflow: hidden;
}

/* Gradient mesh orbs */
.helium-hero-v2::before,
.helium-hero-v2::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	filter: blur(80px);
}

.helium-hero-v2::before {
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(0, 127, 251, 0.12) 0%, transparent 70%);
	top: -10%;
	right: 5%;
	animation: drift 18s ease-in-out infinite alternate;
}

.helium-hero-v2::after {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(234, 128, 0, 0.08) 0%, transparent 70%);
	bottom: -15%;
	left: 5%;
	animation: drift 18s ease-in-out infinite alternate-reverse;
}

@keyframes drift {
	0% { transform: translate(0, 0); }
	100% { transform: translate(60px, -30px); }
}

/* Monospace status line with blinking cursor */
.helium-status-line {
	font-family: var(--h-mono) !important;
	font-size: 0.8rem !important;
	letter-spacing: 0.05em;
	opacity: 0.6;
}

.helium-status-line::after {
	content: '|';
	margin-left: 2px;
	animation: blink 1s step-end infinite;
	color: var(--h-blue);
}

@keyframes blink {
	50% { opacity: 0; }
}

/* (3D dashboard and float chips removed — no longer in use) */


/* ================================================
   MARQUEE TICKER — Dual-direction scroll
   ================================================ */
.helium-marquee-section {
	overflow: hidden;
	border-top: 1px solid rgba(0, 127, 251, 0.1);
	border-bottom: 1px solid rgba(0, 127, 251, 0.1);
}

.helium-marquee-track {
	display: flex !important;
	width: max-content !important;
	max-width: none !important;
	animation: marquee-scroll 40s linear infinite;
	gap: 0;
}

.helium-marquee-track > * {
	max-width: none !important;
	margin: 0 !important;
}

.helium-marquee-track--reverse {
	animation-direction: reverse;
	animation-duration: 35s;
}

.helium-marquee-track:hover {
	animation-play-state: paused;
}

@keyframes marquee-scroll {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

.helium-marquee-track p {
	white-space: nowrap;
	font-size: clamp(0.9rem, 1.5vw, 1.2rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.25);
	padding: 0 0.5rem;
}

.helium-marquee-track p mark {
	background: transparent;
	color: var(--h-blue);
}

.helium-marquee-track--reverse p mark {
	color: var(--h-orange);
}

.helium-marquee-track .helium-marquee-sep {
	color: rgba(255, 255, 255, 0.1) !important;
	padding: 0 1rem;
}


/* --- Awards / Trust Bar --- */
.helium-awards-section {
	border-bottom: 1px solid #eee;
}

.helium-awards-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2.5rem;
	text-align: center;
}

.helium-award-item {
	padding: 2rem 1.5rem;
	border-radius: 16px;
	background: #f8f9fa;
	border: 1px solid #eee;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.helium-award-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.helium-award-icon {
	margin-bottom: 1rem;
}

.helium-award-icon svg {
	display: inline-block;
}

.helium-award-stat {
	font-size: 1.5rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #0a1628;
	margin: 0 0 0.1rem;
	line-height: 1.2;
}

.helium-award-label {
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #007FFB;
	margin: 0 0 0.75rem;
}

.helium-award-desc {
	font-size: 0.85rem;
	line-height: 1.55;
	color: #6B7280;
	margin: 0;
}


/* ================================================
   SERVICES — Bento Grid
   ================================================ */
/* Bento grid — clean HTML, matches parent's 1200px content width */
.helium-bento-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
}

.helium-bento-item {
	background: #fff;
	border: 1px solid var(--h-border);
	border-radius: var(--h-radius);
	padding: 2rem;
	transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
	position: relative;
	overflow: hidden;
}

.helium-bento-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--h-blue), var(--h-orange));
	opacity: 0;
	transition: opacity 0.3s;
}

.helium-bento-item:hover {
	border-color: rgba(0, 127, 251, 0.2);
	box-shadow: 0 16px 48px rgba(0, 127, 251, 0.08);
	transform: translateY(-3px);
}

.helium-bento-item:hover::before {
	opacity: 1;
}

/* Hero card — spans 2 cols, 2 rows */
.helium-bento-hero {
	grid-column: 1 / 3;
	grid-row: 1 / 3;
	background: linear-gradient(135deg, rgba(0, 127, 251, 0.03) 0%, rgba(234, 128, 0, 0.02) 100%);
	padding: 2.5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.helium-bento-hero h3 {
	font-size: 1.75rem;
}

/* Bento card text styles */
.helium-bento-item h3 {
	font-family: var(--wp--preset--font-family--display, 'Outfit', sans-serif);
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--h-dark);
	margin: 0.5rem 0 0.35rem;
}

.helium-svc-desc {
	color: var(--h-muted);
	font-size: 0.875rem;
	line-height: 1.55;
	margin: 0;
}

.helium-svc-label {
	color: var(--h-muted);
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 500;
	margin: 0;
}

/* Service icon */
.helium-svc-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: rgba(0, 127, 251, 0.06);
	margin-bottom: 0.75rem;
	transition: background 0.3s;
}

.helium-bento-item:hover .helium-svc-icon {
	background: rgba(0, 127, 251, 0.12);
}

/* Arrow link */
.helium-arrow-link {
	color: var(--h-blue) !important;
	font-weight: 600;
	font-size: 0.85rem;
	text-decoration: none !important;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	transition: gap 0.3s;
}

.helium-bento-item:hover .helium-arrow-link {
	gap: 0.7rem;
}

@media (max-width: 1024px) {
	.helium-bento-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.helium-bento-hero {
		grid-column: 1 / -1;
		grid-row: auto;
	}
}

@media (max-width: 600px) {
	.helium-bento-grid {
		grid-template-columns: 1fr;
	}
	.helium-bento-hero {
		grid-column: 1;
	}
}


/* ================================================
   CASE STUDIES — Featured + Horizontal Scroll
   ================================================ */

/* Featured case study metric */
.helium-big-metric {
	font-family: var(--wp--preset--font-family--display, 'Outfit', sans-serif) !important;
	font-weight: 800 !important;
	letter-spacing: -0.03em;
	background: linear-gradient(135deg, var(--h-blue), var(--h-orange));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.1;
}

/* Horizontal scroll track */
.helium-case-scroll {
	overflow-x: auto !important;
	overflow-y: hidden !important;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	margin-right: -2rem;
	padding-right: 4rem;
	padding-bottom: 1rem;
}

.helium-case-scroll > * {
	max-width: none !important;
	margin: 0 !important;
}

.helium-case-scroll::-webkit-scrollbar {
	display: none;
}

.helium-case-scroll-track {
	display: flex !important;
	flex-wrap: nowrap !important;
	gap: 1.5rem !important;
	width: max-content !important;
}

.helium-case-scroll-track > * {
	max-width: none !important;
	width: auto !important;
	margin: 0 !important;
	margin-block-start: 0 !important;
	flex-shrink: 0 !important;
}

:where(.helium-case-scroll-track) > * {
	max-width: none !important;
	margin-inline: 0 !important;
}

.helium-case-card {
	width: 340px !important;
	min-width: 340px !important;
	flex-shrink: 0 !important;
	background: #fff;
	border: 1px solid var(--h-border);
	border-radius: var(--h-radius);
	overflow: hidden;
	transition: transform 0.3s, box-shadow 0.3s;
}

.helium-case-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.helium-case-card .wp-block-image {
	margin: 0;
	overflow: hidden;
}

.helium-case-card .wp-block-image img {
	transition: transform 0.5s;
}

.helium-case-card:hover .wp-block-image img {
	transform: scale(1.04);
}

/* Scroll hint gradient */
.helium-case-scroll-wrap {
	position: relative;
}

.helium-case-scroll-wrap::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 80px;
	background: linear-gradient(90deg, transparent, var(--h-surface));
	pointer-events: none;
	z-index: 1;
}


/* ================================================
   TEAM — Photo background with glass cards
   ================================================ */
.helium-team-section {
	position: relative;
	overflow: hidden;
}


/* We handle the bg image via inline style on the wp:cover */

.helium-diff-grid {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	gap: 1.25rem !important;
}

.helium-diff-grid > * {
	max-width: none !important;
	width: auto !important;
	margin: 0 !important;
	margin-block-start: 0 !important;
}

:where(.helium-diff-grid) > * {
	max-width: none !important;
	margin-inline: 0 !important;
}

.helium-diff-card {
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--h-radius);
	padding: 2.25rem;
	transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.helium-diff-card:hover {
	background: rgba(255, 255, 255, 0.07);
	border-color: rgba(0, 127, 251, 0.2);
	transform: translateY(-3px);
}

/* Stagger second row */
.helium-diff-card:nth-child(3),
.helium-diff-card:nth-child(4) {
	transform: translateX(1.5rem);
}

.helium-diff-card:nth-child(3):hover,
.helium-diff-card:nth-child(4):hover {
	transform: translateX(1.5rem) translateY(-3px);
}

/* Gradient number accent */
.helium-diff-number {
	font-family: var(--wp--preset--font-family--display, 'Outfit', sans-serif) !important;
	font-weight: 800 !important;
	font-size: 2.5rem !important;
	line-height: 1 !important;
	background: linear-gradient(135deg, var(--h-blue), var(--h-orange));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

@media (max-width: 782px) {
	.helium-diff-grid {
		grid-template-columns: 1fr !important;
	}
	.helium-diff-card:nth-child(3),
	.helium-diff-card:nth-child(4) {
		transform: none !important;
	}
	.helium-diff-card:nth-child(3):hover,
	.helium-diff-card:nth-child(4):hover {
		transform: translateY(-3px) !important;
	}
}


/* ================================================
   TESTIMONIALS — Single oversized rotating quote
   ================================================ */
.helium-quote-section {
	position: relative;
	overflow: hidden;
}

.helium-quote-container {
	position: relative;
	min-height: 200px;
}

.helium-quote-slide {
	display: none;
	opacity: 0;
	transition: opacity 0.6s ease;
}

.helium-quote-slide.is-active {
	display: block;
	opacity: 1;
}

/* Decorative oversized quote mark */
.helium-quote-container::before {
	content: '\201C';
	position: absolute;
	top: -2rem;
	left: -0.5rem;
	font-size: 10rem;
	line-height: 1;
	font-family: Georgia, 'Times New Roman', serif;
	color: rgba(0, 127, 251, 0.06);
	pointer-events: none;
	z-index: 0;
}

.helium-quote-text {
	position: relative;
	z-index: 1;
}

/* Progress bar */
.helium-quote-progress {
	width: 100% !important;
	max-width: none !important;
	height: 2px;
	background: var(--h-border);
	border-radius: 2px;
	overflow: hidden;
	margin-top: 2.5rem;
	padding: 0 !important;
}

.helium-quote-progress-bar {
	height: 100% !important;
	background: linear-gradient(90deg, var(--h-blue), var(--h-orange));
	width: 0;
	border-radius: 2px;
	animation: progress-fill 6s linear infinite;
	max-width: none !important;
	padding: 0 !important;
}

@keyframes progress-fill {
	from { width: 0; }
	to { width: 100%; }
}

/* Quote nav dots */
.helium-quote-dots {
	display: flex;
	gap: 0.5rem;
	justify-content: center;
	margin-top: 1.5rem;
}

.helium-quote-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--h-border);
	border: none;
	padding: 0;
	cursor: pointer;
	transition: background 0.3s, transform 0.3s;
}

.helium-quote-dot.is-active {
	background: var(--h-blue);
	transform: scale(1.3);
}


/* ================================================
   CTA — Full-bleed gradient mesh
   ================================================ */
.helium-cta-v2 {
	position: relative;
	overflow: hidden;
	padding-top: 7rem !important;
	padding-bottom: 7rem !important;
	text-align: center;
}

/* Ensure CTA children aren't constrained weirdly */
.helium-cta-v2 > * {
	max-width: 700px !important;
	margin-inline: auto !important;
}

.helium-cta-v2 .wp-block-buttons {
	justify-content: center !important;
	max-width: none !important;
}

.helium-cta-v2 .wp-block-button {
	max-width: none !important;
	margin: 0 !important;
}

.helium-cta-v2::before,
.helium-cta-v2::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	filter: blur(100px);
}

.helium-cta-v2::before {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(0, 127, 251, 0.12) 0%, transparent 70%);
	top: 10%;
	left: 15%;
	animation: drift-cta 15s ease-in-out infinite alternate;
}

.helium-cta-v2::after {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(234, 128, 0, 0.08) 0%, transparent 70%);
	bottom: 10%;
	right: 15%;
	animation: drift-cta 15s ease-in-out infinite alternate-reverse;
}

@keyframes drift-cta {
	0% { transform: translate(0, 0) scale(1); }
	100% { transform: translate(50px, -30px) scale(1.1); }
}

/* Pulsing glow button */
.helium-cta-btn .wp-block-button__link {
	animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
	0%, 100% { box-shadow: 0 4px 25px var(--h-glow-orange); }
	50% { box-shadow: 0 8px 50px var(--h-glow-orange), 0 0 80px rgba(234, 128, 0, 0.12); }
}


/* ================================================
   FOOTER
   ================================================ */
.helium-footer {
	position: relative;
}

/* Force footer children to fill width */
.helium-footer > * {
	max-width: none !important;
	margin-inline: 0 !important;
}

.helium-footer .wp-block-columns {
	max-width: none !important;
}

.helium-footer .is-layout-flex {
	width: 100% !important;
	max-width: none !important;
}

.helium-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 50%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(0, 127, 251, 0.25), transparent);
	transform: translateX(-50%);
}

.helium-footer a {
	text-decoration: none;
	transition: color 0.3s;
}

.helium-footer a:hover {
	color: var(--h-blue) !important;
}

.helium-footer .wp-block-social-links .wp-block-social-link {
	transition: transform 0.3s;
}

.helium-footer .wp-block-social-links .wp-block-social-link:hover {
	transform: translateY(-2px);
}


/* ================================================
   UTILITY
   ================================================ */

/* Gradient text — !important to override inline bg:transparent on <mark> */
.helium-gradient-text {
	background: linear-gradient(135deg, var(--h-blue) 0%, #38BDF8 50%, var(--h-orange) 100%) !important;
	-webkit-background-clip: text !important;
	-webkit-text-fill-color: transparent !important;
	background-clip: text !important;
	display: inline;
	/* Fallback color for browsers without clip support */
	color: var(--h-blue);
}

/* Monospace accent */
.helium-mono {
	font-family: var(--h-mono) !important;
}

/* Hero stats bar */
.helium-hero-stats {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.helium-hero-stats > * {
	max-width: none !important;
	margin: 0 !important;
}

/* --- HubSpot Form in CTA --- */
.helium-hubspot-form {
	margin-top: 2.5rem;
	max-width: 550px;
	margin-left: auto;
	margin-right: auto;
}

/* All text inside the form — catch every HubSpot element */
.helium-hubspot-form,
.helium-hubspot-form *,
.helium-hubspot-form p,
.helium-hubspot-form span,
.helium-hubspot-form legend,
.helium-hubspot-form a {
	color: #ffffff !important;
}

.helium-hubspot-form .hs-form-field label,
.helium-hubspot-form .hs-field-desc,
.helium-hubspot-form .hs-form-field > label span,
.helium-hubspot-form .hs-form-required {
	color: #90A4AE !important;
	font-size: 0.85rem;
	font-weight: 500;
	margin-bottom: 0.35rem;
}

.helium-hubspot-form .hs-richtext,
.helium-hubspot-form .hs-richtext p,
.helium-hubspot-form .legal-consent-container .hs-richtext p {
	color: #90A4AE !important;
	font-size: 0.8rem;
}

.helium-hubspot-form input[type="text"],
.helium-hubspot-form input[type="email"],
.helium-hubspot-form input[type="tel"],
.helium-hubspot-form input[type="number"],
.helium-hubspot-form input[type="url"],
.helium-hubspot-form select,
.helium-hubspot-form textarea,
.helium-hubspot-form .hs-input {
	background: rgba(255, 255, 255, 0.08) !important;
	border: 1px solid rgba(255, 255, 255, 0.15) !important;
	border-radius: 10px !important;
	color: #fff !important;
	padding: 0.85rem 1rem !important;
	font-size: 0.95rem !important;
	width: 100% !important;
	transition: border-color 0.2s ease;
	-webkit-appearance: none;
}

.helium-hubspot-form .hs-input:focus,
.helium-hubspot-form input:focus,
.helium-hubspot-form select:focus,
.helium-hubspot-form textarea:focus {
	border-color: #007FFB !important;
	outline: none !important;
	background: rgba(255, 255, 255, 0.12) !important;
}

.helium-hubspot-form .hs-input::placeholder,
.helium-hubspot-form input::placeholder,
.helium-hubspot-form textarea::placeholder {
	color: #546E7A !important;
}

.helium-hubspot-form select,
.helium-hubspot-form select.hs-input {
	appearance: auto;
	background-image: none;
}

.helium-hubspot-form textarea,
.helium-hubspot-form textarea.hs-input {
	min-height: 100px;
	resize: vertical;
}

.helium-hubspot-form .hs-submit .hs-button,
.helium-hubspot-form input[type="submit"] {
	background: #F26522 !important;
	color: #fff !important;
	border: none !important;
	border-radius: 100px !important;
	padding: 1rem 2.5rem !important;
	font-size: 1.05rem !important;
	font-weight: 700 !important;
	cursor: pointer;
	width: 100%;
	transition: opacity 0.2s ease;
}

.helium-hubspot-form .hs-submit .hs-button:hover,
.helium-hubspot-form input[type="submit"]:hover {
	opacity: 0.9;
}

.helium-hubspot-form .hs-error-msgs label,
.helium-hubspot-form .hs-error-msgs li label {
	color: #ef4444 !important;
	font-size: 0.8rem;
}

.helium-hubspot-form .hs-form-field {
	margin-bottom: 1rem;
}

/* HubSpot link colors */
.helium-hubspot-form a,
.helium-hubspot-form .legal-consent-container a {
	color: #007FFB !important;
}

/* Section base */
.helium-section {
	position: relative;
}


/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
	.helium-hero-v2 {
		min-height: auto;
	}
}

@media (max-width: 900px) {
	.helium-awards-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}
}

@media (max-width: 782px) {
	.helium-hero-v2 {
		min-height: auto;
	}

	.helium-marquee-track p {
		font-size: 0.85rem;
	}

	.helium-case-card {
		width: 280px;
	}

	.helium-quote-container::before {
		font-size: 6rem;
	}

	.helium-cta-v2 {
		min-height: 50vh;
	}
}

@media (max-width: 480px) {
	.helium-case-card {
		width: 260px;
	}

	.helium-awards-grid {
		grid-template-columns: 1fr;
	}
}
