/* =========================================================
   ibx Consulting — Theme-Styles
   Open Sans (300 Light als Standard), ibx-Navy als Akzent.
   Akzentfarbe kommt als --ibx-navy aus dem <head> (Customizer).
   ========================================================= */

:root {
	/* Markenfarben — werden per wp_head (Customizer) ueberschrieben */
	--ibx-navy: #1F2A3D;          /* Primaer  */
	--ibx-gray: #EEEDE9;          /* Sekundaer: helles Warmgrau (Sand mit Grau) */
	--ibx-serif: "Cormorant Garamond", "Iowan Old Style", Georgia, "Times New Roman", serif;

	--ibx-navy-soft: #2c3a52;
	--ibx-ink: #1c2330;
	--ibx-body: #51596b;
	--ibx-line: #e7eaf0;
	--ibx-bg: #ffffff;
	--ibx-bg-alt: var(--ibx-gray);
	--ibx-radius: 0;          /* kantig, minimalistisch */
	--ibx-maxw: 1180px;
	--ibx-shadow: none;
	--ibx-ease: cubic-bezier(.22, 1, .36, 1);
}

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

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
	font-weight: 300;
	font-size: 17px;
	line-height: 1.7;
	color: var(--ibx-body);
	background: var(--ibx-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
	font-family: var(--ibx-serif);
	font-weight: 500;
	color: var(--ibx-ink);
	line-height: 1.14;
	margin: 0 0 .5em;
	letter-spacing: 0;
}

p { margin: 0 0 1.1em; }
a { color: var(--ibx-navy); text-decoration: none; transition: color .2s var(--ibx-ease); }
a:hover { color: var(--ibx-navy-soft); }
img, svg { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0 0 1.1em; padding: 0 0 0 1.1em; }

.screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px; height: 1px; overflow: hidden;
}
.ibx-skip-link {
	position: absolute; left: -999px; top: 0; z-index: 1000;
	background: var(--ibx-navy); color: #fff; padding: 10px 18px;
}
.ibx-skip-link:focus { left: 12px; top: 12px; color: #fff; }

/* ---------- Layout ---------- */
.ibx-container { width: 100%; max-width: var(--ibx-maxw); margin: 0 auto; padding: 0 24px; }
.ibx-narrow { max-width: 860px; }
.ibx-center { text-align: center; }
.ibx-section { padding: 96px 0; }
.ibx-section-title { font-size: clamp(1.7rem, 3.2vw, 2.6rem); }
.ibx-eyebrow {
	display: inline-block; font-weight: 600; font-size: .8rem;
	letter-spacing: .14em; text-transform: uppercase;
	color: var(--ibx-navy); margin-bottom: 14px;
}
.ibx-eyebrow-light { color: rgba(255, 255, 255, .75); }

/* ---------- Buttons ---------- */
.ibx-btn {
	display: inline-flex; align-items: center; justify-content: center;
	gap: 8px; font-weight: 600; font-size: .9rem;
	letter-spacing: .03em;
	padding: 15px 30px; border-radius: 0;
	border: 1px solid transparent; cursor: pointer;
	transition: background .2s var(--ibx-ease), color .2s, border-color .2s;
	white-space: nowrap;
}
.ibx-btn-lg { padding: 18px 38px; font-size: .95rem; }
.ibx-btn-block { width: 100%; }
.ibx-btn-solid { background: var(--ibx-navy); color: #fff; }
.ibx-btn-solid:hover { background: var(--ibx-navy-soft); color: #fff; }
.ibx-btn-outline { border-color: var(--ibx-navy); color: var(--ibx-navy); }
.ibx-btn-outline:hover { background: var(--ibx-navy); color: #fff; }
.ibx-btn-ghost { color: var(--ibx-ink); border-color: var(--ibx-line); }
.ibx-btn-ghost:hover { border-color: var(--ibx-navy); color: var(--ibx-navy); }

.ibx-link-arrow { font-weight: 600; color: var(--ibx-navy); }
.ibx-link-arrow::after { content: " \2192"; transition: margin .2s var(--ibx-ease); }
.ibx-link-arrow:hover::after { margin-left: 6px; }

/* ---------- Header ---------- */
.ibx-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(255, 255, 255, .9);
	backdrop-filter: saturate(160%) blur(10px);
	border-bottom: 1px solid var(--ibx-line);
	transition: transform .45s var(--ibx-ease), box-shadow .3s var(--ibx-ease);
}
.ibx-header.ibx-hide { transform: translateY(-100%); }
.ibx-header-inner {
	display: flex; align-items: center; gap: 32px;
	min-height: 100px;
}
.ibx-branding { flex: 0 0 auto; }
.ibx-logo, .custom-logo-link { display: inline-flex; align-items: center; }
.ibx-logo svg { height: 60px; width: auto; }
.ibx-logo-text {
	font-weight: 700; font-size: 3.2rem; color: var(--ibx-navy);
	letter-spacing: -.02em;
}
.ibx-logo-light .ibx-logo-text { color: #fff; }
.custom-logo { max-height: 80px; width: auto; }

.ibx-nav { display: none; }
.ibx-nav-menu {
	display: flex; align-items: center; gap: 30px;
	list-style: none; margin: 0; padding: 0;
}
.ibx-nav-menu a {
	color: var(--ibx-ink); font-weight: 400; font-size: .98rem;
	padding: 6px 0; position: relative;
}
.ibx-nav-menu a::after {
	content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
	height: 2px; background: var(--ibx-navy);
	transition: right .25s var(--ibx-ease);
}
.ibx-nav-menu a:hover::after,
.ibx-nav-menu .current-menu-item > a::after { right: 0; }
.ibx-header-cta { display: none; }

.ibx-burger {
	display: flex; flex-direction: column; gap: 5px;
	background: none; border: 0; cursor: pointer; padding: 8px;
	margin-left: auto;
}
.ibx-burger span {
	width: 24px; height: 2px; background: var(--ibx-ink);
	transition: transform .25s var(--ibx-ease), opacity .2s;
}
.ibx-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ibx-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.ibx-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.ibx-mobile-nav {
	position: fixed; inset: 0; z-index: 90;
	background: var(--ibx-navy);
	display: flex; flex-direction: column;
	align-items: center; justify-content: center;
	gap: 30px; padding: 120px 24px 80px;
	overflow-y: auto;
}
.ibx-mobile-nav[hidden] { display: none; }
.ibx-mobile-menu {
	list-style: none; margin: 0; padding: 0;
	display: flex; flex-direction: column; align-items: center; gap: 6px;
	text-align: center;
}
.ibx-mobile-menu li { border: 0; }
.ibx-mobile-menu a {
	display: inline-block; padding: 10px 8px; color: #fff;
	font-family: var(--ibx-serif); font-weight: 500;
	font-size: clamp(1.9rem, 6vw, 3rem); line-height: 1.15;
	transition: color .2s var(--ibx-ease);
}
.ibx-mobile-menu a:hover { color: rgba(255, 255, 255, .65); }
.ibx-mobile-nav .ibx-btn { margin-top: 18px; width: auto; }
.ibx-mobile-nav .ibx-btn-solid { background: #fff; color: var(--ibx-navy); }
.ibx-mobile-nav .ibx-btn-solid:hover { background: rgba(255, 255, 255, .85); color: var(--ibx-navy); }

/* ---------- Hero ---------- */
.ibx-hero {
	background: linear-gradient(180deg, var(--ibx-bg-alt) 0%, #fff 100%);
	overflow: hidden;
}
.ibx-hero-inner {
	display: grid; grid-template-columns: 1.05fr .95fr;
	gap: 56px; align-items: center;
	padding: 110px 24px 120px;
}
.ibx-hero-title { font-size: clamp(2.3rem, 5.2vw, 4rem); margin-bottom: .3em; }
.ibx-hero-lead { font-size: 1.18rem; max-width: 38ch; color: var(--ibx-body); }
.ibx-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.ibx-hero-media { position: relative; min-height: 380px; }
.ibx-hero-shape {
	position: absolute; inset: 0;
	background: var(--ibx-navy);
}
.ibx-hero-card {
	position: absolute; right: 0; bottom: 0;
	background: #fff; border: 1px solid var(--ibx-line);
	padding: 26px 30px; display: flex; flex-direction: column; gap: 6px;
	max-width: 250px;
}
.ibx-hero-card-kpi { font-size: 2.2rem; font-weight: 700; color: var(--ibx-navy); }
.ibx-hero-card-label { font-size: .92rem; color: var(--ibx-body); }

/* ---------- Feature-Grid ---------- */
.ibx-features { background: var(--ibx-gray); }
.ibx-grid-4 {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.ibx-feature {
	background: #fff;
	border: 1px solid rgba(31, 42, 61, .08);
	padding: 44px 36px;
	transition: border-color .2s var(--ibx-ease), transform .2s var(--ibx-ease);
}
.ibx-feature:hover { border-color: var(--ibx-navy); transform: translateY(-3px); }
.ibx-feature-icon {
	width: 48px; height: 48px;
	color: var(--ibx-navy);
	display: flex; align-items: center; justify-content: center;
	margin-bottom: 22px;
	border: 1px solid var(--ibx-navy);
}
.ibx-feature-icon svg { width: 26px; height: 26px; }
.ibx-feature-title { font-size: 1.65rem; font-weight: 600; }
.ibx-feature-text { font-size: .97rem; margin: 0; }

/* ---------- Split ---------- */
.ibx-split-inner {
	display: grid; grid-template-columns: 1fr 1fr;
	gap: 64px; align-items: center;
}
.ibx-split { background: var(--ibx-bg-alt); }
.ibx-split-image { overflow: hidden; border: 1px solid var(--ibx-line); }
.ibx-split-image svg,
.ibx-split-image img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.ibx-check-list { list-style: none; padding: 0; margin: 0 0 28px; }
.ibx-check-list li { position: relative; padding: 16px 0 16px 34px; }
.ibx-check-list li + li { border-top: 1px solid var(--ibx-line); }
.ibx-check-list li::before {
	content: ""; position: absolute; left: 3px; top: 18px;
	width: 7px; height: 13px;
	border: solid var(--ibx-navy);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.ibx-list-aside { align-self: start; }
.ibx-num-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.ibx-num-list li {
	display: flex; gap: 26px; padding: 30px 34px;
	background: var(--ibx-gray);
}
.ibx-num {
	font-size: 2.6rem; font-weight: 300; color: var(--ibx-navy);
	flex: 0 0 auto; line-height: 1;
}
.ibx-num-list h3 { font-size: 1.55rem; font-weight: 600; margin-bottom: .4em; }
.ibx-num-list p { margin: 0; font-size: .97rem; }

/* ---------- Vollflaechen-Split (Bild randlos, volle Hoehe) ---------- */
.ibx-fbsplit { padding: 0; }
.ibx-fbsplit-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; }
.ibx-fbsplit-media { position: relative; overflow: hidden; background: #ddd7cb; }
.ibx-fbsplit-media img {
	position: absolute; inset: 0;
	width: 100%; height: 100%; object-fit: cover;
}
.ibx-fbsplit-panel {
	padding: clamp(56px, 8vw, 110px) clamp(28px, 5vw, 80px);
	display: flex; flex-direction: column; justify-content: center;
}
@media (max-width: 860px) {
	.ibx-fbsplit-grid { grid-template-columns: 1fr; }
	.ibx-fbsplit-media { min-height: 320px; order: -1; }
}

/* ---------- Kompetenzen / Skill-Bars ---------- */
.ibx-skills { background: var(--ibx-gray); }
.ibx-skill { margin-bottom: 24px; }
.ibx-skill:last-child { margin-bottom: 0; }
.ibx-skill-head {
	display: flex; justify-content: space-between; align-items: baseline;
	gap: 16px; margin-bottom: 10px;
}
.ibx-skill-label {
	font-weight: 600; font-size: .82rem;
	letter-spacing: .12em; text-transform: uppercase;
	color: var(--ibx-ink);
}
.ibx-skill-pct { font-weight: 700; font-size: 1.5rem; color: var(--ibx-navy); line-height: 1; }
.ibx-skill-bar {
	height: 4px;
	background: rgba(31, 42, 61, .12); overflow: hidden;
}
.ibx-skill-bar > span {
	display: block; height: 100%;
	width: var(--ibx-skill, 0%);
	background: var(--ibx-navy);
}
@keyframes ibx-skill-grow { from { width: 0; } to { width: var(--ibx-skill, 0%); } }
/* Scroll-gesteuert, ohne JS: Balken waechst, sobald er ins Bild scrollt. */
@supports (animation-timeline: view()) {
	.ibx-skill-bar > span {
		width: 0;
		animation: ibx-skill-grow linear both;
		animation-timeline: view();
		animation-range: cover 12% cover 74%;
	}
}
@media (prefers-reduced-motion: reduce) {
	.ibx-skill-bar > span { animation: none; width: var(--ibx-skill, 0%); }
}

/* ---------- Langfristige Planung (dunkler Split + Chart) ---------- */
.ibx-planning { padding: 0; background: var(--ibx-navy); color: rgba(255, 255, 255, .78); }
.ibx-planning-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; }
.ibx-planning-panel {
	padding: clamp(56px, 8vw, 110px) clamp(28px, 5vw, 80px);
	display: flex; flex-direction: column; justify-content: center;
}
.ibx-planning-title { color: #fff; font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
.ibx-planning-lead { color: rgba(255, 255, 255, .78); max-width: 46ch; }
.ibx-planning-media { position: relative; overflow: hidden; background: #16203a; }
.ibx-planning-media img {
	position: absolute; inset: 0;
	width: 100%; height: 100%; object-fit: cover;
}
.ibx-chart {
	margin-top: 28px; padding: 18px 20px;
	background: rgba(255, 255, 255, .03);
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: var(--ibx-radius);
}
.ibx-chart svg { width: 100%; height: auto; display: block; }
@media (max-width: 860px) {
	.ibx-planning-grid { grid-template-columns: 1fr; }
	.ibx-planning-media { min-height: 320px; }
}
/* Zwei-Linien-Diagramm — zeichnet sich erst beim Reinscrollen.
   Ohne JS sofort sichtbar (Fallback). */
.ibx-chart-line { stroke-dasharray: 100; stroke-dashoffset: 0; stroke-width: 3; }
.ibx-chart-line2 { stroke-dasharray: 100; stroke-dashoffset: 0; stroke-width: 2; }
.ibx-chart-dot { opacity: 1; }

@keyframes ibx-draw { from { stroke-dashoffset: 100; } to { stroke-dashoffset: 0; } }
@keyframes ibx-dot  { 0%, 65% { opacity: 0; } 100% { opacity: 1; } }

/* Scroll-gesteuert, komplett ohne JS (Safari 17.4+/Chrome 115+):
   die Linien zeichnen sich, sobald die Sektion in den Blick scrollt.
   Aeltere Browser ignorieren den Block -> Linien sind statisch sichtbar. */
@supports (animation-timeline: view()) {
	.ibx-chart-line,
	.ibx-chart-line2 {
		stroke-dashoffset: 100;
		animation: ibx-draw linear both;
		animation-timeline: view();
		animation-range: cover 6% cover 60%;
	}
	.ibx-chart-line2 { animation-range: cover 12% cover 66%; }
	.ibx-chart-dot {
		opacity: 0;
		animation: ibx-dot linear both;
		animation-timeline: view();
		animation-range: cover 6% cover 76%;
	}
}
@media (prefers-reduced-motion: reduce) {
	.ibx-chart-line,
	.ibx-chart-line2 { animation: none; stroke-dashoffset: 0; }
	.ibx-chart-dot { animation: none; opacity: 1; }
}
.ibx-chart-legend {
	display: flex; flex-wrap: wrap; gap: 24px;
	margin-top: 16px; font-size: .82rem;
	letter-spacing: .04em; color: rgba(255, 255, 255, .7);
}
.ibx-chart-legend span { display: inline-flex; align-items: center; gap: 9px; }
.ibx-chart-legend i {
	width: 22px; height: 0; display: inline-block;
	border-top: 2px solid #fff;
}
.ibx-chart-legend .is-cost i { border-top: 2px solid rgba(255, 255, 255, .42); }

/* ---------- Bild-Banner (vollbreit) ---------- */
.ibx-banner {
	position: relative; min-height: 460px;
	display: flex; align-items: flex-end;
	background: var(--ibx-navy);
	color: #fff; overflow: hidden;
}
.ibx-banner-bg { position: absolute; inset: 0; }
.ibx-banner-bg img,
.ibx-banner-bg svg { width: 100%; height: 100%; object-fit: cover; }
.ibx-banner::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(90deg, rgba(20, 29, 51, .88) 0%, rgba(20, 29, 51, .62) 55%, rgba(20, 29, 51, .40) 100%);
}
.ibx-banner-inner { position: relative; z-index: 1; padding: 90px 24px; }
.ibx-banner-title { color: #fff; font-size: clamp(1.9rem, 4.2vw, 3.1rem); max-width: 16ch; margin-bottom: .4em; }
.ibx-link-light { color: #fff; }
.ibx-link-light:hover { color: rgba(255, 255, 255, .8); }

/* ---------- Unsere Ziele (Zwei-Spalten-Text + Signatur) ---------- */
.ibx-goals { background: var(--ibx-bg); }
.ibx-goals-title { font-size: clamp(2rem, 4.6vw, 3.3rem); max-width: 20ch; margin-bottom: 1em; }
.ibx-goals-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; }
.ibx-goals-cols p { margin: 0 0 1.1em; }
.ibx-signature { margin-top: 18px; }
.ibx-signature svg { width: 190px; height: auto; color: var(--ibx-navy); }
.ibx-signature-name {
	font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
	color: var(--ibx-body); margin: 10px 0 0;
}

/* ---------- Investitions-Split (Bild links + Konferenz-CTA) ---------- */
.ibx-invest { padding: 0; }
.ibx-invest-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.ibx-invest-media { position: relative; overflow: hidden; background: var(--ibx-navy); }
.ibx-invest-media svg,
.ibx-invest-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ibx-invest-text {
	position: relative; overflow: hidden;
	background: var(--ibx-gray);
	padding: clamp(48px, 7vw, 110px) clamp(28px, 5vw, 88px);
	display: flex; flex-direction: column; justify-content: center;
}
.ibx-invest-text > * { position: relative; z-index: 1; }
.ibx-invest-city { position: absolute; right: -20px; bottom: 0; width: 78%; opacity: .10; z-index: 0; }
.ibx-invest-title { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
.ibx-invest-lead { max-width: 42ch; }
.ibx-invest-cta {
	display: flex; align-items: center; justify-content: space-between; gap: 24px;
	margin-top: clamp(40px, 8vw, 96px); padding-top: 24px;
	border-top: 1px solid rgba(31, 42, 61, .18);
	font-family: var(--ibx-serif); font-weight: 500;
	font-size: clamp(1.2rem, 2.2vw, 1.7rem); color: var(--ibx-navy);
}
.ibx-invest-cta:hover { color: var(--ibx-navy-soft); }
.ibx-invest-arrow { font-size: 1.7rem; line-height: 1; transition: transform .2s var(--ibx-ease); }
.ibx-invest-cta:hover .ibx-invest-arrow { transform: translateX(8px); }
@media (max-width: 860px) {
	.ibx-invest-grid { grid-template-columns: 1fr; }
	.ibx-invest-media { min-height: 320px; }
}

/* ---------- Statement ---------- */
.ibx-statement { background: var(--ibx-navy); color: #fff; }
.ibx-statement-title {
	color: #fff; font-size: clamp(1.8rem, 3.6vw, 2.8rem);
	max-width: 22ch; margin-inline: auto;
}
.ibx-statement-text { color: rgba(255, 255, 255, .8); max-width: 60ch; margin: 0 auto 48px; }
.ibx-stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 64px; }
.ibx-stat { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.ibx-stat-num { font-size: 2.6rem; font-weight: 700; color: #fff; }
.ibx-stat-label { font-size: .92rem; color: rgba(255, 255, 255, .7); }

/* Animierte Donut-Diagramme */
.ibx-donut { position: relative; width: 156px; height: 156px; }
.ibx-donut svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ibx-donut-track { fill: none; stroke: rgba(255, 255, 255, .14); stroke-width: 1.5; }
.ibx-donut-value {
	fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round;
	stroke-dasharray: 100;
	stroke-dashoffset: calc(100 - var(--ibx-donut, 0));
}
@keyframes ibx-donut-fill {
	from { stroke-dashoffset: 100; }
	to   { stroke-dashoffset: calc(100 - var(--ibx-donut, 0)); }
}
/* Scroll-gesteuert, ohne JS: Ring fuellt sich, sobald er ins Bild scrollt. */
@supports (animation-timeline: view()) {
	.ibx-donut-value {
		stroke-dashoffset: 100;
		animation: ibx-donut-fill linear both;
		animation-timeline: view();
		animation-range: cover 10% cover 68%;
	}
}
@media (prefers-reduced-motion: reduce) {
	.ibx-donut-value { animation: none; stroke-dashoffset: calc(100 - var(--ibx-donut, 0)); }
}
.ibx-donut-num {
	position: absolute; inset: 0;
	display: flex; align-items: center; justify-content: center;
	font-size: 1.85rem; font-weight: 700; color: #fff;
}

/* ---------- CTA ---------- */
.ibx-cta { background: var(--ibx-bg-alt); }
.ibx-cta-inner {
	display: grid; grid-template-columns: 1fr 1fr;
	gap: 48px; align-items: center;
}
.ibx-cta-inner p { margin: 0; }
.ibx-cta-form { display: flex; flex-wrap: wrap; gap: 12px; }
.ibx-cta-form input,
.ibx-subscribe-form input {
	flex: 1 1 200px; padding: 15px 18px;
	border: 1px solid var(--ibx-line); border-radius: 0;
	font: inherit; color: var(--ibx-ink); background: #fff;
}
.ibx-cta-form input:focus,
.ibx-subscribe-form input:focus {
	outline: none; border-color: var(--ibx-navy);
}

/* ---------- Footer ---------- */
.ibx-footer { background: var(--ibx-navy); color: rgba(255, 255, 255, .72); padding: 80px 0 32px; }
.ibx-footer-grid {
	display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
	gap: 40px; padding-bottom: 48px;
	border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.ibx-footer .ibx-logo svg { height: 28px; }
.ibx-footer-text { font-size: .95rem; margin-top: 16px; }
.ibx-footer-title { color: #fff; font-size: 1.05rem; font-weight: 600; margin: 0 0 18px; }
.ibx-footer-links { list-style: none; padding: 0; margin: 0; }
.ibx-footer-links li { padding: 6px 0; font-size: .95rem; }
.ibx-footer-links a { color: rgba(255, 255, 255, .72); }
.ibx-footer-links a:hover { color: #fff; }
.ibx-social { display: flex; gap: 12px; margin-top: 20px; }
.ibx-social a {
	width: 40px; height: 40px;
	display: flex; align-items: center; justify-content: center;
	border: 1px solid rgba(255, 255, 255, .2); color: #fff;
	font-size: .85rem; text-transform: uppercase;
}
.ibx-social a:hover { background: rgba(255, 255, 255, .2); }
.ibx-subscribe-form { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.ibx-subscribe-form input { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .15); color: #fff; }
.ibx-subscribe-form input::placeholder { color: rgba(255, 255, 255, .5); }

.ibx-footer-bottom {
	display: flex; flex-wrap: wrap; justify-content: space-between;
	gap: 16px; padding-top: 28px; font-size: .88rem;
}
.ibx-footer-bottom p { margin: 0; }
.ibx-footer-bottom-menu { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; }
.ibx-footer-bottom-menu a { color: rgba(255, 255, 255, .72); }
.ibx-footer-bottom-menu a:hover { color: #fff; }

/* ---------- Blog / Page ---------- */
.ibx-page-head { margin-bottom: 40px; }
.ibx-page-title { font-size: clamp(1.9rem, 4vw, 3rem); }
.ibx-post-list { display: grid; gap: 40px; }
.ibx-post-card { border-bottom: 1px solid var(--ibx-line); padding-bottom: 32px; }
.ibx-post-thumb img { border-radius: var(--ibx-radius); margin-bottom: 20px; }
.ibx-post-title { font-size: 1.6rem; font-weight: 400; }
.ibx-post-meta { font-size: .85rem; color: var(--ibx-body); text-transform: uppercase; letter-spacing: .08em; }
.ibx-pagination { margin-top: 48px; }
.ibx-pagination .page-numbers {
	display: inline-block; padding: 9px 15px; margin: 0 4px;
	border: 1px solid var(--ibx-line); border-radius: 0;
}
.ibx-pagination .current { background: var(--ibx-navy); color: #fff; border-color: var(--ibx-navy); }

/* ---------- Back-to-top ---------- */
.ibx-totop {
	position: fixed; right: 24px; bottom: 24px; z-index: 90;
	width: 48px; height: 48px;
	display: flex; align-items: center; justify-content: center;
	background: var(--ibx-navy); color: #fff; border: 0; cursor: pointer;
	opacity: 0; transform: translateY(10px); pointer-events: none;
	transition: opacity .25s var(--ibx-ease), transform .25s var(--ibx-ease), background .2s;
}
.ibx-totop.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.ibx-totop:hover { background: var(--ibx-navy-soft); }
.ibx-totop svg { width: 18px; height: 18px; }
@media (max-width: 560px) {
	.ibx-totop { right: 16px; bottom: 16px; width: 44px; height: 44px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
	.ibx-grid-4 { grid-template-columns: repeat(2, 1fr); }
	.ibx-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
	.ibx-section { padding: 64px 0; }
	.ibx-nav, .ibx-header-cta { display: none; }
	.ibx-burger { display: flex; }
	.ibx-hero-inner { grid-template-columns: 1fr; padding: 64px 24px 72px; }
	.ibx-hero-media { min-height: 300px; }
	.ibx-split-inner { grid-template-columns: 1fr; gap: 36px; }
	.ibx-list-aside { order: -1; }
	.ibx-cta-inner { grid-template-columns: 1fr; }
	.ibx-stats { gap: 32px; }
}
@media (max-width: 560px) {
	.ibx-grid-4 { grid-template-columns: 1fr; }
	.ibx-footer-grid { grid-template-columns: 1fr; gap: 32px; }
	.ibx-footer-bottom { flex-direction: column; }
	body { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
	* { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
