/*
 * Armstrat Theme — Main Stylesheet
 * Armstrat theme stylesheet.
 * Loaded via wp_enqueue_scripts in functions.php.
 */

/* ============================================================
   1. Base Reset
   ============================================================ */

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

html {
	scroll-behavior: smooth;
}

/* WordPress FSE adds margin-block-start via blockGap between template parts.
   Since our header is position:fixed, that gap shows as white space at the
   top of every page. Zero it out globally and let each section control its
   own spacing. */
.wp-site-blocks > * {
	margin-block-start: 0 !important;
}

/* WordPress admin bar pushes html down by 32px (46px on mobile) when logged
   in. Compensate the fixed nav so it stays tucked under the admin bar. */
.admin-bar .site-header {
	top: 32px;
}
.admin-bar .sh-drawer,
.admin-bar .sh-backdrop {
	top: calc(84px + 32px);
}
@media screen and (max-width: 782px) {
	.admin-bar .site-header {
		top: 46px;
	}
	.admin-bar .sh-drawer,
	.admin-bar .sh-backdrop {
		top: calc(84px + 46px);
	}
}

body {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	color: #111111;
	background: #FFFFFF;
	margin: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
}

input,
button,
textarea,
select {
	font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
	overflow-wrap: break-word;
}

/* Scrollbar */
::-webkit-scrollbar       { width: 8px; }
::-webkit-scrollbar-track { background: #F5F5F5; }
::-webkit-scrollbar-thumb { background: #111111; border-radius: 4px; }

/* ============================================================
   2. Layout Utilities
   ============================================================ */

.narrative-container {
	max-width: 1280px;
	margin: 0 auto;
	padding-left: 40px;
	padding-right: 40px;
}

@media (max-width: 880px) {
	.narrative-container {
		padding-left: 24px;
		padding-right: 24px;
	}
}

.section-flow {
	padding-top: 72px;
	padding-bottom: 72px;
}

/* ============================================================
   NEW: Services page
   ============================================================ */

.svc-hero {
	padding: 148px 0 108px;
	position: relative;
	isolation: isolate;
	background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 62%);
	border-bottom: 1px solid #efefef;
	overflow: hidden;
}

.svc-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(95% 120% at 84% 10%, rgba(249, 99, 0, 0.12) 0%, rgba(249, 99, 0, 0) 60%);
	z-index: 0;
	pointer-events: none;
}

.svc-hero .narrative-container {
	position: relative;
	z-index: 1;
}

.svc-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: 56px;
	align-items: center;
}

@media (max-width: 1024px) {
	.svc-hero-grid {
		grid-template-columns: 1fr;
	}
}

.svc-hero .svc-hero-title {
	max-width: 100%;
	font-size: clamp(2.8rem, 4vw, 4.35rem);
	line-height: 1.06;
	margin: 0 0 18px;
	text-wrap: balance;
}

.svc-hero .svc-hero-sub {
	max-width: 62ch;
	margin-bottom: 30px;
	color: #404040;
}

.svc-hero-cta {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.svc-hero-card {
	justify-self: end;
}

@media (max-width: 1024px) {
	.svc-hero-card {
		justify-self: stretch;
	}
}

.svc-hero-card-inner {
	background: linear-gradient(150deg, #0e0f13 0%, #181a20 100%);
	color: #fff;
	padding: 26px;
	border-radius: 20px;
	border: 1px solid rgba(255,255,255,0.12);
	box-shadow: 0 26px 70px rgba(17,17,17,0.24);
	position: relative;
	isolation: isolate;
	overflow: hidden;
}

.svc-hero-card-inner::after {
	content: none;
}

.svc-card-lead {
	font-size: 1.08rem;
	line-height: 1.5;
	margin-bottom: 14px;
	color: rgba(255,255,255,0.8);
	position: relative;
	z-index: 1;
}

.svc-card-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 12px;
	position: relative;
	z-index: 1;
}

.svc-card-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 12px;
	padding: 13px 15px;
	font-size: 1rem;
	font-weight: 600;
	transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.svc-card-list li:hover {
	transform: translateX(4px);
	border-color: rgba(249,99,0,0.75);
	background: rgba(255,255,255,0.09);
}

.svc-card-list svg {
	color: #f96300;
	flex-shrink: 0;
}

.svc-block-head {
	max-width: none;
	width: 100%;
	margin-bottom: 42px;
}

.svc-block .svc-block-title {
	margin: 0 0 12px;
	max-width: 100%;
	text-wrap: balance;
}

.svc-block .svc-block-body {
	max-width: 70ch;
}

.svc-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.svc-card {
	background: #fff;
	border: 1px solid #e9e9e9;
	border-radius: 16px;
	padding: 24px 24px 22px;
	box-shadow: 0 14px 30px rgba(17,17,17,0.06);
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.svc-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 88% 10%, rgba(249,99,0,0.16), rgba(249,99,0,0) 45%);
	opacity: 0;
	transition: opacity 0.22s ease;
	pointer-events: none;
}

.svc-card:hover {
	transform: translateY(-6px);
	border-color: #d9d9d9;
	box-shadow: 0 24px 44px rgba(17,17,17,0.12);
}

.svc-card:hover::before {
	opacity: 1;
}

.svc-card-top {
	position: relative;
	margin-bottom: 10px;
}

.svc-card-num {
	display: inline-block;
	margin-bottom: 12px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #f96300;
}

.svc-card-title {
	margin: 0 0 12px;
	font-family: var(--wp--preset--font-family--serif);
	font-size: clamp(1.6rem, 2vw, 2rem);
	line-height: 1.18;
	letter-spacing: -0.02em;
}

.svc-card-summary {
	margin: 0 0 16px;
	font-size: 15px;
	line-height: 1.68;
	color: #4f4f4f;
}

.svc-card-points {
	list-style: none;
	margin: 0 0 18px;
	padding: 0;
	display: grid;
	gap: 10px;
}

.svc-card-points li {
	position: relative;
	padding-left: 18px;
	font-size: 14px;
	line-height: 1.55;
	color: #444;
}

.svc-card-points li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 9px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #f96300;
}

.svc-card-link {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: #f96300;
	text-decoration: none;
	transition: gap 0.16s ease, color 0.16s ease;
}

.svc-card-link:hover {
	gap: 11px;
	color: #e05800;
}

.svc-process {
	background: #f7f7f7;
	border-top: 1px solid #ececec;
	border-bottom: 1px solid #ececec;
}

.svc-steps {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.svc-step {
	background: transparent;
	border: none;
	border-top: 2px solid #d9d9d9;
	padding: 18px 4px 6px;
	transition: border-color 0.18s ease;
}

.svc-step:hover {
	border-color: #f96300;
}

.svc-step-num {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	color: #f96300;
	margin-bottom: 8px;
}

.svc-step h3 {
	margin: 0 0 10px;
	font-family: var(--wp--preset--font-family--serif);
	font-size: 1.55rem;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.svc-step p {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: #4c4c4c;
}

.svc-proof {
	background: linear-gradient(135deg, #0f0f10 0%, #17181c 100%);
	color: #f4f4f4;
}

.svc-proof-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 18px;
}

.svc-proof-card {
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 14px;
	padding: 20px;
	box-shadow: 0 16px 40px rgba(0,0,0,0.25);
	transition: transform 0.18s ease, border-color 0.18s ease;
}

.svc-proof-card:hover {
	transform: translateY(-4px);
	border-color: rgba(249,99,0,0.55);
}

.svc-proof-card .section-eyebrow {
	color: rgba(249,99,0,0.88);
	margin-bottom: 14px;
}

.svc-proof-card h3 {
	margin: 0 0 12px;
	font-family: var(--wp--preset--font-family--serif);
	font-size: 1.9rem;
	line-height: 1.18;
	letter-spacing: -0.02em;
	color: #fff;
}

.svc-proof-card p {
	color: rgba(244,244,244,0.82);
	font-size: 15px;
	line-height: 1.62;
	margin: 0;
}

.svc-cta {
	padding: 104px 0 112px;
}

.svc-cta-inner {
	background: linear-gradient(135deg, #101114 0%, #181b22 100%);
	color: #fff;
	border-radius: 18px;
	padding: 32px 32px 28px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	box-shadow: 0 22px 50px rgba(17,17,17,0.25);
}

@media (max-width: 820px) {
	.svc-cta-inner { flex-direction: column; align-items: flex-start; }
}

.svc-cta .section-eyebrow {
	margin-bottom: 14px;
}

.svc-cta .svc-cta-title {
	margin: 6px 0 10px;
	max-width: 100%;
	line-height: 1.1;
	color: #fff;
}

.svc-cta .svc-cta-body {
	max-width: 70ch;
	color: rgba(255,255,255,0.8);
}

@media (max-width: 980px) {
	.svc-grid {
		grid-template-columns: 1fr;
	}
	.svc-steps {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 680px) {
	.svc-hero {
		padding: 130px 0 88px;
	}
	.svc-hero .svc-hero-title {
		font-size: clamp(2.25rem, 9vw, 3rem);
	}
	.svc-steps {
		grid-template-columns: 1fr;
	}
	.svc-proof-card h3 {
		font-size: 1.55rem;
	}
	.svc-cta {
		padding: 86px 0 92px;
	}
}

@media (min-width: 768px) {
	.section-flow {
		padding-top: 96px;
		padding-bottom: 96px;
	}
}

/* ============================================================
   3. Scroll Progress Bar
   ============================================================ */

#scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	height: 2px;
	background: #f96300;
	z-index: 200;
	width: 0%;
	transition: width 0.08s linear;
}

/* ============================================================
   4. Scroll-Triggered Reveal
   ============================================================ */

[data-reveal] {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
	            transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].visible {
	opacity: 1;
	transform: translateY(0);
}

[data-delay="1"] { transition-delay: 0.10s; }
[data-delay="2"] { transition-delay: 0.22s; }
[data-delay="3"] { transition-delay: 0.34s; }
[data-delay="4"] { transition-delay: 0.46s; }

/* ============================================================
   5. Buttons
   ============================================================ */

.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 15px;
	font-weight: 500;
	background-color: #f96300;
	color: #FFFFFF;
	text-decoration: none;
	padding: 14px 28px;
	border-radius: 6px;
	border: none;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.15s ease;
	white-space: nowrap;
}

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

.btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: #111111;
	text-decoration: none;
	padding: 14px 28px;
	border-radius: 6px;
	border: 1.5px solid #E8E8E8;
	background: transparent;
	cursor: pointer;
	transition: border-color 0.2s ease;
	white-space: nowrap;
}

.btn-secondary:hover {
	border-color: #111111;
}

.btn-ghost-white {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.65);
	text-decoration: none;
	padding: 14px 28px;
	border-radius: 6px;
	border: 1.5px solid rgba(255, 255, 255, 0.2);
	background: transparent;
	transition: border-color 0.2s ease, color 0.2s ease;
	white-space: nowrap;
}

.btn-ghost-white:hover {
	border-color: rgba(255, 255, 255, 0.5);
	color: #FFFFFF;
}

/* ============================================================
   6. Navigation — White Bar + Mega Menu + Dropdown Drawer
   ============================================================ */

/* ── Header shell ─────────────────────────────────────────── */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
}

/* ── Main bar ─────────────────────────────────────────────── */
.sh-bar {
	background: #FFFFFF;
	height: 84px;
	position: relative;
	z-index: 3;
	border-bottom: 1px solid #ECE9E3;
}

.sh-bar-inner {
	padding: 0 clamp(16px, 2vw, 32px);
	height: 100%;
	display: flex;
	align-items: center;
}

.sh-left {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-shrink: 0;
	margin-right: auto;
}

/* Hamburger button — 1.5× size, transforms to X */
.sh-menu-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 7px;
	width: 56px;
	height: 56px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}

.sh-menu-btn span {
	display: block;
	width: 32px;
	height: 2.2px;
	background: #111111;
	border-radius: 1px;
	transition: transform 0.3s ease, opacity 0.2s ease;
	transform-origin: center;
}

.sh-menu-btn.open span:nth-child(1) {
	transform: translateY(9.2px) rotate(45deg);
}

.sh-menu-btn.open span:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

.sh-menu-btn.open span:nth-child(3) {
	transform: translateY(-9.2px) rotate(-45deg);
}

.sh-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	flex-shrink: 0;
}

.sh-logo-img {
	height: auto;
	width: 240px;
	display: block;
}

/* ── Desktop nav (centered) ───────────────────────────────── */
.sh-nav {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	justify-content: center;
}

.sh-nav-list {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 0;
}

.sh-nav-item {
	position: relative;
}

.sh-nav-link {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.01em;
	color: #111111;
	text-decoration: none;
	padding: 30px 16px;
	display: flex;
	align-items: center;
	gap: 5px;
	transition: color 0.2s ease;
	white-space: nowrap;
	background: none;
	border: none;
	cursor: pointer;
	line-height: 1;
}

.sh-nav-link:hover,
.sh-nav-item.sh-mega-active .sh-nav-link {
	color: #111111;
}

/* Orange underline on active mega item */
.sh-nav-item.sh-mega-active::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 16px;
	right: 16px;
	height: 3px;
	background: #f96300;
}

.sh-chevron {
	width: 10px;
	height: 6px;
	transition: transform 0.25s ease;
	flex-shrink: 0;
	color: #111111;
}

.sh-nav-item.sh-mega-active .sh-chevron {
	transform: rotate(180deg);
}

/* ── Right side ───────────────────────────────────────────── */
.sh-right {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-shrink: 0;
	margin-left: auto;
}

.sh-search-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: none;
	border: none;
	cursor: pointer;
	color: #111111;
	transition: color 0.2s ease;
	padding: 0;
}

.sh-search-btn:hover { color: #000000; }

/* ── Inline search bar (slides from right) ────────────────── */
.sh-search-bar {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	background: #FFFFFF;
	display: flex;
	align-items: center;
	padding: 0 clamp(16px, 2vw, 32px);
	z-index: 5;
	clip-path: inset(0 0 0 100%);
	transition: clip-path 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.sh-search-bar.sh-search-active {
	clip-path: inset(0 0 0 0);
}

.sh-search-form {
	flex: 1;
	max-width: 640px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 14px;
	border-bottom: 2px solid #ECE9E3;
	padding-bottom: 4px;
	transition: border-color 0.2s ease;
}

.sh-search-form:focus-within {
	border-color: #f96300;
}

.sh-search-bar-icon {
	flex-shrink: 0;
	color: #999999;
}

.sh-search-input {
	flex: 1;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: #111111;
	background: none;
	border: none;
	outline: none;
	padding: 8px 0;
}

.sh-search-input::placeholder {
	color: #AAAAAA;
}

/* X close in the same position as the search icon (extreme right) */
.sh-search-bar-close {
	position: absolute;
	right: clamp(16px, 2vw, 32px);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: none;
	border: none;
	cursor: pointer;
	color: #111111;
	transition: color 0.2s ease;
	padding: 0;
}

.sh-search-bar-close:hover { color: #000000; }

/* ── Desktop mega menu panels ─────────────────────────────── */
.sh-mega {
	position: absolute;
	top: 84px;
	left: 0;
	right: 0;
	background: #FFFFFF;
	border-bottom: 1px solid #ECE9E3;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
	z-index: 2;
	pointer-events: none;
}

/* Invisible bridge to prevent flicker when crossing the gap */
.sh-mega::before {
	content: '';
	position: absolute;
	top: -4px;
	left: 0;
	right: 0;
	height: 4px;
}

.sh-mega.sh-mega-open {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.sh-mega-inner {
	max-width: 1440px;
	margin: 0 auto;
	padding: clamp(32px, 4vw, 56px) clamp(20px, 3vw, 48px);
}

.sh-mega-head {
	margin-bottom: 28px;
}

.sh-mega-heading {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #111111;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: color 0.2s ease;
}

.sh-mega-heading:hover { color: #f96300; }

.sh-mega-heading span {
	font-size: 18px;
	transition: transform 0.2s ease;
}

.sh-mega-heading:hover span { transform: translateX(3px); }

/* Multi-column text link grid */
.sh-mega-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0 clamp(24px, 3vw, 48px);
}

.sh-mega-cols-4 { grid-template-columns: repeat(4, 1fr); }
.sh-mega-cols-3 { grid-template-columns: repeat(3, 1fr); }

.sh-mega-grid a {
	display: block;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #333333;
	text-decoration: none;
	padding: 10px 0;
	transition: color 0.15s ease;
	line-height: 1.4;
}

.sh-mega-grid a:hover { color: #f96300; }

.sh-mega-placeholder {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 13px;
	color: #999999;
	margin: 0;
	padding: 16px 0;
}

/* ── Dropdown drawer (full-width, half-height) ────────────── */
.sh-drawer {
	position: fixed;
	top: 84px;
	left: 0;
	right: 0;
	height: 55vh;
	max-height: calc(100vh - 84px);
	z-index: 101;
	pointer-events: none;
	overflow: hidden;
}

.sh-drawer.sh-drawer-open {
	pointer-events: auto;
}

.sh-drawer-inner {
	display: flex;
	width: 100%;
	height: 100%;
	transform: translateY(-100%);
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.sh-drawer.sh-drawer-open .sh-drawer-inner {
	transform: translateY(0);
}

/* Left nav panel (dark, ~25% width) */
.sh-drawer-nav {
	width: clamp(260px, 25vw, 380px);
	background: #111111;
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	overflow-y: auto;
}

.sh-drawer-list {
	list-style: none;
	margin: 0;
	padding: 24px 0;
	flex: 1;
}

.sh-drawer-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	padding: 14px 28px;
	background: none;
	border: none;
	border-left: 3px solid transparent;
	cursor: pointer;
	transition: color 0.2s ease, border-color 0.2s ease;
	text-align: left;
}

.sh-drawer-link:hover {
	color: #FFFFFF;
}

.sh-drawer-item.active .sh-drawer-link {
	color: #f96300;
	border-left-color: #f96300;
}

.sh-drawer-arrow {
	width: 8px;
	height: 14px;
	flex-shrink: 0;
	opacity: 0.5;
}

.sh-drawer-item.active .sh-drawer-arrow {
	opacity: 1;
}

.sh-drawer-footer {
	padding: 24px 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	margin-top: auto;
}

.sh-drawer-footer-link {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 6px;
	transition: color 0.2s ease;
}

.sh-drawer-footer-link:hover { color: #FFFFFF; }

/* Right content panel (white, ~75% width) */
.sh-drawer-content {
	flex: 1;
	background: #FFFFFF;
	padding: clamp(28px, 4vw, 56px);
	overflow-y: auto;
}

.sh-drawer-content .sh-mega-heading {
	margin-bottom: 24px;
}

.sh-drawer-content .sh-drawer-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0 clamp(24px, 3vw, 48px);
}

.sh-drawer-content .sh-drawer-grid a {
	display: block;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #333333;
	text-decoration: none;
	padding: 10px 0;
	transition: color 0.15s ease;
}

.sh-drawer-content .sh-drawer-grid a:hover {
	color: #f96300;
}

/* Backdrop overlay */
.sh-backdrop {
	position: fixed;
	top: 84px;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.35);
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sh-backdrop.sh-backdrop-open {
	opacity: 1;
	visibility: visible;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
	.sh-nav { display: none; }
	.sh-mega { display: none !important; }
	.sh-logo-img { width: 200px; }
}

@media (max-width: 640px) {
	.sh-drawer { height: 80vh; }
	.sh-drawer-inner {
		flex-direction: column;
	}
	.sh-drawer-nav {
		width: 100%;
		flex-shrink: 0;
		max-height: 40vh;
	}
	.sh-drawer-content {
		flex: 1;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
	}
	.sh-drawer-content .sh-drawer-grid {
		grid-template-columns: 1fr;
	}
	.sh-logo-img { width: 160px; }
	.sh-menu-btn { width: 44px; height: 44px; }
	.sh-menu-btn span { width: 26px; }
}

/* ============================================================
   7. Hero
   ============================================================ */

.hero {
	padding-top: 180px;
	padding-bottom: 116px;
	position: relative;
	isolation: isolate;
	background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 66%);
	border-bottom: 1px solid #efefef;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(95% 120% at 84% 8%, rgba(249, 99, 0, 0.11) 0%, rgba(249, 99, 0, 0) 62%);
	pointer-events: none;
	z-index: 0;
}

.hero .narrative-container {
	position: relative;
	z-index: 1;
}

.hero-content {
	max-width: 1060px;
}

.hero-headline {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: clamp(2.9rem, 6.1vw, 5.1rem);
	font-weight: 400;
	line-height: 1.04;
	letter-spacing: -0.03em;
	color: #0a0a0a;
	max-width: 13ch;
	text-wrap: balance;
	margin: 0 0 24px;
}

.hero-subtext {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: clamp(1.05rem, 1.85vw, 1.22rem);
	font-weight: 400;
	line-height: 1.65;
	color: #3f3f3f;
	margin: 0 0 30px;
	max-width: 66ch;
}

.hero-subtext strong {
	font-weight: 600;
	color: #0a0a0a;
}

.hero-capability-board {
	position: relative;
	max-width: 980px;
	padding: 26px 26px 20px;
	border-radius: 22px;
	border: 1px solid rgba(17, 17, 17, 0.12);
	background: linear-gradient(145deg, rgba(255,255,255,0.9) 0%, rgba(249,99,0,0.06) 56%, rgba(17,17,17,0.03) 100%);
	box-shadow: 0 24px 48px rgba(17,17,17,0.09);
	overflow: hidden;
	isolation: isolate;
}

.hero-capability-board::before {
	content: "";
	position: absolute;
	width: 320px;
	height: 320px;
	right: -120px;
	top: -120px;
	background: radial-gradient(circle, rgba(249,99,0,0.24) 0%, rgba(249,99,0,0) 70%);
	animation: hero-board-glow 9s ease-in-out infinite;
	z-index: 0;
}

.hero-capability-board::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(17,17,17,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(17,17,17,0.03) 1px, transparent 1px);
	background-size: 44px 44px;
	opacity: 0.35;
	z-index: 0;
}

.hero-board-head {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 18px;
}

.hero-board-kicker {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #f96300;
	flex-shrink: 0;
}

.hero-board-head p {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	color: #4a4a4a;
	line-height: 1.55;
	margin: 0;
	max-width: 50ch;
}

.hero-board-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.hero-board-card {
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(17, 17, 17, 0.09);
	border-radius: 14px;
	padding: 14px 14px 13px;
	box-shadow: 0 8px 18px rgba(17,17,17,0.04);
	transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.hero-board-card:hover {
	transform: translateY(-3px);
	border-color: rgba(249,99,0,0.5);
	box-shadow: 0 14px 24px rgba(17,17,17,0.08);
}

.hero-board-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 999px;
	background: rgba(249,99,0,0.12);
	color: #f96300;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	margin-bottom: 12px;
}

.hero-board-card h3 {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: clamp(1.12rem, 1.3vw, 1.3rem);
	font-weight: 400;
	line-height: 1.22;
	letter-spacing: -0.015em;
	color: #111111;
	margin: 0 0 8px;
}

.hero-board-card p {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	line-height: 1.5;
	color: #505050;
	margin: 0;
}

.hero-board-foot {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid rgba(17,17,17,0.1);
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: #252525;
}

.hero-board-pulse {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #f96300;
	position: relative;
	flex-shrink: 0;
	animation: hero-board-pulse 1.8s ease-in-out infinite;
}

.hero-board-pulse::after {
	content: "";
	position: absolute;
	inset: -5px;
	border-radius: 50%;
	border: 1px solid rgba(249,99,0,0.38);
}

@keyframes hero-board-glow {
	0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.8; }
	50% { transform: translate3d(-12px, 16px, 0); opacity: 1; }
}

@keyframes hero-board-pulse {
	0%, 100% { transform: scale(1); opacity: 1; }
	50% { transform: scale(0.84); opacity: 0.7; }
}

.hero-actions {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
}

.hero-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.01em;
	background: #111111;
	color: #FFFFFF;
	text-decoration: none;
	padding: 15px 32px;
	border-radius: 8px;
	transition: background 0.2s ease;
	white-space: nowrap;
}

.hero-btn:hover { background: #2a2a2a; }

.hero-cta-note {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 13px;
	font-weight: 400;
	color: #999999;
	margin: 12px 0 0 0;
	letter-spacing: 0.005em;
}

@media (max-width: 1100px) {
	.hero-headline {
		max-width: 14ch;
	}
	.hero-board-head {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 880px) {
	.hero {
		padding-top: 146px;
		padding-bottom: 92px;
	}
	.hero-headline {
		max-width: 100%;
		font-size: clamp(2.35rem, 8.1vw, 3.7rem);
	}
	.hero-subtext {
		font-size: 17px;
	}
	.hero-capability-board {
		padding: 22px 20px 18px;
		border-radius: 18px;
	}
}

@media (max-width: 640px) {
	.hero-board-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.hero-headline { font-size: clamp(2.05rem, 10vw, 2.6rem); }
	.hero-subtext { font-size: 16px; max-width: 100%; }
	.hero-capability-board {
		padding: 18px 14px 14px;
	}
	.hero-board-card h3 { font-size: 1.03rem; }
	.hero-board-card p { font-size: 13px; }
	.hero-board-foot { font-size: 12px; }
}

/* ============================================================
   8. Shared Section Typography
   ============================================================ */

.section-eyebrow {
	display: inline-block;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 12px;
	font-weight: 500;
	color: #f96300;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.section-headline {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 40px;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: #111111;
	margin: 0;
}

.section-body {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.65;
	color: #555555;
	margin: 0;
}

/* ============================================================
   9. Homepage V3 — Editorial Minimalist
   ============================================================ */

.home-v3 { background: #FFFFFF; }

.home-v3-full-container {
	width: 100%;
	padding-left: clamp(24px, 4vw, 80px);
	padding-right: clamp(24px, 4vw, 80px);
}

/* ---- Scroll-powered text (word color tied to scroll position) ---- */

.st-word {
	display: inline;
	transition: color 0.45s ease;
	color: #FFFFFF;
}

.st-word.st-active {
	color: #111111;
}

@media (prefers-reduced-motion: reduce) {
	.st-word { color: #111111 !important; }
}

/* ---- Hero (light: full-width title, consulting CTA, AI network visual) ---- */

.home-v3-hero {
	min-height: 100svh;
	background: #FFFFFF;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	padding: 0;
}

/* Neural network — right-side, faded at edges */
.home-v3-hero-visual {
	position: absolute;
	right: -2%;
	top: 50%;
	transform: translateY(-50%);
	width: 52%;
	max-width: 680px;
	z-index: 0;
	pointer-events: none;
	-webkit-mask-image: radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0.9) 15%, rgba(0,0,0,0.4) 45%, transparent 72%);
	mask-image: radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0.9) 15%, rgba(0,0,0,0.4) 45%, transparent 72%);
}

.hv-svg {
	width: 100%;
	height: auto;
}

/* Content sits above the SVG */
.home-v3-hero-inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1060px;
	padding-left: clamp(24px, 4vw, 80px);
	padding-right: clamp(24px, 4vw, 80px);
	padding-top: clamp(140px, 15vw, 220px);
	padding-bottom: clamp(80px, 10vw, 140px);
}

.home-v3-hero-title {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: clamp(3.8rem, 8.5vw, 8.5rem);
	font-weight: 400;
	line-height: 0.95;
	letter-spacing: -0.045em;
	color: #111111;
	margin: 0 0 clamp(20px, 2.5vw, 36px) 0;
}

.home-v3-hero-sub {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: clamp(1rem, 1.4vw, 1.15rem);
	line-height: 1.78;
	color: #666666;
	margin: 0;
	max-width: 42ch;
}

/* Consulting-style CTA (underline + secondary text link) */
.home-v3-hero-cta-group {
	display: flex;
	align-items: center;
	gap: 40px;
	margin-top: 44px;
	flex-wrap: wrap;
}

.home-v3-hero-cta-main {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.01em;
	color: #111111;
	text-decoration: none;
	padding-bottom: 5px;
	border-bottom: 2px solid #f96300;
	transition: color 0.25s ease;
}

.home-v3-hero-cta-main:hover {
	color: #f96300;
}

.home-v3-hero-cta-icon {
	flex-shrink: 0;
	transition: transform 0.25s ease;
}

.home-v3-hero-cta-main:hover .home-v3-hero-cta-icon {
	transform: translate(3px, -3px);
}

.home-v3-hero-cta-ghost {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: #AAAAAA;
	text-decoration: none;
	transition: color 0.25s ease;
}

.home-v3-hero-cta-ghost::after {
	content: ' \2192';
}

.home-v3-hero-cta-ghost:hover {
	color: #111111;
}


/* ---- Statement (sticky scroll pin — wrapper is tall, inner is fixed) ---- */

.home-v3-statement {
	height: 240vh;
	position: relative;
}

.home-v3-statement-sticky {
	position: sticky;
	top: 0;
	height: 100vh;
	display: flex;
	align-items: center;
	background: #FFFFFF;
	overflow: hidden;
}

.home-v3-statement-text {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: clamp(2.2rem, 5vw, 4.8rem);
	font-weight: 400;
	line-height: 1.18;
	letter-spacing: -0.03em;
	color: #FFFFFF;
	margin: 0;
}

/* ---- Section titles (shared) ---- */

.home-v3-section-title {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: clamp(1.8rem, 3.6vw, 3rem);
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: -0.025em;
	color: #111111;
	margin: 0;
}

/* ---- What We Do (accordion) ---- */

.home-v3-intro {
	padding: clamp(80px, 10vw, 140px) 0;
}

.home-v3-intro-header {
	margin-bottom: 64px;
	max-width: 820px;
}

.home-v3-intro-header .home-v3-section-title {
	margin-top: 16px;
	font-size: clamp(1.7rem, 3.2vw, 2.7rem);
	line-height: 1.25;
}

/* Accordion */

.home-v3-accord {
	border-top: 1px solid #ECE9E3;
}

.home-v3-accord-item {
	border-bottom: 1px solid #ECE9E3;
}

.home-v3-accord-trigger {
	display: flex;
	align-items: center;
	gap: clamp(20px, 4vw, 52px);
	width: 100%;
	background: none;
	border: none;
	padding: clamp(24px, 3.5vw, 40px) 0;
	cursor: pointer;
	text-align: left;
}


.home-v3-accord-title-wrap {
	flex: 1;
}

.home-v3-accord-title {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: clamp(1.6rem, 3.2vw, 3rem);
	font-weight: 400;
	color: #111111;
	letter-spacing: -0.028em;
	line-height: 1.05;
	transition: color 0.2s ease;
	display: block;
}

.home-v3-accord-trigger:hover .home-v3-accord-title { color: #f96300; }

.home-v3-accord-icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border: 1.5px solid rgba(0, 0, 0, 0.16);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #111111;
	transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-v3-accord-item--open .home-v3-accord-icon {
	transform: rotate(45deg);
	background: #f96300;
	border-color: #f96300;
	color: #FFFFFF;
}

.home-v3-accord-panel {
	height: 0;
	overflow: hidden;
	transition: height 0.48s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-v3-accord-panel-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(40px, 6vw, 80px);
	padding-bottom: clamp(40px, 5vw, 60px);
}

.home-v3-accord-lead {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 17px;
	line-height: 1.78;
	color: #333333;
	margin: 0 0 28px;
}

.home-v3-accord-list {
	list-style: none;
	padding: 0;
	margin: 0 0 36px;
}

.home-v3-accord-list li {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	color: #555555;
	padding: 9px 0;
	border-bottom: 1px solid #F0EDEA;
	display: flex;
	align-items: center;
	gap: 10px;
	line-height: 1.5;
}

.home-v3-accord-list li:last-child { border-bottom: none; }

.home-v3-accord-list li::before {
	content: '';
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #f96300;
	flex-shrink: 0;
}

.home-v3-accord-img-wrap {
	overflow: hidden;
	align-self: start;
}

.home-v3-accord-img {
	width: 100%;
	height: 380px;
	object-fit: cover;
	display: block;
}

/* ---- Focus Areas (image + text cards) ---- */

.home-v3-focus {
	padding: 140px 0;
	background: #F7F6F3;
}

.home-v3-focus-header {
	margin-bottom: 80px;
}

.home-v3-focus-header .home-v3-section-title {
	margin-top: 16px;
}

.home-v3-focus-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.home-v3-focus-card {
	background: #FFFFFF;
	overflow: hidden;
	transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.home-v3-focus-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.home-v3-focus-card-img-wrap {
	position: relative;
	height: 240px;
	overflow: hidden;
}

.home-v3-focus-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-v3-focus-card:hover .home-v3-focus-card-img {
	transform: scale(1.05);
}

.home-v3-focus-card-body {
	padding: 36px;
}

.home-v3-focus-num {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.02em;
	color: #f96300;
	display: block;
	margin-bottom: 18px;
}

.home-v3-focus-title {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: clamp(1.3rem, 2vw, 1.65rem);
	font-weight: 400;
	line-height: 1.25;
	letter-spacing: -0.015em;
	color: #111111;
	margin: 0 0 16px;
}

.home-v3-focus-card-body p {
	margin: 0;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 16px;
	line-height: 1.72;
	color: #555555;
}

/* ---- Scrolling Marquee (continuous, bigger, edge shadows) ---- */

.home-v3-marquee-section {
	padding: 48px 0;
	background: #111111;
	overflow: hidden;
	position: relative;
}

.home-v3-marquee-fade {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 120px;
	z-index: 2;
	pointer-events: none;
}

.home-v3-marquee-fade--left {
	left: 0;
	background: linear-gradient(to right, #111111 0%, transparent 100%);
}

.home-v3-marquee-fade--right {
	right: 0;
	background: linear-gradient(to left, #111111 0%, transparent 100%);
}

.home-v3-marquee-track {
	display: flex;
	width: max-content;
	animation: home-marquee 35s linear infinite;
}

.home-v3-marquee-text {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: clamp(1.6rem, 2.8vw, 2.4rem);
	font-weight: 400;
	letter-spacing: 0.05em;
	color: rgba(255,255,255,0.5);
	white-space: nowrap;
	padding-right: 3rem;
}

@keyframes home-marquee {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* ---- Spotlight Mosaic (4-card asymmetric editorial grid) ---- */

.home-v3-spotlight {
	padding: 140px 0;
}

.home-v3-spotlight-mosaic {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr;
	grid-template-rows: 460px 300px;
	gap: 12px;
	grid-template-areas:
		"hero  persp sol"
		"hero  cta   cta";
}

.home-v3-mosaic-hero  { grid-area: hero; }
.home-v3-mosaic-persp { grid-area: persp; }
.home-v3-mosaic-sol   { grid-area: sol; }
.home-v3-mosaic-cta   { grid-area: cta; }

.home-v3-mosaic-card {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	text-decoration: none;
	color: inherit;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-v3-mosaic-card:hover {
	transform: translateY(-4px);
}

.home-v3-mosaic-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-v3-mosaic-card:hover .home-v3-mosaic-img {
	transform: scale(1.04);
}

.home-v3-mosaic-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.18) 55%, transparent 100%);
}

.home-v3-mosaic-overlay--heavy {
	background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.12) 100%);
}

.home-v3-mosaic-overlay--side {
	background: linear-gradient(to right, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.28) 100%);
}

.home-v3-mosaic-content {
	position: relative;
	z-index: 1;
	padding: clamp(20px, 3.5vw, 44px);
	width: 100%;
}

.home-v3-mosaic-tag {
	display: inline-block;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #f96300;
	margin-bottom: 14px;
	background: rgba(0,0,0,0.38);
	padding: 5px 12px;
	backdrop-filter: blur(4px);
}

.home-v3-mosaic-title {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: clamp(1.15rem, 1.8vw, 1.65rem);
	font-weight: 400;
	line-height: 1.22;
	letter-spacing: -0.02em;
	color: #FFFFFF;
	margin: 0 0 18px;
	max-width: 22ch;
}

.home-v3-mosaic-hero .home-v3-mosaic-title {
	font-size: clamp(1.5rem, 2.8vw, 2.2rem);
	max-width: 18ch;
}

.home-v3-mosaic-link {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #FFFFFF;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: color 0.25s ease, gap 0.25s ease;
}

.home-v3-mosaic-card:hover .home-v3-mosaic-link {
	color: #f96300;
	gap: 10px;
}

/* ---- Selected Work (full-bleed 2x2 grid, no side padding) ---- */

.home-v3-work {
	padding: 0 0 100px;
}

.home-v3-work-header {
	padding: 100px 0 72px;
}

.home-v3-work-header .home-v3-section-title {
	margin-top: 16px;
}

.home-v3-work-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1px;
	background: #ECE9E3;
}

.home-v3-work-card {
	background: #FFFFFF;
	transition: background 0.25s ease;
}

.home-v3-work-card:hover {
	background: #FAFAF8;
}

.home-v3-work-card-inner {
	padding: clamp(32px, 4vw, 64px);
	position: relative;
	min-height: 340px;
	display: flex;
	flex-direction: column;
}

.home-v3-work-tag {
	display: block;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #f96300;
	margin-bottom: 20px;
}

.home-v3-work-title {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: clamp(1.3rem, 2.2vw, 1.7rem);
	font-weight: 400;
	line-height: 1.25;
	letter-spacing: -0.015em;
	color: #111111;
	margin: 0 0 16px;
	max-width: 22ch;
}

.home-v3-work-challenge {
	margin: 0 0 16px;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 15px;
	line-height: 1.72;
	color: #555555;
}

.home-v3-work-outcome {
	margin: 0;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 15px;
	line-height: 1.72;
	color: #555555;
	margin-top: auto;
	padding-top: 16px;
	border-top: 1px solid #ECE9E3;
}

.home-v3-work-outcome strong {
	color: #111111;
	font-weight: 600;
}

.home-v3-work-arrow {
	position: absolute;
	top: clamp(32px, 4vw, 64px);
	right: clamp(32px, 4vw, 64px);
	width: 42px;
	height: 42px;
	border: 1px solid #ECE9E3;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: #111111;
	transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.home-v3-work-card:hover .home-v3-work-arrow {
	background: #f96300;
	border-color: #f96300;
	color: #FFFFFF;
}

/* ---- Why Armstrat (editorial numbered rows) ---- */

.home-v3-why {
	padding: clamp(80px, 10vw, 140px) 0;
	background: #FFFFFF;
}

.home-v3-why-header {
	margin-bottom: clamp(48px, 6vw, 72px);
}

.home-v3-why-heading {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: clamp(2.6rem, 5vw, 4.5rem);
	font-weight: 400;
	line-height: 1.05;
	letter-spacing: -0.03em;
	color: #111111;
	margin: 16px 0 0;
}

.home-v3-why-rows {
	border-top: 1px solid #ECE9E3;
}

.home-v3-why-row {
	display: grid;
	grid-template-columns: clamp(60px, 8vw, 96px) 1fr clamp(160px, 20vw, 240px);
	gap: clamp(32px, 5vw, 64px);
	align-items: center;
	padding: clamp(36px, 5vw, 56px) 0;
	border-bottom: 1px solid #ECE9E3;
}

.home-v3-why-row-num {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: clamp(2rem, 3.5vw, 3rem);
	color: #f96300;
	line-height: 1;
}

.home-v3-why-row-title {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: clamp(1.25rem, 2vw, 1.7rem);
	font-weight: 400;
	color: #111111;
	margin: 0 0 12px;
	letter-spacing: -0.015em;
	line-height: 1.15;
}

.home-v3-why-row-desc {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 15px;
	color: #555555;
	line-height: 1.75;
	margin: 0;
}

.home-v3-why-row-stat-num {
	display: block;
	font-family: 'Century Expanded', Georgia, serif;
	font-size: clamp(2rem, 3.5vw, 3rem);
	font-weight: 400;
	color: #111111;
	letter-spacing: -0.03em;
	line-height: 1;
	margin-bottom: 8px;
}

.home-v3-why-row-stat-label {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 13px;
	color: #777777;
	line-height: 1.5;
	display: block;
}

.home-v3-why-cta-row {
	margin-top: 52px;
}

/* ---- Contact CTA ---- */

.home-v3-cta {
	padding: clamp(80px, 12vw, 160px) 0;
	background: #F3F1EC;
	position: relative;
}

.home-v3-cta-bar {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: #f96300;
}

.home-v3-cta-inner {
	text-align: center;
	max-width: 680px;
	margin: 0 auto;
}

.home-v3-cta-eyebrow {
	display: block;
	margin-bottom: 28px;
}

.home-v3-cta-title {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: clamp(2.8rem, 6vw, 5.5rem);
	font-weight: 400;
	line-height: 1.0;
	letter-spacing: -0.04em;
	color: #111111;
	margin: 0 0 32px;
}

.home-v3-cta-sub {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 17px;
	line-height: 1.75;
	color: #555555;
	margin: 0 0 48px;
	max-width: 50ch;
	margin-left: auto;
	margin-right: auto;
}

.home-v3-cta-actions {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 36px;
	flex-wrap: wrap;
}

.home-v3-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: #FFFFFF;
	background: #f96300;
	text-decoration: none;
	padding: 16px 28px;
	letter-spacing: 0.01em;
	transition: background 0.25s ease, transform 0.15s ease;
}

.home-v3-cta-btn:hover {
	background: #e05800;
	transform: translateY(-1px);
}

.home-v3-cta-btn svg {
	transition: transform 0.25s ease;
}

.home-v3-cta-btn:hover svg {
	transform: translate(3px, -3px);
}

.home-v3-cta-link {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: #666666;
	text-decoration: none;
	transition: color 0.2s ease;
}

.home-v3-cta-link::after { content: ' \2192'; }

.home-v3-cta-link:hover { color: #111111; }

/* ---- Responsive ---- */

@media (max-width: 1200px) {
	.home-v3-spotlight-mosaic {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 400px 300px 260px;
		grid-template-areas:
			"hero hero"
			"persp sol"
			"cta   cta";
	}
}

@media (max-width: 1024px) {
	.home-v3-accord-panel-inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.home-v3-accord-img-wrap { display: none; }
	.home-v3-focus-cards {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.home-v3-work-grid { grid-template-columns: 1fr; }
	.home-v3-why-row {
		grid-template-columns: 52px 1fr;
		gap: 24px;
		padding: 36px 0;
	}
	.home-v3-why-row-stat { display: none; }
}

@media (max-width: 768px) {
	.home-v3-hero-inner {
		padding-top: clamp(100px, 22vw, 140px);
		padding-bottom: 64px;
		max-width: 100%;
	}
	.home-v3-hero-title { font-size: clamp(2.8rem, 11vw, 4.8rem); }
	.home-v3-hero-visual { width: 50%; right: -8%; opacity: 0.35; }
	.home-v3-statement {
		height: 210vh;
	}
	.home-v3-intro,
	.home-v3-focus,
	.home-v3-spotlight {
		padding: 88px 0;
	}
	.home-v3-intro-header { margin-bottom: 40px; }
	.home-v3-accord-title { font-size: clamp(1.35rem, 6vw, 2rem); }
	.home-v3-accord-trigger { padding: 20px 0; gap: 16px; }
	.home-v3-spotlight-mosaic {
		grid-template-columns: 1fr;
		grid-template-rows: 320px 240px 240px 220px;
		grid-template-areas:
			"hero"
			"persp"
			"sol"
			"cta";
		gap: 8px;
	}
	.home-v3-why { padding: 80px 0; }
	.home-v3-cta { padding: 80px 0; }
	.home-v3-work-header { padding: 72px 0 48px; }
	.home-v3-focus-header { margin-bottom: 48px; }
	.home-v3-work-card-inner { min-height: auto; }
	.home-v3-hero-cta-group {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}
	.home-v3-cta-btn { width: 100%; justify-content: center; }
	.home-v3-cta-actions { flex-direction: column; align-items: center; gap: 20px; }
}

@media (max-width: 480px) {
	.home-v3-hero-title { font-size: clamp(2.2rem, 10vw, 2.8rem); }
	.home-v3-hero-visual { display: none; }
	.home-v3-statement-text { font-size: 1.8rem; }
	.home-v3-statement { height: 190vh; }
	.home-v3-mosaic-title { font-size: 1.1rem; }
	.home-v3-mosaic-hero .home-v3-mosaic-title { font-size: 1.3rem; }
	.home-v3-why-row-num { font-size: 1.8rem; }
	.home-v3-why-row-title { font-size: 1.15rem; }
	.home-v3-work { padding-bottom: 64px; }
}

/* ============================================================
   10. Trust Strip — Dark Scrolling Marquee
   ============================================================ */

.trust-section {
	background: linear-gradient(135deg, #0f1014 0%, #181b22 100%);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	overflow: hidden;
	padding: 0;
}

.trust-inner {
	display: flex;
	align-items: stretch;
	height: 94px;
}

.trust-label-col {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	padding: 0 30px 0 38px;
	border-right: 1px solid rgba(255, 255, 255, 0.12);
	min-width: 280px;
	background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
}

.trust-label {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 11px;
	font-weight: 500;
	color: rgba(255,255,255,0.9);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	line-height: 1.55;
	margin: 0;
	white-space: nowrap;
}

.trust-track-wrap {
	flex: 1;
	overflow: hidden;
	position: relative;
	display: flex;
	align-items: center;
	mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
	-webkit-mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

.trust-track {
	display: flex;
	align-items: center;
	gap: 10px;
	width: max-content;
	will-change: transform;
	animation: trust-marquee 38s linear infinite;
}

.trust-track-wrap:hover .trust-track {
	animation-play-state: paused;
}

.trust-logo {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.82);
	white-space: nowrap;
	padding: 9px 16px;
	border: 1px solid rgba(255,255,255,0.16);
	background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.03) 100%);
	border-radius: 999px;
	cursor: default;
	transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.trust-logo:hover {
	color: #FFFFFF;
	border-color: rgba(249,99,0,0.55);
	background: linear-gradient(180deg, rgba(249,99,0,0.2) 0%, rgba(255,255,255,0.04) 100%);
}

.trust-sep {
	color: rgba(249, 99, 0, 0.45);
	font-size: 18px;
	flex-shrink: 0;
	line-height: 1;
	padding: 0 2px;
}

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

@media (max-width: 880px) {
	.trust-label-col { display: none; }
	.trust-inner { height: 78px; }
}

@media (max-width: 480px) {
	.trust-logo {
		font-size: 12px;
		padding: 8px 13px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.trust-track {
		animation: none;
		transform: translateX(0);
	}
}

/* ============================================================
   10. Stats Bar
   ============================================================ */

.stats-bar {
	background: #F5F5F5;
	padding: 72px 0;
	border-top: 1px solid #E8E8E8;
	border-bottom: 1px solid #E8E8E8;
}

.stats-inner {
	display: flex;
	align-items: center;
}

.stat-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0 32px;
	position: relative;
}

.stat-item + .stat-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 44px;
	width: 1px;
	background: #E0E0E0;
}

.stat-value {
	display: block;
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 52px;
	font-weight: 400;
	color: #111111;
	letter-spacing: -0.04em;
	line-height: 1;
	margin-bottom: 12px;
}

.stat-label {
	display: block;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #555555;
	line-height: 1.4;
}

@media (max-width: 880px) {
	.stats-inner {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 0;
	}
	.stat-item {
		padding: 32px 24px;
		border-bottom: 1px solid #E0E0E0;
	}
	.stat-item + .stat-item::before { display: none; }
	.stat-item:nth-child(odd) { border-right: 1px solid #E0E0E0; }
	.stat-item:nth-child(3),
	.stat-item:nth-child(4) { border-bottom: none; }
	.stat-value { font-size: 40px; }
}

@media (max-width: 480px) {
	.stat-value { font-size: 36px; }
}

/* ============================================================
   11. Services Section
   ============================================================ */

.services-section {
	background: #FFFFFF;
}

.services-header {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: 36px;
	align-items: center;
	margin: 0 auto 30px;
	max-width: 1160px;
	padding: 30px 32px;
	border: 1px solid #ebebeb;
	border-radius: 20px;
	background: linear-gradient(145deg, #f9f9f9 0%, #ffffff 62%);
	position: relative;
	overflow: hidden;
}

.services-header::before {
	content: "";
	position: absolute;
	width: 320px;
	height: 320px;
	left: -120px;
	top: -160px;
	background: radial-gradient(circle, rgba(249,99,0,0.18) 0%, rgba(249,99,0,0) 70%);
	pointer-events: none;
}

.services-header-left,
.services-header-right {
	position: relative;
	z-index: 1;
}

.services-header-right {
	display: grid;
	gap: 16px;
}

.services-header-left .section-headline {
	max-width: 18ch;
	text-wrap: balance;
	line-height: 1.14;
}

.services-header-right .section-body {
	max-width: 58ch;
}

.services-signals {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.services-signals span {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #313131;
	padding: 8px 12px;
	border-radius: 999px;
	border: 1px solid rgba(17,17,17,0.12);
	background: rgba(255,255,255,0.8);
}

.services-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	max-width: 1160px;
	margin: 0 auto;
}

.service-card {
	background: #FFFFFF;
	border: 1px solid #E9E9E9;
	border-radius: 18px;
	overflow: hidden;
	transition: box-shadow 0.24s ease, transform 0.2s ease, border-color 0.24s ease;
	display: grid;
	grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1fr);
	align-items: stretch;
	position: relative;
	box-shadow: 0 14px 30px rgba(17,17,17,0.06);
}

.service-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 88% 16%, rgba(249,99,0,0.14), rgba(249,99,0,0) 45%);
	opacity: 0;
	transition: opacity 0.24s ease;
	pointer-events: none;
}

.service-card:hover {
	box-shadow: 0 24px 44px rgba(17,17,17,0.12);
	transform: translateY(-6px);
	border-color: #D9D9D9;
}

.service-card:hover::before {
	opacity: 1;
}

.service-card-top {
	background: linear-gradient(180deg, #f8f8f8 0%, #f2f2f2 100%);
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 26px 20px;
	position: relative;
	overflow: hidden;
	border-right: 1px solid #ebebeb;
}

.service-card:nth-child(even) .service-card-top {
	order: 2;
	border-right: none;
	border-left: 1px solid #ebebeb;
}

.service-card:nth-child(even) .service-card-body {
	order: 1;
}

.service-card-top::before {
	content: attr(data-num);
	position: absolute;
	font-family: 'Century Expanded', Georgia, serif;
	font-size: clamp(78px, 8vw, 108px);
	font-weight: 400;
	color: rgba(17, 17, 17, 0.05);
	letter-spacing: -0.04em;
	line-height: 1;
	user-select: none;
}

.service-card-icon {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 88px;
	height: 88px;
	border-radius: 50%;
	border: 1px solid rgba(17,17,17,0.08);
	background: rgba(255,255,255,0.7);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}

.service-card-icon svg {
	width: 34px;
	height: 34px;
}

.service-card-body {
	padding: 30px 30px 26px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.service-card-title {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: clamp(1.55rem, 2vw, 2rem);
	font-weight: 400;
	color: #111111;
	letter-spacing: -0.02em;
	margin: 0 0 12px 0;
	line-height: 1.18;
}

.service-card-desc {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: #4f4f4f;
	line-height: 1.68;
	margin: 0 0 16px;
	max-width: 62ch;
}

.service-card-points {
	list-style: none;
	margin: 0 0 18px;
	padding: 0;
	display: grid;
	gap: 10px;
	flex: 1;
}

.service-card-points li {
	position: relative;
	padding-left: 18px;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	line-height: 1.55;
	color: #444;
}

.service-card-points li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 9px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #f96300;
}

.service-card-link {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #f96300;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: gap 0.2s ease;
	align-self: flex-start;
	margin-top: auto;
}

.service-card-link:hover {
	gap: 11px;
}

@media (max-width: 1100px) {
	.service-card {
		grid-template-columns: minmax(200px, 0.52fr) minmax(0, 1fr);
	}
	.service-card-body {
		padding: 26px 24px 24px;
	}
}

@media (max-width: 880px) {
	.services-header {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-bottom: 34px;
		padding: 24px;
		border-radius: 16px;
	}
	.services-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}
	.services-header-left .section-headline {
		max-width: 100%;
	}
	.service-card {
		display: flex;
		flex-direction: column;
	}
	.service-card-top {
		height: 140px;
		border-right: none;
		border-bottom: 1px solid #ebebeb;
		padding: 0;
	}
	.service-card:nth-child(even) .service-card-top {
		order: 0;
		border-left: none;
		border-bottom: 1px solid #ebebeb;
	}
	.service-card-body { padding: 22px; }
	.section-headline { font-size: 32px; }
}

@media (max-width: 480px) {
	.section-headline { font-size: 28px; }
}

/* ============================================================
   12. How We Work (Homepage)
   ============================================================ */

.how-work-section {
	background: #0f0f10;
	border-top: 1px solid rgba(255,255,255,0.08);
	border-bottom: 1px solid rgba(255,255,255,0.08);
}

.how-work-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 56px;
	align-items: start;
}

.how-work-intro .section-eyebrow {
	color: #f96300;
}

.how-work-intro .section-headline {
	color: #FFFFFF;
	max-width: 16ch;
}

.how-work-body {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.7;
	color: rgba(255,255,255,0.7);
	margin: 0 0 30px 0;
	max-width: 44ch;
}

.how-work-signals {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
	max-width: 420px;
}

.how-work-signals li {
	display: flex;
	align-items: center;
	min-height: 44px;
	padding: 10px 14px;
	border-radius: 10px;
	border: 1px solid rgba(255,255,255,0.16);
	background: rgba(255,255,255,0.03);
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.02em;
	color: rgba(255,255,255,0.82);
}

.how-work-tiles {
	display: grid;
	gap: 12px;
}

.how-work-tile {
	position: relative;
	background: #171718;
	border: 1px solid rgba(255,255,255,0.14);
	border-radius: 12px;
	overflow: hidden;
	transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.how-work-tile::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: #f96300;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.how-work-tile:hover {
	border-color: rgba(255,255,255,0.28);
	transform: translateX(-2px);
}

.how-work-tile.is-active {
	background: #1d1d1f;
	border-color: rgba(249,99,0,0.56);
	box-shadow: 0 14px 30px rgba(0,0,0,0.33);
}

.how-work-tile.is-active::before {
	opacity: 1;
}

.how-work-trigger {
	width: 100%;
	border: none;
	background: none;
	color: inherit;
	cursor: pointer;
	display: grid;
	grid-template-columns: 42px 1fr auto;
	gap: 14px;
	align-items: center;
	padding: 18px 18px 16px;
	text-align: left;
}

.how-work-tile-index {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 13px;
	color: rgba(255,255,255,0.36);
	line-height: 1;
}

.how-work-tile.is-active .how-work-tile-index {
	color: #f96300;
}

.how-work-tile-head {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.how-work-tile-title {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 22px;
	font-weight: 400;
	letter-spacing: -0.015em;
	line-height: 1.2;
	color: rgba(255,255,255,0.9);
}

.how-work-tile-meta {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.42);
}

.how-work-tile-arrow {
	font-size: 14px;
	color: rgba(255,255,255,0.3);
	transition: color 0.2s ease, transform 0.2s ease;
}

.how-work-tile.is-active .how-work-tile-arrow {
	color: #f96300;
	transform: translateX(3px);
}

.how-work-panel {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	padding: 0 18px 0 74px;
	transition: max-height 0.34s ease, opacity 0.24s ease, padding 0.24s ease;
}

.how-work-tile.is-active .how-work-panel {
	max-height: 300px;
	opacity: 1;
	padding: 0 18px 18px 74px;
}

.how-work-panel p {
	margin: 0 0 12px;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	line-height: 1.65;
	color: rgba(255,255,255,0.68);
}

.how-work-panel ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.how-work-panel li {
	padding: 5px 9px;
	border-radius: 8px;
	border: 1px solid rgba(255,255,255,0.16);
	background: rgba(255,255,255,0.04);
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.78);
}

@media (max-width: 1024px) {
	.how-work-layout {
		grid-template-columns: 1fr;
		gap: 34px;
	}
}

@media (max-width: 880px) {
	.how-work-tile-title {
		font-size: 20px;
	}
	.how-work-panel {
		padding-left: 18px;
	}
	.how-work-tile.is-active .how-work-panel {
		padding-left: 18px;
	}
}

@media (max-width: 600px) {
	.how-work-tile-title {
		font-size: 18px;
	}
	.how-work-trigger {
		grid-template-columns: 34px 1fr auto;
		padding: 16px 14px 14px;
	}
	.how-work-tile-index {
		font-size: 12px;
	}
	.how-work-tile.is-active .how-work-panel {
		max-height: 360px;
		padding: 0 14px 14px;
	}
	.how-work-panel {
		padding: 0 14px;
	}
}

/* ============================================================
   13. Feature Sections (alternating)
   ============================================================ */

.feature-section       { background: #FFFFFF; }
.feature-section--alt  {
	background: #F5F5F5;
	border-top: 1px solid #EEEEEE;
	border-bottom: 1px solid #EEEEEE;
}

.feature-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 100px;
	align-items: start;
}

.feature-inner--reversed .feature-visual { order: -1; }

.feature-body {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.65;
	color: #555555;
	margin: 0 0 40px 0;
}

.feature-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.feature-list li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 15px 0;
	border-bottom: 1px solid #EEEEEE;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 15px;
	color: #111111;
	line-height: 1.4;
}

.feature-list li:first-child { border-top: 1px solid #EEEEEE; }

.feature-list li::before {
	content: '\2192';
	color: #f96300;
	flex-shrink: 0;
	font-size: 13px;
	margin-top: 2px;
}

/* Feature card */
.feature-card {
	border-radius: 16px;
	padding: 32px;
	width: 100%;
}

.fc-dark  { background: #111111; }

.fc-light {
	background: #FFFFFF;
	border: 1px solid #E8E8E8;
	box-shadow: 0 4px 32px rgba(0, 0, 0, 0.06);
}

.fc-label {
	display: block;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 28px;
}

.fc-dark .fc-label  { color: rgba(255,255,255,0.3); }
.fc-light .fc-label { color: #AAAAAA; }

/* Process steps */
.fc-steps { display: flex; flex-direction: column; }

.fc-step {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 16px 12px;
	margin: 0 -12px;
	border-radius: 10px;
	border-bottom: 1px solid rgba(255,255,255,0.06);
	cursor: pointer;
	transition: background 0.2s ease;
}

.fc-step:last-child { border-bottom: none; }
.fc-step:hover { background: rgba(255,255,255,0.04); }
.fc-step.active { background: rgba(255,255,255,0.05); }

.fc-step-num {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 13px;
	color: rgba(255,255,255,0.2);
	width: 20px;
	flex-shrink: 0;
	padding-top: 2px;
}

.fc-step.active .fc-step-num { color: #f96300; }

.fc-step-content { flex: 1; }

.fc-step-content strong {
	display: block;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: rgba(255,255,255,0.5);
	margin-bottom: 3px;
	transition: color 0.2s ease;
}

.fc-step.active .fc-step-content strong { color: #FFFFFF; }

.fc-step-content .fc-step-meta {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 12px;
	color: rgba(255,255,255,0.25);
}

.fc-step-desc {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 12px;
	line-height: 1.65;
	color: rgba(255,255,255,0.45);
	margin: 0;
	padding-top: 0;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.32s ease, opacity 0.25s ease;
}

.fc-step.active .fc-step-desc {
	padding-top: 8px;
	max-height: 90px;
	opacity: 1;
}

.fc-step-badge {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 11px;
	font-weight: 500;
	color: #f96300;
	background: rgba(249,99,0,0.12);
	padding: 4px 10px;
	border-radius: 4px;
	white-space: nowrap;
	flex-shrink: 0;
	margin-top: 2px;
}

/* Impact bars */
.fc-impact-rows { display: flex; flex-direction: column; gap: 22px; margin-bottom: 24px; }

.fc-impact-row-header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 8px;
}

.fc-impact-label {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 13px;
	color: #555555;
}

.fc-impact-val {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 15px;
	color: #111111;
	letter-spacing: -0.02em;
}

.fc-impact-bar-track {
	height: 6px;
	background: #F0F0F0;
	border-radius: 3px;
	overflow: hidden;
}

.fc-impact-bar {
	height: 100%;
	background: #f96300;
	border-radius: 3px;
}

.fc-impact-footnote {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 11px;
	color: #BBBBBB;
	text-align: right;
	padding-top: 20px;
	border-top: 1px solid #F0F0F0;
	margin: 0;
}

@media (max-width: 880px) {
	.feature-inner {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	.feature-inner--reversed .feature-visual { order: 0; }
}

/* ============================================================
   13. Case Studies
   ============================================================ */

.casestudies-section { background: #111111; }

.casestudies-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 48px;
	margin-bottom: 48px;
}

.casestudies-header .section-eyebrow { color: rgba(255,255,255,0.35); }
.casestudies-header .section-headline { color: #FFFFFF; }

.casestudies-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 40px;
}

.cs-card {
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: background 0.25s ease, border-color 0.25s ease;
}

.cs-card:hover {
	background: rgba(255,255,255,0.07);
	border-color: rgba(255,255,255,0.14);
}

.cs-card-top {
	padding: 40px 36px;
	border-bottom: 1px solid rgba(255,255,255,0.06);
	display: flex;
	flex-direction: column;
}

.cs-tag {
	align-self: flex-start;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 11px;
	font-weight: 500;
	color: #f96300;
	background: rgba(249,99,0,0.12);
	padding: 4px 10px;
	border-radius: 4px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 28px;
}

.cs-big-metric {
	display: block;
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 72px;
	font-weight: 400;
	color: #FFFFFF;
	letter-spacing: -0.05em;
	line-height: 1;
	margin-bottom: 10px;
}

.cs-metric-label {
	display: block;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	color: rgba(255,255,255,0.35);
}

.cs-card-body {
	padding: 32px 36px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.cs-title {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 20px;
	font-weight: 400;
	color: #FFFFFF;
	letter-spacing: -0.02em;
	line-height: 1.35;
	margin: 0 0 14px 0;
}

.cs-desc {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	color: rgba(255,255,255,0.4);
	line-height: 1.7;
	margin: 0 0 28px 0;
	flex: 1;
}

.cs-link {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #f96300;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: gap 0.2s ease;
	align-self: flex-start;
}

.cs-link:hover { gap: 10px; }

.casestudies-footer { display: flex; justify-content: center; }

.casestudies-section .btn-secondary {
	color: rgba(255,255,255,0.65);
	border-color: rgba(255,255,255,0.2);
}

.casestudies-section .btn-secondary:hover {
	color: #FFFFFF;
	border-color: rgba(255,255,255,0.5);
}

@media (max-width: 880px) {
	.casestudies-grid { grid-template-columns: 1fr; }
	.casestudies-header { flex-direction: column; align-items: flex-start; }
	.cs-big-metric { font-size: 52px; }
	.cs-card-top, .cs-card-body { padding-left: 24px; padding-right: 24px; }
}

/* ============================================================
   14. Testimonials
   ============================================================ */

.testimonials-section {
	background: #F5F5F5;
	border-top: 1px solid #EEEEEE;
	border-bottom: 1px solid #EEEEEE;
}

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

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.testimonial-card {
	background: #FFFFFF;
	border: 1px solid #E8E8E8;
	border-radius: 12px;
	padding: 36px 32px 32px;
	display: flex;
	flex-direction: column;
}

.testimonial-mark {
	display: block;
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 52px;
	line-height: 0.9;
	color: #f96300;
	margin-bottom: 20px;
	user-select: none;
}

.testimonial-quote {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: #111111;
	line-height: 1.7;
	margin: 0 0 28px 0;
	flex: 1;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-top: 24px;
	border-top: 1px solid #F5F5F5;
}

.testimonial-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #F0F0F0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 14px;
	color: #555555;
	flex-shrink: 0;
}

.testimonial-name {
	display: block;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #111111;
	margin-bottom: 2px;
}

.testimonial-role {
	display: block;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 13px;
	color: #888888;
}

@media (max-width: 880px) {
	.testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
	.testimonials-header { margin-bottom: 40px; }
}

/* ============================================================
   15. FAQ Accordion
   ============================================================ */

.faq-section { background: #FFFFFF; }

.faq-header {
	text-align: center;
	margin-bottom: 56px;
}

.faq-list {
	max-width: 760px;
	margin: 0 auto;
}

.faq-item { border-bottom: 1px solid #E8E8E8; }
.faq-item:first-child { border-top: 1px solid #E8E8E8; }

.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: 100%;
	padding: 24px 0;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 18px;
	font-weight: 400;
	color: #111111;
	letter-spacing: -0.01em;
	line-height: 1.35;
	transition: color 0.2s ease;
}

.faq-question:hover { color: #f96300; }

.faq-icon {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 22px;
	font-weight: 300;
	color: #f96300;
	flex-shrink: 0;
	line-height: 1;
	transition: transform 0.25s ease;
	width: 24px;
	text-align: center;
}

.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-answer {
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 16px;
	color: #555555;
	line-height: 1.7;
	margin: 0;
	padding-bottom: 28px;
	max-width: 640px;
}

/* ============================================================
   16. Pre-footer Section
   ============================================================ */

.prefooter-section {
	background:
		radial-gradient(82% 120% at 12% 14%, rgba(249, 99, 0, 0.20) 0%, rgba(249, 99, 0, 0) 52%),
		linear-gradient(156deg, #070b12 0%, #0f1621 58%, #11101b 100%);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.prefooter-shell {
	max-width: 1080px;
	margin: 0 auto;
	padding: 62px 56px 52px;
	border-radius: 24px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: linear-gradient(154deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 62%, rgba(249, 99, 0, 0.12) 100%);
	box-shadow: 0 30px 72px rgba(0, 0, 0, 0.42);
	position: relative;
	isolation: isolate;
	overflow: hidden;
}

.prefooter-shell::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
	background-size: 56px 56px;
	opacity: 0.12;
	pointer-events: none;
}

.prefooter-header {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 760px;
	margin: 0 auto 36px;
}

.prefooter-kicker {
	display: inline-block;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.64);
	margin-bottom: 14px;
}

.prefooter-title {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: clamp(2rem, 4.7vw, 3.6rem);
	font-weight: 400;
	color: #FFFFFF;
	letter-spacing: -0.03em;
	line-height: 1.08;
	margin: 0 0 16px;
	text-wrap: balance;
}

.prefooter-body {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.68;
	color: rgba(255, 255, 255, 0.76);
	margin: 0 auto;
	max-width: 62ch;
}

.prefooter-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin-bottom: 30px;
}

.prefooter-card {
	padding: 24px 22px;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: linear-gradient(165deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.02) 100%);
	backdrop-filter: blur(2px);
}

.prefooter-card-index {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 999px;
	background: rgba(249, 99, 0, 0.16);
	border: 1px solid rgba(249, 99, 0, 0.46);
	color: #ffc7a4;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	margin-bottom: 14px;
}

.prefooter-card h3 {
	margin: 0 0 10px;
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 24px;
	font-weight: 400;
	letter-spacing: -0.02em;
	line-height: 1.2;
	color: #FFFFFF;
}

.prefooter-card p {
	margin: 0;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.74);
}

.prefooter-meta {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.62);
}

.prefooter-email {
	color: #FFFFFF;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.45);
	padding-bottom: 2px;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.prefooter-email:hover {
	color: #f96300;
	border-color: rgba(249, 99, 0, 0.8);
}

.prefooter-separator {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.34);
}

@media (max-width: 1024px) {
	.prefooter-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 880px) {
	.prefooter-shell {
		padding: 46px 24px 42px;
		border-radius: 18px;
	}
	.prefooter-header {
		margin-bottom: 30px;
	}
	.prefooter-title {
		font-size: clamp(1.95rem, 8.6vw, 2.6rem);
	}
	.prefooter-body {
		font-size: 16px;
	}
	.prefooter-grid {
		grid-template-columns: 1fr;
	}
	.prefooter-card h3 {
		font-size: 22px;
	}
}

@media (max-width: 480px) {
	.prefooter-meta {
		font-size: 11px;
		gap: 10px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero-capability-board::before,
	.hero-board-pulse {
		animation: none;
	}
}

/* ============================================================
   17. Footer — Cream Style
   ============================================================ */

footer.wp-block-template-part {
	margin-block-start: 0;
}

.site-footer {
	background: #FFFFFF;
	color: #111111;
	border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.footer-container {
	max-width: 1380px;
	margin: 0 auto;
	padding: 0 clamp(24px, 4vw, 64px);
}

.footer-main {
	display: grid;
	grid-template-columns: 1.5fr 0.85fr 0.85fr 1.1fr;
	gap: 56px;
	padding: 96px 0 80px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.10);
	align-items: start;
}

.footer-big-tagline {
	font-family: 'Century Expanded', Georgia, 'Times New Roman', serif;
	font-size: clamp(26px, 2.8vw, 40px);
	font-weight: 400;
	color: #111111;
	line-height: 1.18;
	margin: 0;
	letter-spacing: -0.012em;
}

/* Nav groups (replaces single .footer-nav) */
.footer-nav-group {
	display: flex;
	flex-direction: column;
}

.footer-nav-label {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 11px;
	font-weight: 700;
	color: rgba(0, 0, 0, 0.38);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	margin-bottom: 22px;
	display: block;
}

.footer-nav-group a {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: #333333;
	text-decoration: none;
	padding: 7px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.07);
	transition: color 0.2s ease;
	display: block;
}

.footer-nav-group a:last-child { border-bottom: none; }
.footer-nav-group a:hover { color: #f96300; }

/* Assist column */
.footer-assist {
	padding-top: 0;
}

.footer-assist-heading {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 22px;
	font-weight: 400;
	color: #111111;
	margin: 0 0 14px;
	line-height: 1.3;
	letter-spacing: -0.01em;
}

.footer-assist-body {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.55);
	line-height: 1.7;
	margin: 0 0 24px;
}

.footer-assist-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 13px;
	font-weight: 700;
	color: #FFFFFF;
	background: #f96300;
	text-decoration: none;
	padding: 13px 22px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	transition: background 0.2s ease, transform 0.15s ease;
}

.footer-assist-btn svg { transition: transform 0.25s ease; }

.footer-assist-btn:hover {
	background: #e05800;
	transform: translateY(-1px);
}

.footer-assist-btn:hover svg { transform: translate(2px, -2px); }

/* Bottom bar */
.footer-bottom {
	display: flex;
	align-items: center;
	gap: 32px;
	padding: 28px 0 20px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	flex-wrap: wrap;
}

.footer-logo-link {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	text-decoration: none;
	margin-right: auto;
}

.footer-logo-img {
	height: auto;
	width: 200px;
	display: block;
}

.footer-legal {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.footer-legal a {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	color: rgba(0, 0, 0, 0.42);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.09em;
	padding: 4px 16px 4px 0;
	transition: color 0.2s ease;
	white-space: nowrap;
}

.footer-legal a:hover { color: #111111; }

.footer-social {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.footer-social-label {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 11px;
	font-weight: 700;
	color: rgba(0, 0, 0, 0.38);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	white-space: nowrap;
}

.footer-social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	color: rgba(0, 0, 0, 0.48);
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-social-icon:hover { color: #111111; }

/* Disclaimer */
.footer-disclaimer {
	padding: 20px 0 36px;
}

.footer-disclaimer p {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 12px;
	line-height: 1.65;
	color: rgba(0, 0, 0, 0.34);
	margin: 0;
	max-width: 900px;
}

/* Footer responsive */
@media (max-width: 1100px) {
	.footer-main {
		grid-template-columns: 1fr 1fr;
		gap: 48px;
		padding: 80px 0 68px;
	}
	.footer-tagline-block { grid-column: 1 / -1; }
	.footer-big-tagline { font-size: 32px; }
	.footer-assist { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
	.footer-main {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 64px 0 54px;
	}
	.footer-big-tagline { font-size: 28px; }
	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}
	.footer-logo-img { width: 180px; }
}

@media (max-width: 480px) {
	.footer-legal a { padding: 6px 12px 6px 0; font-size: 10px; }
	.footer-disclaimer p { font-size: 11px; }
}

/* ============================================================
   18. WordPress Block Overrides
   ============================================================ */

.wp-block-separator {
	border: none;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	margin-top: 1.5rem;
	margin-bottom: 1.5rem;
}

.wp-block-post-featured-image img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.wp-block-navigation ul {
	list-style: none;
}

.wp-block-search__input {
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 4px;
	padding: 0.5rem 0.75rem;
}

/* ============================================================
   19. Utilities
   ============================================================ */

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

/* ============================================================
   20. Print
   ============================================================ */

/* ============================================================
   21. Contact Page
   ============================================================ */

.contact-hero {
	padding-top: 160px;
	padding-bottom: 64px;
	background: #FFFFFF;
	border-bottom: 1px solid #EEEEEE;
}

.contact-hero-inner {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
}

.contact-headline {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 80px;
	font-weight: 400;
	color: #111111;
	letter-spacing: -0.03em;
	line-height: 1.0;
	margin: 16px 0 20px 0;
}

.contact-subhead {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: #555555;
	line-height: 1.6;
	margin: 0;
	max-width: 520px;
}

.contact-response-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #F5F5F5;
	border: 1px solid #E8E8E8;
	border-radius: 100px;
	padding: 8px 16px;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: #333333;
	white-space: nowrap;
	flex-shrink: 0;
	align-self: flex-end;
	margin-bottom: 6px;
}

.contact-response-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #22c55e;
	flex-shrink: 0;
	box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
	animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
	0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2); }
	50%       { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.08); }
}

.contact-section {
	background: #FFFFFF;
	padding: 80px 0 96px;
}

.contact-grid {
	display: grid;
	grid-template-columns: 400px 1fr;
	gap: 80px;
	align-items: start;
}

.contact-expect-heading {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #111111;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin: 0 0 32px 0;
}

.contact-steps {
	list-style: none;
	padding: 0;
	margin: 0 0 48px 0;
	display: flex;
	flex-direction: column;
}

.contact-step {
	display: flex;
	gap: 20px;
	padding: 24px 0;
	border-bottom: 1px solid #EEEEEE;
}

.contact-step:first-child { border-top: 1px solid #EEEEEE; }

.contact-step-num {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 13px;
	color: #f96300;
	flex-shrink: 0;
	padding-top: 2px;
	width: 24px;
}

.contact-step strong {
	display: block;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: #111111;
	margin-bottom: 6px;
}

.contact-step p {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	color: #666666;
	line-height: 1.6;
	margin: 0;
}

.contact-direct-heading {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #111111;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin: 0 0 16px 0;
}

.contact-direct {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.contact-direct-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: #111111;
	text-decoration: none;
	padding: 12px 0;
	border-bottom: 1px solid #EEEEEE;
	transition: color 0.2s ease;
}

.contact-direct-link:last-child { border-bottom: none; }
.contact-direct-link:hover { color: #f96300; }
.contact-direct-link svg { flex-shrink: 0; opacity: 0.5; }

.contact-form-wrap {
	background: #F8F7F5;
	border: 1px solid #EEEEEE;
	border-radius: 20px;
	padding: 48px;
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 24px;
	transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-form-wrap.arm-capture-submitted {
	min-height: var(--arm-capture-form-height, 620px);
}

.contact-form-wrap.arm-capture-submitted .contact-form {
	opacity: 0;
	transform: translateY(24px) scale(0.985);
	pointer-events: none;
}

.arm-capture-success-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 34px;
	border-radius: inherit;
	background:
		linear-gradient(135deg, rgba(249,99,0,0.08) 0%, rgba(249,99,0,0) 42%),
		linear-gradient(180deg, #F8F7F4 0%, #F2EFE8 100%);
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
	pointer-events: none;
}

.arm-capture-success-overlay.is-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.arm-capture-success-card {
	width: min(100%, 620px);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 10px;
	padding: 38px 32px 34px;
	border: 1px solid #E4DFD3;
	border-radius: 18px;
	background: #FFFFFF;
	box-shadow: 0 16px 34px rgba(17,17,17,0.07);
}

.arm-capture-success-icon {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #f96300;
	color: #FFFFFF;
	box-shadow: 0 10px 22px rgba(249,99,0,0.25);
}

.arm-capture-success-eyebrow {
	margin: 8px 0 0;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #f96300;
}

.arm-capture-success-title {
	margin: 0;
	font-family: 'Century Expanded', Georgia, serif;
	font-size: clamp(2rem, 4.2vw, 2.9rem);
	font-weight: 400;
	letter-spacing: -0.02em;
	line-height: 1.02;
	color: #111111;
}

.arm-capture-success-copy {
	margin: 6px 0 0;
	max-width: 44ch;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 15px;
	line-height: 1.72;
	color: #4D4943;
}


.form-row--2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.form-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.form-field label {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #111111;
	letter-spacing: 0.02em;
}

.form-required { color: #f96300; }

.form-field input,
.form-field select,
.form-field textarea {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: #111111;
	background: #FFFFFF;
	border: 1px solid #E0E0E0;
	border-radius: 10px;
	padding: 12px 16px;
	width: 100%;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	appearance: none;
	-webkit-appearance: none;
}

.form-field select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 40px;
	cursor: pointer;
}

.form-field textarea {
	resize: vertical;
	min-height: 130px;
	line-height: 1.6;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
	color: #AAAAAA;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
	border-color: #f96300;
	box-shadow: 0 0 0 3px rgba(249, 99, 0, 0.08);
}

.form-field--hidden {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.form-field--recaptcha {
	margin-top: 8px;
}

.form-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: #FFFFFF;
	background: #111111;
	border: none;
	border-radius: 100px;
	padding: 16px 32px;
	cursor: pointer;
	letter-spacing: 0.02em;
	transition: background 0.2s ease;
	align-self: flex-start;
}

.form-submit:hover { background: #f96300; }

.form-submit:disabled {
	opacity: 0.65;
	cursor: not-allowed;
}

.form-submit:disabled:hover { background: #111111; }

.form-status {
	margin: 0;
	padding: 10px 12px;
	border: 1px solid transparent;
	border-radius: 10px;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 13px;
	line-height: 1.5;
}

.form-status.is-success {
	background: #ECFDF3;
	border-color: #ABEFC6;
	color: #067647;
}

.form-status.is-error {
	background: #FEF3F2;
	border-color: #FECDCA;
	color: #B42318;
}

.form-privacy {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 12px;
	color: #AAAAAA;
	margin: 0;
	line-height: 1.6;
}

.form-privacy a {
	color: #888888;
	text-decoration: underline;
}

.form-privacy a:hover { color: #111111; }

.contact-reassure {
	background: #F5F5F5;
	border-top: 1px solid #EEEEEE;
	padding: 64px 0;
}

.contact-reassure-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}

.contact-reassure-item {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.contact-reassure-icon {
	display: flex;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: #FFFFFF;
	border: 1px solid #E8E8E8;
	align-items: center;
	justify-content: center;
	color: #f96300;
	flex-shrink: 0;
	margin-bottom: 4px;
}

.contact-reassure-item strong {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: #111111;
}

.contact-reassure-item p {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	color: #666666;
	line-height: 1.6;
	margin: 0;
}

@media (max-width: 1024px) {
	.contact-grid { grid-template-columns: 340px 1fr; gap: 56px; }
	.contact-headline { font-size: 64px; }
}

@media (max-width: 880px) {
	.contact-hero { padding-top: 120px; padding-bottom: 48px; }
	.contact-hero-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
	.contact-headline { font-size: 52px; }
	.contact-grid { grid-template-columns: 1fr; gap: 48px; }
	.contact-reassure-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
	.contact-form-wrap { padding: 32px; }
}

@media (max-width: 600px) {
	.contact-headline { font-size: 42px; }
	.form-row--2 { grid-template-columns: 1fr; }
	.contact-reassure-grid { grid-template-columns: 1fr; gap: 24px; }
	.contact-form-wrap { padding: 24px; }
	.arm-capture-success-overlay { padding: 22px; }
	.arm-capture-success-card { padding: 26px 20px 24px; }
	.arm-capture-success-icon {
		width: 52px;
		height: 52px;
	}
	.arm-capture-success-copy { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
	.contact-form,
	.arm-capture-success-overlay {
		transition: none;
	}
}

/* ============================================================
   22. Blog Listing Page
   ============================================================ */

/* ── Page wrapper ────────────────────────────────────────── */
.blog-page {
	background: #FFFFFF;
}

/* ── Hero ─────────────────────────────────────────────────── */
.blog-hero {
	padding: 140px 0 48px;
	background: #FFFFFF;
	border-bottom: 1px solid #E8E8E8;
}

.blog-hero-inner {
	max-width: 700px;
}

.blog-hero-eyebrow {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #f96300;
	display: block;
	margin-bottom: 20px;
}

.blog-hero-headline {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: clamp(36px, 5vw, 56px);
	font-weight: 400;
	color: #111111;
	letter-spacing: -0.03em;
	line-height: 1.1;
	margin: 0 0 20px 0;
}

.blog-hero-sub {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 17px;
	font-weight: 400;
	color: #555555;
	line-height: 1.7;
	margin: 0;
	max-width: 540px;
}

/* ── Filter bar ───────────────────────────────────────────── */
.blog-filter-bar {
	background: #FFFFFF;
	border-bottom: 1px solid #E8E8E8;
	position: sticky;
	top: 84px;
	z-index: 20;
}

.blog-filter-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0;
	min-height: 56px;
	gap: 16px;
}

.blog-filter-left {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
}

.blog-filter-right {
	display: flex;
	align-items: center;
	gap: 16px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.blog-filter-right::-webkit-scrollbar { display: none; }

.blog-filter-tabs {
	display: flex;
	align-items: center;
	gap: 6px;
}

/* Filter chips (shared style for All + category chips) */
.blog-filter-chip {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: #555555;
	background: transparent;
	border: 1px solid #E8E8E8;
	border-radius: 0;
	padding: 7px 18px;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	white-space: nowrap;
}

.blog-filter-chip:hover {
	border-color: #111111;
	color: #111111;
}

.blog-filter-chip.active {
	background: #111111;
	color: #FFFFFF;
	border-color: #111111;
}

/* Sort buttons */
.blog-filter-sort {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-left: 8px;
	padding-left: 16px;
	border-left: 1px solid #E8E8E8;
	flex-shrink: 0;
}

.blog-sort-btn {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 12px;
	font-weight: 500;
	color: #999999;
	background: none;
	border: none;
	padding: 6px 8px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 4px;
	transition: color 0.2s ease;
	white-space: nowrap;
}

.blog-sort-btn:hover { color: #111111; }

.blog-sort-btn.active {
	color: #111111;
	font-weight: 600;
}

.blog-sort-btn svg {
	flex-shrink: 0;
	opacity: 0.5;
}

.blog-sort-btn.active svg { opacity: 1; }

/* ── Featured / sticky post ──────────────────────────────── */
.blog-featured-section {
	background: #FFFFFF;
	padding: 56px 0 0 0;
}

.blog-featured-section .wp-block-query {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 40px;
}

.blog-featured-card {
	display: grid !important;
	grid-template-columns: 1.15fr 1fr;
	gap: 0;
	background: #FFFFFF;
	border: 1px solid #E8E8E8;
	border-radius: 0;
	overflow: hidden;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

/* Override WP layout classes that fight the grid */
.blog-featured-card.is-layout-constrained,
.blog-featured-card.wp-block-group-is-layout-constrained {
	display: grid !important;
	grid-template-columns: 1.15fr 1fr;
}

.blog-featured-card > * {
	max-width: none !important;
}

.blog-featured-card:hover {
	border-color: #CCCCCC;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.blog-featured-img {
	overflow: hidden;
	min-height: 0;
}

.blog-featured-img,
.blog-featured-img a {
	display: block;
	width: 100%;
	height: 100%;
}

.blog-featured-img img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	min-height: 380px;
	aspect-ratio: auto !important;
	transition: transform 0.5s ease;
}

.blog-featured-card:hover .blog-featured-img img {
	transform: scale(1.02);
}

.blog-featured-body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 48px 52px;
}

/* Override WP constrained layout inside featured body */
.blog-featured-body.is-layout-constrained > * {
	max-width: none !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.blog-featured-label {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #f96300;
	background: rgba(249, 99, 0, 0.06);
	border: 1px solid rgba(249, 99, 0, 0.15);
	display: inline-block;
	padding: 4px 10px;
	margin-bottom: 20px;
	align-self: flex-start;
}

.blog-featured-tag {
	margin-bottom: 14px !important;
}

.blog-featured-tag a {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #888888 !important;
	text-decoration: none;
}

.blog-featured-title {
	margin: 0 0 18px 0 !important;
}

.blog-featured-title a {
	font-family: 'Century Expanded', Georgia, serif !important;
	font-size: clamp(24px, 2.2vw, 32px) !important;
	font-weight: 400 !important;
	color: #111111 !important;
	text-decoration: none !important;
	letter-spacing: -0.02em;
	line-height: 1.25 !important;
	transition: color 0.2s ease;
}

.blog-featured-title a:hover { color: #f96300 !important; }

.blog-featured-excerpt {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 15px;
	color: #555555;
	line-height: 1.7;
	margin: 0 0 24px 0;
}

.blog-featured-excerpt .wp-block-post-excerpt__more-text { display: none; }

.blog-featured-meta {
	display: flex;
	align-items: center;
	gap: 16px;
}

.blog-featured-read-more {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #111111;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: color 0.2s ease, gap 0.2s ease;
}

.blog-featured-card:hover .blog-featured-read-more {
	color: #f96300;
	gap: 12px;
}

.blog-featured-read-more svg {
	transition: transform 0.2s ease;
}

.blog-featured-card:hover .blog-featured-read-more svg {
	transform: translateX(2px);
}

.blog-featured-grid {
	display: block !important;
}

/* ── Blog section + grid ──────────────────────────────────── */
.blog-section {
	background: #FFFFFF;
	padding: 56px 0 80px;
}

.blog-grid-wp {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr) !important;
	gap: 28px !important;
	align-items: stretch !important;
}

/* ── Post card ────────────────────────────────────────────── */
.blog-card-wp {
	background: #FFFFFF;
	border: 1px solid #E8E8E8;
	border-radius: 0;
	overflow: hidden;
	display: flex !important;
	flex-direction: column;
	height: 100%;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
	position: relative;
}

.blog-card-wp::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: #f96300;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.blog-card-wp:hover {
	border-color: #CCCCCC;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.blog-card-wp:hover::after {
	transform: scaleX(1);
}

.blog-card-image {
	overflow: hidden;
	flex-shrink: 0;
}

.blog-card-image img,
.blog-card-image .wp-block-post-featured-image img {
	aspect-ratio: 3/2 !important;
	object-fit: cover !important;
	width: 100% !important;
	display: block;
	transition: transform 0.45s ease;
}

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

.blog-card-body-wp {
	padding: 24px 24px 28px !important;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.blog-card-tag {
	margin-bottom: 12px;
}

.blog-card-tag a,
.blog-card-tag .wp-block-post-terms__item {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	color: #f96300 !important;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
}

.blog-card-title-wp {
	flex: 1;
	margin-bottom: 0 !important;
}

.blog-card-title-wp a {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 19px;
	font-weight: 400;
	color: #111111;
	letter-spacing: -0.01em;
	line-height: 1.35;
	text-decoration: none;
	transition: color 0.2s ease;
}

.blog-card-title-wp a:hover { color: #f96300; }

/* Card excerpt */
.blog-card-excerpt-wp {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	color: #777777;
	line-height: 1.6;
	margin: 10px 0 0 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.blog-card-excerpt-wp .wp-block-post-excerpt__more-text { display: none; }

.blog-card-date {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 12px;
	color: #AAAAAA;
	margin-top: auto !important;
	padding-top: 18px;
	display: block;
}

.blog-card-body-wp > .wp-block-post-date,
.blog-card-body-wp > .blog-card-date {
	padding-top: 18px;
	border-top: 1px solid #F0F0F0;
	margin-top: 18px;
}

/* ── Newsletter card (JS-injected, full-width below grid) ─── */
.blog-newsletter-wrap {
	margin-top: 64px;
}

.blog-newsletter-card {
	background: #111111;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 48px;
	padding: 52px 64px;
	box-sizing: border-box;
	border-radius: 0;
}

.blog-newsletter-copy {
	flex: 1;
	min-width: 0;
}

.blog-newsletter-eyebrow {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 12px;
	display: block;
}

.blog-newsletter-headline {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 32px;
	font-weight: 400;
	color: #FFFFFF;
	line-height: 1.15;
	margin: 0 0 10px 0;
}

.blog-newsletter-sub {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.6;
	margin: 0;
}

.blog-newsletter-form-wrap {
	flex-shrink: 0;
	width: 360px;
}

.blog-newsletter-form {
	display: flex;
	gap: 0;
}

.blog-newsletter-input {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 13px;
	color: #111111;
	background: #FFFFFF;
	border: none;
	border-radius: 0;
	padding: 14px 16px;
	outline: none;
	flex: 1;
	min-width: 0;
}

.blog-newsletter-input::placeholder { color: #AAAAAA; }

.blog-newsletter-btn {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: #FFFFFF;
	background: #f96300;
	border: none;
	border-radius: 0;
	padding: 14px 24px;
	cursor: pointer;
	transition: background 0.2s ease;
	white-space: nowrap;
}

.blog-newsletter-btn:hover {
	background: #e05800;
}

/* ── Pagination ───────────────────────────────────────────── */
.blog-pagination {
	padding-top: 56px;
}

.blog-pagination a,
.blog-pagination span {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	color: #555555;
	text-decoration: none;
	padding: 8px 14px;
	border-radius: 0;
	transition: background 0.2s ease, color 0.2s ease;
}

.blog-pagination a:hover {
	background: #F5F5F5;
}

.blog-pagination .current {
	background: #111111;
	color: #FFFFFF;
}

.blog-no-results {
	padding: 80px 0;
	color: #888888;
	font-size: 17px;
}

/* ── Blog Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
	.blog-grid-wp { grid-template-columns: repeat(2, 1fr) !important; gap: 24px !important; }
}

@media (max-width: 880px) {
	.blog-hero { padding-top: 120px; }
	.blog-filter-row { flex-wrap: wrap; gap: 8px; min-height: auto; padding: 12px 0; }
	.blog-filter-left { width: 100%; }
	.blog-filter-right { width: 100%; padding-top: 8px; border-top: 1px solid #F0F0F0; }
	.blog-filter-sort { margin-left: auto; }
	.blog-featured-card { grid-template-columns: 1fr; }
	.blog-featured-body { padding: 32px 28px; }
	.blog-featured-img img { min-height: 240px; max-height: 320px; }
	.blog-featured-section .wp-block-query { padding: 0 24px; }
	.blog-newsletter-card { flex-direction: column; padding: 40px 36px; gap: 28px; }
	.blog-newsletter-form-wrap { width: 100%; }
}

@media (max-width: 600px) {
	.blog-grid-wp { grid-template-columns: 1fr !important; gap: 20px !important; }
	.blog-hero { padding-top: 108px; padding-bottom: 36px; }
	.blog-newsletter-form { flex-direction: column; }
	.blog-newsletter-headline { font-size: 26px; }
	.blog-newsletter-card { padding: 36px 24px; }
	.blog-section { padding-bottom: 60px; }
	.blog-featured-title a { font-size: 22px !important; }
	.blog-filter-sort { border-left: none; padding-left: 0; margin-left: 0; }
}

/* ============================================================
   23. Blog Post / Article Page
   ============================================================ */

/* --- Layout containers --- */

.article-container {
	max-width: 720px;
	margin: 0 auto;
	padding: 0 40px;
}

.article-container-wide {
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 40px;
}

.article-main {
	background: #FFFFFF;
}

/* --- 3-column layout (TOC left, content center, TL;DR right) --- */

.article-layout {
	display: block;
	padding-top: 120px;
}

.article-sidebar {
	display: none;
}

@media (min-width: 1400px) {
	.article-layout {
		display: grid;
		grid-template-columns: 220px 1fr 260px;
		max-width: 1360px;
		margin: 0 auto;
		gap: 0 40px;
	}
	.article-center {
		min-width: 0;
	}
	.article-sidebar {
		display: block;
		position: relative;
	}
	.article-sidebar-inner {
		position: sticky;
		top: 180px;
		margin-top: 300px;
	}
	.article-toc--relocated,
	.tldr-box--relocated {
		display: none !important;
	}
}

/* --- Top bar (back link + breadcrumbs) --- */

.article-top-bar {
	padding-bottom: 12px;
	margin-bottom: 8px;
}

.article-breadcrumbs {
	margin-top: 6px;
}

.article-breadcrumbs ol {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0;
}

.article-breadcrumbs li {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 13px;
	color: #888888;
	display: flex;
	align-items: center;
}

.article-breadcrumbs li + li::before {
	content: '\203A';
	margin: 0 6px;
	color: #BBBBBB;
}

.article-breadcrumbs a {
	color: #777777;
	text-decoration: none;
	transition: color 0.2s ease;
}

.article-breadcrumbs a:hover {
	color: #f96300;
}

.article-breadcrumbs .breadcrumb-current {
	color: #444444;
	font-weight: 500;
}

.article-back {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #555555;
	text-decoration: none;
	transition: color 0.2s ease;
}

.article-back:hover { color: #f96300; }
.article-back svg { flex-shrink: 0; }

/* --- Article headline (H1) --- */

.article-headline-wp {
	font-family: 'Century Expanded', Georgia, serif !important;
	font-size: clamp(28px, 5vw, 48px) !important;
	font-weight: 400 !important;
	color: #111111;
	letter-spacing: -0.025em !important;
	line-height: 1.12 !important;
	margin: 20px auto 0 auto !important;
	text-align: left !important;
}

/* --- Meta line (date, updated, reading time, category) --- */

.article-meta-line {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	margin: 20px 0 24px 0;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	color: #888888;
}

.article-meta-line time {
	color: #888888;
}

.article-meta-sep {
	color: #D4D4D4;
	margin: 0 4px;
}

.article-meta-reading {
	color: #888888;
}

.article-meta-cat a {
	font-size: 11px;
	font-weight: 600;
	color: #f96300;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.article-meta-cat a:hover { opacity: 0.75; }

.article-meta-author {
	font-weight: 500;
	color: #555555;
}

.article-meta-author a {
	color: #111111;
	font-weight: 600;
	text-decoration: none;
	transition: color 0.2s ease;
}

.article-meta-author a:hover { color: #f96300; }

.article-meta-updated {
	color: #999999;
	font-size: 13px;
}

.article-meta-updated time {
	color: #888888;
}

/* --- Inline author box (Zone A) — hidden when merged into meta --- */

.article-author-inline {
	display: none;
}

.article-author-inline-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.article-author-inline-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.article-author-inline-name {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #111111;
	text-decoration: none;
	transition: color 0.2s ease;
}

.article-author-inline-name:hover { color: #f96300; }

.article-author-inline-credential {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 13px;
	color: #888888;
}

/* --- TL;DR / Direct Answer Box --- */

.tldr-box {
	margin: 0 0 32px 0;
	padding: 24px 28px;
	background: #FFF8F5;
	border-left: 3px solid #f96300;
	border-radius: 0;
}

/* TL;DR in sidebar */
.article-sidebar--right .tldr-box {
	margin: 0;
	padding: 0 0 0 20px;
	background: none;
	border-left: 3px solid #f96300;
}

.article-sidebar--right .tldr-label {
	font-size: 10px;
	margin-bottom: 8px;
}

.article-sidebar--right .tldr-box p:not(.tldr-label) {
	font-size: 14px;
	color: #555555;
	line-height: 1.6;
}

.tldr-box:empty {
	display: none;
}

.tldr-label {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #f96300;
	margin: 0 0 10px 0;
}

.tldr-box p:not(.tldr-label) {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 15px;
	color: #333333;
	line-height: 1.65;
	margin: 0;
}

/* --- Table of Contents --- */

.article-toc {
	margin: 0 0 36px 0;
	padding: 24px 28px;
	background: #FAFAFA;
	border: 1px solid #ECE9E3;
	border-radius: 0;
}

/* TOC in sidebar */
.article-sidebar--left .article-toc {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
}

.article-sidebar--left .article-toc a {
	padding: 6px 0 6px 14px;
	border-left: 2px solid transparent;
	font-size: 13px;
}

.article-sidebar--left .article-toc a:hover,
.article-sidebar--left .article-toc a.toc-active {
	color: #111111;
	border-left-color: #f96300;
}

.article-toc:empty {
	display: none;
}

.article-toc-title {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #999999;
	margin: 0 0 14px 0;
}

.article-toc ol {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.article-toc li {
	margin: 0;
	padding: 0;
}

.article-toc a {
	display: block;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	color: #555555;
	text-decoration: none;
	padding: 6px 0;
	transition: color 0.15s ease;
	line-height: 1.4;
}

.article-toc a:hover,
.article-toc a.toc-active {
	color: #f96300;
}

.article-toc .toc-h3 {
	padding-left: 20px;
}

/* TOC mobile collapse */
.article-toc-details {
	margin: 0;
}

.article-toc-details summary {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #555555;
	cursor: pointer;
	padding: 8px 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 6px;
}

.article-toc-details summary::-webkit-details-marker { display: none; }

.article-toc-details summary::after {
	content: '\25BC';
	font-size: 8px;
	transition: transform 0.2s ease;
}

.article-toc-details[open] summary::after {
	transform: rotate(180deg);
}

/* --- Featured image --- */

.article-hero-img-wp {
	margin-top: 8px !important;
	margin-bottom: 40px !important;
}

.article-hero-img-wp img {
	border-radius: 0;
	aspect-ratio: 16/9;
	object-fit: cover;
	width: 100%;
}

/* --- Article body prose (WordPress content) --- */

.article-body-wrap-wp {
	padding-bottom: 56px;
}

.article-body-wp {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 17px;
	font-weight: 400;
	color: #2d2d2d;
	line-height: 1.78;
}

.article-body-wp p {
	margin: 0 0 24px 0;
}

.article-body-wp p:last-child { margin-bottom: 0; }

.article-body-wp h2 {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 32px;
	font-weight: 400;
	color: #111111;
	letter-spacing: -0.02em;
	line-height: 1.2;
	margin: 56px 0 20px 0;
}

.article-body-wp h3 {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 24px;
	font-weight: 400;
	color: #111111;
	letter-spacing: -0.02em;
	line-height: 1.3;
	margin: 40px 0 16px 0;
}

.article-body-wp h4 {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 18px;
	font-weight: 600;
	color: #111111;
	margin: 32px 0 12px 0;
}

.article-body-wp a {
	color: #f96300;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.article-body-wp a:hover { opacity: 0.75; }

.article-body-wp ul,
.article-body-wp ol {
	padding-left: 0;
	margin: 0 0 24px 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.article-body-wp ul li,
.article-body-wp ol li {
	padding-left: 24px;
	position: relative;
	line-height: 1.7;
}

.article-body-wp ul li::before {
	content: '\2014';
	position: absolute;
	left: 0;
	color: #f96300;
	font-weight: 400;
}

.article-body-wp ol { counter-reset: ol-counter; }
.article-body-wp ol li { counter-increment: ol-counter; }

.article-body-wp ol li::before {
	content: counter(ol-counter) '.';
	position: absolute;
	left: 0;
	color: #f96300;
	font-weight: 600;
	font-size: 13px;
}

.article-body-wp strong {
	font-weight: 600;
	color: #111111;
}

.article-body-wp em {
	font-style: italic;
	color: #444444;
}

/* Regular blockquote — McKinsey-style pull quote */
.article-body-wp blockquote {
	margin: 56px 0;
	padding: 32px 0 0 0;
	border: none;
	border-top: 3px solid #f96300;
	background: none;
	border-radius: 0;
	font-family: 'Century Expanded', Georgia, serif;
	font-size: clamp(22px, 3vw, 30px);
	font-style: italic;
	color: #111111;
	line-height: 1.4;
	letter-spacing: -0.01em;
}

.article-body-wp blockquote p { margin: 0; }

.article-body-wp blockquote cite {
	display: block;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #f96300;
	font-style: normal;
	margin-top: 20px;
	letter-spacing: 0;
}

.article-body-wp blockquote cite::before {
	content: '\2014\00a0';
}

/* Pull-quote block — prominent large quote */
.article-body-wp .wp-block-pullquote {
	margin: 64px 0;
	padding: 36px 0 0 0;
	border: none;
	border-top: 3px solid #f96300;
	background: none;
	border-radius: 0;
}

.article-body-wp .wp-block-pullquote blockquote {
	margin: 0;
	padding: 0;
	border: none;
	background: none;
	border-radius: 0;
}

.article-body-wp .wp-block-pullquote p {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: clamp(24px, 3.2vw, 34px);
	color: #111111;
	line-height: 1.35;
	font-style: italic;
	letter-spacing: -0.015em;
	margin: 0;
}

.article-body-wp .wp-block-pullquote cite {
	display: block;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #f96300;
	font-style: normal;
	margin-top: 20px;
}

.article-body-wp .wp-block-pullquote cite::before {
	content: '\2014\00a0';
}

/* Statistics / Data callout */
.article-body-wp .stat-callout {
	margin: 40px 0;
	padding: 32px;
	background: #F9F9F7;
	border: 1px solid #ECE9E3;
	border-radius: 0;
	text-align: center;
}

.stat-callout-number {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 48px;
	font-weight: 400;
	color: #f96300;
	line-height: 1;
	margin-bottom: 8px;
}

.stat-callout-context {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 16px;
	color: #333333;
	line-height: 1.5;
	margin-bottom: 8px;
}

.stat-callout-source {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 12px;
	color: #999999;
}

/* Definition boxes */
.article-body-wp dl {
	margin: 32px 0;
	padding: 24px 28px;
	background: #F4F7FA;
	border-left: 3px solid #4A90D9;
	border-radius: 0;
}

.article-body-wp dt {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: #111111;
	margin-bottom: 6px;
}

.article-body-wp dd {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 15px;
	color: #555555;
	line-height: 1.6;
	margin: 0 0 16px 0;
}

.article-body-wp dd:last-child { margin-bottom: 0; }

/* Tables — responsive with proper semantics */
.article-body-wp .wp-block-table {
	margin: 32px 0;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	position: relative;
}

.article-body-wp .wp-block-table.is-scrollable::after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 32px;
	height: 100%;
	background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.9));
	pointer-events: none;
}

.article-body-wp table {
	width: 100%;
	min-width: 540px;
	border-collapse: collapse;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
}

.article-body-wp table caption {
	font-size: 13px;
	color: #888888;
	text-align: left;
	margin-bottom: 12px;
	font-style: italic;
}

.article-body-wp table thead {
	background: #F5F4F0;
}

.article-body-wp table th {
	font-weight: 600;
	color: #111111;
	text-align: left;
	padding: 12px 16px;
	border-bottom: 2px solid #ECE9E3;
	white-space: nowrap;
}

.article-body-wp table td {
	padding: 12px 16px;
	border-bottom: 1px solid #ECE9E3;
	color: #333333;
	line-height: 1.5;
}

.article-body-wp table tbody tr:hover {
	background: #FAFAFA;
}

@media (max-width: 600px) {
	.article-body-wp table th,
	.article-body-wp table td {
		padding: 10px 12px;
		font-size: 13px;
	}
}

/* FAQ section */
.article-body-wp .faq-section {
	margin: 56px 0 0 0;
}

.article-body-wp .faq-section h2 {
	margin-top: 0;
	margin-bottom: 8px;
}

.article-body-wp .faq-section details {
	border-bottom: 1px solid #ECE9E3;
}

.article-body-wp .faq-section details:first-of-type {
	border-top: 1px solid #ECE9E3;
}

.article-body-wp .faq-section summary {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 17px;
	font-weight: 600;
	color: #111111;
	padding: 22px 40px 22px 0;
	cursor: pointer;
	list-style: none;
	position: relative;
	line-height: 1.4;
	min-height: 48px;
	display: flex;
	align-items: center;
	transition: color 0.15s ease;
}

.article-body-wp .faq-section summary:hover {
	color: #f96300;
}

.article-body-wp .faq-section summary::-webkit-details-marker { display: none; }

.article-body-wp .faq-section summary::after {
	content: '+';
	position: absolute;
	right: 0;
	font-size: 22px;
	font-weight: 400;
	color: #f96300;
	transition: transform 0.2s ease;
}

.article-body-wp .faq-section details[open] summary {
	color: #f96300;
}

.article-body-wp .faq-section details[open] summary::after {
	content: '\2212';
}

.article-body-wp .faq-section details p {
	padding: 0 0 22px 0;
	margin: 0;
	color: #555555;
	line-height: 1.7;
}

/* Sources / References section */
.article-body-wp .article-sources {
	margin: 56px 0 0 0;
	padding-top: 32px;
	border-top: 1px solid #ECE9E3;
}

.article-body-wp .article-sources h2,
.article-body-wp .article-sources h3 {
	font-size: 18px;
	margin-top: 0;
}

.article-body-wp .article-sources ol {
	counter-reset: src-counter;
	gap: 8px;
}

.article-body-wp .article-sources ol li {
	counter-increment: src-counter;
	font-size: 14px;
	color: #555555;
}

.article-body-wp .article-sources ol li::before {
	content: counter(src-counter) '.';
	font-size: 12px;
}

.article-body-wp .article-sources a[target="_blank"]::after {
	content: ' \2197';
	font-size: 11px;
}

/* Images inside post content */
.article-body-wp .wp-block-image {
	margin: 32px 0;
}

.article-body-wp .wp-block-image img {
	border-radius: 0;
	max-width: 100%;
	height: auto;
}

.article-body-wp .wp-block-image figcaption,
.article-body-wp figcaption {
	font-size: 13px;
	color: #888888;
	margin-top: 10px;
	text-align: center;
	font-style: italic;
}

/* Wide & full-width alignment within article body */
.article-body-wp .alignwide {
	max-width: calc(720px + 120px);
	margin-left: -60px;
	margin-right: -60px;
	width: calc(100% + 120px);
}

.article-body-wp .alignfull {
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	width: 100vw;
}

/* Separator */
.article-body-wp .wp-block-separator {
	border: none;
	border-top: 1px solid #E8E8E8;
	margin: 40px 0;
}

/* --- Zone C: Full Author Bio --- */

.article-author-full {
	padding: 64px 0;
	background: #F9F9F7;
	border-top: 1px solid #ECE9E3;
}

.article-author-full-inner {
	display: flex;
	gap: 28px;
	align-items: flex-start;
}

.article-author-full-inner:empty {
	display: none;
}

.article-author-full-avatar {
	width: 128px;
	height: 128px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.article-author-full-body {
	flex: 1;
}

.article-author-full-label {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #999999;
	margin: 0 0 8px 0;
}

.article-author-full-name {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 24px;
	font-weight: 400;
	color: #111111;
	margin: 0 0 4px 0;
}

.article-author-full-credential {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	color: #888888;
	margin: 0 0 14px 0;
}

.article-author-full-bio {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 15px;
	color: #555555;
	line-height: 1.65;
	margin: 0 0 16px 0;
}

.article-author-full-links {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.article-author-full-links a {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: #f96300;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.article-author-full-links a:hover { opacity: 0.75; }

/* --- Zone C: Related articles section --- */

.article-related-section {
	padding: 64px 0;
	background: #FFFFFF;
	border-top: 1px solid #E8E8E8;
}

.article-related-heading {
	text-align: center;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #999999;
	margin: 0 0 40px 0;
}

.article-related-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}

.article-rel-card {
	text-decoration: none;
	display: block;
}

.article-rel-img {
	width: 100%;
	aspect-ratio: 3/2;
	object-fit: cover;
	border-radius: 0;
	margin-bottom: 16px;
	transition: transform 0.3s ease;
}

.article-rel-card:hover .article-rel-img {
	transform: scale(1.02);
}

.article-rel-cat {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #f96300;
	margin-bottom: 6px;
}

.article-rel-title {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 18px;
	font-weight: 400;
	color: #111111;
	line-height: 1.3;
	letter-spacing: -0.01em;
	margin-bottom: 6px;
	transition: color 0.2s ease;
}

.article-rel-card:hover .article-rel-title {
	color: #f96300;
}

.article-rel-meta {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 12px;
	color: #999999;
}

/* --- Zone C: CTA Block --- */

.article-cta-section {
	padding: 80px 0;
	background: #F5F4F0;
}

.article-cta-inner {
	text-align: center;
	max-width: 560px;
	margin: 0 auto;
}

.article-cta-headline {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 36px;
	font-weight: 400;
	color: #111111;
	letter-spacing: -0.02em;
	line-height: 1.15;
	margin: 0 0 12px 0;
}

.article-cta-sub {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 15px;
	color: #555555;
	line-height: 1.65;
	margin: 0 0 28px 0;
}

.article-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: #FFFFFF;
	background: #f96300;
	padding: 14px 32px;
	border-radius: 0;
	text-decoration: none;
	transition: background 0.2s ease;
	min-height: 48px;
}

.article-cta-btn:hover { background: #e05800; }

/* --- Zone C: Previous / Next post navigation --- */

.article-prevnext-section {
	border-top: 1px solid #E8E8E8;
	background: #FFFFFF;
}

.article-prevnext {
	display: grid;
	grid-template-columns: 1fr 1fr;
	max-width: 720px;
	margin: 0 auto;
}

.article-pn-link {
	display: block;
	padding: 40px 0;
	text-decoration: none;
	transition: background 0.15s ease;
}

.article-pn-prev {
	border-right: 1px solid #E8E8E8;
	padding-right: 32px;
}

.article-pn-next {
	text-align: right;
	padding-left: 32px;
}

.article-pn-label {
	display: flex;
	align-items: center;
	gap: 6px;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #999999;
	margin-bottom: 10px;
}

.article-pn-next .article-pn-label {
	justify-content: flex-end;
}

.article-pn-title {
	display: block;
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 18px;
	font-weight: 400;
	color: #111111;
	line-height: 1.35;
	letter-spacing: -0.01em;
}

.article-pn-link:hover .article-pn-title {
	color: #f96300;
}

/* --- Social share (fixed sidebar) --- */

.article-share-sticky {
	position: fixed;
	left: clamp(12px, 2vw, 32px);
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 10px;
	z-index: 50;
}

.article-share-sticky .article-share-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #111111;
	color: #FFFFFF;
	border: none;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.2s ease;
}

.article-share-sticky .article-share-btn:hover {
	background: #f96300;
}

.article-share-sticky .article-share-btn svg {
	display: block;
}

/* Copied confirmation */
.article-share-btn.copied {
	background: #28a745 !important;
}

/* --- Article page responsive --- */

@media (max-width: 1024px) {
	.article-related-grid { grid-template-columns: 1fr 1fr; }
	.article-share-sticky { display: none; }
}

@media (max-width: 880px) {
	.article-container { padding: 0 24px; }
	.article-container-wide { padding: 0 24px; }
	.article-top-bar { padding-top: 110px; }
	.article-main { padding-left: 24px; padding-right: 24px; }
	.article-headline-wp { font-size: 36px !important; }
	.article-prevnext { grid-template-columns: 1fr; }
	.article-pn-prev { border-right: none; border-bottom: 1px solid #E8E8E8; padding-right: 0; padding-bottom: 32px; }
	.article-pn-next { text-align: left; padding-left: 0; padding-top: 32px; }
	.article-pn-next .article-pn-label { justify-content: flex-start; }
	.article-body-wp .alignwide { max-width: 100%; margin-left: 0; margin-right: 0; width: 100%; }
	.article-author-full-inner { flex-direction: column; align-items: center; text-align: center; }
	.article-author-full-links { justify-content: center; }
}

@media (max-width: 768px) {
	.article-related-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 600px) {
	.article-container { padding: 0 20px; }
	.article-container-wide { padding: 0 20px; }
	.article-top-bar { padding-top: 96px; }
	.article-main { padding-left: 20px; padding-right: 20px; }
	.article-headline-wp { font-size: 28px !important; line-height: 1.18 !important; }
	.article-hero-img-wp img { border-radius: 0; }
	.article-body-wp { font-size: 16px; }
	.article-body-wp p { margin: 0 0 20px 0; }
	.article-body-wp h2 { font-size: 24px; margin-top: 36px; }
	.article-body-wp h3 { font-size: 20px; }
	.article-body-wp blockquote { font-size: 18px; padding: 0 0 0 20px; }
	.article-body-wp .wp-block-pullquote { padding: 0 0 0 20px; }
	.article-body-wp .wp-block-pullquote p { font-size: 20px; }
	.article-body-wp .faq-section summary { font-size: 15px; padding: 16px 28px 16px 0; }
	.stat-callout-number { font-size: 36px; }
	.article-cta-headline { font-size: 26px; }
	.article-cta-section { padding: 52px 0; }
	.article-related-section { padding: 44px 0; }
	.article-rel-title { font-size: 16px; }
	.article-prevnext-section { padding: 48px 0; }
	.article-author-full { padding: 44px 0; }
	.article-author-full-avatar { width: 96px; height: 96px; }
	.article-author-full-name { font-size: 20px; }
	.tldr-box { padding: 20px 20px; }
}

/* ============================================================
   24. 404 Error Page
   ============================================================ */

.error-404-section {
	padding-top: 180px;
	padding-bottom: 120px;
	background: #FFFFFF;
}

.error-404-inner {
	text-align: center;
	max-width: 560px;
	margin: 0 auto;
}

.error-404-code {
	display: block;
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 160px;
	font-weight: 400;
	color: #f96300;
	letter-spacing: -0.05em;
	line-height: 1;
	margin-bottom: 16px;
	opacity: 0.15;
}

.error-404-headline {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 48px;
	font-weight: 400;
	color: #111111;
	letter-spacing: -0.03em;
	line-height: 1.1;
	margin: 0 0 20px 0;
}

.error-404-body {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 17px;
	font-weight: 400;
	color: #555555;
	line-height: 1.65;
	margin: 0 0 40px 0;
}

.error-404-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

@media (max-width: 880px) {
	.error-404-section { padding-top: 140px; padding-bottom: 80px; }
	.error-404-code { font-size: 120px; }
	.error-404-headline { font-size: 38px; }
}

@media (max-width: 480px) {
	.error-404-code { font-size: 80px; }
	.error-404-headline { font-size: 30px; }
}

/* ============================================================
   25. Page Template (Generic)
   ============================================================ */

.page-content-section {
	padding-top: 160px;
	padding-bottom: 96px;
	background: #FFFFFF;
}

/* ============================================================
   26. About Page
   ============================================================ */

/* ── Hero ─────────────────────────────────────────────────── */
.about-hero {
	background: #F5F4F0;
	padding: 160px 0 96px;
}

.about-hero-inner {
	display: grid;
	grid-template-columns: 1fr 420px;
	gap: 80px;
	align-items: end;
}

.about-hero-founded {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #888888;
	margin-bottom: 28px;
}

.about-hero-founded-dot {
	display: inline-block;
	width: 6px;
	height: 6px;
	background: #f96300;
	border-radius: 50%;
	flex-shrink: 0;
}

.about-hero-headline {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 64px;
	font-weight: 400;
	color: #111111;
	letter-spacing: -0.03em;
	line-height: 1.05;
	margin: 0;
}

.about-hero-right {
	padding-bottom: 8px;
}

.about-hero-lead {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 17px;
	font-weight: 400;
	color: #444444;
	line-height: 1.7;
	margin: 0 0 28px 0;
}

.about-hero-cta {
	display: inline-block;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: #111111;
	text-decoration: none;
	border-bottom: 2px solid #f96300;
	padding-bottom: 2px;
	transition: color 0.2s ease;
}

.about-hero-cta:hover { color: #f96300; }

/* ── Ethos band ───────────────────────────────────────────── */
.about-ethos {
	background: #111111;
	padding: 80px 0;
}

.about-ethos-inner {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 80px;
	align-items: center;
}

.about-ethos-label {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.35);
}

.about-ethos-quote {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 30px;
	font-weight: 400;
	color: #FFFFFF;
	line-height: 1.45;
	margin: 0;
}

.about-ethos-quote em {
	color: #f96300;
	font-style: italic;
}

/* ── Metrics bar ──────────────────────────────────────────── */
.about-metrics {
	background: #FFFFFF;
	border-bottom: 1px solid #ECEAE5;
}

.about-metrics-inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.about-metric-item {
	padding: 56px 40px;
	border-right: 1px solid #ECEAE5;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.about-metric-item:last-child { border-right: none; }

.about-metric-value {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 48px;
	font-weight: 400;
	color: #111111;
	letter-spacing: -0.04em;
	line-height: 1;
}

.about-metric-label {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 13px;
	font-weight: 400;
	color: #777777;
	line-height: 1.4;
}

/* ── Story section ────────────────────────────────────────── */
.about-story {
	background: #F5F4F0;
	padding: 96px 0;
}

.about-story-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 96px;
	align-items: start;
}

.about-story-eyebrow {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #888888;
	margin-bottom: 24px;
}

.about-story-heading {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 36px;
	font-weight: 400;
	color: #111111;
	letter-spacing: -0.025em;
	line-height: 1.2;
	margin: 0 0 28px 0;
}

.about-story-body p {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #444444;
	line-height: 1.75;
	margin: 0 0 20px 0;
}

.about-story-body p:last-child { margin-bottom: 0; }

.about-story-right {
	padding-top: 40px;
}

.about-pullquote {
	border-left: 3px solid #f96300;
	padding: 0 0 0 28px;
	margin: 0 0 40px 0;
}

.about-pullquote-text {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 22px;
	font-weight: 400;
	color: #111111;
	line-height: 1.5;
	margin: 0 0 16px 0;
}

.about-pullquote-attr {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #888888;
}

.about-expertise-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.about-expertise-item {
	display: flex;
	align-items: center;
	gap: 14px;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #333333;
	padding: 14px 0;
	border-bottom: 1px solid #E8E6E1;
}

.about-expertise-item::before {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	background: #f96300;
	border-radius: 50%;
	flex-shrink: 0;
}

/* ── Team section ─────────────────────────────────────────── */
.about-team {
	background: #FFFFFF;
	padding: 96px 0;
}

.about-team-header {
	margin-bottom: 64px;
}

.about-team-eyebrow {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #888888;
	margin-bottom: 16px;
}

.about-team-heading {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 40px;
	font-weight: 400;
	color: #111111;
	letter-spacing: -0.03em;
	line-height: 1.1;
	margin: 0;
	max-width: 520px;
}

.about-team-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.about-team-card {
	background: #F5F4F0;
	overflow: hidden;
}

.about-team-photo {
	aspect-ratio: 4/3;
	background: #E8E6E0;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	position: relative;
}

.about-team-photo-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	color: #AAAAAA;
}

.about-team-photo-icon {
	width: 56px;
	height: 56px;
	background: #D8D6D0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.about-team-photo-label {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #AAAAAA;
}

.about-team-body {
	padding: 32px 36px 36px;
}

.about-team-name {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 24px;
	font-weight: 400;
	color: #111111;
	letter-spacing: -0.015em;
	margin: 0 0 4px 0;
}

.about-team-role {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #f96300;
	margin: 0 0 20px 0;
}

.about-team-bio {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #555555;
	line-height: 1.7;
	margin: 0 0 24px 0;
}

.about-team-social {
	display: flex;
	gap: 12px;
}

.about-team-social-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #888888;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.about-team-social-link:hover {
	color: #111111;
	border-color: #111111;
}

/* ── Values section ───────────────────────────────────────── */
.about-values {
	background: #F5F4F0;
	padding: 96px 0;
	border-top: 1px solid #E8E6E1;
}

.about-values-header {
	margin-bottom: 56px;
}

.about-values-eyebrow {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #888888;
	margin-bottom: 16px;
}

.about-values-heading {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 36px;
	font-weight: 400;
	color: #111111;
	letter-spacing: -0.025em;
	line-height: 1.2;
	margin: 0;
}

.about-values-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
}

.about-value-card {
	background: #FFFFFF;
	padding: 40px 36px 44px;
}

.about-value-num {
	display: block;
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 13px;
	font-weight: 400;
	color: #f96300;
	margin-bottom: 20px;
}

.about-value-title {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 20px;
	font-weight: 400;
	color: #111111;
	letter-spacing: -0.01em;
	line-height: 1.3;
	margin: 0 0 14px 0;
}

.about-value-body {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #666666;
	line-height: 1.7;
	margin: 0;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
	.about-hero-headline { font-size: 52px; }
	.about-metrics-inner { grid-template-columns: repeat(2, 1fr); }
	.about-metric-item:nth-child(2) { border-right: none; }
	.about-metric-item:nth-child(3) { border-top: 1px solid #ECEAE5; }
	.about-metric-item:nth-child(4) { border-top: 1px solid #ECEAE5; border-right: none; }
}

@media (max-width: 880px) {
	.about-hero { padding: 120px 0 72px; }
	.about-hero-inner { grid-template-columns: 1fr; gap: 40px; }
	.about-hero-headline { font-size: 44px; }
	.about-ethos-inner { grid-template-columns: 1fr; gap: 24px; }
	.about-ethos-quote { font-size: 24px; }
	.about-story-inner { grid-template-columns: 1fr; gap: 48px; }
	.about-story-right { padding-top: 0; }
	.about-team-grid { grid-template-columns: 1fr; }
	.about-team-heading { font-size: 32px; }
	.about-values-grid { grid-template-columns: 1fr; gap: 2px; }
	.about-values-heading { font-size: 28px; }
}

@media (max-width: 600px) {
	.about-hero-headline { font-size: 36px; }
	.about-metrics-inner { grid-template-columns: 1fr 1fr; }
	.about-metric-item { padding: 36px 24px; }
	.about-metric-value { font-size: 36px; }
	.about-story-heading { font-size: 28px; }
	.about-team-body { padding: 24px; }
}

/* ============================================================
   27. Legal Pages + Cookie Preferences
   ============================================================ */

.legal-page {
	background: #FFFFFF;
}

/* ── Page header ──────────────────────────────────────────── */

.legal-header {
	padding: clamp(140px, 12vw, 200px) 0 clamp(40px, 5vw, 56px);
	border-bottom: 1px solid #ECE9E3;
}

.legal-header .section-eyebrow {
	margin-bottom: 16px;
}

.legal-header-title {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: clamp(2.4rem, 5vw, 3.8rem);
	font-weight: 400;
	letter-spacing: -0.03em;
	line-height: 1.08;
	color: #111111;
	margin: 0 0 18px 0;
}

.legal-header-sub {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.7;
	color: #555555;
	margin: 0 0 24px 0;
	max-width: 64ch;
}

.legal-header-meta {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: #999999;
	margin: 0;
}

/* ── Sub-navigation ───────────────────────────────────────── */

.legal-nav {
	background: #FFFFFF;
	border-bottom: 1px solid #ECE9E3;
	position: sticky;
	top: 84px;
	z-index: 40;
}

.legal-nav-inner {
	display: flex;
	gap: 32px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.legal-nav-inner::-webkit-scrollbar {
	display: none;
}

.legal-nav-link {
	display: inline-flex;
	align-items: center;
	padding: 16px 0;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #888888;
	text-decoration: none;
	white-space: nowrap;
	border-bottom: 2px solid transparent;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.legal-nav-link:hover {
	color: #111111;
}

.legal-nav-link.is-active {
	color: #111111;
	font-weight: 600;
	border-bottom-color: #f96300;
}

/* ── Body layout ──────────────────────────────────────────── */

.legal-body {
	padding: clamp(40px, 5vw, 64px) 0 clamp(80px, 10vw, 120px);
}

.legal-layout {
	display: grid;
	grid-template-columns: 240px minmax(0, 1fr);
	gap: 48px;
	align-items: start;
}

/* ── Table of Contents sidebar ────────────────────────────── */

.legal-toc {
	position: sticky;
	top: 148px;
	display: flex;
	flex-direction: column;
	gap: 0;
	padding: 0;
}

.legal-toc-heading {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #999999;
	margin: 0 0 16px 0;
}

.legal-toc-link {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 13px;
	font-weight: 400;
	color: #888888;
	text-decoration: none;
	padding: 8px 0 8px 16px;
	border-left: 2px solid transparent;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.legal-toc-num {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: #CCCCCC;
	min-width: 18px;
	transition: color 0.2s ease;
}

.legal-toc-link:hover {
	color: #111111;
}

.legal-toc-link:hover .legal-toc-num {
	color: #999999;
}

.legal-toc-link.is-active {
	color: #111111;
	font-weight: 600;
	border-left-color: #f96300;
}

.legal-toc-link.is-active .legal-toc-num {
	color: #f96300;
}

/* ── Content article ──────────────────────────────────────── */

.legal-content {
	max-width: 780px;
}

.legal-section + .legal-section {
	margin-top: 40px;
	padding-top: 40px;
	border-top: 1px solid #ECE9E3;
}

.legal-section-head {
	display: flex;
	align-items: baseline;
	gap: 14px;
	margin-bottom: 18px;
}

.legal-section-num {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: #f96300;
	flex-shrink: 0;
	padding-top: 0.18em;
}

.legal-section-head h2 {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 26px;
	font-weight: 400;
	letter-spacing: -0.02em;
	line-height: 1.2;
	color: #111111;
	margin: 0;
}

.legal-section p {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.78;
	color: #444444;
	margin: 0 0 14px 0;
}

.legal-section p:last-child {
	margin-bottom: 0;
}

.legal-section ul {
	list-style: none;
	margin: 14px 0 0;
	padding: 0;
	display: grid;
	gap: 10px;
}

.legal-section li {
	position: relative;
	padding-left: 18px;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 16px;
	line-height: 1.72;
	color: #444444;
}

.legal-section li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.56em;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #f96300;
}

.legal-section a {
	color: #f96300;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.legal-section a:hover {
	color: #e05800;
}

/* ── Related policies ─────────────────────────────────────── */

.legal-related {
	border-top: 1px solid #ECE9E3;
	padding: 40px 0 0;
	margin-top: 56px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 28px;
	align-items: center;
}

.legal-related-label {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: #999999;
	margin: 0;
}

.legal-related-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #f96300;
	text-decoration: none;
	transition: color 0.2s ease;
}

.legal-related-link:hover {
	color: #e05800;
}

.legal-related-link::after {
	content: '\2192';
	font-size: 15px;
	transition: transform 0.2s ease;
}

.legal-related-link:hover::after {
	transform: translateX(3px);
}

/* ── Cookie Preferences ───────────────────────────────────── */

.cookie-pref-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 48px;
	align-items: start;
}

.cookie-pref-panel {
	max-width: 680px;
}

.cookie-pref-panel h2 {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 30px;
	font-weight: 400;
	letter-spacing: -0.025em;
	line-height: 1.15;
	margin: 0 0 12px 0;
	color: #111111;
}

.cookie-pref-intro {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 16px;
	color: #555555;
	line-height: 1.7;
	margin: 0 0 12px;
}

.cookie-pref-current {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 16px;
	padding: 6px 0;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #888888;
}

.cookie-pref-item {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 18px;
	align-items: center;
	padding: 20px 0;
	border-bottom: 1px solid #ECE9E3;
}

.cookie-pref-item:first-of-type {
	border-top: 1px solid #ECE9E3;
}

.cookie-pref-copy h3 {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 20px;
	font-weight: 400;
	letter-spacing: -0.01em;
	line-height: 1.26;
	color: #111111;
	margin: 0 0 4px 0;
}

.cookie-pref-copy p {
	margin: 0;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
}

.cookie-pref-toggle {
	display: inline-flex;
	align-items: center;
	width: 48px;
	height: 28px;
	padding: 2px;
	border-radius: 999px;
	border: 1px solid #D6D2CB;
	background: #DBD9D4;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.cookie-pref-toggle-knob {
	display: block;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #FFFFFF;
	box-shadow: 0 1px 4px rgba(17, 17, 17, 0.18);
	transform: translateX(0);
	transition: transform 0.18s ease;
}

.cookie-pref-toggle[aria-checked="true"] {
	background: #111111;
	border-color: #111111;
}

.cookie-pref-toggle[aria-checked="true"] .cookie-pref-toggle-knob {
	transform: translateX(20px);
}

.cookie-pref-toggle.is-locked {
	background: #f96300;
	border-color: #f96300;
	cursor: not-allowed;
	opacity: 0.9;
}

.cookie-pref-toggle.is-locked .cookie-pref-toggle-knob {
	transform: translateX(20px);
}

.cookie-pref-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.cookie-pref-action {
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-size: 12px;
}

.cookie-pref-status {
	margin: 14px 0 0;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: #067647;
}

.cookie-pref-status.is-error {
	color: #B42318;
}

.cookie-pref-help {
	position: sticky;
	top: 148px;
	padding: 0;
	border-left: 1px solid #ECE9E3;
	padding-left: 32px;
}

.cookie-pref-help h2 {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 22px;
	font-weight: 400;
	letter-spacing: -0.02em;
	line-height: 1.2;
	color: #111111;
	margin: 0 0 12px;
}

.cookie-pref-help p {
	margin: 0;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
}

.cookie-pref-help ul {
	list-style: none;
	padding: 0;
	margin: 18px 0 0;
	display: grid;
	gap: 10px;
}

.cookie-pref-help li {
	position: relative;
	padding-left: 16px;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	line-height: 1.65;
	color: #555555;
}

.cookie-pref-help li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.56em;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #f96300;
}

.cookie-pref-help a {
	color: #f96300;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.cookie-pref-help a:hover {
	color: #e05800;
}

/* ── Legal responsive ─────────────────────────────────────── */

@media (max-width: 1100px) {
	.legal-layout {
		grid-template-columns: 1fr;
	}
	.legal-toc {
		position: static;
		flex-direction: row;
		flex-wrap: wrap;
		gap: 0;
		padding-bottom: 24px;
		border-bottom: 1px solid #ECE9E3;
		margin-bottom: 8px;
	}
	.legal-toc-heading {
		width: 100%;
		margin-bottom: 8px;
	}
	.legal-toc-link {
		border-left: none;
		padding: 6px 12px 6px 0;
	}
	.legal-toc-link.is-active {
		border-left: none;
	}
	.cookie-pref-layout {
		grid-template-columns: 1fr;
	}
	.cookie-pref-help {
		position: static;
		border-left: none;
		padding-left: 0;
		padding-top: 32px;
		border-top: 1px solid #ECE9E3;
	}
}

@media (max-width: 880px) {
	.legal-header {
		padding: clamp(110px, 10vw, 140px) 0 clamp(32px, 4vw, 48px);
	}
	.legal-section-head h2 {
		font-size: 23px;
	}
	.cookie-pref-help {
		padding-left: 0;
	}
}

@media (max-width: 600px) {
	.legal-header-title {
		font-size: clamp(2rem, 9vw, 2.5rem);
	}
	.legal-header-sub {
		font-size: 15px;
	}
	.legal-nav-inner {
		gap: 24px;
	}
	.legal-nav-link {
		font-size: 13px;
		padding: 14px 0;
	}
	.legal-toc-link {
		font-size: 12px;
	}
	.legal-toc-num {
		display: none;
	}
	.legal-section-head h2 {
		font-size: 21px;
	}
	.legal-section-num {
		font-size: 11px;
	}
	.legal-section p,
	.legal-section li {
		font-size: 15px;
	}
	.cookie-pref-panel h2 {
		font-size: 26px;
	}
	.cookie-pref-item {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	.cookie-pref-toggle {
		justify-self: flex-start;
	}
	.cookie-pref-actions .btn-secondary,
	.cookie-pref-actions .btn-primary {
		width: 100%;
		justify-content: center;
	}
}

/* ============================================================
   28. Cookie Consent Bar
   ============================================================ */

.cookie-consent-bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 210;
	background: #FFFFFF;
	border-top: 1px solid #ECE9E3;
	box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.06);
}

.cookie-consent-bar[hidden] {
	display: none !important;
}

.cookie-consent-inner {
	max-width: 1320px;
	margin: 0 auto;
	padding: 22px 34px 24px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 20px 34px;
	align-items: center;
}

.cookie-consent-content {
	max-width: 780px;
}

.cookie-consent-kicker {
	display: inline-flex;
	margin-bottom: 8px;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #999999;
}

.cookie-consent-title {
	margin: 0 0 6px;
	font-family: 'Century Expanded', Georgia, serif;
	font-size: clamp(1.2rem, 2vw, 1.5rem);
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: #111111;
}

.cookie-consent-copy {
	margin: 0;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	color: #555555;
	max-width: 72ch;
}

.cookie-consent-copy a {
	color: #f96300;
	text-decoration: none;
	border-bottom: 1px solid rgba(249, 99, 0, 0.3);
	transition: color 0.2s ease, border-color 0.2s ease;
}

.cookie-consent-copy a:hover {
	color: #e05800;
	border-color: #e05800;
}

.cookie-consent-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	flex-wrap: wrap;
	min-width: 340px;
}

.cookie-consent-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 18px;
	border-radius: 0;
	border: 1px solid transparent;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.cookie-consent-btn--primary {
	background: #f96300;
	color: #FFFFFF;
	border-color: #f96300;
}

.cookie-consent-btn--primary:hover {
	background: #e05800;
	border-color: #e05800;
}

.cookie-consent-btn--ghost {
	background: transparent;
	color: #111111;
	border-color: #ECE9E3;
}

.cookie-consent-btn--ghost:hover {
	border-color: #111111;
}

.cookie-bar-visible {
	padding-bottom: 140px;
	transition: padding-bottom 0.2s ease;
}

@media (max-width: 1100px) {
	.cookie-consent-inner {
		grid-template-columns: 1fr;
		align-items: start;
	}
	.cookie-consent-actions {
		min-width: 0;
		justify-content: flex-start;
	}
}

@media (max-width: 880px) {
	.cookie-consent-inner {
		padding: 18px 20px 20px;
		gap: 14px;
	}
	.cookie-consent-actions {
		width: 100%;
		gap: 8px;
	}
	.cookie-consent-btn {
		flex: 1 1 calc(33.333% - 6px);
		min-width: 150px;
	}
	.cookie-bar-visible {
		padding-bottom: 200px;
	}
}

@media (max-width: 600px) {
	.cookie-consent-title {
		font-size: clamp(1.1rem, 5vw, 1.3rem);
	}
	.cookie-consent-copy {
		font-size: 13px;
	}
	.cookie-consent-btn {
		min-width: 100%;
		flex: 1 1 100%;
	}
	.cookie-bar-visible {
		padding-bottom: 260px;
	}
}

/* ============================================================
   29. Consult Armstrat — Multi-Step Consultation Form
   ============================================================ */

/* --- Hero --- */

.consult-hero {
	padding: 140px 0 40px 0;
	background: #FFFFFF;
}

.consult-hero-inner {
	max-width: 620px;
}

.consult-headline {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 400;
	color: #111111;
	letter-spacing: -0.025em;
	line-height: 1.1;
	margin: 12px 0 0 0;
}

.consult-subhead {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 17px;
	color: #555555;
	line-height: 1.65;
	margin: 20px 0 0 0;
	max-width: 520px;
}

/* --- Form section --- */

.consult-section {
	padding: 0 0 64px 0;
	background: #FFFFFF;
}

.consult-form-outer {
	max-width: 720px;
	margin: 0 auto;
	background: #F8F7F5;
	border: 1px solid #EEEEEE;
	border-radius: 0;
	padding: 48px;
	position: relative;
	overflow: visible;
	isolation: isolate;
	min-height: 520px;
}

/* --- Progress bar --- */

.consult-progress {
	margin-bottom: 40px;
}

.consult-progress-bar {
	height: 3px;
	background: #E8E8E8;
	width: 100%;
	margin-bottom: 16px;
}

.consult-progress-fill {
	height: 100%;
	background: #f96300;
	width: 25%;
	transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.consult-progress-steps {
	display: flex;
	justify-content: space-between;
}

.consult-progress-step {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 12px;
	font-weight: 500;
	color: #BBBBBB;
	letter-spacing: 0.04em;
	transition: color 0.2s ease;
}

.consult-progress-step.is-active {
	color: #f96300;
	font-weight: 600;
}

.consult-progress-step.is-done {
	color: #888888;
}

/* --- Step fieldsets --- */

.consult-step {
	display: none;
	border: none;
	padding: 0;
	margin: 0;
}

.consult-step.is-active {
	display: block;
	animation: consultFadeIn 0.35s ease;
}

@keyframes consultFadeIn {
	from { opacity: 0; transform: translateY(12px); }
	to   { opacity: 1; transform: translateY(0); }
}

@keyframes consultShake {
	0%, 100% { transform: translateX(0); }
	20%      { transform: translateX(-6px); }
	40%      { transform: translateX(6px); }
	60%      { transform: translateX(-4px); }
	80%      { transform: translateX(4px); }
}

.consult-step-title {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 26px;
	font-weight: 400;
	color: #111111;
	letter-spacing: -0.02em;
	margin: 0 0 6px 0;
}

.consult-step-desc {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 15px;
	color: #888888;
	margin: 0 0 28px 0;
	line-height: 1.5;
}

/* --- Step 1: Service cards --- */

.consult-cards {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.consult-card {
	cursor: pointer;
	display: block;
}

.consult-card input[type="radio"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.consult-card-inner {
	display: grid;
	grid-template-columns: 28px 1fr;
	grid-template-rows: auto auto;
	column-gap: 16px;
	row-gap: 2px;
	padding: 20px 24px;
	background: #FFFFFF;
	border: 1px solid #E8E8E8;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.consult-card:hover .consult-card-inner {
	border-color: #CCCCCC;
}

.consult-card input:checked + .consult-card-inner {
	border-color: #f96300;
	box-shadow: 0 0 0 1px #f96300;
	background: #FFFBF8;
}

.consult-card-icon {
	grid-row: 1 / 3;
	align-self: center;
	color: #999999;
	transition: color 0.2s ease;
}

.consult-card input:checked + .consult-card-inner .consult-card-icon {
	color: #f96300;
}

.consult-card-label {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: #111111;
	line-height: 1.3;
}

.consult-card-desc {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 13px;
	color: #888888;
	line-height: 1.5;
}

/* --- Step 2: Button group (company size) --- */

.consult-btn-group {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.consult-btn-option {
	cursor: pointer;
}

.consult-btn-option input[type="radio"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.consult-btn-option span {
	display: inline-block;
	padding: 10px 18px;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #555555;
	background: #FFFFFF;
	border: 1px solid #E8E8E8;
	transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.consult-btn-option:hover span {
	border-color: #CCCCCC;
}

.consult-btn-option input:checked + span {
	border-color: #f96300;
	color: #f96300;
	background: #FFFBF8;
	font-weight: 600;
}

/* --- Step 2: AI maturity scale --- */

.consult-maturity {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.consult-maturity-option {
	cursor: pointer;
	display: block;
}

.consult-maturity-option input[type="radio"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.consult-maturity-inner {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 14px 20px;
	background: #FFFFFF;
	border: 1px solid #E8E8E8;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.consult-maturity-option:hover .consult-maturity-inner {
	border-color: #CCCCCC;
}

.consult-maturity-option input:checked + .consult-maturity-inner {
	border-color: #f96300;
	background: #FFFBF8;
}

.consult-maturity-inner strong {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: #111111;
}

.consult-maturity-option input:checked + .consult-maturity-inner strong {
	color: #f96300;
}

.consult-maturity-inner small {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 13px;
	color: #888888;
	font-weight: 400;
}

/* --- Fields container --- */

.consult-fields {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.consult-optional {
	font-weight: 400;
	color: #BBBBBB;
	font-size: 12px;
}

/* --- Integrated international phone picker --- */

.consult-intl-phone {
	position: relative;
	display: flex;
	align-items: stretch;
	border: 1px solid #DDDDDD;
	background: #FFFFFF;
	transition: border-color 0.15s ease;
}

.consult-intl-phone:focus-within {
	border-color: #f96300;
}

.consult-intl-btn {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 0 10px;
	background: #F5F4F2;
	border: none;
	border-right: 1px solid #DDDDDD;
	cursor: pointer;
	flex-shrink: 0;
	transition: background 0.15s ease;
}

.consult-intl-btn:hover {
	background: #EDECEA;
}

.consult-intl-flag {
	font-size: 20px;
	line-height: 1;
}

.consult-intl-arrow {
	color: #999999;
	flex-shrink: 0;
	transition: transform 0.2s ease;
}

.consult-intl-btn[aria-expanded="true"] .consult-intl-arrow {
	transform: rotate(180deg);
}

.consult-intl-code {
	display: flex;
	align-items: center;
	padding: 0 8px 0 12px;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #333333;
	white-space: nowrap;
	flex-shrink: 0;
}

.consult-intl-code:empty {
	display: none;
}

.consult-intl-phone input[type="tel"] {
	flex: 1;
	min-width: 0;
	border: none !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	padding: 12px 14px 12px 0;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 15px;
	color: #111111;
	background: transparent;
	outline: none;
}

.consult-intl-phone input[type="tel"]::placeholder {
	color: #BBBBBB;
}

/* Dropdown */

.consult-intl-dropdown {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	width: 320px;
	max-height: 280px;
	background: #FFFFFF;
	border: 1px solid #DDDDDD;
	box-shadow: 0 8px 24px rgba(0,0,0,0.12);
	z-index: 100;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.consult-intl-dropdown[hidden] {
	display: none;
}

.consult-intl-search-wrap {
	padding: 8px;
	border-bottom: 1px solid #EEEEEE;
	flex-shrink: 0;
}

.consult-intl-search {
	width: 100%;
	padding: 8px 10px;
	border: 1px solid #DDDDDD;
	border-radius: 0;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 13px;
	color: #111111;
	background: #FAFAFA;
	outline: none;
	box-sizing: border-box;
}

.consult-intl-search:focus {
	border-color: #f96300;
}

.consult-intl-list {
	list-style: none;
	margin: 0;
	padding: 4px 0;
	overflow-y: auto;
	flex: 1;
}

.consult-intl-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 14px;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	color: #222222;
	cursor: pointer;
	transition: background 0.1s ease;
}

.consult-intl-list li:hover,
.consult-intl-list li.is-highlighted {
	background: #F5F4F2;
}

.consult-intl-list li.is-selected {
	background: #FFF5EE;
	color: #f96300;
	font-weight: 600;
}

.consult-intl-list li .intl-flag {
	font-size: 18px;
	line-height: 1;
	flex-shrink: 0;
}

.consult-intl-list li .intl-name {
	flex: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.consult-intl-list li .intl-dial {
	color: #999999;
	font-size: 13px;
	flex-shrink: 0;
}

/* --- Navigation buttons --- */

.consult-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 36px;
	gap: 16px;
}

.consult-nav-back {
	gap: 6px;
}

.consult-nav-next {
	margin-left: auto;
}

/* --- Privacy note --- */

.consult-privacy {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 12px;
	color: #AAAAAA;
	margin: 20px 0 0 0;
	text-align: center;
	line-height: 1.5;
}

.consult-privacy a {
	color: #999999;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.consult-privacy a:hover {
	color: #f96300;
}

/* --- Reassurance strip --- */

.consult-reassure {
	padding: 72px 0;
	background: #F9F9F7;
	border-top: 1px solid #ECE9E3;
}

.consult-reassure-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}

.consult-reassure-item {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.consult-reassure-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid #E8E8E8;
	background: #FFFFFF;
	color: #f96300;
	flex-shrink: 0;
	margin-bottom: 4px;
}

.consult-reassure-item strong {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: #111111;
}

.consult-reassure-item p {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	color: #777777;
	line-height: 1.55;
	margin: 0;
}

/* --- Success overlay reuse from form-capture plugin --- */

.consult-form-outer.arm-capture-submitted {
	min-height: var(--arm-capture-form-height, 400px);
}

/* --- Responsive --- */

@media (max-width: 880px) {
	.consult-form-outer {
		padding: 32px 24px;
	}

	.consult-reassure-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}

	.consult-btn-group {
		gap: 6px;
	}

	.consult-btn-option span {
		padding: 8px 14px;
		font-size: 13px;
	}
}

@media (max-width: 600px) {
	.consult-hero {
		padding: 120px 0 28px 0;
	}

	.consult-form-outer {
		padding: 24px 18px;
	}

	.consult-step-title {
		font-size: 22px;
	}

	.consult-card-inner {
		grid-template-columns: 1fr;
		padding: 16px 18px;
	}

	.consult-card-icon {
		display: none;
	}

	.consult-reassure-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.form-row--2 {
		grid-template-columns: 1fr;
	}

	.consult-nav {
		flex-direction: column-reverse;
		gap: 12px;
	}

	.consult-nav-next {
		width: 100%;
		justify-content: center;
		margin-left: 0;
	}

	.consult-nav-back {
		width: 100%;
		justify-content: center;
	}

	.consult-form-outer {
		min-height: 420px;
	}

	.consult-intl-dropdown {
		width: 100%;
	}
}

/* ============================================================
   30. Hero V4 — GSAP Card Carousel (local dev testing)
   ============================================================ */

.home-v4-hero {
	min-height: 100svh;
	background: #FFFFFF;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	padding: clamp(100px, 12vw, 150px) 24px clamp(48px, 6vw, 80px);
}

/* Gallery — centered, full width */
.home-v4-gallery {
	position: relative;
	width: 100%;
	height: 33rem;
	flex-shrink: 0;
}

.home-v4-cards {
	position: absolute;
	width: 22.5rem;
	height: 31.5rem;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	list-style: none;
	padding: 0;
	margin: 0;
}

.home-v4-cards li {
	position: absolute;
	top: 0;
	left: 0;
	width: 22.5rem;
	height: 31.5rem;
	padding: 0;
	margin: 0;
	overflow: hidden;
	border-radius: 0;
	background: #111111;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
	will-change: transform, opacity;
}

.home-v4-cards li a {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: #FFFFFF;
	position: relative;
}

.home-v4-card-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.home-v4-card-img.loaded {
	opacity: 1;
}

.home-v4-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.88) 0%,
		rgba(0, 0, 0, 0.4) 40%,
		rgba(0, 0, 0, 0.08) 100%
	);
	z-index: 1;
}

.home-v4-card-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
	padding: 24px;
}

.home-v4-card-cat {
	display: inline-block;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #f96300;
	margin-bottom: 8px;
}

.home-v4-card-title {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.35;
	color: #FFFFFF;
	margin: 0 0 10px 0;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.home-v4-card-meta {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.6);
	letter-spacing: 0.02em;
}

.home-v4-card-meta span + span::before {
	content: '\00B7';
	margin: 0 6px;
}

/* Navigation buttons — flanking the gallery */
.home-v4-prev,
.home-v4-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: #FFFFFF;
	border: 1px solid #E0DCD5;
	border-radius: 0;
	color: #111111;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.home-v4-prev { left: clamp(16px, 4vw, 80px); }
.home-v4-next { right: clamp(16px, 4vw, 80px); }

.home-v4-prev:hover,
.home-v4-next:hover {
	background: #111111;
	color: #FFFFFF;
	border-color: #111111;
}

/* Bottom text — below carousel */
.home-v4-hero-bottom {
	text-align: center;
	margin-top: 44px;
	max-width: 600px;
}

.home-v4-title {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: clamp(1.8rem, 3.5vw, 2.8rem);
	font-weight: 400;
	line-height: 1.1;
	letter-spacing: -0.03em;
	color: #111111;
	margin: 0 0 14px 0;
}

.home-v4-sub {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: clamp(0.88rem, 1.1vw, 1rem);
	line-height: 1.7;
	color: #888888;
	margin: 0 0 28px 0;
}

.home-v4-ctas {
	justify-content: center;
}

/* Placeholder card (no image) */
.home-v4-card-placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 48px;
	color: rgba(249, 99, 0, 0.3);
}

/* ---- Responsive: V4 Hero ---- */

@media (max-width: 768px) {
	.home-v4-hero {
		padding-top: clamp(90px, 14vw, 130px);
		padding-bottom: 40px;
	}

	.home-v4-gallery {
		height: 28rem;
	}

	.home-v4-cards,
	.home-v4-cards li {
		width: 19.5rem;
		height: 27rem;
	}

	.home-v4-card-title {
		font-size: 16px;
	}

	.home-v4-card-info {
		padding: 18px;
	}

	.home-v4-prev,
	.home-v4-next {
		width: 36px;
		height: 36px;
	}

	.home-v4-prev { left: 10px; }
	.home-v4-next { right: 10px; }
}


/* ============================================================
   31. Print
   ============================================================ */

@media print {
	.site-header,
	.site-footer,
	.cookie-consent-bar,
	#scroll-progress,
	.wp-block-navigation {
		display: none;
	}
}
