/* Mona Sans — self-hosted. DEV: drop the .woff2 files into assets/fonts/MonaSans/
   (Light 300, Regular 400, Medium 500, SemiBold 600, Bold 700). Source: brand Google Drive. */
@font-face {
	font-family: "Mona Sans";
	src: url(../fonts/MonaSans/MonaSans-Light.woff2) format("woff2");
	font-weight: 300;
	font-display: swap;
}
@font-face {
	font-family: "Mona Sans";
	src: url(../fonts/MonaSans/MonaSans-Regular.woff2) format("woff2");
	font-weight: 400;
	font-display: swap;
}
@font-face {
	font-family: "Mona Sans";
	src: url(../fonts/MonaSans/MonaSans-Medium.woff2) format("woff2");
	font-weight: 500;
	font-display: swap;
}
@font-face {
	font-family: "Mona Sans";
	src: url(../fonts/MonaSans/MonaSans-SemiBold.woff2) format("woff2");
	font-weight: 600;
	font-display: swap;
}
@font-face {
	font-family: "Mona Sans";
	src: url(../fonts/MonaSans/MonaSans-Bold.woff2) format("woff2");
	font-weight: 700;
	font-display: swap;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Match the mockups' reset: no default margins/padding on typographic elements
   (badges, headings, paragraphs, lists are all spaced explicitly by the design). */
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
	margin: 0;
}
ul,
ol {
	padding: 0;
}

:root {
	--orange: #f37037;
	--teal: #03a892;
	--purple: #34195f;
	--light-orange: #f9b79b;
	--light-teal: #73cac4;
	--soft-teal: #dcf2f0;
	--soft-orange: #fcf0ea;
	--soft-purple: #eceaf6;
	--dark-teal: #038271;
	--teal-dark: #038271;
	--white: #fff;
	--dark: #1a1a1a;
	--grey: #707070;
	--light-grey: #f5f5f5;
	--p180: #a5a0ea;
	--p180-dark: #5450a0;
	--p180-deeper: #34195f;
	--soft-p180: #eeedf9;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Mona Sans", sans-serif;
	color: var(--dark);
	overflow-x: hidden;
	background: #fff;
}

/* ===== NAV ===== */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: #fff;
	border-bottom: 2px solid var(--soft-teal);
	padding: 0 40px;
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 48px;
}

.nav-logo img {
	height: 44px;
	width: auto;
	mix-blend-mode: multiply;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 8px;
	list-style: none;
}

.nav-links a {
	text-decoration: none;
	font-weight: 700;
	font-size: 14px;
	padding: 8px 14px;
	border-radius: 6px;
	transition: all 0.2s;
	color: var(--dark);
}

.nav-links a:hover {
	background: var(--soft-teal);
	color: var(--teal);
}
.nav-links a.active,
.nav-links .current-menu-item > a,
.nav-links .current-menu-ancestor > a {
	color: var(--orange);
}

.nav-links .nav-cta {
	background: var(--orange);
	color: #fff;
	border-radius: 6px;
	padding: 8px 18px;
}

.nav-links .nav-cta:hover {
	background: #d95f20;
	color: #fff;
}

/* Visually hidden, still read by screen readers. */
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Hamburger — hidden until the mobile breakpoint takes over below. */
.nav-toggle {
	display: none;
	position: relative;
	margin-left: auto;
	padding: 10px;
	background: none;
	border: 0;
	border-radius: 6px;
	cursor: pointer;
	color: var(--dark);
}

.nav-toggle:hover {
	background: var(--soft-teal);
	color: var(--teal);
}

/* Three bars: the middle one is the element, the outer two are pseudos. */
.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
	display: block;
	width: 22px;
	height: 2px;
	background: currentcolor;
	border-radius: 2px;
	transition:
		transform 0.2s ease,
		opacity 0.2s ease;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
	content: "";
	position: absolute;
	left: 10px;
}

.nav-toggle-bars::before {
	transform: translateY(-7px);
}

.nav-toggle-bars::after {
	transform: translateY(7px);
}

/* Open state: bars collapse into an X. */
.nav-toggle[aria-expanded="true"] .nav-toggle-bars {
	background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
	transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
	transform: rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
	margin-top: 72px;
	background: var(--soft-teal);
	min-height: 88vh;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	padding: 80px 80px 60px;
	position: relative;
	overflow: hidden;
}

/* Decorative circles */
.hero::before {
	content: "";
	position: absolute;
	top: -120px;
	right: -80px;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: rgba(3, 168, 146, 0.12);
}

.hero::after {
	content: "";
	position: absolute;
	bottom: -60px;
	left: 20%;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: rgba(243, 112, 55, 0.08);
}

.hero-text {
	position: relative;
	z-index: 2;
}

.hero-eyebrow {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--teal);
	margin-bottom: 20px;
}

.hero-heading {
	font-family: "Mona Sans", sans-serif;
	font-size: clamp(42px, 5vw, 68px);
	line-height: 1.1;
	color: var(--teal);
	margin-bottom: 10px;
}

.hero-heading .accent {
	color: var(--orange);
	font-style: italic;
}

.hero-sub {
	font-size: 18px;
	font-weight: 400;
	color: var(--dark-teal);
	margin-bottom: 40px;
	max-width: 480px;
	line-height: 1.6;
}

.hero-buttons {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.btn-primary {
	background: var(--orange);
	color: #fff;
	padding: 16px 32px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 800;
	font-size: 15px;
	transition: all 0.2s;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.btn-primary:hover {
	background: #d95f20;
	transform: translateY(-1px);
}

.btn-outline {
	background: transparent;
	color: var(--teal);
	border: 2px solid var(--teal);
	padding: 14px 28px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 800;
	font-size: 15px;
	transition: all 0.2s;
}

.btn-outline:hover {
	background: var(--teal);
	color: #fff;
}

.hero-rating {
	margin-top: 32px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	font-weight: 700;
	color: var(--teal);
}
.hero-trustpilot {
	margin-top: 32px;
	width: 100%;
	max-width: 250px;
}

.stars {
	color: var(--orange);
	font-size: 18px;
	letter-spacing: 2px;
}

.hero-visual {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Product orbit illustration */
.orbit-container {
	position: relative;
	width: 380px;
	height: 380px;
}

.orbit-center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(
		calc(-50% + var(--orb-x, 0px)),
		calc(-50% + var(--orb-y, 0px))
	);
	width: 110px;
	height: 110px;
	background: var(--orange);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 12px 40px rgba(243, 112, 55, 0.35);
}

.orbit-center img {
	height: 64px;
	width: auto;
	filter: brightness(0) invert(1);
}

.orbit-ring {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 320px;
	height: 320px;
	border-radius: 50%;
	border: 2px dashed rgba(3, 168, 146, 0.25);
}

.orbit-item {
	position: absolute;
	background: #fff;
	border-radius: 14px;
	padding: 14px 18px;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
	text-align: center;
	min-width: 110px;
	transition: transform 0.2s;
	cursor: pointer;
	text-decoration: none;
	color: inherit;
	display: block;
}

.orbit-item:hover {
	transform: scale(1.05) !important;
}

.orbit-item .icon {
	font-size: 24px;
}
.orbit-item .label {
	font-size: 12px;
	font-weight: 800;
	color: var(--dark);
}
.orbit-item .sublabel {
	font-size: 10px;
	color: var(--grey);
	font-weight: 600;
	margin-top: 4px;
}

/* Position the 4 orbit items */
.orbit-item:nth-child(3) {
	/* Test Prep - top */
	top: -8px;
	left: 50%;
	transform: translateX(-50%);
	border-top: 3px solid var(--orange);
}
.orbit-item:nth-child(4) {
	/* Certification - right */
	top: 50%;
	right: -16px;
	transform: translateY(-50%);
	border-top: 3px solid var(--teal);
}
.orbit-item:nth-child(5) {
	/* Jobs - bottom */
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	border-top: 3px solid var(--purple);
}
.orbit-item:nth-child(6) {
	/* Project 180 - left */
	top: 50%;
	left: -16px;
	transform: translateY(-50%);
	border-top: 3px solid #a5a0ea;
}

/* ===== DIVIDER ===== */
.section-divider {
	width: 60px;
	height: 4px;
	background: var(--teal);
	border-radius: 2px;
	margin: 0 auto 20px;
}

/* ===== PRODUCTS SECTION ===== */
.products {
	padding: 100px 80px;
	background: #fff;
}

.section-header {
	text-align: center;
	margin-bottom: 64px;
}

.section-tag {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--teal);
	margin-bottom: 16px;
}

.section-title {
	font-family: "Mona Sans", sans-serif;
	font-size: clamp(32px, 4vw, 48px);
	color: var(--orange);
	margin-bottom: 16px;
	line-height: 1.2;
}

.section-desc {
	font-size: 17px;
	color: var(--grey);
	max-width: 560px;
	margin: 0 auto;
	line-height: 1.7;
	font-weight: 400;
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	max-width: 1200px;
	margin: 0 auto;
}

.product-card {
	border-radius: 16px;
	overflow: hidden;
	transition:
		transform 0.25s,
		box-shadow 0.25s;
	cursor: pointer;
	text-decoration: none;
	color: inherit;
	display: block;
	border: 2px solid transparent;
}

.product-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.card-top {
	padding: 36px 28px 28px;
	position: relative;
	overflow: hidden;
}

/* Product-card brand logo — forced white on the colored card. */
.card-logo {
	display: inline-block;
}
.card-logo img {
	height: 26px;
	width: auto;
	display: block;
	filter: brightness(0) invert(1);
}

.card-icon {
	width: auto;
	height: 36px;
	margin-bottom: 20px;
	position: relative;
	z-index: 1;
	display: block;
	mix-blend-mode: screen;
}

.card-icon-p180 {
	width: auto;
	height: 36px;
	margin-bottom: 20px;
	position: relative;
	z-index: 1;
	display: block;
	mix-blend-mode: multiply;
}

.card-name {
	font-family: "Mona Sans", sans-serif;
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 8px;
	position: relative;
	z-index: 1;
}

.card-tagline {
	font-size: 18px;
	font-weight: 800;
	color: rgba(255, 255, 255, 0.95);
	position: relative;
	z-index: 1;
	line-height: 1.4;
}

.card-blob {
	position: absolute;
	bottom: -30px;
	right: -30px;
	width: 130px;
	height: 130px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
}

.card-bottom {
	padding: 24px 28px;
	background: #fff;
	border-top: 1px solid #f0f0f0;
}

.card-description {
	font-size: 13px;
	color: var(--grey);
	line-height: 1.65;
	margin-bottom: 18px;
	font-weight: 400;
}

.card-link {
	font-size: 13px;
	font-weight: 800;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	padding: 10px 18px;
	border-radius: 8px;
	border: 2px solid;
	transition: all 0.2s;
	margin-top: 4px;
}

.card-link:hover {
	transform: translateY(-1px);
}

/* Card colors */
.card-prep .card-top {
	background: linear-gradient(135deg, var(--orange), #d95f20);
}
.card-prep .card-link {
	color: var(--orange);
	border-color: var(--orange);
}
.card-prep .card-link:hover {
	background: var(--orange);
	color: #fff;
}
.card-prep {
	border-color: #f9e4d8;
}

.card-cert .card-top {
	background: linear-gradient(135deg, var(--teal), #027a67);
}
.card-cert .card-link {
	color: var(--teal);
	border-color: var(--teal);
}
.card-cert .card-link:hover {
	background: var(--teal);
	color: #fff;
}
.card-cert {
	border-color: #d4f0ec;
}

.card-jobs .card-top {
	background: linear-gradient(135deg, var(--purple), #1f0f38);
}
.card-jobs .card-link {
	color: var(--purple);
	border-color: var(--purple);
}
.card-jobs .card-link:hover {
	background: var(--purple);
	color: #fff;
}
.card-jobs {
	border-color: #e2ddf2;
}

.card-p180 .card-top {
	background: linear-gradient(135deg, #a5a0ea, #8a84d4);
}
.card-p180 {
	border-color: #e8e7f9;
}
.card-p180 .card-link {
	color: #5450a0;
	border-color: #5450a0;
}
.card-p180 .card-link:hover {
	background: #5450a0;
	color: #fff;
}
.card-p180 .card-top .card-tagline {
	color: #34195f;
	font-weight: 800;
}
.card-p180 .card-top .card-name::after {
	content: " NEW";
	font-size: 10px;
	background: #fff;
	color: #5450a0;
	padding: 2px 6px;
	border-radius: 4px;
	margin-left: 8px;
	font-family: "Mona Sans", sans-serif;
	vertical-align: middle;
	font-weight: 900;
}

/* ===== JOURNEY SECTION ===== */
.journey {
	background: var(--soft-teal);
	padding: 100px 80px;
	position: relative;
	overflow: hidden;
}

.journey::before {
	content: "";
	position: absolute;
	top: -80px;
	right: -80px;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: rgba(3, 168, 146, 0.1);
}

.journey-inner {
	max-width: 900px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.journey-steps {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-top: 60px;
	position: relative;
}

.journey-step {
	display: grid;
	grid-template-columns: 72px 1fr;
	gap: 32px;
	align-items: start;
	padding: 32px 0;
	position: relative;
}

/* Connector segments: from this circle's center to the next circle's center.
     The last step draws nothing, so the line ends cleanly inside circle 4. */
.journey-step:not(:last-child)::before {
	content: "";
	position: absolute;
	left: 35px;
	top: 68px;
	bottom: -68px;
	width: 2px;
	z-index: 0;
}
.journey-step:nth-child(1)::before {
	background: linear-gradient(to bottom, var(--orange), var(--teal));
}
.journey-step:nth-child(2)::before {
	background: linear-gradient(to bottom, var(--teal), var(--purple));
}
.journey-step:nth-child(3)::before {
	background: linear-gradient(to bottom, var(--purple), #5450a0);
}

.step-num {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Mona Sans", sans-serif;
	font-size: 32px;
	font-weight: 700;
	color: #fff;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.step-num.s1 {
	background: var(--orange);
}
.step-num.s2 {
	background: var(--teal);
}
.step-num.s3 {
	background: var(--purple);
}

.step-content {
	padding-top: 10px;
}

.step-title {
	font-family: "Mona Sans", sans-serif;
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 10px;
}

.step-desc {
	font-size: 16px;
	color: #2a6b60;
	line-height: 1.7;
	font-weight: 400;
	max-width: 520px;
}

.step-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 16px;
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
	padding: 10px 20px;
	border-radius: 8px;
	border: 2px solid;
	transition: all 0.2s;
}

.step-link:hover {
	transform: translateY(-1px);
}

.journey-step:nth-child(1) .step-link {
	color: var(--orange);
	border-color: var(--orange);
}
.journey-step:nth-child(1) .step-link:hover {
	background: var(--orange);
	color: #fff;
}

.journey-step:nth-child(2) .step-link {
	color: var(--teal);
	border-color: var(--teal);
}
.journey-step:nth-child(2) .step-link:hover {
	background: var(--teal);
	color: #fff;
}

.journey-step:nth-child(3) .step-link {
	color: var(--purple);
	border-color: var(--purple);
}
.journey-step:nth-child(3) .step-link:hover {
	background: var(--purple);
	color: #fff;
}

.journey-step:nth-child(4) .step-link {
	color: #5450a0;
	border-color: #5450a0;
}
.journey-step:nth-child(4) .step-link:hover {
	background: #5450a0;
	color: #fff;
}

/* Each step inherits its circle color */
.journey-step:nth-child(1) .step-title,
.journey-step:nth-child(1) .step-link {
	color: var(--orange);
}

.journey-step:nth-child(2) .step-title,
.journey-step:nth-child(2) .step-link {
	color: var(--teal);
}

.journey-step:nth-child(3) .step-title,
.journey-step:nth-child(3) .step-link {
	color: var(--purple);
}

.journey-step:nth-child(4) .step-title,
.journey-step:nth-child(4) .step-link {
	color: #5450a0;
}

/* ===== DISTRICTS SECTION ===== */
.districts {
	padding: 80px;
	background: #fff;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}

.districts-text .section-tag {
	text-align: left;
}
.districts-text .section-title {
	text-align: left;
	font-size: 36px;
}

.districts-desc {
	font-size: 16px;
	color: var(--grey);
	line-height: 1.75;
	margin-bottom: 32px;
	font-weight: 400;
}

.districts-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	border: 2px solid var(--teal);
	color: var(--teal);
	padding: 14px 28px;
	border-radius: 8px;
	font-weight: 800;
	font-size: 15px;
	text-decoration: none;
	transition: all 0.2s;
}

.districts-cta:hover {
	background: var(--teal);
	color: #fff;
}

.districts-visual {
	background: var(--soft-teal);
	border-radius: 20px;
	padding: 40px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.district-stat {
	display: flex;
	align-items: center;
	gap: 20px;
	background: #fff;
	border-radius: 12px;
	padding: 20px 24px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.stat-num {
	font-family: "Mona Sans", sans-serif;
	font-size: 36px;
	font-weight: 700;
	color: var(--orange);
	min-width: 80px;
}

.stat-label {
	font-size: 14px;
	font-weight: 700;
	color: var(--dark);
	line-height: 1.5;
}

/* ===== FOOTER ===== */
footer {
	background: var(--dark);
	padding: 60px 80px 32px;
	color: rgba(255, 255, 255, 0.7);
}

.footer-top {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 48px;
}

.footer-brand img {
	height: 40px;
	width: auto;
	filter: brightness(0) invert(1);
	margin-bottom: 16px;
}

.footer-brand p {
	font-size: 14px;
	line-height: 1.7;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.6);
}

.footer-col h4 {
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.footer-col ul {
	list-style: none;
}
.footer-col ul li {
	margin-bottom: 10px;
}
.footer-col ul li a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	transition: color 0.2s;
}
.footer-col ul li a:hover {
	color: #fff;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 13px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.4);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(24px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-text > * {
	animation: fadeUp 0.6s ease both;
}
.hero-eyebrow {
	animation-delay: 0.1s;
}
.hero-heading {
	animation-delay: 0.2s;
}
.hero-sub {
	animation-delay: 0.3s;
}
.hero-buttons {
	animation-delay: 0.4s;
}
.hero-rating {
	animation-delay: 0.5s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
	.products-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.hero {
		grid-template-columns: 1fr;
		padding: 60px 40px;
	}
	.hero-visual {
		display: none;
	}
	.districts {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 700px) {
	nav {
		padding: 0 20px;
		gap: 16px;
	}
	.nav-toggle {
		display: block;
	}
	/* Drop the links out of the bar into a panel hanging below it. Panel is
	   closed by default and only opens when the toggle sets [data-nav-open];
	   with no JS the toggle stays hidden and this rule never applies. */
	.nav-links {
		position: fixed;
		top: 72px;
		left: 0;
		right: 0;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 4px;
		padding: 12px 20px 20px;
		background: #fff;
		border-bottom: 2px solid var(--soft-teal);
		box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
		max-height: calc(100vh - 72px);
		overflow-y: auto;
	}
	body[data-nav-open] .nav-links {
		display: flex;
	}
	body[data-nav-open] {
		overflow: hidden;
	}
	.nav-links a {
		display: block;
		padding: 12px 14px;
		font-size: 16px;
	}
	.nav-links .nav-cta {
		text-align: center;
		margin-top: 4px;
	}
	body.admin-bar .nav-links {
		top: 118px;
		max-height: calc(100vh - 118px);
	}
	.hero {
		padding: 40px 24px;
	}
	.products {
		padding: 60px 24px;
	}
	.products-grid {
		grid-template-columns: 1fr;
	}
	.journey {
		padding: 60px 24px;
	}
	.districts {
		padding: 60px 24px;
	}
	footer {
		padding: 40px 24px 24px;
	}
	.footer-top {
		grid-template-columns: 1fr 1fr;
	}
}

/* ===== WP admin bar offset =====
   When logged-in, WP renders a fixed 32px (46px ≤782px) toolbar at top:0 and
   auto-adds html{margin-top} for normal flow. Our nav is position:fixed, so it
   ignores that margin — push it below the bar explicitly. body.admin-bar is
   added by WP only when the bar is present. */
body.admin-bar nav {
	top: 32px;
}
@media screen and (max-width: 782px) {
	body.admin-bar nav {
		top: 46px;
	}
}

/* ===== Orbit node text labels (ACF-toggled) =====
   Logo + optional brand text. .icon becomes a centered flex row so the mark and
   label sit together; typography (font/size/weight/color) is set inline per the
   Orbit Text ACF fields. */
.orbit-item .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}
.orbit-item .icon img,
.orbit-item .icon .orbit-logo {
	display: block;
}
.orbit-brand {
	display: flex;
	align-items: center;
	line-height: 1;
	white-space: nowrap;
}
.orbit-logo {
	vertical-align: middle;
}
