/*
 * 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;
}

body {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	color: #111111;
	background: #FFFFFF;
	margin: 0;
	padding-bottom: 48px;
	-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;
}

@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 — Floating Glass Pill
   ============================================================ */

.site-header {
	position: fixed;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 100;
	width: calc(100% - 64px);
	max-width: 960px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.site-nav {
	background: rgba(255, 255, 255, 0.55);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 100px;
	height: 68px;
	display: flex;
	align-items: center;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
	transition: background 0.3s ease;
}

.nav-container {
	padding: 0 16px 0 20px;
	width: 100%;
	display: flex;
	align-items: center;
	gap: 24px;
}

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

.nav-logo-img {
	height: auto;
	width: 200px;
	display: block;
	margin-right: auto;
}

.nav-links {
	display: flex;
	list-style: none;
	margin: 0 0 0 auto;
	padding: 0;
	gap: 4px;
	justify-content: flex-end;
}

.nav-links a {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #555555;
	text-decoration: none;
	padding: 6px 14px;
	border-radius: 100px;
	transition: color 0.2s ease, background 0.2s ease;
	white-space: nowrap;
}

.nav-links a:hover {
	color: #111111;
	background: rgba(0, 0, 0, 0.06);
}

.nav-actions {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.nav-cta {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 13px;
	font-weight: 500;
	background: #f96300;
	color: #FFFFFF;
	text-decoration: none;
	padding: 9px 20px;
	border-radius: 100px;
	transition: background-color 0.2s ease;
	white-space: nowrap;
}

.nav-cta:hover {
	background-color: #e05800;
}

/* Hamburger */
.nav-hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	width: 32px;
	height: 32px;
}

.nav-hamburger span {
	display: block;
	width: 20px;
	height: 1.5px;
	background: #111111;
	border-radius: 1px;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile dropdown */
.nav-mobile {
	display: none;
	background: rgba(255, 255, 255, 0.97);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 20px;
	padding: 12px 24px 24px;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.nav-mobile.open { display: block; }

.nav-mobile ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}

.nav-mobile ul li a {
	display: block;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 17px;
	font-weight: 400;
	color: #111111;
	text-decoration: none;
	padding: 14px 0;
	border-bottom: 1px solid #F0F0F0;
	transition: color 0.2s;
}

.nav-mobile ul li a:hover { color: #f96300; }

.nav-mobile .nav-cta {
	display: inline-block;
	margin-top: 20px;
	font-size: 15px;
	padding: 12px 28px;
	border-radius: 100px;
}

@media (max-width: 880px) {
	.site-header { top: 16px; width: calc(100% - 32px); }
	.nav-links, .nav-actions { display: none; }
	.nav-hamburger { display: flex; }
	.nav-container { padding: 0 8px 0 20px; }
}

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

.hero {
	padding-top: 180px;
	padding-bottom: 120px;
	background: #FFFFFF;
}

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

.hero-headline {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 68px;
	font-weight: 400;
	line-height: 1.08;
	letter-spacing: -0.03em;
	color: #0a0a0a;
	margin: 0 0 32px 0;
}

.hero-subtext {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 18px;
	font-weight: 350;
	line-height: 1.7;
	color: #6b6b6b;
	margin: 0 0 24px 0;
	max-width: 620px;
}

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

.hero-checklist {
	list-style: none;
	padding: 0;
	margin: 0 0 44px 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.hero-checklist li {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 17px;
	font-weight: 400;
	color: #4a4a4a;
	display: flex;
	align-items: center;
	gap: 12px;
}

.hero-checklist li::before {
	content: "\2713";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	color: #f96300;
	font-size: 14px;
	font-weight: 900;
	flex-shrink: 0;
}

.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;
}

/* Fixed bottom trust bar */
.hero-trust-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 200;
	background: #111111;
	padding: 13px 48px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.hero-trust-bar > span:last-child {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	color: #FFFFFF;
}

.hero-trust-icon {
	width: 22px;
	height: 22px;
	background: #f96300;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

@media (max-width: 1100px) {
	.hero-headline { font-size: 58px; }
}

@media (max-width: 880px) {
	.hero { padding-top: 140px; padding-bottom: 100px; }
	.hero-headline { font-size: 46px; }
	.hero-subtext { font-size: 17px; }
}

@media (max-width: 480px) {
	.hero-headline { font-size: 36px; }
	.hero-subtext { font-size: 16px; max-width: 100%; }
	.hero-trust-bar { padding: 12px 20px; }
	.hero-trust-bar > span:last-child { 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. Trust Strip — Dark Scrolling Marquee
   ============================================================ */

.trust-section {
	background: #111111;
	overflow: hidden;
	padding: 0;
}

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

.trust-label-col {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	padding: 0 32px 0 40px;
	border-right: 1px solid rgba(255, 255, 255, 0.08);
	min-width: 200px;
}

.trust-label {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	color: #FFFFFF;
	letter-spacing: 0.07em;
	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;
	width: max-content;
	animation: trust-marquee 30s linear infinite;
}

.trust-logo {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 22px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.35);
	white-space: nowrap;
	padding: 0 44px;
	cursor: default;
	transition: color 0.2s ease;
}

.trust-logo:hover {
	color: rgba(255, 255, 255, 0.65);
}

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

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

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

@media (max-width: 480px) {
	.trust-logo { font-size: 15px; padding: 0 24px; }
}

/* ============================================================
   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: 1fr 1fr;
	gap: 48px;
	align-items: end;
	margin-bottom: 64px;
}

.services-header-right {
	padding-bottom: 4px;
}

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

.service-card {
	background: #FFFFFF;
	border: 1px solid #E8E8E8;
	border-radius: 12px;
	overflow: hidden;
	transition: box-shadow 0.25s ease, transform 0.2s ease, border-color 0.25s ease;
	display: flex;
	flex-direction: column;
}

.service-card:hover {
	box-shadow: 0 8px 48px rgba(0, 0, 0, 0.08);
	transform: translateY(-3px);
	border-color: #D4D4D4;
}

.service-card-top {
	background: #F5F5F5;
	height: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	position: relative;
	overflow: hidden;
}

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

.service-card-icon {
	position: relative;
	z-index: 1;
}

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

.service-card-title {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 22px;
	font-weight: 400;
	color: #111111;
	letter-spacing: -0.02em;
	margin: 0 0 14px 0;
	line-height: 1.2;
}

.service-card-desc {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: #555555;
	line-height: 1.65;
	margin: 0 0 28px 0;
	flex: 1;
}

.service-card-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;
}

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

@media (max-width: 880px) {
	.services-header {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.services-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.service-card-top { height: 140px; }
	.section-headline { font-size: 32px; }
}

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

/* ============================================================
   12. 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. Final CTA Section
   ============================================================ */

.cta-section { background: #111111; }

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

.cta-headline {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 52px;
	font-weight: 400;
	color: #FFFFFF;
	letter-spacing: -0.04em;
	line-height: 1.1;
	margin: 0 0 24px 0;
}

.cta-body {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 17px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.65;
	margin: 0 0 48px 0;
}

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

@media (max-width: 880px) { .cta-headline { font-size: 40px; } }
@media (max-width: 480px) { .cta-headline { font-size: 32px; } }

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

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

.site-footer {
	background: #F3F1EC;
	color: #111111;
}

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

.footer-main {
	display: grid;
	grid-template-columns: 1fr 180px 320px;
	gap: 64px;
	padding: 80px 0 72px;
	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: 38px;
	font-weight: 400;
	color: #111111;
	line-height: 1.22;
	margin: 0;
	letter-spacing: -0.01em;
}

.footer-nav {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding-top: 6px;
}

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

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

.footer-assist {
	padding-top: 4px;
}

.footer-assist-heading {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 20px;
	font-weight: 600;
	color: #111111;
	margin: 0 0 12px 0;
	line-height: 1.3;
}

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

.footer-assist-btn {
	display: inline-block;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #FFFFFF;
	background: #111111;
	text-decoration: none;
	padding: 12px 24px;
	border-radius: 100px;
	letter-spacing: 0.02em;
	transition: background 0.2s ease;
}

.footer-assist-btn:hover {
	background: #f96300;
}

.footer-bottom {
	display: flex;
	align-items: center;
	gap: 32px;
	padding: 24px 0;
}

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

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

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

.footer-legal a {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 11px;
	font-weight: 500;
	color: rgba(0, 0, 0, 0.45);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	padding: 0 16px;
	border-right: 1px solid rgba(0, 0, 0, 0.15);
	transition: color 0.2s ease;
	white-space: nowrap;
}

.footer-legal a:first-child { padding-left: 0; }
.footer-legal a:last-child  { border-right: none; }
.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: 500;
	color: rgba(0, 0, 0, 0.45);
	text-transform: uppercase;
	letter-spacing: 0.07em;
	white-space: nowrap;
}

.footer-social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid rgba(0, 0, 0, 0.15);
	color: rgba(0, 0, 0, 0.5);
	text-decoration: none;
	transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.footer-social-icon:hover {
	border-color: #111111;
	color: #111111;
	background: rgba(0, 0, 0, 0.04);
}

@media (max-width: 1024px) {
	.footer-main {
		grid-template-columns: 1fr 160px 280px;
		gap: 48px;
	}
	.footer-big-tagline { font-size: 32px; }
}

@media (max-width: 880px) {
	.footer-main {
		grid-template-columns: 1fr 1fr;
		gap: 48px;
		padding: 64px 0 56px;
	}
	.footer-tagline-block { grid-column: 1 / -1; }
	.footer-big-tagline { font-size: 30px; }
	.footer-container { padding: 0 24px; }
	.footer-bottom { flex-wrap: wrap; gap: 20px; }
	.footer-legal { flex-wrap: wrap; }
}

@media (max-width: 600px) {
	.footer-main { grid-template-columns: 1fr; gap: 40px; }
	.footer-big-tagline { font-size: 28px; }
	.footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
	.footer-logo-link { margin-right: 0; }
}

/* ============================================================
   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;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.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-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-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; }
}

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

.blog-hero {
	padding-top: 160px;
	padding-bottom: 56px;
	background: #FFFFFF;
}

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

.blog-hero-headline {
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 56px;
	font-weight: 400;
	color: #111111;
	letter-spacing: -0.02em;
	line-height: 1.1;
	margin: 14px 0 20px 0;
}

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

.blog-filter-bar {
	background: #FFFFFF;
	border-bottom: 1px solid #EEEEEE;
}

.blog-filter {
	display: flex;
	gap: 0;
	padding: 0;
}

.blog-filter-btn {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: #888888;
	background: none;
	border: none;
	border-bottom: 2px solid transparent;
	padding: 14px 20px;
	cursor: pointer;
	transition: color 0.2s ease, border-color 0.2s ease;
	white-space: nowrap;
}

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

.blog-filter-btn.active {
	color: #111111;
	border-bottom-color: #111111;
}

.blog-section {
	background: #FFFFFF;
	padding: 64px 0 96px;
}

.blog-tag {
	display: inline-block;
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	color: #f96300;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

/* WordPress blog grid overrides */
.blog-grid-wp {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr) !important;
	gap: 32px !important;
}

.blog-card-wp {
	border: 1px solid #EEEEEE;
	border-radius: 12px;
	overflow: hidden;
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.blog-card-wp:hover {
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
	transform: translateY(-3px);
}

.blog-card-image img {
	aspect-ratio: 16/9;
	object-fit: cover;
	width: 100%;
}

.blog-card-body-wp {
	padding: 24px !important;
}

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

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

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

.blog-card-excerpt {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	color: #666666;
	line-height: 1.65;
}

.blog-card-meta-wp {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 12px;
	color: #999999;
}

.blog-pagination {
	padding-top: 48px;
}

.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: 6px;
	transition: background 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;
}

@media (max-width: 1024px) {
	.blog-grid-wp { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 880px) {
	.blog-hero { padding-top: 120px; }
	.blog-hero-headline { font-size: 42px; }
}

@media (max-width: 600px) {
	.blog-grid-wp { grid-template-columns: 1fr !important; }
	.blog-hero-headline { font-size: 34px; }
}

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

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

.article-main {
	background: #FFFFFF;
}

.article-header {
	padding-top: 140px;
	padding-bottom: 0;
	background: #FFFFFF;
}

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

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

/* WordPress article header overrides */
.article-header-wp {
	padding-top: 16px;
	padding-bottom: 32px;
}

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

.article-headline-wp {
	font-family: 'Century Expanded', Georgia, serif !important;
	font-size: 52px !important;
	font-weight: 400 !important;
	color: #111111;
	letter-spacing: -0.025em !important;
	line-height: 1.12 !important;
	margin: 12px 0 32px 0 !important;
}

.article-meta-row-wp {
	padding-bottom: 32px;
	border-bottom: 1px solid #EEEEEE;
	margin-bottom: 40px;
}

.article-author-wp .wp-block-post-author__avatar img {
	border-radius: 50%;
}

.article-author-wp .wp-block-post-author__name {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #111111;
}

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

.article-hero-img-wp img {
	border-radius: 16px;
	aspect-ratio: 16/8;
	object-fit: cover;
	width: 100%;
	margin-bottom: 56px;
}

/* Article body prose (WordPress content) */
.article-body-wp {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 17px;
	font-weight: 400;
	color: #2d2d2d;
	line-height: 1.75;
}

.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 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;
}

.article-body-wp blockquote {
	margin: 40px 0;
	padding: 28px 32px;
	border-left: 3px solid #f96300;
	background: #FFF8F5;
	border-radius: 0 12px 12px 0;
	font-family: 'Century Expanded', Georgia, serif;
	font-size: 20px;
	font-style: italic;
	color: #333333;
	line-height: 1.55;
}

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

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

.article-footer-wp {
	padding-bottom: 32px;
}

.article-terms-wp {
	font-family: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	color: #888888;
}

.article-terms-wp a {
	color: #f96300;
	text-decoration: none;
}

.article-terms-wp a:hover { text-decoration: underline; }

@media (max-width: 880px) {
	.article-container { padding: 0 24px; }
	.article-header { padding-top: 110px; }
	.article-headline-wp { font-size: 40px !important; }
	.article-meta-row-wp { flex-direction: column !important; align-items: flex-start !important; gap: 16px; }
}

@media (max-width: 600px) {
	.article-headline-wp { font-size: 32px !important; }
	.article-body-wp { font-size: 16px; }
	.article-body-wp h2 { font-size: 26px; }
	.article-body-wp blockquote { font-size: 18px; padding: 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. Print
   ============================================================ */

@media print {
	.site-header,
	.site-footer,
	.hero-trust-bar,
	#scroll-progress,
	.wp-block-navigation {
		display: none;
	}
}
