
:root {
	--bg: #f7f9fb;
	--surface: #f7f9fb;
	--surface-lowest: #ffffff;
	--surface-variant: #e0e3e5;
	--outline-variant: #c4c7c9;
	--outline-variant-rgb: 196 199 201;
	--text: #191c1e;
	--muted: #444749;
	--primary: #000000;

	--worker-rgb: 114 144 111;
	--employer-rgb: 196 221 226;
	--agency-rgb: 91 75 186;

	--ease-out-cinematic: cubic-bezier(0.16, 1, 0.3, 1);
	--ease-in-out-cinematic: cubic-bezier(0.65, 0, 0.35, 1);
	--ease-elastic-out: cubic-bezier(0.34, 1.56, 0.64, 1);
	--duration-fast: 220ms;
	--duration-med: 520ms;
	--duration-slow: 920ms;

	/* z-index scale */
	--z-panels: 10;
	--z-panel-selected: 40;
	--z-film-grain: 30;
	--z-reveal: 50;
	--z-nav: 100;
	--z-overlay: 120;
}

html {
	text-rendering: geometricPrecision;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	background: var(--bg);
	color: var(--text);
	-webkit-overflow-scrolling: touch;
}

a,
button {
	-webkit-tap-highlight-color: transparent;
}

body main {
	isolation: isolate;
}

/* ── Ambient Background ─────────────────────────────
   GPU-promoted with minimal gradient complexity       */

body main::before {
	content: "";
	position: absolute;
	inset: -10%;
	pointer-events: none;
	z-index: 0;
	opacity: 0.45;
	background:
		radial-gradient(600px circle at 12% 10%, rgb(var(--worker-rgb) / 0.12), transparent 50%),
		radial-gradient(700px circle at 50% 5%, rgb(var(--employer-rgb) / 0.1), transparent 45%),
		radial-gradient(600px circle at 88% 10%, rgb(var(--agency-rgb) / 0.1), transparent 50%);
	transform: translateZ(0);
	animation: beegunluk-ambient-pan 18s var(--ease-in-out-cinematic) infinite;
	will-change: transform;
}

/* ── Film Grain Overlay ─────────────────────────────
   Removed mix-blend-mode — invisible at 0.03 opacity
   and saves a compositing pass                        */

body main::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 30;
	opacity: 0.025;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.3'/%3E%3C/svg%3E");
	background-size: 200px 200px;
	transform: translateZ(0);
}

@keyframes beegunluk-ambient-pan {
	0% {
		transform: translate3d(-1.5%, -1%, 0) scale(1.01);
	}
	50% {
		transform: translate3d(1.5%, 1%, 0) scale(1.03);
	}
	100% {
		transform: translate3d(-1.5%, -1%, 0) scale(1.01);
	}
}

/* ═══════════════════════════════════════════════════
   CINEMATIC PANEL IMAGE SYSTEM
   GPU-only transforms, no filter animations in CSS
   ═══════════════════════════════════════════════════ */

.panel-cinema {
	position: absolute;
	inset: 0;
	z-index: 1;
	overflow: hidden;
	pointer-events: none;
	contain: strict;
}

.panel-hover-employer .panel-cinema {
	background: linear-gradient(165deg, #C4DDE2 0%, #d8eaee 40%, #e8f2f5 100%);
}

.panel-cinema img {
	position: absolute;
	inset: -8%;
	width: 116%;
	height: 116%;
	object-fit: cover;
	object-position: center 20%;
	transform: scale(1.08) translateZ(0);
	opacity: 0.55;
	user-select: none;
	-webkit-user-drag: none;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

.panel-hover-worker .panel-cinema img {
	object-position: center 40%;
}

.panel-hover-employer .panel-cinema img {
	object-position: center 15%;
}

.panel-hover-agency .panel-cinema img {
	object-position: center 30%;
}

/* ── Gradient Overlays ──────────────────────────────
   Reduced to 2 critical layers (removed vignette —
   its effect is negligible with white overlays)       */

.panel-cinema-overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 2;
}

.panel-cinema-overlay--bottom {
	background: linear-gradient(
		to bottom,
		rgb(var(--cinema-accent-rgb) / 0.18) 0%,
		rgb(var(--cinema-accent-rgb) / 0.08) 30%,
		rgb(var(--cinema-accent-rgb) / 0.04) 55%,
		rgb(var(--cinema-accent-rgb) / 0.06) 75%,
		rgb(247 249 251 / 0.85) 90%,
		rgb(247 249 251 / 0.95) 100%
	);
}

.panel-cinema-overlay--accent {
	--cinema-accent-rgb: 0 0 0;
	background: radial-gradient(
		ellipse 120% 100% at 50% 100%,
		rgb(var(--cinema-accent-rgb) / 0.12) 0%,
		transparent 65%
	);
	opacity: 0.6;
}

.panel-cinema-overlay--color-up {
	--color-up-rgb: 0 0 0;
	background: linear-gradient(
		to top,
		rgb(var(--color-up-rgb) / 0.22) 0%,
		rgb(var(--color-up-rgb) / 0.12) 25%,
		rgb(var(--color-up-rgb) / 0.04) 50%,
		transparent 75%
	);
	opacity: 0.85;
	transition: opacity 600ms var(--ease-out-cinematic);
}

@media (hover: hover) {
	.panel-hover-worker:hover .panel-cinema-overlay--color-up,
	.panel-hover-employer:hover .panel-cinema-overlay--color-up,
	.panel-hover-agency:hover .panel-cinema-overlay--color-up {
		opacity: 1;
	}
}

.panel-cinema-overlay--vignette {
	background:
		radial-gradient(
			ellipse 80% 70% at 50% 45%,
			transparent 35%,
			rgb(255 255 255 / 0.55) 100%
		),
		linear-gradient(
			to bottom,
			rgb(255 255 255 / 0.6) 0%,
			transparent 18%
		);
}

/* ── Panel Base Styles ──────────────────────────────
   PERF: removed filter (drop-shadow) — replaced with
   box-shadow. Removed will-change: filter.
   Only transform is GPU-promoted now.                 */

body .panel-hover-worker,
body .panel-hover-employer,
body .panel-hover-agency {
	--panel-accent-rgb: 0 0 0;
	--spot-x: 26%;
	--spot-y: 22%;
	--shine-x: 78%;
	--shine-y: 14%;
	--accent-alpha: 0.20;
	--glow-alpha: 0.45;
	--glow2-alpha: 0.22;

	background:
		linear-gradient(180deg, rgb(255 255 255 / 0.92), rgb(255 255 255 / 0.78));

	border-color: rgb(var(--outline-variant-rgb) / 0.55);

	box-shadow:
		inset 0 1px 0 rgb(255 255 255 / 0.85),
		inset 0 0 0 1px rgb(var(--outline-variant-rgb) / 0.45),
		0 18px 40px rgb(0 0 0 / 0.06),
		0 50px 100px rgb(0 0 0 / 0.03);

	transform: translateZ(0);

	transition:
		box-shadow var(--duration-slow) var(--ease-out-cinematic),
		border-color var(--duration-med) var(--ease-out-cinematic);
}

body .panel-hover-worker {
	--panel-accent-rgb: var(--worker-rgb);
}

body .panel-hover-employer {
	--panel-accent-rgb: var(--employer-rgb);
}

body .panel-hover-agency {
	--panel-accent-rgb: var(--agency-rgb);
}

/* ── Panel Lighting Layer (::before) ────────────────
   Simplified to single gradient for perf              */

body .panel-hover-worker::before,
body .panel-hover-employer::before,
body .panel-hover-agency::before {
	content: "";
	position: absolute;
	inset: -1px;
	pointer-events: none;
	z-index: 0;
	opacity: 0.7;
	background:
		radial-gradient(600px circle at var(--spot-x) var(--spot-y), rgb(var(--panel-accent-rgb) / var(--accent-alpha)), transparent 55%),
		radial-gradient(450px circle at var(--shine-x) var(--shine-y), rgb(255 255 255 / 0.7), transparent 48%);
	transform: translateZ(0);
	transition: opacity var(--duration-slow) var(--ease-out-cinematic);
}

/* ── Panel Glow Layer (::after) ─────────────────────
   PERF: reduced blur from 35px→20px, removed
   mix-blend-mode (saves a compositor pass),
   reduced inset from -30% to -15%                     */

body .panel-hover-worker::after,
body .panel-hover-employer::after,
body .panel-hover-agency::after {
	content: "";
	position: absolute;
	inset: -15%;
	pointer-events: none;
	z-index: 0;
	opacity: 0;
	filter: blur(20px);
	background:
		radial-gradient(closest-side at var(--spot-x) var(--spot-y), rgb(var(--panel-accent-rgb) / var(--glow-alpha)), transparent 58%);
	transition: opacity var(--duration-slow) var(--ease-out-cinematic);
	transform: translateZ(0);
}

/* ── Hover States ─────────────────────────────────── */

@media (hover: hover) {
	body .panel-hover-worker:hover,
	body .panel-hover-agency:hover {
		border-color: rgb(var(--panel-accent-rgb) / 0.42);
		box-shadow:
			inset 0 1px 0 rgb(255 255 255 / 0.92),
			inset 0 0 0 1px rgb(var(--outline-variant-rgb) / 0.50),
			0 22px 50px rgb(0 0 0 / 0.1),
			0 70px 140px rgb(0 0 0 / 0.06);
	}

	body .panel-hover-employer:hover {
		border-color: rgb(var(--employer-rgb) / 0.65);
		box-shadow:
			inset 0 1px 0 rgb(255 255 255 / 0.95),
			inset 0 0 0 1.5px rgb(var(--employer-rgb) / 0.45),
			0 22px 55px rgb(var(--employer-rgb) / 0.18),
			0 70px 140px rgb(var(--employer-rgb) / 0.08),
			0 0 60px rgb(var(--employer-rgb) / 0.12);
	}

	body .panel-hover-worker:hover::before,
	body .panel-hover-agency:hover::before {
		opacity: 1;
	}

	body .panel-hover-employer:hover::before {
		opacity: 1;
		background:
			radial-gradient(650px circle at var(--spot-x) var(--spot-y), rgb(var(--employer-rgb) / 0.38), transparent 55%),
			radial-gradient(500px circle at var(--shine-x) var(--shine-y), rgb(255 255 255 / 0.85), transparent 48%);
	}

	body .panel-hover-worker:hover::after,
	body .panel-hover-agency:hover::after {
		opacity: 1;
	}

	body .panel-hover-employer:hover::after {
		opacity: 1;
		filter: blur(25px);
		background:
			radial-gradient(closest-side at var(--spot-x) var(--spot-y), rgb(var(--employer-rgb) / 0.65), transparent 58%);
	}
}

body .panel-hover-worker:focus-visible,
body .panel-hover-employer:focus-visible,
body .panel-hover-agency:focus-visible {
	outline: none;
	border-color: rgb(var(--panel-accent-rgb) / 0.55);
	box-shadow:
		inset 0 0 0 1px rgb(var(--panel-accent-rgb) / 0.34),
		0 0 0 6px rgb(var(--panel-accent-rgb) / 0.10);
}

body .panel-hover-worker > div.absolute.inset-0,
body .panel-hover-employer > div.absolute.inset-0,
body .panel-hover-agency > div.absolute.inset-0 {
	mix-blend-mode: multiply;
}

/* ── Floating Card Elements ───────────────────────── */

body .panel-hover-worker .floating,
body .panel-hover-employer .floating,
body .panel-hover-agency .floating {
	transform: translateZ(0);
}

body .panel-hover-worker .floating > div,
body .panel-hover-employer .floating > div,
body .panel-hover-agency .floating > div {
	background:
		linear-gradient(180deg, rgb(255 255 255 / 0.92), rgb(255 255 255 / 0.8));
	box-shadow:
		inset 0 1px 0 rgb(255 255 255 / 0.85),
		inset 0 0 0 1px rgb(var(--outline-variant-rgb) / 0.40),
		0 14px 35px rgb(0 0 0 / 0.08);
	transition:
		box-shadow var(--duration-slow) var(--ease-out-cinematic);
}

@media (hover: hover) {
	body .panel-hover-worker:hover .floating > div,
	body .panel-hover-employer:hover .floating > div,
	body .panel-hover-agency:hover .floating > div {
		box-shadow:
			inset 0 1px 0 rgb(255 255 255 / 0.90),
			inset 0 0 0 1px rgb(var(--panel-accent-rgb) / 0.24),
			0 20px 50px rgb(0 0 0 / 0.10),
			0 0 28px rgb(var(--panel-accent-rgb) / 0.08);
	}
}

body .floating {
	animation: none;
}

/* ── Dim State ─────────────────────────────────────── */

body .panel-dimmed {
	opacity: 0.88;
}

/* ── Reduced Motion ────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
	body main::before {
		animation: none;
	}

	body .panel-hover-worker,
	body .panel-hover-employer,
	body .panel-hover-agency,
	body .panel-hover-worker::before,
	body .panel-hover-employer::before,
	body .panel-hover-agency::before,
	body .panel-hover-worker::after,
	body .panel-hover-employer::after,
	body .panel-hover-agency::after {
		transition-duration: 1ms;
	}
}

/* ═══════════════════════════════════════════════════
   RIGHT-SIDE REVEAL PANEL
   ═══════════════════════════════════════════════════ */

.reveal-panel {
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	z-index: 50;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 72px 56px 48px 64px;
	pointer-events: none;
	opacity: 0;
	overflow: hidden;
}

body.mode-active {
	overflow-y: auto !important;
	overflow-x: hidden !important;
}

body.mode-active main {
	position: relative;
	overflow: visible;
}

/* Scroll-down hint */
.scroll-hint {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	z-index: var(--z-reveal);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	pointer-events: none;
	opacity: 0;
}

.scroll-hint-text {
	font-family: "Inter", sans-serif;
	font-size: 11px;
	font-weight: 500;
	color: var(--muted);
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.scroll-hint-line {
	width: 1px;
	height: 28px;
	background: linear-gradient(to bottom, var(--muted), transparent);
	animation: scroll-hint-pulse 2s var(--ease-in-out-cinematic) infinite;
}

@keyframes scroll-hint-pulse {
	0%, 100% { opacity: 0.4; transform: scaleY(0.7); }
	50% { opacity: 1; transform: scaleY(1); }
}

.reveal-panel[aria-hidden="false"] {
	pointer-events: auto;
}

/* ── Back Button ────────────────────────────────────
   PERF: backdrop-filter only applied when visible     */

.reveal-back {
	position: fixed;
	top: 24px;
	right: 24px;
	transform: translateX(8px);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 1px solid rgb(var(--outline-variant-rgb) / 0.5);
	border-radius: 50%;
	background: rgb(255 255 255 / 0.95);
	color: var(--text);
	cursor: pointer;
	opacity: 0;
	z-index: 200;
	box-shadow: 0 4px 20px rgb(0 0 0 / 0.08);
	transition:
		background 220ms var(--ease-out-cinematic),
		border-color 220ms var(--ease-out-cinematic),
		box-shadow 220ms var(--ease-out-cinematic),
		transform 220ms var(--ease-out-cinematic);
}

.reveal-back[data-visible="true"] {
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.reveal-back:hover {
	background: rgb(255 255 255 / 1);
	border-color: rgb(var(--outline-variant-rgb) / 0.8);
	box-shadow: 0 6px 24px rgb(0 0 0 / 0.12);
	transform: translateY(-50%) translateX(0) scale(1.08);
}

.reveal-back:active {
	transform: translateY(-50%) scale(0.92);
	transition-duration: 80ms;
}

/* ── Content Blocks ──────────────────────────────── */

.reveal-content {
	display: none;
	flex-direction: column;
	gap: 0;
}

.reveal-content.is-active {
	display: flex;
}

/* ── Typography ──────────────────────────────────── */

.reveal-tagline {
	font-family: "Inter", sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	opacity: 0;
	transform: translateY(16px);
	margin-bottom: 12px;
}

.reveal-headline {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: clamp(36px, 4.5vw, 56px);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.035em;
	color: var(--text);
	opacity: 0;
	transform: translateY(24px);
	margin-bottom: 16px;
}

.reveal-description {
	font-family: "Inter", sans-serif;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.65;
	color: var(--muted);
	max-width: 420px;
	opacity: 0;
	transform: translateY(18px);
	margin-bottom: 24px;
}

/* ── Feature Pills ───────────────────────────────── */

.reveal-features {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 28px;
	opacity: 0;
	transform: translateY(14px);
}

.reveal-pill {
	--pill-rgb: 0 0 0;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 14px;
	border-radius: 999px;
	background: rgb(var(--pill-rgb) / 0.07);
	color: rgb(var(--pill-rgb) / 0.85);
	font-family: "Inter", sans-serif;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.005em;
	white-space: nowrap;
	transition: background 220ms var(--ease-out-cinematic);
}

.reveal-pill:hover {
	background: rgb(var(--pill-rgb) / 0.13);
}

/* ── Floating Stat Card ──────────────────────────── */

.reveal-card {
	--card-accent: 0 0 0;
	max-width: 280px;
	opacity: 0;
	transform: translateY(28px) scale(0.94);
	margin-bottom: 32px;
}

.reveal-card-inner {
	padding: 20px;
	border-radius: 16px;
	background: linear-gradient(
		165deg,
		rgb(255 255 255 / 0.95),
		rgb(255 255 255 / 0.8)
	);
	border: 1px solid rgb(var(--outline-variant-rgb) / 0.45);
	box-shadow:
		0 1px 0 rgb(255 255 255 / 0.9) inset,
		0 16px 40px rgb(0 0 0 / 0.07),
		0 4px 12px rgb(0 0 0 / 0.04);
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.reveal-card-header {
	display: flex;
	align-items: center;
	gap: 12px;
}

.reveal-card-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.reveal-card-icon .material-symbols-outlined {
	font-size: 22px;
}

.reveal-card-title {
	font-family: "Inter", sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: var(--text);
	line-height: 1.2;
}

.reveal-card-subtitle {
	font-family: "Inter", sans-serif;
	font-size: 12px;
	font-weight: 400;
	color: var(--muted);
	line-height: 1.3;
}

.reveal-card-value {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 32px;
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1;
}

.reveal-card-bar-wrap {
	width: 100%;
	height: 6px;
	border-radius: 3px;
	background: rgb(var(--outline-variant-rgb) / 0.3);
	overflow: hidden;
}

.reveal-card-bar {
	height: 100%;
	border-radius: 3px;
	width: 100%;
	transform-origin: left center;
}

.reveal-card-meta {
	font-family: "Inter", sans-serif;
	font-size: 12px;
	font-weight: 400;
	color: var(--muted);
	letter-spacing: 0.005em;
}

/* ── Store Buttons ───────────────────────────────── */

.reveal-stores {
	display: flex;
	gap: 10px;
	opacity: 0;
	transform: translateY(18px);
}

.store-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 18px;
	border-radius: 12px;
	background: var(--primary);
	color: #fff;
	text-decoration: none;
	transition:
		transform 280ms var(--ease-out-cinematic),
		box-shadow 280ms var(--ease-out-cinematic),
		background 280ms var(--ease-out-cinematic);
}

.store-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgb(0 0 0 / 0.18);
	background: #1a1a1a;
}

.store-btn:active {
	transform: scale(0.97);
}

.store-btn svg {
	flex-shrink: 0;
}

.store-btn-text {
	display: flex;
	flex-direction: column;
	line-height: 1;
}

.store-btn-small {
	font-family: "Inter", sans-serif;
	font-size: 9px;
	font-weight: 400;
	letter-spacing: 0.02em;
	opacity: 0.85;
}

.store-btn-big {
	font-family: "Inter", sans-serif;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: -0.01em;
	margin-top: 1px;
}

/* ═══════════════════════════════════════════════════
   EXPANDABLE LOWER DETAIL SECTIONS
   Cinematic scene-based pinned transitions
   ═══════════════════════════════════════════════════ */

.detail-section {
	display: none;
	width: 100%;
	background: var(--bg);
	position: relative;
	z-index: 5;
}

.detail-section.is-visible {
	display: block;
}

/* ── Detail Block Base ───────────────────────────── */

.detail-block {
	opacity: 0;
	transform: translateY(48px);
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding: 80px 48px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
}

/* ── Showcase (Hero) Block ───────────────────────── */

.detail-showcase {
	--accent-rgb: 0 0 0;
	padding-top: 0;
	padding-bottom: 0;
	text-align: center;
}

.detail-showcase-inner {
	margin-bottom: 56px;
}

.detail-badge {
	--badge-rgb: 0 0 0;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 18px 8px 12px;
	border-radius: 999px;
	background: rgb(var(--badge-rgb) / 0.06);
	color: rgb(var(--badge-rgb) / 0.85);
	font-family: "Inter", sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.02em;
	margin-bottom: 24px;
}

.detail-badge .material-symbols-outlined {
	font-size: 18px;
}

.detail-title {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.035em;
	color: var(--text);
	margin-bottom: 20px;
}

.detail-subtitle {
	font-family: "Inter", sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.7;
	color: var(--muted);
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}

/* ── Stat Ribbon ─────────────────────────────────── */

.detail-stat-ribbon {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	padding: 32px 48px;
	border-radius: 20px;
	background: linear-gradient(
		165deg,
		rgb(255 255 255 / 0.92),
		rgb(255 255 255 / 0.76)
	);
	border: 1px solid rgb(var(--outline-variant-rgb) / 0.4);
	box-shadow:
		0 1px 0 rgb(255 255 255 / 0.9) inset,
		0 16px 48px rgb(0 0 0 / 0.05),
		0 4px 16px rgb(0 0 0 / 0.03);
	max-width: 640px;
	margin: 0 auto;
}

.detail-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}

.detail-stat-value {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 36px;
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1;
}

.detail-stat-label {
	font-family: "Inter", sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: var(--muted);
	letter-spacing: 0.01em;
}

.detail-stat-divider {
	width: 1px;
	height: 48px;
	background: rgb(var(--outline-variant-rgb) / 0.5);
}

/* ── Feature Grid ────────────────────────────────── */

.detail-features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	padding-top: 0;
	padding-bottom: 0;
	align-content: center;
}

.detail-feature-card {
	--card-rgb: 0 0 0;
	padding: 32px 28px;
	border-radius: 20px;
	background: linear-gradient(
		170deg,
		rgb(255 255 255 / 0.95),
		rgb(255 255 255 / 0.82)
	);
	border: 1px solid rgb(var(--outline-variant-rgb) / 0.4);
	box-shadow:
		0 1px 0 rgb(255 255 255 / 0.9) inset,
		0 12px 36px rgb(0 0 0 / 0.05),
		0 2px 8px rgb(0 0 0 / 0.03);
	display: flex;
	flex-direction: column;
	gap: 16px;
	position: relative;
	overflow: hidden;
	transition:
		transform 420ms var(--ease-out-cinematic),
		box-shadow 420ms var(--ease-out-cinematic),
		border-color 350ms var(--ease-out-cinematic);
}

.detail-feature-card:hover {
	transform: translateY(-4px);
	border-color: rgb(var(--card-rgb) / 0.25);
	box-shadow:
		0 1px 0 rgb(255 255 255 / 0.9) inset,
		0 20px 50px rgb(0 0 0 / 0.08),
		0 4px 14px rgb(0 0 0 / 0.04),
		0 0 0 1px rgb(var(--card-rgb) / 0.08);
}

.detail-feature-icon-wrap {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.detail-feature-title {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--text);
}

.detail-feature-desc {
	font-family: "Inter", sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.65;
	color: var(--muted);
}

/* ── Floating Mini-Card ──────────────────────────── */

.detail-feature-float {
	margin-top: auto;
	padding-top: 12px;
}

.detail-mini-card {
	padding: 14px 16px;
	border-radius: 12px;
	background: rgb(var(--card-rgb) / 0.04);
	border: 1px solid rgb(var(--card-rgb) / 0.08);
	display: flex;
	flex-direction: column;
	gap: 8px;
	transition: background 300ms var(--ease-out-cinematic);
}

.detail-feature-card:hover .detail-mini-card {
	background: rgb(var(--card-rgb) / 0.07);
}

.detail-mini-row {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: "Inter", sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: var(--muted);
}

.detail-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	flex-shrink: 0;
}

.detail-mini-val {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1;
}

.detail-mini-bar-wrap {
	width: 100%;
	height: 5px;
	border-radius: 3px;
	background: rgb(var(--outline-variant-rgb) / 0.25);
	overflow: hidden;
	margin-top: 4px;
}

.detail-mini-bar {
	height: 100%;
	border-radius: 3px;
}

.detail-mini-stars {
	font-family: "Inter", sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: #e8b730;
}

.detail-mini-stars span {
	font-weight: 700;
	margin-left: 4px;
}

/* ── CTA Band ────────────────────────────────────── */

.detail-cta-band {
	--band-rgb: 0 0 0;
	padding-top: 0;
	padding-bottom: 0;
	text-align: center;
}

.detail-cta-inner {
	padding: 56px 48px;
	border-radius: 24px;
	background: linear-gradient(
		160deg,
		rgb(var(--band-rgb) / 0.03),
		rgb(var(--band-rgb) / 0.08)
	);
	border: 1px solid rgb(var(--band-rgb) / 0.1);
	box-shadow: 0 12px 40px rgb(0 0 0 / 0.04);
}

.detail-cta-title {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: clamp(24px, 3vw, 36px);
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--text);
	margin-bottom: 12px;
}

.detail-cta-desc {
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.65;
	color: var(--muted);
	max-width: 440px;
	margin: 0 auto 28px;
}

.detail-cta-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.detail-cta-btn {
	display: inline-flex;
	align-items: center;
	padding: 12px 28px;
	border-radius: 12px;
	font-family: "Inter", sans-serif;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: -0.01em;
	text-decoration: none;
	transition:
		transform 280ms var(--ease-out-cinematic),
		box-shadow 280ms var(--ease-out-cinematic),
		background 280ms var(--ease-out-cinematic);
}

.detail-cta-btn:hover {
	transform: translateY(-2px);
}

.detail-cta-btn:active {
	transform: scale(0.97);
}

.detail-cta-btn.primary {
	background: var(--primary);
	color: #fff;
	box-shadow: 0 4px 16px rgb(0 0 0 / 0.12);
}

.detail-cta-btn.primary:hover {
	background: #1a1a1a;
	box-shadow: 0 8px 28px rgb(0 0 0 / 0.2);
}

.detail-cta-btn.secondary {
	background: rgb(var(--outline-variant-rgb) / 0.2);
	color: var(--text);
}

.detail-cta-btn.secondary:hover {
	background: rgb(var(--outline-variant-rgb) / 0.35);
	box-shadow: 0 4px 16px rgb(0 0 0 / 0.06);
}

/* ═══════════════════════════════════════════════════
   WORKER APPLICATION SECTION
   ═══════════════════════════════════════════════════ */

.worker-apply-section {
	position: relative;
	overflow: hidden;
	padding: 72px 64px;
	max-width: none;
}

.worker-apply-section::before {
	content: "";
	position: absolute;
	inset: -20%;
	background: radial-gradient(ellipse 60% 50% at 50% 100%, rgb(var(--worker-rgb) / 0.06), transparent 60%);
	pointer-events: none;
}

.detail-section[data-detail="worker"] .detail-block.detail-cta-band {
	max-width: none;
	padding: 48px 24px 80px;
	margin-top: 32px;
}

.detail-section[data-detail="worker"] .detail-cta-band .detail-cta-inner {
	max-width: 960px;
	margin-left: auto;
	margin-right: auto;
}

.worker-apply-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px 8px 12px;
	border-radius: 999px;
	background: rgb(114 144 111 / 0.08);
	color: rgb(114 144 111 / 0.9);
	font-family: "Inter", sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.02em;
	margin-bottom: 16px;
}

.worker-apply-badge .material-symbols-outlined {
	font-size: 16px;
}

.worker-apply-features {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	margin: 24px 0 8px;
	flex-wrap: wrap;
}

.worker-apply-feature {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: "Inter", sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: var(--muted);
}

.worker-apply-feature .material-symbols-outlined {
	font-size: 20px;
}

.worker-apply-btn {
	gap: 8px;
	padding: 16px 36px;
	font-size: 16px;
	border-radius: 14px;
	background: rgb(114 144 111);
	box-shadow: 0 6px 24px rgb(114 144 111 / 0.3);
}

.worker-apply-btn:hover {
	background: rgb(94 124 91) !important;
	box-shadow: 0 10px 32px rgb(114 144 111 / 0.4) !important;
}

.worker-apply-btn .material-symbols-outlined {
	transition: transform 280ms var(--ease-out-cinematic);
}

.worker-apply-btn:hover .material-symbols-outlined {
	transform: translateX(4px);
}

/* ── Store Button Apply Variant ───────────────────── */

.store-btn--apply {
	background: rgb(114 144 111);
	padding: 14px 24px;
	box-shadow: 0 6px 20px rgb(114 144 111 / 0.25);
}

.store-btn--apply:hover {
	background: rgb(94 124 91);
	box-shadow: 0 10px 28px rgb(114 144 111 / 0.35);
}

/* ═══════════════════════════════════════════════════
   EMPLOYER TRUST PANEL
   ═══════════════════════════════════════════════════ */

.employer-trust-panel {
	padding-top: 0;
	padding-bottom: 0;
}

.employer-trust-inner {
	padding: 48px 40px;
	border-radius: 24px;
	background: linear-gradient(165deg, rgb(255 255 255 / 0.96), rgb(255 255 255 / 0.84));
	border: 1px solid rgb(90 130 140 / 0.18);
	box-shadow:
		0 1px 0 rgb(255 255 255 / 0.9) inset,
		0 16px 48px rgb(0 0 0 / 0.05),
		0 4px 16px rgb(0 0 0 / 0.03);
}

.employer-trust-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.employer-trust-title {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 20px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--text);
}

.employer-trust-desc {
	font-family: "Inter", sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.65;
	color: var(--muted);
	max-width: 600px;
	margin-bottom: 32px;
}

.employer-trust-grid {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.employer-trust-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 20px 24px;
	border-radius: 16px;
	background: rgb(90 130 140 / 0.04);
	border: 1px solid rgb(90 130 140 / 0.1);
	transition: border-color 300ms var(--ease-out-cinematic), background 300ms var(--ease-out-cinematic);
}

.employer-trust-item:hover {
	border-color: rgb(90 130 140 / 0.25);
	background: rgb(90 130 140 / 0.07);
}

.employer-trust-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgb(90 130 140 / 0.1);
	color: rgb(90 130 140);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.employer-trust-icon .material-symbols-outlined {
	font-size: 22px;
}

.employer-trust-item-content h4 {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--text);
	margin-bottom: 4px;
}

.employer-trust-item-content p {
	font-family: "Inter", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--muted);
}

@media (max-width: 768px) {
	.employer-trust-inner {
		padding: 32px 20px;
	}

	.employer-trust-item {
		padding: 16px;
	}
}

/* ═══════════════════════════════════════════════════
   AGENCY DETAIL SECTIONS
   ═══════════════════════════════════════════════════ */

.agency-section-header {
	margin-bottom: 32px;
}

.agency-section-title {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--text);
	margin-bottom: 8px;
}

.agency-section-subtitle {
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--muted);
}

/* ── Agency Feature Cards Grid ────────────────────── */

.agency-features-section {
	padding-top: 0;
	padding-bottom: 40px;
}

.agency-features-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.agency-feature-card {
	padding: 28px 24px;
	border-radius: 18px;
	background: linear-gradient(165deg, rgb(255 255 255 / 0.95), rgb(255 255 255 / 0.82));
	border: 1px solid rgb(91 75 186 / 0.1);
	box-shadow: 0 8px 28px rgb(0 0 0 / 0.04);
	display: flex;
	flex-direction: column;
	gap: 12px;
	transition: transform 400ms var(--ease-out-cinematic), box-shadow 400ms var(--ease-out-cinematic), border-color 300ms var(--ease-out-cinematic);
}

.agency-feature-card:hover {
	transform: translateY(-3px);
	border-color: rgb(91 75 186 / 0.25);
	box-shadow: 0 14px 36px rgb(0 0 0 / 0.07);
}

.agency-feature-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.agency-feature-icon .material-symbols-outlined {
	font-size: 22px;
}

.agency-feature-title {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--text);
}

.agency-feature-desc {
	font-family: "Inter", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--muted);
}

/* ── Agency Problem → Solution Story ─────────────── */

.agency-story-section {
	padding-top: 40px;
	padding-bottom: 40px;
}

.agency-story-inner {
	padding: 44px 40px;
	border-radius: 24px;
	background: linear-gradient(165deg, rgb(255 255 255 / 0.96), rgb(255 255 255 / 0.84));
	border: 1px solid rgb(var(--outline-variant-rgb) / 0.35);
	box-shadow: 0 12px 40px rgb(0 0 0 / 0.04);
}

.agency-story-title {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: clamp(20px, 2.5vw, 26px);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--text);
	margin-bottom: 24px;
}

.agency-story-problems {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 28px;
	padding-bottom: 28px;
	border-bottom: 1px solid rgb(var(--outline-variant-rgb) / 0.3);
}

.agency-story-problem {
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: "Inter", sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: var(--muted);
	line-height: 1.5;
}

.agency-story-problem .material-symbols-outlined {
	font-size: 18px;
	flex-shrink: 0;
}

.agency-story-solution {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 16px 20px;
	border-radius: 14px;
	background: rgb(91 75 186 / 0.05);
	border: 1px solid rgb(91 75 186 / 0.12);
}

.agency-story-solution .material-symbols-outlined {
	font-size: 22px;
	color: rgb(91 75 186);
	flex-shrink: 0;
	margin-top: 1px;
}

.agency-story-solution p {
	font-family: "Inter", sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: var(--text);
	line-height: 1.5;
	margin: 0;
}

/* ── Agency Why Section ───────────────────────────── */

.agency-why-section {
	padding-top: 40px;
	padding-bottom: 40px;
}

.agency-why-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.agency-why-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 20px;
	border-radius: 14px;
	background: rgb(91 75 186 / 0.03);
	border: 1px solid rgb(91 75 186 / 0.08);
	font-family: "Inter", sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: var(--text);
	transition: background 250ms var(--ease-out-cinematic), border-color 250ms var(--ease-out-cinematic);
}

.agency-why-item:hover {
	background: rgb(91 75 186 / 0.06);
	border-color: rgb(91 75 186 / 0.18);
}

.agency-why-item .material-symbols-outlined {
	font-size: 20px;
	flex-shrink: 0;
}

/* ── Agency Responsive ────────────────────────────── */

@media (max-width: 768px) {
	.agency-features-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.agency-story-inner {
		padding: 28px 20px;
	}

	.agency-feature-card {
		padding: 22px 20px;
	}
}

/* ── Store Button Pricing Variant ──────────────────── */

.store-btn--pricing {
	background: rgb(90 130 140);
	padding: 14px 24px;
	box-shadow: 0 6px 20px rgb(90 130 140 / 0.25);
}

.store-btn--pricing:hover {
	background: rgb(70 110 120);
	box-shadow: 0 10px 28px rgb(90 130 140 / 0.35);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */

/* ── Tablet (≤1024px) ────────────────────────────── */

@media (max-width: 1024px) {
	.reveal-panel {
		padding: 56px 36px 36px 40px;
	}

	.reveal-headline {
		font-size: clamp(28px, 4vw, 42px);
	}

	.detail-features-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.detail-stat-ribbon {
		gap: 28px;
		padding: 24px 32px;
	}

	.detail-showcase {
		padding-top: 0;
		padding-bottom: 0;
	}

	.detail-block {
		padding: 60px 32px;
	}

	.detail-cta-inner {
		padding: 40px 32px;
	}
}

/* ── Mobile (≤768px) ─────────────────────────────── */

@media (max-width: 768px) {

	/* ── Main Layout: Compact 3-Card Stack ────────────── */

	body main {
		flex-direction: column;
		padding: 72px 16px 16px !important;
		height: 100vh !important;
		height: 100dvh !important;
		max-height: 100dvh !important;
		overflow: hidden !important;
		gap: 12px;
		justify-content: center;
	}

	body {
		overflow: hidden !important;
	}

	body main::before {
		animation: none;
		opacity: 0.12;
	}

	/* ── Panel Cards: Compact Horizontal Cards ────────── */

	body .panel-hover-worker,
	body .panel-hover-employer,
	body .panel-hover-agency {
		width: 100% !important;
		height: 0 !important;
		flex: 1 1 0 !important;
		margin-left: 0 !important;
		clip-path: none !important;
		flex-direction: row-reverse !important;
		justify-content: flex-start !important;
		align-items: center !important;
		border-right: none;
		border: 1px solid rgb(var(--outline-variant-rgb) / 0.25);
		border-radius: 18px !important;
		padding: 0 !important;
		position: relative;
		box-shadow: 0 4px 20px rgb(0 0 0 / 0.04);
		overflow: hidden !important;
		transition: transform 250ms var(--ease-out-cinematic), box-shadow 250ms var(--ease-out-cinematic), border-color 250ms var(--ease-out-cinematic);
	}

	body .panel-hover-worker {
		background: rgb(var(--worker-rgb) / 0.08) !important;
		border-color: rgb(var(--worker-rgb) / 0.15);
	}

	body .panel-hover-employer {
		background: rgb(90 130 140 / 0.08) !important;
		border-color: rgb(90 130 140 / 0.15);
	}

	body .panel-hover-agency {
		background: rgb(var(--agency-rgb) / 0.08) !important;
		border-color: rgb(var(--agency-rgb) / 0.15);
	}

	body .panel-hover-worker:active,
	body .panel-hover-employer:active,
	body .panel-hover-agency:active {
		transform: scale(0.97) !important;
		box-shadow: 0 2px 12px rgb(0 0 0 / 0.08);
	}

	body .panel-hover-worker:active {
		border-color: rgb(var(--worker-rgb) / 0.4);
	}

	body .panel-hover-employer:active {
		border-color: rgb(90 130 140 / 0.4);
	}

	body .panel-hover-agency:active {
		border-color: rgb(var(--agency-rgb) / 0.4);
	}

	body .panel-hover-worker::before,
	body .panel-hover-employer::before,
	body .panel-hover-agency::before,
	body .panel-hover-worker::after,
	body .panel-hover-employer::after,
	body .panel-hover-agency::after {
		display: none !important;
	}

	/* ── Panel Inner Content (Right Text Side) ────────── */

	body .panel-hover-worker > .text-center,
	body .panel-hover-employer > .text-center,
	body .panel-hover-agency > .text-center {
		text-align: left !important;
		align-items: flex-start !important;
		justify-content: center !important;
		padding: 16px 20px 16px 16px !important;
		width: 58% !important;
		z-index: 10;
		position: relative;
		gap: 4px !important;
		margin-left: auto;
	}

	body .panel-hover-worker > .text-center h2,
	body .panel-hover-employer > .text-center h2,
	body .panel-hover-agency > .text-center h2 {
		font-size: 22px !important;
		line-height: 1.15 !important;
		letter-spacing: -0.02em !important;
	}

	body .panel-hover-worker > .text-center p,
	body .panel-hover-employer > .text-center p,
	body .panel-hover-agency > .text-center p {
		font-size: 12px !important;
		line-height: 1.5 !important;
		max-width: none !important;
		color: var(--muted) !important;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	/* ── Mock Cards & Floating Hidden ────────────────── */

	body .panel-hover-worker .floating,
	body .panel-hover-employer .floating,
	body .panel-hover-agency .floating {
		display: none !important;
	}

	/* ── Cinematic Image (Left Side in Card) ──────────── */

	.panel-cinema {
		position: absolute !important;
		top: 0;
		left: 0;
		right: auto !important;
		width: 42% !important;
		height: 100% !important;
		border-radius: 16px 0 0 16px !important;
		overflow: hidden;
	}

	.panel-cinema img {
		opacity: 0.9 !important;
		object-position: center center !important;
		transform: scale(1.1) !important;
	}

	.panel-cinema-overlay--bottom {
		background: linear-gradient(to left, rgb(var(--worker-rgb) / 0.15) 0%, transparent 60%) !important;
	}

	.panel-hover-worker .panel-cinema-overlay--bottom {
		background: linear-gradient(to left, rgb(var(--worker-rgb) / 0.12) 0%, transparent 50%) !important;
	}

	.panel-hover-employer .panel-cinema-overlay--bottom {
		background: linear-gradient(to left, rgb(90 130 140 / 0.12) 0%, transparent 50%) !important;
	}

	.panel-hover-agency .panel-cinema-overlay--bottom {
		background: linear-gradient(to left, rgb(var(--agency-rgb) / 0.12) 0%, transparent 50%) !important;
	}

	.panel-cinema-overlay--vignette {
		opacity: 0.25 !important;
	}

	.panel-cinema-overlay--accent {
		opacity: 0.12 !important;
	}

	.panel-cinema-overlay--color-up {
		opacity: 0.06 !important;
	}

	/* ── Mobile CTA (Below Description) ──────────────── */

	body .panel-hover-worker > .absolute.bottom-12,
	body .panel-hover-employer > .absolute.bottom-12,
	body .panel-hover-agency > .absolute.bottom-12 {
		opacity: 1 !important;
		position: absolute !important;
		bottom: 14px !important;
		top: auto !important;
		left: auto !important;
		right: 20px !important;
		transform: none !important;
		font-size: 12px;
		font-weight: 600;
		padding: 0;
		border-radius: 0;
		background: none !important;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		gap: 4px;
		box-shadow: none;
		z-index: 10;
	}

	body .panel-hover-worker > .absolute.bottom-12 {
		color: rgb(var(--worker-rgb));
	}

	body .panel-hover-employer > .absolute.bottom-12 {
		color: rgb(90 130 140);
	}

	body .panel-hover-agency > .absolute.bottom-12 {
		color: rgb(var(--agency-rgb));
	}

	/* ── Reveal Panel (Mobile) ────────────────────────── */

	.reveal-panel {
		width: 100%;
		left: 0;
		right: 0;
		padding: 80px 24px 24px;
		justify-content: flex-start !important;
	}

	body.mode-active main {
		height: auto !important;
		max-height: none !important;
		overflow: visible !important;
	}

	body.mode-active main > .panel-hover-worker,
	body.mode-active main > .panel-hover-employer,
	body.mode-active main > .panel-hover-agency {
		display: none !important;
	}

	body.mode-active .reveal-panel {
		position: relative;
		height: auto;
		padding-bottom: 12px;
	}

	body.mode-active .reveal-stores {
		margin-top: 12px;
	}

	.reveal-back {
		right: 20px;
		top: 16px;
		width: 40px;
		height: 40px;
	}

	.reveal-tagline {
		margin-bottom: 6px;
	}

	.reveal-headline {
		font-size: clamp(24px, 6vw, 36px);
		margin-bottom: 8px;
	}

	.reveal-description {
		font-size: 15px;
		max-width: 100%;
		margin-bottom: 16px;
	}

	.reveal-features {
		margin-bottom: 16px;
	}

	.reveal-stores {
		margin-bottom: 0;
	}

	.reveal-card {
		max-width: 100%;
	}

	.reveal-stores {
		flex-direction: column;
		width: 100%;
	}

	.store-btn {
		width: 100%;
		justify-content: center;
	}

	/* ── Detail Sections (Mobile) ─────────────────────── */

	.detail-features-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.detail-stat-ribbon {
		flex-direction: column;
		gap: 20px;
		padding: 24px;
	}

	.detail-stat-divider {
		width: 48px;
		height: 1px;
	}

	.detail-block {
		padding: 28px 20px;
	}

	.detail-block:first-child {
		padding-top: 16px;
	}

	.detail-showcase {
		padding-top: 0;
		padding-bottom: 0;
	}

	.detail-showcase-inner {
		margin-bottom: 32px;
	}

	.detail-cta-band {
		padding-top: 0;
		padding-bottom: 0;
	}

	.detail-cta-inner {
		padding: 32px 24px;
	}

	.detail-cta-actions {
		flex-direction: column;
		width: 100%;
	}

	.detail-cta-btn {
		width: 100%;
		justify-content: center;
	}

	.scroll-hint {
		bottom: 16px;
	}

	.worker-apply-features {
		flex-direction: column;
		gap: 12px;
	}

	.worker-apply-btn {
		width: 100%;
		justify-content: center;
	}

	.worker-apply-section {
		padding: 40px 24px;
	}

	.detail-section[data-detail="worker"] .detail-cta-band {
		padding: 32px 12px;
		margin-top: 16px;
	}

	/* ── Mobile Nav ───────────────────────────────────── */

	nav .flex.justify-between {
		padding: 12px calc(20px + env(safe-area-inset-right)) 12px calc(20px + env(safe-area-inset-left)) !important;
	}
}

/* ═══════════════════════════════════════════════════
   MOBILE MENU
   ═══════════════════════════════════════════════════ */

.mobile-menu {
	display: none;
	position: fixed;
	top: 64px;
	left: 0;
	right: 0;
	z-index: 99;
	background: rgb(255 255 255 / 0.95);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid rgb(var(--outline-variant-rgb) / 0.3);
	box-shadow: 0 12px 40px rgb(0 0 0 / 0.08);
	transform: translateY(-10px);
	opacity: 0;
	pointer-events: none;
	transition: transform 350ms var(--ease-out-cinematic), opacity 280ms var(--ease-out-cinematic);
}

.mobile-menu.is-open {
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
}

.mobile-menu-inner {
	padding: 20px 24px 24px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.mobile-menu-link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	border-radius: 12px;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: var(--text);
	text-decoration: none;
	transition: background 200ms var(--ease-out-cinematic);
}

.mobile-menu-link:hover,
.mobile-menu-link:active {
	background: rgb(var(--outline-variant-rgb) / 0.15);
}

.mobile-menu-link .material-symbols-outlined {
	font-size: 22px;
}

.mobile-menu-divider {
	height: 1px;
	background: rgb(var(--outline-variant-rgb) / 0.3);
	margin: 8px 0;
}

.mobile-menu-stores {
	display: flex;
	gap: 10px;
	padding-top: 4px;
}

.mobile-menu-store {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 16px;
	border-radius: 10px;
	background: var(--text);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	transition: background 200ms var(--ease-out-cinematic), transform 200ms var(--ease-out-cinematic);
}

.mobile-menu-store:active {
	transform: scale(0.96);
}

@media (min-width: 769px) {
	.mobile-menu {
		display: none !important;
	}
}

@media (max-width: 768px) {
	.mobile-menu {
		display: block;
	}
}

/* ── Mobile Download CTA ─────────────────────────── */

.mobile-download-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 10px;
	border-radius: 999px;
	background: #111;
	color: #fff;
	font-family: "Inter", sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: -0.01em;
	text-decoration: none;
	box-shadow: 0 6px 18px rgb(0 0 0 / 0.18);
	transition: transform 200ms var(--ease-out-cinematic), box-shadow 200ms var(--ease-out-cinematic);
}

.mobile-download-cta:active {
	transform: scale(0.98);
}

.mobile-download-icons {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.mobile-download-icon {
	width: 14px;
	height: 14px;
}

.mobile-download-text {
	white-space: nowrap;
}

/* ═══════════════════════════════════════════════════
   NAVBAR STATE SYSTEM
   ═══════════════════════════════════════════════════ */

.nav-mode-link {
	position: relative;
	padding-bottom: 2px;
}

.nav-mode-link::after {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 50%;
	transform: translateX(-50%) scaleX(0);
	width: 20px;
	height: 2px;
	border-radius: 1px;
	background: currentColor;
	transition: transform 300ms var(--ease-out-cinematic);
}

.nav-mode-link.is-active {
	color: #191c1e !important;
}

.nav-mode-link.is-active::after {
	transform: translateX(-50%) scaleX(1);
}

/* ═══════════════════════════════════════════════════
   PAGE OVERLAYS (Pricing, Contact, Privacy)
   ═══════════════════════════════════════════════════ */

.page-overlay {
	position: fixed;
	inset: 0;
	z-index: 150;
	background: var(--bg);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s var(--ease-out-cinematic);
	overflow: hidden;
}

.page-overlay.is-active {
	opacity: 1;
	pointer-events: auto;
}

.page-overlay-back {
	position: fixed;
	top: 28px;
	right: 32px;
	z-index: 160;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid rgb(var(--outline-variant-rgb) / 0.5);
	border-radius: 50%;
	background: rgb(255 255 255 / 0.95);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	color: var(--text);
	cursor: pointer;
	box-shadow: 0 4px 16px rgb(0 0 0 / 0.06);
	transition: background 200ms var(--ease-out-cinematic), transform 200ms var(--ease-out-cinematic), box-shadow 200ms var(--ease-out-cinematic);
}

.page-overlay-back:hover {
	background: #fff;
	box-shadow: 0 6px 20px rgb(0 0 0 / 0.1);
	transform: scale(1.06);
}

.page-overlay-back:active {
	transform: scale(0.92);
	transition-duration: 80ms;
}

.page-overlay-scroll {
	width: 100%;
	height: 100%;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.page-overlay-container {
	max-width: 780px;
	margin: 0 auto;
	padding: 120px 48px 80px;
}

.page-overlay-header {
	margin-bottom: 40px;
}

.page-overlay-tag {
	display: inline-block;
	font-family: "Inter", sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.page-overlay-title {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: clamp(32px, 5vw, 48px);
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 1.1;
	color: var(--text);
	margin: 0 0 14px;
}

.page-overlay-intro {
	font-family: "Inter", sans-serif;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.7;
	color: var(--muted);
	max-width: 520px;
	margin: 0;
}

.page-overlay-note {
	font-family: "Inter", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.7;
	color: var(--muted);
	padding-top: 32px;
	border-top: 1px solid rgb(var(--outline-variant-rgb) / 0.35);
	margin: 40px 0 0;
}

/* ── Pricing Specific ──────────────────────────────── */

.page-overlay--pricing {
	--pricing-accent: 196 221 226;
	background: linear-gradient(180deg, rgb(var(--pricing-accent) / 0.06) 0%, transparent 40%);
	position: relative;
}

.pricing-cards {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.pricing-flow-section,
.pricing-example-card,
.pricing-discount-card,
.pricing-extras-card {
	padding: 28px;
	border-radius: 18px;
	border: 1px solid rgb(var(--pricing-accent) / 0.4);
	background: linear-gradient(165deg, rgb(255 255 255 / 0.95), rgb(255 255 255 / 0.82));
	box-shadow: 0 8px 28px rgb(0 0 0 / 0.04);
	position: relative;
	overflow: hidden;
	transition: border-color 300ms var(--ease-out-cinematic), box-shadow 300ms var(--ease-out-cinematic);
}

.pricing-flow-section:hover,
.pricing-example-card:hover,
.pricing-discount-card:hover,
.pricing-extras-card:hover {
	border-color: rgb(var(--pricing-accent) / 0.7);
	box-shadow: 0 12px 36px rgb(var(--pricing-accent) / 0.12);
}

.pricing-section-title,
.pricing-example-card h3,
.pricing-discount-card h3,
.pricing-extras-card h3 {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--text);
	margin: 0 0 16px;
}

.pricing-flow-track {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.pricing-flow-step {
	flex: 1;
	min-width: 100px;
	padding: 14px 12px;
	border-radius: 12px;
	border: 1px solid rgb(var(--pricing-accent) / 0.5);
	background: rgb(255 255 255 / 0.9);
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.pricing-flow-step small {
	font-family: "Inter", sans-serif;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--muted);
}

.pricing-flow-step strong {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: var(--text);
}

.pricing-flow-arrow {
	font-size: 18px;
	font-weight: 800;
	color: rgb(var(--pricing-accent));
	opacity: 0.8;
}

.pricing-example-lines {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.pricing-example-line {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: "Inter", sans-serif;
	font-size: 15px;
}

.pricing-example-line span { color: var(--muted); }
.pricing-example-line strong { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700; color: var(--text); }

.pricing-example-total {
	border-top: 2px dashed rgb(var(--pricing-accent) / 0.5);
	padding-top: 12px;
	margin-top: 4px;
}

.pricing-example-total span { font-weight: 700; color: rgb(90 130 140); }
.pricing-example-total strong { font-size: 20px; color: rgb(90 130 140); font-weight: 800; }

.pricing-example-note {
	font-family: "Inter", sans-serif;
	font-size: 13px;
	color: var(--muted);
	margin: 16px 0 0;
	padding: 10px 14px;
	border-radius: 8px;
	background: rgb(var(--pricing-accent) / 0.08);
	border: 1px solid rgb(var(--pricing-accent) / 0.15);
}

.pricing-discount-desc {
	font-family: "Inter", sans-serif;
	font-size: 14px;
	color: var(--muted);
	margin: 0 0 14px;
}

.pricing-discount-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 8px;
}

.pricing-discount-chip {
	padding: 10px 8px;
	border-radius: 10px;
	border: 1px solid rgb(var(--pricing-accent) / 0.35);
	background: rgb(var(--pricing-accent) / 0.06);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	text-align: center;
	transition: background 200ms var(--ease-out-cinematic), transform 200ms var(--ease-out-cinematic);
}

.pricing-discount-chip:hover {
	background: rgb(var(--pricing-accent) / 0.14);
	transform: translateY(-2px);
}

.pricing-discount-chip span {
	font-family: "Inter", sans-serif;
	font-size: 12px;
	font-weight: 500;
	color: var(--muted);
}

.pricing-discount-chip strong {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 16px;
	font-weight: 800;
	color: rgb(90 130 140);
}

.pricing-discount-chip--featured {
	border-color: rgb(90 130 140 / 0.5);
	background: rgb(var(--pricing-accent) / 0.15);
}

.pricing-extras-pills {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 16px;
}

.pricing-extra-pill {
	padding: 8px 14px;
	border-radius: 999px;
	background: rgb(var(--pricing-accent) / 0.1);
	border: 1px solid rgb(var(--pricing-accent) / 0.3);
	font-family: "Inter", sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: rgb(90 130 140);
}

.pricing-payment-badges {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.pricing-payment-badges span {
	padding: 6px 12px;
	border-radius: 999px;
	border: 1px solid rgb(var(--outline-variant-rgb) / 0.4);
	background: rgb(255 255 255 / 0.9);
	font-family: "Inter", sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: var(--muted);
}

/* Pricing cursor glow */
.pricing-glow {
	position: fixed;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: radial-gradient(circle, rgb(196 221 226 / 0.25) 0%, transparent 70%);
	pointer-events: none;
	z-index: 155;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

/* ── Contact Specific ──────────────────────────────── */

.contact-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-bottom: 32px;
}

.contact-card {
	padding: 24px 20px;
	border-radius: 16px;
	border: 1px solid rgb(var(--outline-variant-rgb) / 0.35);
	background: linear-gradient(165deg, rgb(255 255 255 / 0.92), rgb(255 255 255 / 0.78));
	box-shadow: 0 8px 24px rgb(0 0 0 / 0.04);
	text-align: center;
}

.contact-card h3 {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: var(--text);
	margin: 0 0 8px;
}

.contact-card p {
	font-family: "Inter", sans-serif;
	font-size: 15px;
	color: var(--muted);
	margin: 0;
}

/* ── Privacy Specific ──────────────────────────────── */

.privacy-meta-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin-bottom: 32px;
}

.privacy-meta-item {
	padding: 14px 16px;
	border-radius: 12px;
	border: 1px solid rgb(var(--outline-variant-rgb) / 0.35);
	background: rgb(255 255 255 / 0.85);
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.privacy-meta-item small {
	font-family: "Inter", sans-serif;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--muted);
}

.privacy-meta-item strong {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: var(--text);
}

.privacy-sections-stack {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.privacy-block {
	padding: 20px 24px;
	border-radius: 14px;
	border: 1px solid rgb(var(--outline-variant-rgb) / 0.3);
	background: rgb(255 255 255 / 0.82);
	box-shadow: 0 4px 16px rgb(0 0 0 / 0.03);
}

.privacy-block h2 {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: var(--text);
	margin: 0 0 8px;
}

.privacy-block p {
	font-family: "Inter", sans-serif;
	font-size: 14px;
	line-height: 1.65;
	color: var(--muted);
	margin: 0;
}

/* ── Page Overlay Responsive ───────────────────────── */

@media (max-width: 768px) {
	.page-overlay-container {
		padding: 100px 20px 60px;
	}

	.page-overlay-back {
		right: 16px;
		top: 20px;
	}

	.pricing-flow-track {
		flex-direction: column;
	}

	.pricing-flow-arrow {
		transform: rotate(90deg);
	}

	.pricing-discount-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.contact-cards {
		grid-template-columns: 1fr;
	}

	.privacy-meta-grid {
		grid-template-columns: 1fr;
	}
}

/* ═══════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════ */

.about-section {
	position: fixed;
	inset: 0;
	z-index: 150;
	background: var(--bg);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s var(--ease-out-cinematic);
	overflow: hidden;
}

.about-section.is-active {
	opacity: 1;
	pointer-events: auto;
}

.about-scroll {
	width: 100%;
	height: 100%;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.about-container {
	max-width: 780px;
	margin: 0 auto;
	padding: 120px 48px 80px;
}

.about-back {
	position: fixed;
	top: 28px;
	right: 32px;
	z-index: 160;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid rgb(var(--outline-variant-rgb) / 0.5);
	border-radius: 50%;
	background: rgb(255 255 255 / 0.95);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	color: var(--text);
	cursor: pointer;
	box-shadow: 0 4px 16px rgb(0 0 0 / 0.06);
	transition:
		background 200ms var(--ease-out-cinematic),
		transform 200ms var(--ease-out-cinematic),
		box-shadow 200ms var(--ease-out-cinematic);
}

.about-back:hover {
	background: #fff;
	box-shadow: 0 6px 20px rgb(0 0 0 / 0.1);
	transform: scale(1.06);
}

.about-back:active {
	transform: scale(0.92);
	transition-duration: 80ms;
}

.about-header {
	margin-bottom: 48px;
}

.about-tag {
	display: inline-block;
	font-family: "Inter", sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgb(var(--worker-rgb));
	margin-bottom: 16px;
}

.about-title {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: clamp(32px, 5vw, 48px);
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 1.1;
	color: var(--text);
	margin: 0 0 16px;
}

.about-intro {
	font-family: "Inter", sans-serif;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.7;
	color: var(--muted);
	max-width: 520px;
	margin: 0 0 20px;
}

.about-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border-radius: 999px;
	border: 1px solid rgb(0 95 175 / 0.25);
	background: rgb(239 247 255 / 0.9);
	color: #004f91;
	font-family: "Inter", sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.03em;
}

.about-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-bottom: 48px;
}

.about-card {
	padding: 28px 24px;
	border-radius: 18px;
	border: 1px solid rgb(var(--outline-variant-rgb) / 0.35);
	background: linear-gradient(165deg, rgb(255 255 255 / 0.92), rgb(255 255 255 / 0.78));
	box-shadow: 0 8px 28px rgb(0 0 0 / 0.04);
}

.about-card h2 {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--text);
	margin: 0 0 10px;
}

.about-card p {
	font-family: "Inter", sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.65;
	color: var(--muted);
	margin: 0;
}

.about-card--identity {
	border-color: rgb(0 95 175 / 0.2);
	background: linear-gradient(160deg, rgb(240 247 255 / 0.8), rgb(255 255 255 / 0.85));
}

.about-card--vision {
	border-color: rgb(71 99 69 / 0.2);
	background: linear-gradient(165deg, rgb(246 252 247 / 0.8), rgb(255 255 255 / 0.85));
}

.about-card--mission {
	border-color: rgb(250 189 0 / 0.25);
	background: linear-gradient(165deg, rgb(255 249 234 / 0.82), rgb(255 255 255 / 0.86));
}

.about-card--why {
	grid-column: 1 / -1;
}

.about-points {
	list-style: none;
	margin: 8px 0 0;
	padding: 0;
	display: grid;
	gap: 10px;
}

.about-points li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-family: "Inter", sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--muted);
}

.about-points li::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	margin-top: 7px;
	background: rgb(var(--worker-rgb));
	box-shadow: 0 0 0 4px rgb(var(--worker-rgb) / 0.1);
	flex-shrink: 0;
}

.about-footer-note {
	font-family: "Inter", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.7;
	color: var(--muted);
	padding-top: 32px;
	border-top: 1px solid rgb(var(--outline-variant-rgb) / 0.35);
	margin: 0;
}

@media (max-width: 768px) {
	.about-container {
		padding: 100px 20px 60px;
	}

	.about-grid {
		grid-template-columns: 1fr;
	}

	.about-card--why {
		grid-column: auto;
	}

	.about-back {
		right: 16px;
		top: 20px;
	}
}

/* ═══════════════════════════════════════════════════
   SITE FOOTER
   ═══════════════════════════════════════════════════ */

.site-footer {
	display: none;
	width: 100%;
	background: linear-gradient(180deg, var(--bg) 0%, #f0f2f4 100%);
	border-top: 1px solid rgb(var(--outline-variant-rgb) / 0.4);
	position: relative;
	z-index: 5;
}

.site-footer.is-visible {
	display: block;
}

.footer-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 64px 48px 40px;
	display: grid;
	grid-template-columns: 1.4fr 2fr auto;
	gap: 48px;
	align-items: start;
}

.footer-brand {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 18px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--text);
}

.footer-logo img {
	width: 32px;
	height: 32px;
	object-fit: contain;
}

.footer-tagline {
	font-family: "Inter", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--muted);
	max-width: 260px;
	margin: 0;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.footer-col {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-col h4 {
	font-family: "Inter", sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--text);
	margin: 0 0 4px;
}

.footer-col a {
	font-family: "Inter", sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: var(--muted);
	text-decoration: none;
	transition: color 200ms var(--ease-out-cinematic);
}

.footer-col a:hover {
	color: var(--text);
}

.footer-stores {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-bottom {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 48px;
	border-top: 1px solid rgb(var(--outline-variant-rgb) / 0.3);
	font-family: "Inter", sans-serif;
	font-size: 13px;
	font-weight: 400;
	color: var(--muted);
}

@media (max-width: 1024px) {
	.footer-inner {
		grid-template-columns: 1fr 1fr;
		gap: 36px;
		padding: 48px 32px 32px;
	}

	.footer-stores {
		flex-direction: row;
		grid-column: 1 / -1;
	}
}

@media (max-width: 768px) {
	.footer-inner {
		grid-template-columns: 1fr;
		gap: 32px;
		padding: 40px 20px 24px;
	}

	.footer-links {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}

	.footer-stores {
		flex-direction: column;
	}

	.footer-bottom {
		padding: 16px 20px;
		text-align: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	body main::before { animation: none; }
}
