﻿/* Desktop nav defaults */
:root {
	--bg: #ffffff;
	--text: #0f172a;
	--muted: #475569;
	--line: #e5e7eb;
	--brand: #2563eb;
	--brand2: #1d4ed8;
	--ok: #16a34a;
	--shadow: 0 10px 28px rgba(0,0,0,.06);
	--radius: 16px;
	--radius2: 18px;
	--max: 1140px;
	--pad: clamp(18px,3vw,28px);
	--h1: clamp(34px,4vw,52px);
	--h2: clamp(24px,3vw,34px);
}

* {
	box-sizing: border-box
}

html {
	scroll-behavior: smooth
}

body {
	margin: 0;
	font-family: system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
	color: var(--text);
	background: var(--bg);
	line-height: 1.55;
}

a {
	text-decoration: none;
	color: inherit
}

.container {
	width: min(var(--max),calc(100% - 2*var(--pad)));
	margin: auto
}

.muted {
	color: var(--muted)
}

.tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
	border-radius: 999px;
	border: 1px solid var(--line);
	font-size: 13px;
	color: var(--muted);
	background: #fff;
}

.dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--ok)
}

/* Header */
header {
	position: sticky;
	top: 0;
	background: #fff;
	border-bottom: 1px solid var(--line);
	z-index: 10;
}

.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 0;
	gap: 16px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 800;
	white-space: nowrap;
}

.logo {
	width: 34px;
	height: 34px;
	border-radius: 8px;
	background: linear-gradient(135deg,var(--brand),var(--brand2));
	flex: 0 0 auto;
}

nav ul {
	list-style: none;
	display: flex;
	gap: 18px;
	margin: 0;
	padding: 0;
	align-items: center;
}

nav a {
	color: var(--muted);
	font-size: 14px
}

	nav a:hover {
		color: var(--text)
	}

	nav a:hover {
		color: var(--text)
	}


/* Buttons */
.btn {
	padding: 12px 16px;
	border-radius: 10px;
	border: 1px solid var(--line);
	background: #fff;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.btn-primary {
	background: linear-gradient(135deg,var(--brand),var(--brand2));
	color: #fff;
	border: none;
	box-shadow: 0 8px 20px rgba(37,99,235,.25);
}

/* Hero background image */
.hero {
	position: relative;
	background-image: linear-gradient( rgba(15, 23, 42, 0.55), rgba(15, 23, 42, 0.55) ), url("../images/hero_background.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #ffffff;
}

	/* Ensure text colors flip for dark hero */
	.hero h1,
	.hero h2,
	.hero .subhead,
	.hero .tag,
	.hero a,
	.hero .small {
		color: #ffffff;
	}

	.hero .tag {
		border-color: rgba(255,255,255,0.35);
		background: rgba(255,255,255,0.08);
	}

	.hero .btn {
		border-color: rgba(255,255,255,0.4);
	}

	.hero .btn-primary {
		background: linear-gradient(135deg, #2563eb, #1d4ed8);
	}

.hero-grid {
	display: grid;
	grid-template-columns: 1.2fr .8fr;
	gap: 40px;
	align-items: start;
}

.pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
	border-radius: 999px;
	border: 1px solid var(--line);
	font-size: 13px;
	color: var(--muted);
}

.dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--ok)
}

h1 {
	font-size: var(--h1);
	line-height: 1.1;
	margin: 10px 0 14px
}

.subhead {
	color: var(--muted);
	font-size: 17px;
	max-width: 64ch
}

.hero-actions {
	margin-top: 20px;
	display: flex;
	gap: 12px;
	flex-wrap: wrap
}

.subhead {
	color: var(--muted);
	font-size: 17px;
	max-width: 64ch
}

.hero-actions {
	margin-top: 20px;
	display: flex;
	gap: 12px;
	flex-wrap: wrap
}

/* Form card (same pattern as Payables page) */
.form-card {
	border: 1px solid var(--line);
	border-radius: var(--radius2);
	padding: 20px;
	box-shadow: var(--shadow);
	background: #fff;
}

.form-title {
	font-weight: 700;
	margin-bottom: 6px
}

.form-note {
	font-size: 13px;
	color: var(--muted);
	margin-bottom: 14px
}

form {
	display: grid;
	gap: 10px
}

input, select, textarea {
	width: 100%;
	padding: 12px;
	border-radius: 10px;
	border: 1px solid var(--line);
	font-size: 14px;
	background: #fff;
}

textarea {
	min-height: 84px;
	resize: vertical
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px
}
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px
}

.form-status {
	margin-top: 10px;
	font-size: 13px;
	color: var(--muted)
}


/* Sections */
section {
	padding: 60px 0
}

h2 {
	font-size: var(--h2);
	margin: 0 0 10px
}

.section-head p {
	color: var(--muted);
	/*max-width: 70ch*/
}
.section-head {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	align-items: flex-end
}

	.section-head p {
		margin: 0;
		color: var(--muted);
		/*max-width: 72ch*/
	}

/* Cards */
.grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 16px;
	margin-top: 30px
}

.card {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 20px;
	box-shadow: var(--shadow);
	background: #fff;
}

.icon {
	font-size: 22px;
	margin-bottom: 10px
}

.card h3 {
	margin: 0 0 6px;
	font-size: 16px
}

.card p {
	margin: 0;
	color: var(--muted);
	font-size: 14px
}

.card .meta {
	margin-top: 10px;
	font-size: 12px;
	color: var(--muted)
}

/* CTA band */
.cta-band {
	margin-top: 40px;
	padding: 30px;
	border-radius: var(--radius2);
	background: #f8fafc;
	border: 1px solid var(--line);
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: center;
}

	.cta-band p {
		margin: 6px 0 0;
		color: var(--muted)
	}

/* Footer */
footer {
	border-top: 1px solid var(--line);
	padding: 30px 0;
	font-size: 13px;
	color: var(--muted)
}

@media(max-width:900px) {
	nav ul {
		display: none
	}

	.hero-grid, .grid {
		grid-template-columns: 1fr
	}

	.form-row {
		grid-template-columns: 1fr
	}

	.cta-band {
		flex-direction: column;
		align-items: flex-start
	}
}


.nav-links {
	display: block;
}

.nav-list {
	display: flex;
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
	align-items: center;
}

.nav-actions {
	display: flex;
	gap: 10px;
	align-items: center;
}

/* --- Mobile nav: overlay + animated toggle + smooth slide --- */

/* Hamburger button */
.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--line);
	background: #fff;
	border-radius: 10px;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	position: relative;
}

	.nav-toggle .bar {
		position: absolute;
		width: 18px;
		height: 2px;
		background: var(--text);
		border-radius: 2px;
		transition: transform 180ms ease, opacity 180ms ease, top 180ms ease;
	}

		.nav-toggle .bar:nth-child(1) {
			top: 15px;
		}

		.nav-toggle .bar:nth-child(2) {
			top: 21px;
		}

		.nav-toggle .bar:nth-child(3) {
			top: 27px;
		}

	/* When open, animate into X */
	.nav-toggle.is-open .bar:nth-child(1) {
		top: 21px;
		transform: rotate(45deg);
	}

	.nav-toggle.is-open .bar:nth-child(2) {
		opacity: 0;
	}

	.nav-toggle.is-open .bar:nth-child(3) {
		top: 21px;
		transform: rotate(-45deg);
	}

/* Overlay behind menu */
.nav-overlay {
	position: fixed;
	inset: 0;
	background: rgba(15, 23, 42, 0.45);
	z-index: 35;
	opacity: 0;
	transition: opacity 200ms ease;
}

	.nav-overlay.is-open {
		opacity: 1;
	}

/* Mobile dropdown menu (slide down) */
.mobile-nav {
	position: absolute;
	left: 0;
	right: 0;
	top: 64px; /* header height-ish */
	background: #fff;
	border-bottom: 1px solid var(--line);
	box-shadow: var(--shadow);
	padding: 14px var(--pad);
	display: grid;
	gap: 10px;
	z-index: 40;
	/* Slide animation */
	transform: translateY(-10px);
	opacity: 0;
	pointer-events: none;
	transition: transform 220ms ease, opacity 220ms ease;
}

	.mobile-nav a {
		color: var(--text);
		padding: 10px 10px;
		border-radius: 10px;
	}

		.mobile-nav a:hover {
			background: #f8fafc;
		}

.mobile-actions {
	display: grid;
	gap: 10px;
	margin-top: 6px;
}

/* Open state */
.mobile-nav.is-open {
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
}

/* Desktop defaults */
.nav-links {
	display: block;
}

.nav-actions {
	display: flex;
	gap: 10px;
	align-items: center;
}

/* Responsive behavior */
@media (max-width: 900px) {
	.nav-links {
		display: none;
	}

	.nav-actions {
		display: none;
	}

	.nav-toggle {
		display: inline-flex;
	}

	.nav {
		position: relative;
	}
}


/* Applications dropdown (desktop only) */
.nav-has-children {
	position: relative;
}

.nav-submenu {
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 12px;
	box-shadow: var(--shadow);
	padding: 8px;
	list-style: none;
	min-width: 240px;
	display: none;
	z-index: 60;
}

	.nav-submenu li a {
		display: block;
		padding: 10px 12px;
		border-radius: 8px;
		font-size: 14px;
	}

		.nav-submenu li a:hover {
			background: #f8fafc;
		}

.nav-has-children:hover .nav-submenu {
	display: block;
}


.mobile-section {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--muted);
	margin-top: 10px;
	padding: 6px 10px 2px;
}

:root {
	--bg: #ffffff;
	--text: #0f172a;
	--muted: #475569;
	--line: #e5e7eb;
	--brand: #2563eb;
	--brand2: #1d4ed8;
	--ok: #16a34a;
	--shadow: 0 10px 28px rgba(0,0,0,.06);
	--radius: 16px;
	--radius2: 18px;
	--max: 1140px;
	--pad: clamp(18px,3vw,28px);
	--h1: clamp(34px,4vw,52px);
	--h2: clamp(24px,3vw,34px);
}

* {
	box-sizing: border-box
}

body {
	margin: 0;
	font-family: system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
	color: var(--text);
	background: var(--bg);
	line-height: 1.55;
}

a {
	text-decoration: none;
	color: inherit
}

.container {
	width: min(var(--max),calc(100% - 2*var(--pad)));
	margin: auto
}

/* Header */
header {
	position: sticky;
	top: 0;
	background: #fff;
	border-bottom: 1px solid var(--line);
	z-index: 10;
}

.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 0;
	gap: 16px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 800;
	white-space: nowrap;
}

.logo {
	width: 34px;
	height: 34px;
	border-radius: 8px;
	background: linear-gradient(135deg,var(--brand),var(--brand2));
	flex: 0 0 auto;
}

nav ul {
	list-style: none;
	display: flex;
	gap: 18px;
	margin: 0;
	padding: 0;
	align-items: center;
}

nav a {
	color: var(--muted);
	font-size: 14px
}

	nav a:hover {
		color: var(--text)
	}

/* Buttons */
.btn {
	padding: 12px 16px;
	border-radius: 10px;
	border: 1px solid var(--line);
	background: #fff;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.btn-primary {
	background: linear-gradient(135deg,var(--brand),var(--brand2));
	color: #fff;
	border: none;
	box-shadow: 0 8px 20px rgba(37,99,235,.25);
}

/* Hero */
.hero {
	padding: 70px 0 40px
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.2fr .8fr;
	gap: 40px;
	align-items: start;
}

.pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
	border-radius: 999px;
	border: 1px solid var(--line);
	font-size: 13px;
	color: var(--muted);
}

.dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--ok)
}

h1 {
	font-size: var(--h1);
	line-height: 1.1;
	margin: 10px 0 14px
}

.subhead {
	color: var(--muted);
	font-size: 17px;
	max-width: 64ch
}

.hero-actions {
	margin-top: 20px;
	display: flex;
	gap: 12px;
	flex-wrap: wrap
}

/* Form card (same pattern as Payables page) */
.form-card {
	border: 1px solid var(--line);
	border-radius: var(--radius2);
	padding: 20px;
	box-shadow: var(--shadow);
	background: #fff;
}

.form-title {
	font-weight: 700;
	margin-bottom: 6px
}

.form-note {
	font-size: 13px;
	color: var(--muted);
	margin-bottom: 14px
}

form {
	display: grid;
	gap: 10px
}

input, select, textarea {
	width: 100%;
	padding: 12px;
	border-radius: 10px;
	border: 1px solid var(--line);
	font-size: 14px;
	background: #fff;
}

textarea {
	min-height: 84px;
	resize: vertical
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px
}

/* Sections */
section {
	padding: 60px 0
}

h2 {
	font-size: var(--h2);
	margin: 0 0 10px
}

.section-head p {
	color: var(--muted);
	/*max-width: 70ch*/
}

/* Cards */
.grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 16px;
	margin-top: 30px;
}

.card {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 20px;
	box-shadow: var(--shadow);
	background: #fff;
}

.icon {
	font-size: 22px;
	margin-bottom: 10px
}

.card h3 {
	margin: 0 0 6px;
	font-size: 16px
}

.card p {
	color: var(--muted);
	font-size: 14px;
	margin: 0
}

/* Workflow */
.flow {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 16px;
	margin-top: 30px;
}

.step {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 18px;
	box-shadow: var(--shadow);
	background: #fff;
}

.num {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #eef2ff;
	border-radius: 8px;
	font-weight: 700;
	color: #1d4ed8;
	margin-bottom: 8px;
}

.step p {
	margin: 6px 0 0;
	color: var(--muted);
	font-size: 14px
}

/* CTA band */
.cta-band {
	margin-top: 40px;
	padding: 30px;
	border-radius: var(--radius2);
	background: #f8fafc;
	border: 1px solid var(--line);
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: center;
}

	.cta-band p {
		margin: 6px 0 0;
		color: var(--muted)
	}

footer {
	border-top: 1px solid var(--line);
	padding: 30px 0;
	font-size: 13px;
	color: var(--muted);
}

@media(max-width:900px) {
	nav ul {
		display: none
	}

	.hero-grid, .grid, .flow {
		grid-template-columns: 1fr
	}

	.form-row {
		grid-template-columns: 1fr
	}

	.cta-band {
		flex-direction: column;
		align-items: flex-start
	}
}

/* Consulting Services background */
.services-bg {
	position: relative;
	background-image: linear-gradient( rgba(15, 23, 42, 0.55), rgba(15, 23, 42, 0.55) ), url("../images/services_background.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #ffffff;
}

	/* Flip text colors for dark background */
	.services-bg h2,
	.services-bg h3,
	.services-bg p,
	.services-bg .muted {
		color: #ffffff;
	}

	/* Cards remain readable */
	.services-bg .card {
		background: rgba(255,255,255,0.96);
		color: var(--text);
	}

		.services-bg .card p,
		.services-bg .card h3 {
			color: var(--text);
		}

	/* Force CTA text to black in Services section */
	.services-bg .cta-band h2,
	.services-bg .cta-band p {
		color: #0f172a; /* matches your --text color */
	}

/* Ensure form-card text is always readable */
.form-card,
.form-card h2,
.form-card h3,
.form-card p,
.form-card label,
.form-card input,
.form-card textarea,
.form-card .form-note,
.form-card .small {
	color: #0f172a; /* black text */
}

	/* Inputs specifically */
	.form-card input,
	.form-card textarea {
		background: #ffffff;
		color: #0f172a;
	}

		/* Placeholder text */
		.form-card input::placeholder,
		.form-card textarea::placeholder {
			color: #64748b;
		}


	/* Force form-card email/link text to be visible */
	.form-card a,
	.form-card .small a {
		color: #2563eb; /* brand blue */
		font-weight: 600;
	}

		/* Ensure hover stays readable */
		.form-card a:hover {
			color: #1d4ed8;
		}

/* Secondary button fix on dark backgrounds */
.hero .btn:not(.btn-primary),
.services-bg .btn:not(.btn-primary) {
	background: #ffffff;
	color: #0f172a; /* black text */
	border-color: #e5e7eb;
}

	/* Hover state */
	.hero .btn:not(.btn-primary):hover,
	.services-bg .btn:not(.btn-primary):hover {
		background: #f8fafc;
	}


/* Expense Management hero text should be white */
.expense-page .hero h1,
.expense-page .hero h2,
.expense-page .hero .subhead {
	color: #ffffff;
}

/* Ensure hero pill/tag text is white on dark backgrounds */
.hero .pill,
.hero .tag {
	color: #ffffff;
	border-color: rgba(255,255,255,0.35);
	background: rgba(255,255,255,0.12);
}


.bullets li {
	margin: 10px 0;
}

.statbox {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.stat {
	border-radius: var(--radius);
	border: 1px solid var(--line);
	background: #ffffff;
	padding: 16px;
	box-shadow: var(--shadow2);
}

	.stat .big {
		font-size: 22px;
		font-weight: 900;
		letter-spacing: -0.5px;
		margin: 0 0 6px;
		color: #0b1220;
	}

	.stat .small {
		margin: 0;
		color: var(--muted);
		font-size: 13px;
	}


/* Consulting Services background */
.applications-bg {
	position: relative;
	background-image: linear-gradient( rgba(15, 23, 42, 0.55), rgba(15, 23, 42, 0.55) ), url("../images/applications_background.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #ffffff;
}

	/* Flip text colors for dark background */
	.applications-bg h2,
	.applications-bg h3,
	.applications-bg p,
	.applications-bg .muted {
		color: #ffffff;
	}

	/* Cards remain readable */
	.applications-bg .card {
		background: rgba(255,255,255,0.96);
		color: var(--text);
	}

		.applications-bg .card p,
		.applications-bg .card h3 {
			color: var(--text);
		}

	/* Force CTA text to black in Services section */
	.applications-bg .cta-band h2,
	.applications-bg .cta-band p {
		color: #0f172a; /* matches your --text color */
	}

/* Secondary button fix on dark backgrounds */
.hero .btn:not(.btn-primary),
.applications-bg .btn:not(.btn-primary) {
	background: #ffffff;
	color: #0f172a; /* black text */
	border-color: #e5e7eb;
}

	/* Hover state */
	.hero .btn:not(.btn-primary):hover,
	.applications-bg .btn:not(.btn-primary):hover {
		background: #f8fafc;
	}

/* Careers background */
.careers-bg {
	position: relative;
	background-image: linear-gradient( rgba(15, 23, 42, 0.55), rgba(15, 23, 42, 0.55) ), url("../images/careers_background.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #ffffff;
}

	/* Flip text colors for dark background */
	.careers-bg h2,
	.careers-bg h3,
	.careers-bg p,
	.careers-bg .muted {
		color: #ffffff;
	}

	/* Cards remain readable */
	.careers-bg .card {
		background: rgba(255,255,255,0.96);
		color: var(--text);
	}

		.careers-bg .card p,
		.careers-bg .card h3 {
			color: var(--text);
		}

	/* Force CTA text to black in Services section */
	.careers-bg .cta-band h2,
	.careers-bg .cta-band p {
		color: #0f172a; /* matches your --text color */
	}

	/* Secondary button fix on dark backgrounds */
	.hero .btn:not(.btn-primary),
	.careers-bg .btn:not(.btn-primary) {
		background: #ffffff;
		color: #0f172a; /* black text */
		border-color: #e5e7eb;
	}

		/* Hover state */
		.hero .btn:not(.btn-primary):hover,
		.careers-bg .btn:not(.btn-primary):hover {
			background: #f8fafc;
		}


/* Overlay must be BELOW the menu */
.nav-overlay {
	position: fixed;
	inset: 0;
	background: rgba(15, 23, 42, 0.45);
	z-index: 100; /* lower than the menu */
	opacity: 0;
	transition: opacity 200ms ease;
}

	.nav-overlay.is-open {
		opacity: 1;
	}

/* Mobile menu must be ABOVE the overlay */
.mobile-nav {
	position: absolute;
	left: 0;
	right: 0;
	top: 64px;
	background: #fff;
	border-bottom: 1px solid var(--line);
	box-shadow: var(--shadow);
	padding: 14px var(--pad);
	display: grid;
	gap: 10px;
	z-index: 200; /* higher than overlay */

	transform: translateY(-10px);
	opacity: 0;
	pointer-events: none;
	transition: transform 220ms ease, opacity 220ms ease;
}

	.mobile-nav.is-open {
		transform: translateY(0);
		opacity: 1;
		pointer-events: auto;
	}

/* Ensure header/nav is above normal content */
header {
	z-index: 300;
}


/* Footer layout */
.footer-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}

/* Social icons */
.footer-social {
	display: flex;
	gap: 14px;
}

	.footer-social a {
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.footer-social img {
		width: 22px;
		height: 22px;
		opacity: 0.75;
		transition: opacity 150ms ease, transform 150ms ease;
	}

	.footer-social a:hover img {
		opacity: 1;
		transform: translateY(-1px);
	}

@media (max-width: 700px) {
	.footer-row {
		flex-direction: column;
		gap: 12px;
	}
}


/* Tooltip base */
.tooltip {
	position: relative;
}

	/* Tooltip text */
	.tooltip::after {
		content: attr(title);
		position: absolute;
		bottom: 130%;
		left: 50%;
		transform: translateX(-50%);
		background: #0f172a;
		color: #fff;
		font-size: 12px;
		padding: 6px 10px;
		border-radius: 6px;
		white-space: nowrap;
		opacity: 0;
		pointer-events: none;
		transition: opacity 150ms ease, transform 150ms ease;
	}

	/* Tooltip arrow */
	.tooltip::before {
		content: "";
		position: absolute;
		bottom: 120%;
		left: 50%;
		transform: translateX(-50%);
		border-width: 6px;
		border-style: solid;
		border-color: #0f172a transparent transparent transparent;
		opacity: 0;
		transition: opacity 150ms ease;
	}

	/* Show on hover/focus */
	.tooltip:hover::after,
	.tooltip:hover::before,
	.tooltip:focus::after,
	.tooltip:focus::before {
		opacity: 1;
		transform: translateX(-50%) translateY(-2px);
	}


/* Social icons row inside mobile menu */
.mobile-social {
	display: flex;
	gap: 14px;
	align-items: center;
	padding: 8px 10px 2px;
	margin-top: 6px;
}

	.mobile-social img {
		width: 22px;
		height: 22px;
		opacity: 0.85;
		transition: opacity 150ms ease, transform 150ms ease;
	}

	.mobile-social a:hover img {
		opacity: 1;
		transform: translateY(-1px);
	}


/* Resources background */
.resources-bg {
	position: relative;
	background-image: linear-gradient(rgba(15, 23, 42, 0.55), rgba(15, 23, 42, 0.55)), url("../images/resources_bg.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

	/* Keep headings readable on dark */
	.resources-bg .section-head h2,
	.resources-bg .section-head p {
		color: #fff;
	}

	/* Cards remain light */
	.resources-bg .card {
		background: rgba(255,255,255,0.96);
	}


/* Hero section product title (alternate font) */
.hero-title {
	font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-size: 20px;
	margin-bottom: 14px;
	color: rgba(255,255,255,0.9);
}



