/**
 * JustyClean Site Manager — front-end styles.
 *
 * Everything is scoped to `.justyclean-site` or a `jc-` class so the plugin
 * never repaints the theme or Elementor's own widgets. Design tokens are
 * declared here as fallbacks and overridden inline from the plugin's Design
 * settings, so changing a colour in the dashboard updates the whole site.
 */

/* ══════════════════════════ 1. Tokens ══════════════════════════ */

:root {
	--jc-primary: #0a66ff;
	--jc-primary-hover: #0050d6;
	--jc-primary-soft: #e8f0ff;
	--jc-secondary: #0b1b33;
	--jc-accent: #3b8bff;
	--jc-navy: #0b1b33;
	--jc-charcoal: #121417;
	--jc-background: #ffffff;
	--jc-background-alt: #f5f8fb;
	--jc-heading: #0c1a2e;
	--jc-text: #39414d;
	--jc-muted: #67717f;
	--jc-border: #e1e7ef;
	--jc-success: #1e8e5a;
	--jc-button: var(--jc-primary);
	--jc-button-hover: var(--jc-primary-hover);
	--jc-button-text: #ffffff;

	--jc-font-heading: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--jc-font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--jc-font-size: 17px;
	--jc-h1-size: 56px;
	--jc-h2-size: 38px;
	--jc-heading-weight: 800;
	--jc-heading-lh: 1.12;
	--jc-body-lh: 1.65;

	--jc-radius: 8px;
	--jc-radius-card: 12px;
	--jc-radius-lg: 18px;
	--jc-btn-py: 16px;
	--jc-btn-px: 30px;
	--jc-btn-size: 15px;
	--jc-btn-transform: uppercase;
	--jc-btn-spacing: 0.04em;

	--jc-container: 1240px;
	--jc-space: 96px;
	--jc-space-mobile: 60px;
	--jc-gap: 24px;

	--jc-shadow-sm: 0 1px 2px rgba(11, 27, 51, 0.06), 0 2px 8px rgba(11, 27, 51, 0.04);
	--jc-shadow-md: 0 8px 24px rgba(11, 27, 51, 0.08), 0 2px 6px rgba(11, 27, 51, 0.04);
	--jc-shadow-lg: 0 24px 60px rgba(8, 17, 31, 0.18);
	--jc-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ══════════════════════════ 2. Base ════════════════════════════ */

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

:where(body.justyclean-site) {
	margin: 0;
	font-family: var(--jc-font-body);
	font-size: var(--jc-font-size);
	line-height: var(--jc-body-lh);
	color: var(--jc-text);
	background: var(--jc-background);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

:where(body.justyclean-site h1, body.justyclean-site h2, body.justyclean-site h3,
body.justyclean-site h4, body.justyclean-site h5, body.justyclean-site h6) {
	margin: 0 0 0.5em;
	font-family: var(--jc-font-heading);
	font-weight: var(--jc-heading-weight);
	line-height: var(--jc-heading-lh);
	color: var(--jc-heading);
	letter-spacing: -0.018em;
}

:where(body.justyclean-site p) {
	margin: 0 0 1em;
}

:where(body.justyclean-site a) {
	color: var(--jc-primary);
	text-decoration: none;
}

:where(body.justyclean-site a:hover) {
	color: var(--jc-primary-hover);
}

:where(body.justyclean-site ul, body.justyclean-site ol) {
	margin: 0;
	padding: 0;
}

:where(body.justyclean-site li) {
	list-style: none;
}

:where(body.justyclean-site img) {
	max-width: 100%;
	height: auto;
	display: block;
}

.justyclean-site .screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.jc-anchor {
	display: block;
	height: 0;
	overflow: hidden;
}

/* Focus visibility — never removed, only made to look intentional. */
.justyclean-site :focus-visible {
	outline: 3px solid var(--jc-primary);
	outline-offset: 3px;
	border-radius: 4px;
}

.jc-tone-dark :focus-visible,
.jc-tone-navy :focus-visible,
.jc-tone-brand :focus-visible,
.jc-header :focus-visible,
.jc-footer :focus-visible,
.jc-drawer :focus-visible {
	outline-color: #ffffff;
}

.jc-skip {
	position: absolute;
	top: -100px;
	left: 12px;
	z-index: 1000;
	padding: 12px 20px;
	background: var(--jc-primary);
	color: #fff;
	border-radius: 0 0 var(--jc-radius) var(--jc-radius);
	font-weight: 700;
	transition: top 0.2s var(--jc-ease);
}

.jc-skip:focus {
	top: 0;
	color: #fff;
}

/* ══════════════════════ 3. Layout & tones ══════════════════════ */

.jc-container {
	width: 100%;
	max-width: var(--jc-container);
	margin-inline: auto;
	padding-inline: 24px;
}

.jc-container--narrow {
	max-width: 860px;
}

.jc-section {
	position: relative;
	padding-block: var(--jc-space);
}

.jc-tone-light {
	background: var(--jc-background);
}

.jc-tone-alt {
	background: var(--jc-background-alt);
}

.jc-tone-navy {
	background: var(--jc-navy);
}

.jc-tone-charcoal {
	background: var(--jc-charcoal);
}

.jc-tone-dark {
	background: var(--jc-navy);
}

.jc-tone-brand {
	background: linear-gradient(118deg, var(--jc-primary) 0%, var(--jc-primary-hover) 62%, var(--jc-secondary) 140%);
}

.jc-tone-navy,
.jc-tone-charcoal,
.jc-tone-dark,
.jc-tone-brand {
	color: rgba(255, 255, 255, 0.82);
}

.jc-tone-navy h1, .jc-tone-navy h2, .jc-tone-navy h3, .jc-tone-navy h4,
.jc-tone-charcoal h1, .jc-tone-charcoal h2, .jc-tone-charcoal h3, .jc-tone-charcoal h4,
.jc-tone-dark h1, .jc-tone-dark h2, .jc-tone-dark h3, .jc-tone-dark h4,
.jc-tone-brand h1, .jc-tone-brand h2, .jc-tone-brand h3, .jc-tone-brand h4 {
	color: #ffffff;
}

/* ══════════════════════ 4. Typography bits ═════════════════════ */

.jc-eyebrow {
	margin: 0 0 14px;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.3;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	color: var(--jc-primary);
}

.jc-eyebrow--onDark {
	color: var(--jc-accent);
}

.jc-hl {
	color: var(--jc-primary);
}

.jc-tone-dark .jc-hl,
.jc-tone-navy .jc-hl,
.jc-tone-charcoal .jc-hl {
	color: var(--jc-accent);
}

.jc-tone-brand .jc-hl {
	color: #ffffff;
	text-decoration: underline;
	text-underline-offset: 6px;
	text-decoration-thickness: 3px;
}

.jc-shead {
	max-width: 720px;
	margin-bottom: 48px;
}

.jc-shead--center {
	margin-inline: auto;
	text-align: center;
}

.jc-shead--left {
	margin-inline: 0;
}

.jc-shead__title {
	margin: 0 0 14px;
	font-size: clamp(27px, 3.4vw, var(--jc-h2-size));
}

.jc-shead__intro {
	margin: 0;
	font-size: 1.03rem;
	color: var(--jc-muted);
}

.jc-tone-navy .jc-shead__intro,
.jc-tone-charcoal .jc-shead__intro,
.jc-tone-dark .jc-shead__intro,
.jc-tone-brand .jc-shead__intro {
	color: rgba(255, 255, 255, 0.76);
}

.jc-textlink {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	color: var(--jc-primary);
}

.jc-textlink svg {
	transition: transform 0.2s var(--jc-ease);
}

.jc-textlink:hover svg {
	transform: translateX(4px);
}

.jc-icon {
	flex: none;
	display: block;
}

/* ══════════════════════════ 5. Buttons ═════════════════════════ */

.justyclean-site .jc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: var(--jc-btn-py) var(--jc-btn-px);
	border: 2px solid transparent;
	border-radius: var(--jc-radius);
	font-family: var(--jc-font-heading);
	font-size: var(--jc-btn-size);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: var(--jc-btn-spacing);
	text-transform: var(--jc-btn-transform);
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.2s var(--jc-ease), border-color 0.2s var(--jc-ease),
		color 0.2s var(--jc-ease), transform 0.2s var(--jc-ease), box-shadow 0.2s var(--jc-ease);
}

.justyclean-site .jc-btn:hover {
	transform: translateY(-2px);
}

.justyclean-site .jc-btn:active {
	transform: translateY(0);
}

.justyclean-site .jc-btn--sm {
	--jc-btn-py: 12px;
	--jc-btn-px: 20px;
	--jc-btn-size: 13.5px;
}

.justyclean-site .jc-btn--primary {
	background: var(--jc-button);
	border-color: var(--jc-button);
	color: var(--jc-button-text);
	box-shadow: 0 6px 18px rgba(10, 102, 255, 0.24);
}

.justyclean-site .jc-btn--primary:hover {
	background: var(--jc-button-hover);
	border-color: var(--jc-button-hover);
	color: var(--jc-button-text);
	box-shadow: 0 10px 26px rgba(10, 102, 255, 0.3);
}

.justyclean-site .jc-btn--secondary {
	background: #ffffff;
	border-color: var(--jc-border);
	color: var(--jc-heading);
}

.justyclean-site .jc-btn--secondary:hover {
	border-color: var(--jc-primary);
	color: var(--jc-primary);
}

.justyclean-site .jc-btn--outline {
	background: transparent;
	border-color: var(--jc-border);
	color: var(--jc-heading);
}

.justyclean-site .jc-btn--outline:hover {
	border-color: var(--jc-primary);
	color: var(--jc-primary);
}

.justyclean-site .jc-btn--ghost {
	background: transparent;
	border-color: transparent;
	color: var(--jc-primary);
	padding-inline: 6px;
}

/* On dark or brand backgrounds. */
.justyclean-site .jc-btn--light {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.42);
	color: #ffffff;
}

.justyclean-site .jc-btn--light:hover {
	background: #ffffff;
	border-color: #ffffff;
	color: var(--jc-primary);
}

.justyclean-site .jc-btn--reverse {
	background: #ffffff;
	border-color: #ffffff;
	color: var(--jc-primary);
}

.justyclean-site .jc-btn--reverse:hover {
	background: rgba(255, 255, 255, 0.9);
	border-color: rgba(255, 255, 255, 0.9);
	color: var(--jc-primary-hover);
}

.jc-btn__icon {
	margin-block: -2px;
}

/* ══════════════════════════ 6. Header ══════════════════════════ */

.jc-header {
	position: absolute;
	inset-inline: 0;
	top: 0;
	z-index: 90;
	padding-block: 18px;
	transition: background-color 0.28s var(--jc-ease), box-shadow 0.28s var(--jc-ease),
		padding 0.28s var(--jc-ease);
}

.jc-header--sticky {
	position: fixed;
}

.jc-header__inner {
	display: flex;
	align-items: center;
	gap: 28px;
}

.jc-header.is-stuck {
	background: rgba(255, 255, 255, 0.97);
	box-shadow: 0 1px 0 var(--jc-border), 0 10px 30px rgba(11, 27, 51, 0.07);
	padding-block: 11px;
	backdrop-filter: saturate(180%) blur(8px);
}

body.admin-bar .jc-header--sticky {
	top: 32px;
}

/* Logo */
.jc-logo {
	display: inline-flex;
	flex-direction: column;
	gap: 2px;
	text-decoration: none;
	line-height: 1;
}

.jc-logo--text .jc-logo__mark {
	display: flex;
	flex-direction: column;
	font-family: var(--jc-font-heading);
	font-weight: 900;
	font-size: 25px;
	line-height: 0.94;
	letter-spacing: -0.028em;
	color: var(--jc-accent);
}

.jc-logo__sub {
	font-size: 10.5px;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: #ffffff;
}

.jc-header.is-stuck .jc-logo--text .jc-logo__mark {
	color: var(--jc-primary);
}

.jc-header.is-stuck .jc-logo__sub {
	color: var(--jc-heading);
}

.jc-logo__img {
	max-width: 150px;
	height: auto;
}

/* Nav */
.jc-nav {
	margin-inline-start: auto;
}

.jc-nav__list {
	display: flex;
	align-items: center;
	gap: 4px;
}

.jc-nav__item {
	position: relative;
}

.jc-nav__link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 10px 13px;
	border-radius: var(--jc-radius);
	font-size: 15px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.9);
	white-space: nowrap;
}

.jc-nav__link:hover {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.1);
}

.jc-nav__item.is-current > .jc-nav__link {
	color: #ffffff;
}

.jc-nav__item.is-current > .jc-nav__link::after {
	content: "";
	position: absolute;
	left: 13px;
	right: 13px;
	bottom: 3px;
	height: 2px;
	border-radius: 2px;
	background: var(--jc-accent);
}

.jc-header.is-stuck .jc-nav__link {
	color: var(--jc-heading);
}

.jc-header.is-stuck .jc-nav__link:hover {
	color: var(--jc-primary);
	background: var(--jc-primary-soft);
}

.jc-nav__caret {
	display: inline-flex;
	transition: transform 0.2s var(--jc-ease);
}

.jc-nav__item--has-children:hover .jc-nav__caret,
.jc-nav__item--has-children:focus-within .jc-nav__caret {
	transform: rotate(180deg);
}

.jc-nav__dropdown {
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	transform: translate(-50%, 8px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.18s var(--jc-ease), transform 0.18s var(--jc-ease), visibility 0.18s;
	z-index: 5;
}

.jc-nav__item--has-children:hover .jc-nav__dropdown,
.jc-nav__item--has-children:focus-within .jc-nav__dropdown {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate(-50%, 0);
}

.jc-nav__sub {
	display: grid;
	gap: 2px;
	min-width: 268px;
	padding: 10px;
	background: #ffffff;
	border: 1px solid var(--jc-border);
	border-radius: var(--jc-radius-card);
	box-shadow: var(--jc-shadow-lg);
}

.jc-nav__sub--mega {
	grid-template-columns: repeat(2, minmax(220px, 1fr));
	min-width: 520px;
}

.jc-nav__sub a {
	display: block;
	padding: 9px 13px;
	border-radius: 7px;
	font-size: 14.5px;
	font-weight: 600;
	color: var(--jc-heading);
}

.jc-nav__sub a:hover {
	background: var(--jc-primary-soft);
	color: var(--jc-primary);
}

/* Header actions */
.jc-header__actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

.jc-header__phone {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	font-weight: 800;
	color: #ffffff;
	white-space: nowrap;
}

.jc-header__phone svg {
	color: var(--jc-accent);
}

.jc-header.is-stuck .jc-header__phone {
	color: var(--jc-heading);
}

.jc-burger {
	display: none;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	padding: 0;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: var(--jc-radius);
	color: #ffffff;
	cursor: pointer;
}

.jc-header.is-stuck .jc-burger {
	background: var(--jc-primary-soft);
	border-color: transparent;
	color: var(--jc-primary);
}

/* ══════════════════════════ 7. Drawer ══════════════════════════ */

.jc-drawer {
	position: fixed;
	inset: 0;
	z-index: 120;
}

.jc-drawer[hidden] {
	display: none;
}

.jc-drawer__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(6, 14, 26, 0.6);
	opacity: 0;
	transition: opacity 0.25s var(--jc-ease);
}

.jc-drawer.is-open .jc-drawer__backdrop {
	opacity: 1;
}

.jc-drawer__panel {
	position: absolute;
	inset-block: 0;
	right: 0;
	width: min(400px, 88vw);
	display: flex;
	flex-direction: column;
	background: var(--jc-navy);
	box-shadow: var(--jc-shadow-lg);
	transform: translateX(100%);
	transition: transform 0.28s var(--jc-ease);
	overflow-y: auto;
	overscroll-behavior: contain;
}

.jc-drawer.is-open .jc-drawer__panel {
	transform: translateX(0);
}

.jc-drawer__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 22px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.jc-drawer__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	background: rgba(255, 255, 255, 0.1);
	border: 0;
	border-radius: var(--jc-radius);
	color: #ffffff;
	cursor: pointer;
}

.jc-drawer__nav {
	flex: 1;
	padding: 10px 12px;
}

.jc-drawer__row {
	display: flex;
	align-items: center;
}

.jc-drawer__link {
	flex: 1;
	display: block;
	padding: 14px 12px;
	font-size: 17px;
	font-weight: 700;
	color: #ffffff;
	border-radius: var(--jc-radius);
}

.jc-drawer__link:hover {
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
}

.jc-drawer__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	background: rgba(255, 255, 255, 0.08);
	border: 0;
	border-radius: var(--jc-radius);
	color: #ffffff;
	cursor: pointer;
}

.jc-drawer__toggle[aria-expanded="true"] svg {
	transform: rotate(180deg);
}

.jc-drawer__toggle svg {
	transition: transform 0.2s var(--jc-ease);
}

.jc-drawer__sub {
	padding: 2px 0 10px 12px;
	margin-left: 10px;
	border-left: 2px solid rgba(255, 255, 255, 0.14);
}

.jc-drawer__sub[hidden] {
	display: none;
}

.jc-drawer__sub a {
	display: block;
	padding: 10px 12px;
	font-size: 15px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.78);
	border-radius: 7px;
}

.jc-drawer__sub a:hover {
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
}

.jc-drawer__foot {
	display: grid;
	gap: 12px;
	padding: 20px 22px calc(22px + env(safe-area-inset-bottom));
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.jc-drawer__phone,
.jc-drawer__email {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	color: #ffffff;
	word-break: break-word;
}

.jc-drawer__phone svg,
.jc-drawer__email svg {
	color: var(--jc-accent);
}

/* ═══════════════════════════ 8. Hero ═══════════════════════════ */

.jc-hero {
	display: flex;
	align-items: center;
	min-height: 720px;
	padding-block: 150px 90px;
	isolation: isolate;
}

/* Clipping lives on the media layer, not the section: on mobile the form card
   deliberately hangs past the dark background and must not be cut off. */
.jc-hero__media {
	position: absolute;
	inset: 0;
	z-index: -1;
	overflow: hidden;
	background: var(--jc-navy);
}

.jc-hero__img,
.jc-hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.jc-hero__video {
	opacity: 0;
	transition: opacity 0.6s var(--jc-ease);
}

.jc-hero__video.is-playing {
	opacity: 1;
}

.jc-hero__overlay {
	position: absolute;
	inset: 0;
	display: block;
}

.jc-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
	align-items: center;
	gap: 60px;
	width: 100%;
}

.jc-hero:not(.jc-hero--form) .jc-hero__inner {
	grid-template-columns: minmax(0, 1fr);
	max-width: 860px;
}

.jc-hero__title {
	margin: 0 0 22px;
	font-size: clamp(34px, 4.6vw, var(--jc-h1-size));
	color: #ffffff;
	text-wrap: balance;
}

.jc-hero__text p {
	margin: 0 0 4px;
	font-size: 1.06rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.86);
}

.jc-hero__points {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
	gap: 16px 22px;
	margin-top: 30px;
}

.jc-hero__points li {
	display: flex;
	align-items: center;
	gap: 11px;
	font-size: 14.5px;
	font-weight: 600;
	line-height: 1.32;
	color: rgba(255, 255, 255, 0.92);
}

.jc-hero__pointIcon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	flex: none;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.07);
	color: var(--jc-accent);
}

.jc-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

/* Form card — dark glass on desktop, white on mobile, as per the mockups. */
.jc-formcard {
	padding: 30px;
	background: rgba(20, 26, 36, 0.86);
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: var(--jc-radius-lg);
	box-shadow: var(--jc-shadow-lg);
	backdrop-filter: blur(14px);
}

.jc-formcard__title {
	margin: 0 0 6px;
	font-size: 25px;
	text-align: center;
	color: #ffffff;
}

.jc-formcard__sub {
	margin: 0 0 22px;
	font-size: 14.5px;
	text-align: center;
	color: rgba(255, 255, 255, 0.72);
}

.jc-formcard__note {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 16px 0 0;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.66);
}

.jc-formcard--light {
	background: #ffffff;
	border-color: var(--jc-border);
	box-shadow: var(--jc-shadow-md);
	backdrop-filter: none;
}

.jc-formcard--light .jc-formcard__title {
	color: var(--jc-heading);
}

.jc-formcard--light .jc-formcard__sub,
.jc-formcard--light .jc-formcard__note {
	color: var(--jc-muted);
}

/* ═══════════════════════ 9. Page header ════════════════════════ */

.jc-pagehero {
	padding-block: 168px 74px;
	overflow: hidden;
	isolation: isolate;
	background: linear-gradient(140deg, var(--jc-navy) 0%, #0e2748 58%, var(--jc-secondary) 100%);
}

.jc-pagehero__media {
	position: absolute;
	inset: 0;
	z-index: -1;
}

.jc-pagehero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.jc-pagehero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(8, 17, 31, 0.9) 0%, rgba(8, 17, 31, 0.7) 100%);
}

.jc-pagehero__inner {
	max-width: 840px;
}

.jc-pagehero__title {
	margin: 0 0 16px;
	font-size: clamp(30px, 4vw, 48px);
	color: #ffffff;
	text-wrap: balance;
}

.jc-pagehero__text {
	margin: 0;
	max-width: 660px;
	font-size: 1.06rem;
	color: rgba(255, 255, 255, 0.82);
}

.jc-pagehero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}

/* Breadcrumbs */
.jc-crumbs {
	margin: 0 0 18px;
	font-size: 13.5px;
	color: rgba(255, 255, 255, 0.62);
}

.jc-crumbs a {
	color: rgba(255, 255, 255, 0.82);
}

.jc-crumbs a:hover {
	color: #ffffff;
	text-decoration: underline;
}

.jc-crumbs__sep {
	margin-inline: 8px;
	opacity: 0.5;
}

/* ═══════════════════════ 10. Trust strip ═══════════════════════ */

.jc-trustwrap--panel {
	position: relative;
	margin-top: -58px;
	padding-bottom: 0;
	z-index: 2;
}

.jc-trustwrap--band {
	background: var(--jc-navy);
	padding-block: 30px;
}

.jc-trust {
	display: grid;
	grid-template-columns: repeat(var(--jc-trust-count, 4), minmax(0, 1fr));
	background: var(--jc-navy);
	border-radius: var(--jc-radius-lg);
	box-shadow: var(--jc-shadow-lg);
	overflow: hidden;
}

.jc-trustwrap--band .jc-trust {
	box-shadow: none;
	border-radius: 0;
}

.jc-trust__item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 26px 24px;
	border-right: 1px solid rgba(255, 255, 255, 0.11);
}

.jc-trust__item:last-child {
	border-right: 0;
}

.jc-trust__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: none;
	color: var(--jc-accent);
}

.jc-trust__body {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}

.jc-trust__heading {
	font-family: var(--jc-font-heading);
	font-size: 15.5px;
	font-weight: 800;
	line-height: 1.22;
	color: #ffffff;
}

.jc-trust__text {
	font-size: 12.8px;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.62);
}

/* ═══════════════════ 11. Cards (services/areas) ════════════════ */

.jc-cards {
	display: grid;
	gap: var(--jc-gap);
}

.jc-cards--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.jc-cards--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.jc-cards--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.jc-cards--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }

.jc-card {
	position: relative;
	display: flex;
	gap: 16px;
	height: 100%;
	padding: 24px 22px;
	background: #ffffff;
	border: 1px solid var(--jc-border);
	border-radius: var(--jc-radius-card);
	box-shadow: var(--jc-shadow-sm);
	transition: transform 0.22s var(--jc-ease), box-shadow 0.22s var(--jc-ease),
		border-color 0.22s var(--jc-ease);
}

.jc-card:hover {
	transform: translateY(-4px);
	border-color: rgba(10, 102, 255, 0.34);
	box-shadow: var(--jc-shadow-md);
}

.jc-tone-navy .jc-card,
.jc-tone-charcoal .jc-card,
.jc-tone-dark .jc-card {
	background: rgba(255, 255, 255, 0.045);
	border-color: rgba(255, 255, 255, 0.12);
	box-shadow: none;
}

.jc-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	flex: none;
	background: var(--jc-primary-soft);
	border-radius: 11px;
	color: var(--jc-primary);
	transition: background-color 0.22s var(--jc-ease), color 0.22s var(--jc-ease);
}

.jc-card:hover .jc-card__icon {
	background: var(--jc-primary);
	color: #ffffff;
}

.jc-tone-navy .jc-card__icon,
.jc-tone-charcoal .jc-card__icon,
.jc-tone-dark .jc-card__icon {
	background: rgba(59, 139, 255, 0.14);
	color: var(--jc-accent);
}

.jc-card__body {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}

.jc-card__title {
	font-family: var(--jc-font-heading);
	font-size: 16.5px;
	font-weight: 800;
	line-height: 1.24;
	color: var(--jc-heading);
	letter-spacing: -0.01em;
}

.jc-tone-navy .jc-card__title,
.jc-tone-charcoal .jc-card__title,
.jc-tone-dark .jc-card__title {
	color: #ffffff;
}

.jc-card__desc {
	font-size: 14px;
	line-height: 1.5;
	color: var(--jc-muted);
}

.jc-tone-navy .jc-card__desc,
.jc-tone-charcoal .jc-card__desc,
.jc-tone-dark .jc-card__desc {
	color: rgba(255, 255, 255, 0.64);
}

.jc-card__arrow {
	position: absolute;
	right: 18px;
	bottom: 18px;
	display: inline-flex;
	color: var(--jc-primary);
	opacity: 0.42;
	transition: opacity 0.22s var(--jc-ease), transform 0.22s var(--jc-ease);
}

.jc-card:hover .jc-card__arrow,
.jc-card:focus-visible .jc-card__arrow {
	opacity: 1;
	transform: translateX(4px);
}

.jc-card--area {
	padding-bottom: 46px;
}

.jc-services__group + .jc-services__group,
.jc-areasgrid__group + .jc-areasgrid__group {
	margin-top: 52px;
}

.jc-services__groupTitle {
	margin: 0 0 22px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--jc-border);
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--jc-muted);
}

.jc-services__more {
	margin: 40px 0 0;
	text-align: center;
}

/* ═══════════════════════ 12. Icon cards ════════════════════════ */

.jc-icards {
	display: grid;
	gap: var(--jc-gap);
}

.jc-icards--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.jc-icards--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.jc-icards--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.jc-icards--6 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.jc-icard {
	padding: 30px 24px;
	background: #ffffff;
	border: 1px solid var(--jc-border);
	border-radius: var(--jc-radius-card);
	text-align: center;
	transition: transform 0.22s var(--jc-ease), box-shadow 0.22s var(--jc-ease);
}

.jc-icard:hover {
	transform: translateY(-3px);
	box-shadow: var(--jc-shadow-md);
}

.jc-tone-alt .jc-icard {
	box-shadow: var(--jc-shadow-sm);
}

.jc-tone-navy .jc-icard,
.jc-tone-charcoal .jc-icard,
.jc-tone-dark .jc-icard {
	background: rgba(255, 255, 255, 0.045);
	border-color: rgba(255, 255, 255, 0.12);
}

.jc-icard__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	color: var(--jc-primary);
}

.jc-tone-navy .jc-icard__icon,
.jc-tone-charcoal .jc-icard__icon,
.jc-tone-dark .jc-icard__icon {
	color: var(--jc-accent);
}

.jc-icard__title {
	margin: 0 0 8px;
	font-size: 17px;
}

.jc-tone-navy .jc-icard__title,
.jc-tone-charcoal .jc-icard__title,
.jc-tone-dark .jc-icard__title {
	color: #ffffff;
}

.jc-icard__text {
	margin: 0;
	font-size: 14.5px;
	line-height: 1.55;
	color: var(--jc-muted);
}

.jc-tone-navy .jc-icard__text,
.jc-tone-charcoal .jc-icard__text,
.jc-tone-dark .jc-icard__text {
	color: rgba(255, 255, 255, 0.66);
}

/* ═══════════════════ 13. Focus / split bands ═══════════════════ */

.jc-focus__inner,
.jc-owners__inner,
.jc-prose__inner,
.jc-quote__inner {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: center;
	gap: 60px;
}

.jc-focus--flip .jc-focus__copy {
	order: 2;
}

.jc-focus__title,
.jc-owners__title,
.jc-prose__title,
.jc-quote__title {
	margin: 0 0 18px;
	font-size: clamp(26px, 3.2vw, var(--jc-h2-size));
}

.jc-focus__text,
.jc-owners__text,
.jc-prose__text {
	margin: 0 0 16px;
	color: var(--jc-text);
}

.jc-tone-navy .jc-focus__text,
.jc-tone-dark .jc-focus__text,
.jc-tone-charcoal .jc-focus__text {
	color: rgba(255, 255, 255, 0.78);
}

.jc-focus__actions,
.jc-owners__actions {
	margin-top: 28px;
}

.jc-focus__figure img,
.jc-owners__figure img,
.jc-prose__figure img {
	width: 100%;
	border-radius: var(--jc-radius-lg);
	box-shadow: var(--jc-shadow-md);
}

.jc-focus__placeholder,
.jc-owners__placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	aspect-ratio: 4 / 3;
	background: linear-gradient(150deg, var(--jc-primary-soft), #ffffff);
	border: 1px dashed rgba(10, 102, 255, 0.3);
	border-radius: var(--jc-radius-lg);
	color: var(--jc-primary);
	text-align: center;
	padding: 24px;
}

.jc-owners__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 82px;
	height: 82px;
	background: #ffffff;
	border-radius: 50%;
	box-shadow: var(--jc-shadow-sm);
}

.jc-owners__placeholderText {
	margin: 6px 0 0;
	font-family: var(--jc-font-heading);
	font-size: 20px;
	font-weight: 800;
	color: var(--jc-heading);
}

.jc-owners__placeholderSub {
	margin: 0;
	font-size: 13.5px;
	color: var(--jc-muted);
}

/* Tick lists */
.jc-ticks {
	display: grid;
	gap: 12px;
	margin: 24px 0 0;
}

.jc-ticks--compact {
	gap: 9px;
}

.jc-ticks--cols2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 34px;
}

.jc-ticks li {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	font-size: 15.5px;
	line-height: 1.5;
}

.jc-ticks svg {
	margin-top: 2px;
	color: var(--jc-primary);
}

.jc-tone-navy .jc-ticks svg,
.jc-tone-dark .jc-ticks svg,
.jc-tone-charcoal .jc-ticks svg,
.jc-tone-brand .jc-ticks svg {
	color: var(--jc-accent);
}

/* ═══════════════════════ 14. Industries ════════════════════════ */

.jc-inds {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
}

.jc-ind {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	height: 100%;
	padding: 24px 14px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.11);
	border-radius: var(--jc-radius-card);
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	color: rgba(255, 255, 255, 0.9);
	transition: background-color 0.22s var(--jc-ease), border-color 0.22s var(--jc-ease),
		transform 0.22s var(--jc-ease);
}

.jc-ind svg {
	color: var(--jc-accent);
}

a.jc-ind:hover {
	background: rgba(59, 139, 255, 0.14);
	border-color: rgba(59, 139, 255, 0.4);
	color: #ffffff;
	transform: translateY(-3px);
}

/* ═══════════════════════ 15. Areas strip ═══════════════════════ */

.jc-areastrip {
	padding-block: 42px;
}

.jc-areastrip__inner {
	display: flex;
	align-items: center;
	gap: 42px;
	flex-wrap: wrap;
}

.jc-areastrip__copy {
	display: flex;
	align-items: center;
	gap: 18px;
	flex: 1 1 340px;
}

.jc-areastrip__pin {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 62px;
	height: 62px;
	flex: none;
	background: rgba(59, 139, 255, 0.16);
	border: 1px solid rgba(59, 139, 255, 0.36);
	border-radius: 50%;
	color: var(--jc-accent);
}

.jc-areastrip__title {
	margin: 0 0 4px;
	font-size: clamp(19px, 2.1vw, 25px);
}

.jc-areastrip__text {
	margin: 0;
	font-size: 14.5px;
	color: rgba(255, 255, 255, 0.7);
}

.jc-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	flex: 1 1 460px;
	justify-content: flex-start;
}

.jc-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 15px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	font-size: 13.5px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.9);
	transition: background-color 0.2s var(--jc-ease), border-color 0.2s var(--jc-ease);
}

.jc-chip svg {
	color: var(--jc-accent);
}

.jc-chip:hover {
	background: rgba(59, 139, 255, 0.18);
	border-color: rgba(59, 139, 255, 0.45);
	color: #ffffff;
}

/* ═══════════════════════ 16. Checklist ═════════════════════════ */

.jc-checklist__inner--split {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
	gap: 48px;
	align-items: start;
}

.jc-checklist__img {
	width: 100%;
	border-radius: var(--jc-radius-lg);
	box-shadow: var(--jc-shadow-md);
}

.jc-checklist__note {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 30px 0 0;
	padding: 16px 18px;
	background: var(--jc-primary-soft);
	border-radius: var(--jc-radius-card);
	font-size: 14.5px;
	color: var(--jc-heading);
}

.jc-checklist__note svg {
	margin-top: 2px;
	color: var(--jc-primary);
}

/* ═════════════════════════ 17. Steps ═══════════════════════════ */

.jc-steps__list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
	gap: var(--jc-gap);
	counter-reset: jc-step;
}

.jc-step {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 26px 22px;
	background: #ffffff;
	border: 1px solid var(--jc-border);
	border-radius: var(--jc-radius-card);
}

.jc-tone-alt .jc-step {
	box-shadow: var(--jc-shadow-sm);
}

.jc-step__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	background: var(--jc-primary);
	border-radius: 11px;
	font-family: var(--jc-font-heading);
	font-size: 17px;
	font-weight: 800;
	color: #ffffff;
}

.jc-step__body {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.jc-step__title {
	font-family: var(--jc-font-heading);
	font-size: 16.5px;
	font-weight: 800;
	color: var(--jc-heading);
}

.jc-step__text {
	font-size: 14.5px;
	line-height: 1.55;
	color: var(--jc-muted);
}

/* ════════════════════════ 18. Related ══════════════════════════ */

.jc-related__list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 14px;
}

.jc-related__list--compact {
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.jc-related__link {
	display: flex;
	align-items: center;
	gap: 14px;
	height: 100%;
	padding: 17px 18px;
	background: #ffffff;
	border: 1px solid var(--jc-border);
	border-radius: var(--jc-radius-card);
	transition: border-color 0.2s var(--jc-ease), transform 0.2s var(--jc-ease),
		box-shadow 0.2s var(--jc-ease);
}

.jc-related__link:hover {
	border-color: rgba(10, 102, 255, 0.36);
	transform: translateY(-2px);
	box-shadow: var(--jc-shadow-sm);
}

.jc-related__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	flex: none;
	background: var(--jc-primary-soft);
	border-radius: 10px;
	color: var(--jc-primary);
}

.jc-related__body {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
	flex: 1;
}

.jc-related__title {
	font-family: var(--jc-font-heading);
	font-size: 15.5px;
	font-weight: 800;
	color: var(--jc-heading);
}

.jc-related__desc {
	font-size: 13.5px;
	line-height: 1.45;
	color: var(--jc-muted);
}

.jc-related__arrow {
	color: var(--jc-muted);
	transition: transform 0.2s var(--jc-ease), color 0.2s var(--jc-ease);
}

.jc-related__link:hover .jc-related__arrow {
	color: var(--jc-primary);
	transform: translateX(3px);
}

/* ══════════════════════════ 19. FAQ ════════════════════════════ */

.jc-accordion {
	display: grid;
	gap: 12px;
}

.jc-acc {
	background: #ffffff;
	border: 1px solid var(--jc-border);
	border-radius: var(--jc-radius-card);
	overflow: hidden;
	transition: border-color 0.2s var(--jc-ease), box-shadow 0.2s var(--jc-ease);
}

.jc-acc[open] {
	border-color: rgba(10, 102, 255, 0.3);
	box-shadow: var(--jc-shadow-sm);
}

.jc-acc__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 19px 22px;
	font-family: var(--jc-font-heading);
	font-size: 16.5px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--jc-heading);
	cursor: pointer;
	list-style: none;
}

.jc-acc__q::-webkit-details-marker {
	display: none;
}

.jc-acc__q:hover {
	color: var(--jc-primary);
}

.jc-acc__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	flex: none;
	background: var(--jc-primary-soft);
	border-radius: 8px;
	color: var(--jc-primary);
	transition: transform 0.24s var(--jc-ease);
}

.jc-acc[open] .jc-acc__mark {
	transform: rotate(180deg);
}

.jc-acc__a {
	padding: 0 22px 20px;
	color: var(--jc-text);
}

.jc-acc__a p {
	margin: 0 0 12px;
	font-size: 15.5px;
}

.jc-acc__a p:last-child {
	margin-bottom: 0;
}

/* ════════════════════════ 20. Reviews ══════════════════════════ */

.jc-reviews__list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
	gap: var(--jc-gap);
}

.jc-review {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 28px 24px;
	background: #ffffff;
	border: 1px solid var(--jc-border);
	border-radius: var(--jc-radius-card);
	box-shadow: var(--jc-shadow-sm);
}

.jc-review__rating {
	display: flex;
	gap: 3px;
	margin: 0;
	color: #f5a623;
}

.jc-review__star {
	fill: currentColor;
}

.jc-review__text {
	margin: 0;
	font-size: 15.5px;
	line-height: 1.6;
	color: var(--jc-text);
}

.jc-review__text p {
	margin: 0;
}

.jc-review__by {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 10px;
	margin: auto 0 0;
	font-size: 13.5px;
}

.jc-review__name {
	font-weight: 800;
	color: var(--jc-heading);
}

.jc-review__role,
.jc-review__source {
	color: var(--jc-muted);
}

/* ═══════════════════ 21. Quote & contact ═══════════════════════ */

.jc-quote__inner {
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	align-items: start;
}

.jc-quote__text {
	font-size: 1.03rem;
	color: var(--jc-muted);
}

.jc-quote__contact {
	display: grid;
	gap: 12px;
	margin-top: 26px;
}

.jc-quote__contact li {
	display: flex;
	align-items: center;
	gap: 11px;
	font-size: 16.5px;
	font-weight: 700;
}

.jc-quote__contact svg {
	color: var(--jc-primary);
}

.jc-quote__contact a {
	color: var(--jc-heading);
}

.jc-quote__contact a:hover {
	color: var(--jc-primary);
}

.jc-contact__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(238px, 1fr));
	gap: var(--jc-gap);
}

.jc-contact__card {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 28px 24px;
	background: #ffffff;
	border: 1px solid var(--jc-border);
	border-radius: var(--jc-radius-card);
	box-shadow: var(--jc-shadow-sm);
}

.jc-contact__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	margin-bottom: 4px;
	background: var(--jc-primary-soft);
	border-radius: 11px;
	color: var(--jc-primary);
}

.jc-contact__title {
	margin: 0;
	font-size: 15px;
	letter-spacing: 0.02em;
}

.jc-contact__value {
	margin: 0;
	font-family: var(--jc-font-heading);
	font-size: 20px;
	font-weight: 800;
	word-break: break-word;
}

.jc-contact__value--sm {
	font-size: 16px;
}

.jc-contact__value a {
	color: var(--jc-heading);
}

.jc-contact__value a:hover {
	color: var(--jc-primary);
}

.jc-contact__hint {
	margin: 0;
	font-size: 13.5px;
	line-height: 1.5;
	color: var(--jc-muted);
}

.jc-contact__link {
	margin: 6px 0 0;
	font-size: 14px;
}

.jc-contact__hours {
	display: grid;
	gap: 6px;
	margin: 2px 0 0;
	font-size: 14px;
}

.jc-contact__hours li {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding-bottom: 6px;
	border-bottom: 1px dashed var(--jc-border);
	color: var(--jc-text);
}

.jc-contact__hours li:last-child {
	border-bottom: 0;
}

.jc-contact__social {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

.jc-contact__social a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	background: #ffffff;
	border: 1px solid var(--jc-border);
	border-radius: 999px;
	font-size: 14px;
	font-weight: 700;
	color: var(--jc-heading);
}

.jc-contact__social a:hover {
	border-color: var(--jc-primary);
	color: var(--jc-primary);
}

/* ══════════════════════════ 22. CTA ════════════════════════════ */

.jc-cta {
	padding-block: 74px;
	overflow: hidden;
}

.jc-cta::after {
	content: "";
	position: absolute;
	top: -60%;
	right: -8%;
	width: 620px;
	height: 620px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 62%);
	pointer-events: none;
}

.jc-cta__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 44px;
	flex-wrap: wrap;
	z-index: 1;
}

.jc-cta__copy {
	flex: 1 1 420px;
}

.jc-cta__title {
	margin: 0 0 10px;
	font-size: clamp(27px, 3.4vw, 40px);
}

.jc-cta__text {
	margin: 0;
	max-width: 560px;
	color: rgba(255, 255, 255, 0.86);
}

.jc-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

/* ═════════════════════════ 23. Promo ═══════════════════════════ */

.jc-promo {
	position: relative;
	z-index: 95;
	background: linear-gradient(100deg, var(--jc-primary-hover), var(--jc-primary));
	color: #ffffff;
}

.jc-promo__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	padding-block: 11px;
}

.jc-promo__copy {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14.5px;
}

.jc-promo__icon {
	display: inline-flex;
	color: #ffffff;
}

.jc-promo__headline {
	margin-right: 8px;
	font-weight: 800;
}

.jc-promo__text {
	color: rgba(255, 255, 255, 0.86);
}

.jc-promo__meta {
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 13.5px;
}

.jc-promo__code strong {
	padding: 3px 9px;
	background: rgba(255, 255, 255, 0.18);
	border-radius: 5px;
	letter-spacing: 0.06em;
}

/* ════════════════════════ 24. Footer ═══════════════════════════ */

.jc-footer {
	background: var(--jc-charcoal);
	color: rgba(255, 255, 255, 0.68);
}

.jc-footer__inner {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1.15fr 1fr 1.35fr;
	gap: 40px;
	padding-block: 68px 54px;
}

.jc-footer__col--brand .jc-logo {
	margin-bottom: 18px;
}

.jc-footer__about {
	margin: 0 0 12px;
	font-size: 14.5px;
	line-height: 1.65;
}

.jc-footer__note {
	margin: 0;
	font-size: 13.5px;
	color: rgba(255, 255, 255, 0.5);
}

.jc-footer__title {
	margin: 0 0 16px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	color: #ffffff;
}

.jc-footer__links {
	display: grid;
	gap: 9px;
}

.jc-footer__links a {
	font-size: 14.5px;
	color: rgba(255, 255, 255, 0.68);
}

.jc-footer__links a:hover {
	color: #ffffff;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.jc-footer__all {
	font-weight: 700;
	color: var(--jc-accent) !important;
}

.jc-footer__contact {
	display: grid;
	gap: 13px;
	margin-bottom: 22px;
}

.jc-footer__contact li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14.5px;
	line-height: 1.5;
}

.jc-footer__contact svg {
	margin-top: 3px;
	color: var(--jc-accent);
}

.jc-footer__contact a {
	color: rgba(255, 255, 255, 0.86);
	word-break: break-word;
}

.jc-footer__contact a:hover {
	color: #ffffff;
}

.jc-footer__hoursRow {
	display: flex;
	justify-content: space-between;
	gap: 14px;
	font-size: 13.5px;
}

.jc-footer__social {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}

.jc-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 10px;
	color: rgba(255, 255, 255, 0.8);
}

.jc-footer__social a:hover {
	background: var(--jc-primary);
	border-color: var(--jc-primary);
	color: #ffffff;
}

.jc-footer__bar {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.jc-footer__barInner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	flex-wrap: wrap;
	padding-block: 20px;
}

.jc-footer__copy {
	margin: 0;
	font-size: 13.5px;
	color: rgba(255, 255, 255, 0.52);
}

.jc-footer__legal {
	display: flex;
	gap: 20px;
}

.jc-footer__legal a {
	font-size: 13.5px;
	color: rgba(255, 255, 255, 0.6);
}

.jc-footer__legal a:hover {
	color: #ffffff;
}

/* ══════════════════════ 25. Mobile bar ═════════════════════════ */

.jc-mobilebar {
	position: fixed;
	inset-inline: 0;
	bottom: 0;
	z-index: 80;
	display: none;
	gap: 10px;
	padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
	background: rgba(255, 255, 255, 0.97);
	border-top: 1px solid var(--jc-border);
	box-shadow: 0 -6px 22px rgba(11, 27, 51, 0.1);
	backdrop-filter: blur(8px);
	transition: transform 0.25s var(--jc-ease);
}

.jc-mobilebar.is-hidden {
	transform: translateY(110%);
}

.jc-mobilebar__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	flex: 1;
	min-height: 52px;
	padding: 12px 10px;
	border-radius: var(--jc-radius);
	font-family: var(--jc-font-heading);
	font-size: 14.5px;
	font-weight: 800;
	letter-spacing: 0.02em;
	text-align: center;
}

.jc-mobilebar__btn--call {
	background: #ffffff;
	border: 2px solid var(--jc-border);
	color: var(--jc-heading);
}

.jc-mobilebar__btn--quote {
	background: var(--jc-button);
	color: var(--jc-button-text);
}

.jc-mobilebar__btn--quote:hover {
	background: var(--jc-button-hover);
	color: var(--jc-button-text);
}

/* ══════════════════ 26. Elementor Pro forms ════════════════════ */

.jc-formcard .elementor-form .elementor-field-group {
	margin-bottom: 12px;
	padding-inline: 0 !important;
}

.jc-formcard .elementor-field-group > label.elementor-field-label {
	margin-bottom: 6px;
	font-size: 13px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.78);
}

.jc-formcard--light .elementor-field-group > label.elementor-field-label {
	color: var(--jc-heading);
}

.jc-formcard .elementor-field-textual,
.jc-formcard .elementor-field-group .elementor-field-textual {
	width: 100%;
	min-height: 50px;
	padding: 13px 16px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--jc-radius);
	font-family: var(--jc-font-body);
	font-size: 15px;
	line-height: 1.4;
	color: #ffffff;
	transition: border-color 0.2s var(--jc-ease), background-color 0.2s var(--jc-ease);
}

.jc-formcard .elementor-field-textual::placeholder {
	color: rgba(255, 255, 255, 0.55);
}

.jc-formcard .elementor-field-textual:focus {
	background: rgba(255, 255, 255, 0.12);
	border-color: var(--jc-accent);
	outline: none;
	box-shadow: 0 0 0 3px rgba(59, 139, 255, 0.24);
}

.jc-formcard select.elementor-field-textual {
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.7) 50%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.7) 50%, transparent 50%);
	background-position: calc(100% - 20px) calc(50% + 2px), calc(100% - 14px) calc(50% + 2px);
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
	padding-right: 40px;
}

.jc-formcard textarea.elementor-field-textual {
	min-height: 104px;
	resize: vertical;
}

/* Light variant fields */
.jc-formcard--light .elementor-field-textual,
.jc-formcard--light .elementor-field-group .elementor-field-textual {
	background: #ffffff;
	border-color: var(--jc-border);
	color: var(--jc-heading);
}

.jc-formcard--light .elementor-field-textual::placeholder {
	color: #9aa3af;
}

.jc-formcard--light .elementor-field-textual:focus {
	background: #ffffff;
	border-color: var(--jc-primary);
	box-shadow: 0 0 0 3px rgba(10, 102, 255, 0.16);
}

.jc-formcard--light select.elementor-field-textual {
	background-image: linear-gradient(45deg, transparent 50%, var(--jc-muted) 50%),
		linear-gradient(135deg, var(--jc-muted) 50%, transparent 50%);
}

.jc-formcard .elementor-field-type-submit {
	margin-top: 4px;
}

.jc-formcard .elementor-button[type="submit"],
.jc-formcard button.elementor-button {
	width: 100%;
	min-height: 54px;
	padding: 15px 26px;
	background-color: var(--jc-button);
	border: 0;
	border-radius: var(--jc-radius);
	font-family: var(--jc-font-heading);
	font-size: var(--jc-btn-size);
	font-weight: 800;
	letter-spacing: var(--jc-btn-spacing);
	text-transform: var(--jc-btn-transform);
	color: var(--jc-button-text);
	cursor: pointer;
	transition: background-color 0.2s var(--jc-ease), transform 0.2s var(--jc-ease);
}

.jc-formcard .elementor-button[type="submit"]:hover,
.jc-formcard button.elementor-button:hover {
	background-color: var(--jc-button-hover);
	transform: translateY(-1px);
}

.jc-formcard .elementor-message {
	margin-top: 12px;
	font-size: 14.5px;
}

.jc-formcard .elementor-message-danger {
	color: #ff9d9d;
}

.jc-formcard--light .elementor-message-danger {
	color: #c0392b;
}

.jc-formcard .elementor-message-success {
	color: #8ff0c0;
}

.jc-formcard--light .elementor-message-success {
	color: var(--jc-success);
}

/* Two-column field layout inside the wide form card. */
.jc-formcard--light .elementor-form .elementor-form-fields-wrapper {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 14px;
}

.jc-formcard--light .elementor-form .elementor-field-group-message,
.jc-formcard--light .elementor-form .elementor-field-type-submit,
.jc-formcard--light .elementor-form .elementor-field-type-textarea,
.jc-formcard--light .elementor-form .elementor-field-type-acceptance {
	grid-column: 1 / -1;
}

/* Fallback shown when Elementor Pro is unavailable. */
.jc-formnotice {
	padding: 20px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px dashed rgba(255, 255, 255, 0.3);
	border-radius: var(--jc-radius);
	font-size: 14.5px;
	text-align: center;
}

.jc-formcard--light .jc-formnotice {
	background: var(--jc-primary-soft);
	border-color: rgba(10, 102, 255, 0.3);
	color: var(--jc-heading);
}

.jc-formnotice__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-top: 14px;
}

/* ═══════════════════ 27. Notices & richtext ════════════════════ */

.jc-notice {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 34px;
	padding: 18px 20px;
	background: var(--jc-primary-soft);
	border-left: 4px solid var(--jc-primary);
	border-radius: var(--jc-radius);
}

.jc-notice p {
	margin: 0;
	font-size: 14.5px;
	color: var(--jc-heading);
}

.jc-notice svg {
	margin-top: 2px;
	flex: none;
	color: var(--jc-primary);
}

.jc-richtext h2 {
	margin-top: 38px;
	font-size: 25px;
}

.jc-richtext h2:first-child {
	margin-top: 0;
}

.jc-richtext h3 {
	margin-top: 26px;
	font-size: 19px;
}

.jc-richtext p,
.jc-richtext li {
	font-size: 16px;
	line-height: 1.7;
}

.jc-richtext ul {
	margin: 0 0 1em;
	padding-left: 22px;
}

.jc-richtext li {
	list-style: disc;
	margin-bottom: 8px;
}

/* ════════════════════════ 28. Reveals ══════════════════════════ */

[data-jc-reveal] {
	opacity: 1;
}

.jc-reveals-on [data-jc-reveal] {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.55s var(--jc-ease), transform 0.55s var(--jc-ease);
	transition-delay: calc(var(--jc-reveal-delay, 0) * 70ms);
}

.jc-reveals-on [data-jc-reveal].is-visible {
	opacity: 1;
	transform: none;
}

/* Already on screen at load: shown at once, with no transition at all. */
.jc-reveals-on [data-jc-reveal].jc-reveal-instant {
	transition: none;
	transition-delay: 0s;
}

@media (prefers-reduced-motion: reduce) {
	.justyclean-site *,
	.justyclean-site *::before,
	.justyclean-site *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}

	.jc-reveals-on [data-jc-reveal] {
		opacity: 1;
		transform: none;
	}

	.jc-hero__video {
		display: none;
	}
}

/* ═════════════════════ 29. Responsive ══════════════════════════ */

@media (max-width: 1200px) {
	.jc-cards--5 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.jc-icards--5 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.jc-footer__inner {
		grid-template-columns: 1.5fr 1fr 1.1fr 1fr;
	}
	.jc-footer__col--contact {
		grid-column: 1 / -1;
	}
	.jc-footer__contact {
		grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	}
}

@media (max-width: 1024px) {
	:root {
		--jc-space: 76px;
	}

	.jc-nav,
	.jc-header__phone {
		display: none;
	}

	.jc-burger {
		display: inline-flex;
	}

	.jc-hero {
		min-height: 0;
		padding-block: 128px 70px;
	}

	.jc-hero__inner {
		grid-template-columns: minmax(0, 1fr);
		gap: 40px;
	}

	.jc-hero__form {
		max-width: 560px;
	}

	.jc-focus__inner,
	.jc-owners__inner,
	.jc-prose__inner,
	.jc-quote__inner,
	.jc-checklist__inner--split {
		grid-template-columns: minmax(0, 1fr);
		gap: 40px;
	}

	.jc-focus--flip .jc-focus__copy {
		order: 0;
	}

	.jc-owners__figure {
		max-width: 460px;
	}

	.jc-cards--4,
	.jc-cards--5 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.jc-icards--4,
	.jc-icards--5,
	.jc-icards--6 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

	.jc-inds { grid-template-columns: repeat(3, minmax(0, 1fr)); }

	.jc-trust {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.jc-trust__item:nth-child(2n) {
		border-right: 0;
	}

	.jc-trust__item:nth-child(-n + 2) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.11);
	}

	.jc-chips {
		justify-content: flex-start;
	}

	.jc-pagehero {
		padding-block: 138px 62px;
	}
}

@media (max-width: 782px) {
	body.admin-bar .jc-header--sticky {
		top: 46px;
	}
}

@media (max-width: 767px) {
	:root {
		--jc-space: var(--jc-space-mobile);
		--jc-gap: 16px;
	}

	.jc-container {
		padding-inline: 18px;
	}

	.jc-hero {
		padding-block: 112px 0;
	}

	.jc-hero__inner {
		gap: 32px;
	}

	.jc-hero__title {
		font-size: clamp(30px, 8.4vw, 40px);
	}

	.jc-hero__points {
		grid-template-columns: minmax(0, 1fr);
		gap: 12px;
	}

	/* The mobile mockup floats a white form card over the hero boundary.
	   Rather than a negative margin plus a sibling selector — which breaks the
	   moment Elementor wraps each section — the dark media layer simply stops
	   short, so the card straddles the edge wherever it is nested. */
	.jc-hero--form .jc-hero__media {
		bottom: 96px;
	}

	.jc-hero:not(.jc-hero--form) {
		padding-bottom: var(--jc-space-mobile);
	}

	.jc-trustwrap--panel {
		margin-top: 34px;
	}

	.jc-formcard {
		padding: 22px 18px;
		background: #ffffff;
		border-color: var(--jc-border);
		backdrop-filter: none;
	}

	.jc-formcard .jc-formcard__title {
		color: var(--jc-heading);
		font-size: 22px;
	}

	.jc-formcard .jc-formcard__sub,
	.jc-formcard .jc-formcard__note {
		color: var(--jc-muted);
	}

	.jc-formcard .elementor-field-textual,
	.jc-formcard .elementor-field-group .elementor-field-textual {
		background: #ffffff;
		border-color: var(--jc-border);
		color: var(--jc-heading);
	}

	.jc-formcard .elementor-field-textual::placeholder {
		color: #9aa3af;
	}

	.jc-formcard .elementor-field-group > label.elementor-field-label {
		color: var(--jc-heading);
	}

	.jc-formcard--light .elementor-form .elementor-form-fields-wrapper {
		grid-template-columns: minmax(0, 1fr);
	}

	/* Trust items sit four-across with the icon above the label, exactly as in
	   the mobile mockup, and drop their descriptions at this width. */
	.jc-trust {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.jc-trust__item {
		flex-direction: column;
		align-items: center;
		gap: 9px;
		padding: 20px 8px;
		text-align: center;
		border-bottom: 0;
	}

	.jc-trust__item:nth-child(-n + 2) {
		border-bottom: 0;
	}

	.jc-trust__item:nth-child(2n) {
		border-right: 1px solid rgba(255, 255, 255, 0.11);
	}

	.jc-trust__item:last-child {
		border-right: 0;
	}

	.jc-trust__heading {
		font-size: 13px;
	}

	.jc-trust__text {
		display: none;
	}

	.jc-cards--3,
	.jc-cards--4,
	.jc-cards--5 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.jc-card {
		flex-direction: column;
		gap: 12px;
		padding: 18px 16px 40px;
	}

	/* The bottom action bar already carries the quote CTA on mobile, so the
	   header keeps just the logo and the menu button. */
	.jc-has-mobile-bar .jc-header__cta {
		display: none;
	}

	.jc-card__icon {
		width: 46px;
		height: 46px;
	}

	.jc-card__title {
		font-size: 15px;
	}

	.jc-card__desc {
		font-size: 13px;
	}

	.jc-card__arrow {
		opacity: 1;
		transform: none;
		right: 14px;
		bottom: 14px;
	}

	.jc-icards--3,
	.jc-icards--4,
	.jc-icards--5,
	.jc-icards--6 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.jc-icard {
		padding: 22px 16px;
	}

	.jc-inds {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.jc-ticks--cols2 {
		grid-template-columns: minmax(0, 1fr);
	}

	.jc-shead {
		margin-bottom: 32px;
	}

	.jc-cta__inner {
		gap: 26px;
	}

	.jc-cta__actions {
		width: 100%;
	}

	.jc-cta__actions .jc-btn {
		flex: 1 1 100%;
	}

	.jc-areastrip__inner {
		gap: 22px;
	}

	.jc-footer__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 32px 24px;
		padding-block: 48px 36px;
	}

	.jc-footer__col--brand {
		grid-column: 1 / -1;
	}

	.jc-footer__barInner {
		justify-content: center;
		text-align: center;
	}

	.jc-mobilebar {
		display: flex;
	}

	.jc-has-mobile-bar .jc-footer__bar {
		padding-bottom: 74px;
	}
}

@media (max-width: 480px) {
	.jc-icards--3,
	.jc-icards--4,
	.jc-icards--5,
	.jc-icards--6 {
		grid-template-columns: minmax(0, 1fr);
	}

	.jc-footer__inner {
		grid-template-columns: minmax(0, 1fr);
	}

	.jc-promo__inner {
		justify-content: center;
		text-align: center;
	}

	.jc-promo__copy {
		flex-direction: column;
		gap: 6px;
	}
}

@media (max-width: 360px) {
	.jc-container {
		padding-inline: 14px;
	}

	.jc-mobilebar__btn {
		font-size: 13px;
		padding-inline: 6px;
	}

	/* Below this, two service cards side by side stop being readable. */
	.jc-cards--3,
	.jc-cards--4,
	.jc-cards--5 {
		grid-template-columns: minmax(0, 1fr);
	}

	.jc-card {
		flex-direction: row;
		align-items: center;
		padding: 16px 42px 16px 16px;
	}

	.jc-card__arrow {
		top: 50%;
		bottom: auto;
		transform: translateY(-50%);
	}

	.jc-trust {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.jc-trust__item:nth-child(-n + 2) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.11);
	}
}

/* Elementor editor: the plugin's fixed chrome must never cover the canvas. */
.elementor-editor-active .jc-header--sticky,
.elementor-editor-active .jc-mobilebar {
	position: static;
}
