/**
 * Homepage body redesigned compact grid.
 */

.home-body {
	background: #fff;
	padding: 0 0 24px;
	overflow-x: clip;
}

.home-body__wrap {
	display: grid;
	gap: 10px;
}

.home-row-section {
	display: grid;
	grid-template-columns: minmax(240px, 0.4fr) minmax(0, 1fr);
	gap: 22px;
	align-items: start;
	padding: 24px;
	border: 1px solid #e3e7f1;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 14px 44px rgba(20, 26, 45, 0.05);
}

.home-section-head {
	min-width: 0;
	padding-right: 8px;
}

.home-eyebrow,
.home-sol-eyebrow,
.home-why-eyebrow,
.home-ind-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 10px;
	color: var(--wimira-red);
	font-family: var(--wimira-font);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.home-eyebrow__rule,
.home-ind-eyebrow__rule {
	display: block;
	flex: none;
	width: 28px;
	height: 2px;
	border-radius: 2px;
	background: var(--wimira-red);
}

.home-row-section h2,
.home-card h3,
.home-consult h3,
.home-insight-card h3 {
	margin: 0;
	color: var(--wimira-ink-heading);
	font-family: var(--wimira-font-heading);
	letter-spacing: -0.03em;
	line-height: 1.15;
}

.home-row-section h2 {
	max-width: none;
	font-size: clamp(28px, 3.6vw, 44px);
	font-weight: 800;
}

.home-accent {
	color: var(--wimira-red);
}

.home-section-head--large h2 {
	max-width: 330px;
	background: linear-gradient(90deg, var(--wimira-ink-heading) 0 43%, var(--wimira-red) 43% 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-size: clamp(26px, 3vw, 44px);
}

.home-section-head p,
.home-card p,
.home-consult p {
	margin: 8px 0 0;
	color: var(--wimira-text-soft);
	font-size: 12px;
	line-height: 1.45;
}

.home-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 18px;
	padding: 0;
	color: var(--wimira-red);
	font-size: 12px;
	font-weight: 900;
	text-decoration: none;
	transition: transform 0.25s var(--wimira-ease);
}

.home-link:hover,
.home-link:focus-visible {
	transform: translateX(4px);
}

.home-link::after,
.home-btn::after {
	content: "";
	width: 10px;
	height: 10px;
	background: currentColor;
	clip-path: polygon(0 42%, 62% 42%, 36% 16%, 50% 0, 100% 50%, 50% 100%, 36% 84%, 62% 58%, 0 58%);
}

.home-card-grid,
.home-consult-grid,
.home-impact-grid {
	display: grid;
	gap: 10px;
	min-width: 0;
}

.home-card {
	border: 1px solid #e3e7f0;
	border-radius: 7px;
	background: #fff;
}

/* Consulting band — container-width editorial row: header on top, five
   centered items linked by a garland of dotted red semicircle arcs. */
.home-row-section--consulting {
	grid-template-columns: 1fr;
	gap: 56px;
	width: 100%;
	max-width: none;
	margin-left: 0;
	margin-right: 0;
	padding: 56px 0 48px;
	border: none;
	border-radius: 0;
	background: #fff;
	box-shadow: none;
	overflow: hidden;
	box-sizing: border-box;
}

.home-row-section--consulting h2 {
	max-width: 560px;
}

.home-row-section--consulting .home-section-head p {
	max-width: 540px;
	margin-top: 14px;
	font-size: 14px;
	line-height: 1.6;
	color: var(--wimira-text-soft);
}

.home-row-section--consulting .home-link {
	margin-top: 22px;
	font-size: 13px;
}

.home-consult-grid {
	--consult-arc-h: 104px;
	position: relative;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0;
	align-items: start;
	margin-top: 0;
}

/* Interactive particle arcs (canvas) sit above the cards but ignore
   pointer hits so icons/links stay clickable. */
.home-consult-arcs {
	position: absolute;
	top: -10px;
	left: 0;
	z-index: 0;
	display: block;
	width: 100%;
	height: calc(var(--consult-arc-h) + 48px);
	pointer-events: none;
}

/* Solid dots where the garland begins and ends — CSS fallback until JS
   draws them on the canvas. */
.home-consult-grid::before,
.home-consult-grid::after {
	content: "";
	position: absolute;
	top: calc(var(--consult-arc-h) - 4px);
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--wimira-red);
}

.home-consult-grid::before {
	left: -3px;
}

.home-consult-grid::after {
	right: -3px;
}

.home-consult {
	position: relative;
	z-index: 1;
	padding: calc(var(--consult-arc-h) - 32px) 18px 8px;
	text-align: center;
}

/* Dotted semicircle over each item; the icon's center sits on its baseline,
   so adjacent arcs meet in points between items. Hidden once the canvas
   particle arcs are active. */
.home-consult::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: var(--consult-arc-h);
	border: 2px dotted rgba(226, 44, 40, 0.7);
	border-bottom: 0;
	border-radius: 50% 50% 0 0 / 100% 100% 0 0;
	pointer-events: none;
	transition: border-color 0.3s var(--wimira-ease);
}

.home-consult:hover::before,
.home-consult:focus-within::before {
	border-color: var(--wimira-red);
}

.home-consult-grid--arcs::before,
.home-consult-grid--arcs::after,
.home-consult-grid--arcs .home-consult::before {
	content: none;
}

.home-consult__icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	margin-bottom: 18px;
	border-radius: 50%;
	background: var(--wimira-red-light);
	color: var(--wimira-red);
	transition: transform 0.32s var(--wimira-ease), background-color 0.32s var(--wimira-ease), color 0.32s var(--wimira-ease), box-shadow 0.32s var(--wimira-ease);
}

.home-consult:hover .home-consult__icon,
.home-consult:focus-within .home-consult__icon {
	transform: translateY(-4px) scale(1.06);
	background: var(--wimira-red);
	color: #fff;
	box-shadow: 0 12px 24px rgba(226, 44, 40, 0.28);
}

.home-consult__icon svg {
	width: 26px;
	height: 26px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.6;
}

.home-consult h3 {
	margin-bottom: 10px;
	font-size: 16px;
	line-height: 1.3;
}

.home-consult p {
	margin: 0 auto;
	max-width: 220px;
	font-size: 13px;
	line-height: 1.6;
	color: var(--wimira-text-soft);
}

/* Business challenges — full-bleed dark background; content stays on the
   content rail (same width as .container-n inner column). */
.home-row-section--challenges {
	position: relative;
	grid-template-columns: 1fr;
	gap: 36px;
	width: 100vw;
	max-width: 100vw;
	margin-top: 16px;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding: 64px max(var(--wimira-gutter), calc(50vw - (var(--wimira-content) / 2))) 56px;
	border: none;
	border-radius: 0;
	background: var(--wimira-night);
	box-shadow: none;
	overflow: hidden;
	box-sizing: border-box;
}

/* Heading row: label + headline on the left, CTA pill on the right. */
.home-challenges-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 28px;
	width: 100%;
	max-width: var(--wimira-content);
	margin: 0 auto;
}

.home-challenges-head__text {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.home-challenges-head .home-eyebrow {
	margin: 0;
}

.home-row-section--challenges h2 {
	color: #fff;
}

.home-challenges-head__accent {
	color: var(--wimira-red);
}

/* Layout wrapper — button look comes from .btn-n */
.home-challenges-head__cta {
	flex: none;
}

.home-challenges-head__cta.btn-n {
	white-space: nowrap;
}

/* Card grid — all challenges visible; 3 across on desktop. */
.home-challenges {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	width: 100%;
	max-width: var(--wimira-content);
	margin: 0 auto;
	padding: 0;
	overflow: visible;
}

.home-challenge {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	border-radius: 12px;
	background: #161a26;
	overflow: hidden;
	transition: transform 0.3s var(--wimira-ease), box-shadow 0.3s var(--wimira-ease);
}

.home-challenge:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 36px rgba(22, 25, 42, 0.28);
}

/* Photo on top. */
.home-challenge__media {
	position: relative;
	height: 148px;
	flex: none;
	overflow: hidden;
}

.home-challenge__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s var(--wimira-ease);
}

.home-challenge:hover .home-challenge__media img {
	transform: scale(1.05);
}

.home-challenge__body {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 0 16px 12px;
}

/* Dark rounded-square badge overlapping the photo's bottom-left corner. */
.home-challenge__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin: -20px 0 8px;
	border-radius: 10px;
	background: #161a26;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.35);
	color: var(--wimira-red);
}

.home-challenge__badge svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.6;
}

.home-challenge h3 {
	margin: 0;
	color: #fff;
	font-family: var(--wimira-font-heading);
	font-size: 16px;
	line-height: 1.25;
}

.home-challenge p {
	margin: 0;
	font-size: 12.5px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.6);
}

/* Footer: uppercase tag left, circular arrow button right. */
.home-challenge__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: auto;
	padding: 10px 16px 12px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.home-challenge__tag {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
}

.home-challenge__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: none;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1px solid rgba(226, 44, 40, 0.55);
	color: var(--wimira-red);
	transition: background 0.25s var(--wimira-ease), color 0.25s var(--wimira-ease), border-color 0.25s var(--wimira-ease);
}

.home-challenge__arrow svg {
	width: 14px;
	height: 14px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.home-challenge__arrow:hover,
.home-challenge__arrow:focus-visible {
	background: var(--wimira-red);
	border-color: var(--wimira-red);
	color: #fff;
}

/* Scroll + load reveal — mirrors main.css; armed by home-reveal.js. */
.reveal-armed [data-reveal-item] {
	opacity: 0;
	transform: translate3d(0, var(--ry, 28px), 0);
	filter: blur(0);
	transition:
		opacity 0.7s var(--wimira-ease),
		transform 0.75s var(--wimira-ease),
		filter 0.7s var(--wimira-ease);
	transition-delay: var(--rd, 0s);
	will-change: transform, opacity;
}

.reveal-armed [data-reveal-item="title"] {
	transform: translate3d(0, var(--ry, 36px), 0);
	filter: blur(4px);
}

.reveal-armed [data-reveal-item="text"] {
	transform: translate3d(0, var(--ry, 20px), 0);
}

.reveal-armed [data-reveal-item="card"] {
	transform: translate3d(0, var(--ry, 44px), 0) scale(0.985);
}

.reveal-armed.is-inview [data-reveal-item],
.reveal-armed.is-inview [data-reveal-item="title"],
.reveal-armed.is-inview [data-reveal-item="text"],
.reveal-armed.is-inview [data-reveal-item="card"] {
	opacity: 1;
	transform: none;
	filter: none;
	will-change: auto;
}

/* Capabilities — night band (odd solid after Advisory white). */
.home-row-section--capabilities {
	grid-template-columns: 1fr;
	gap: 40px;
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding: 56px max(var(--wimira-gutter), calc(50vw - (var(--wimira-content) / 2))) 52px;
	border: none;
	background: var(--wimira-night);
	box-shadow: none;
	overflow: visible;
	box-sizing: border-box;
}

.home-cap-head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
	text-align: center;
}

.home-cap-head .home-eyebrow {
	margin: 0;
	justify-content: center;
}

.home-row-section--capabilities h2 {
	max-width: 720px;
	margin: 0;
	color: #fff;
	text-wrap: balance;
}

/* Two-panel Capabilities: accordion (Wimira red + topo pattern) + banner image. */
.home-cap-split {
	--home-cap-split-h: clamp(520px, 64vh, 640px);
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
	gap: 18px;
	align-items: stretch;
	height: var(--home-cap-split-h);
	min-height: var(--home-cap-split-h);
}

.home-cap-split__panel,
.home-cap-split__media {
	position: relative;
	border-radius: 28px;
	overflow: hidden;
	height: 100%;
	min-height: 0;
}

.home-cap-split__panel {
	display: flex;
	flex-direction: column;
	background:
		linear-gradient(160deg, var(--wimira-red-hover) 0%, var(--wimira-red) 42%, var(--wimira-red-dark) 100%);
	color: #fff;
	isolation: isolate;
}

.home-cap-split__pattern {
	position: absolute;
	inset: -10% -15%;
	z-index: 0;
	pointer-events: none;
	opacity: 0.35;
	mix-blend-mode: multiply;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 900' preserveAspectRatio='none'%3E%3Cpath fill='rgba(0,0,0,0.18)' d='M-40 120 C80 40 180 200 320 140 S520 40 680 120 S860 220 900 180 L900 280 C760 340 620 220 480 280 S240 380 80 300 S-40 220 -40 220 Z'/%3E%3Cpath fill='rgba(0,0,0,0.14)' d='M-40 260 C100 180 220 320 360 260 S560 160 720 240 S900 340 900 320 L900 420 C760 480 600 360 460 430 S220 520 60 440 S-40 360 -40 360 Z'/%3E%3Cpath fill='rgba(0,0,0,0.16)' d='M-40 420 C120 340 240 480 390 410 S600 320 760 400 S900 500 900 470 L900 560 C740 620 580 500 430 570 S200 660 40 580 S-40 500 -40 500 Z'/%3E%3Cpath fill='rgba(0,0,0,0.12)' d='M-40 560 C140 480 260 620 410 550 S620 460 780 540 S900 640 900 610 L900 700 C740 760 580 640 430 710 S200 800 40 720 S-40 640 -40 640 Z'/%3E%3Cpath fill='rgba(0,0,0,0.15)' d='M-40 700 C160 620 280 760 430 690 S640 600 800 680 S900 780 900 750 L900 840 C740 900 580 780 430 850 S200 940 40 860 S-40 780 -40 780 Z'/%3E%3Cpath fill='none' stroke='rgba(0,0,0,0.2)' stroke-width='2' d='M-20 180 C90 100 200 250 340 180 S540 80 700 160'/%3E%3Cpath fill='none' stroke='rgba(0,0,0,0.16)' stroke-width='2' d='M-20 340 C110 260 230 400 370 330 S570 230 740 310'/%3E%3Cpath fill='none' stroke='rgba(0,0,0,0.14)' stroke-width='2' d='M-20 500 C130 420 250 560 400 490 S610 390 770 470'/%3E%3Cpath fill='none' stroke='rgba(0,0,0,0.12)' stroke-width='2' d='M-20 660 C150 580 270 720 420 650 S630 550 790 630'/%3E%3C/svg%3E");
	background-size: cover;
	background-position: center;
	transform: rotate(-6deg) scale(1.08);
}

.home-cap-split__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 18px;
	min-height: 0;
	height: 100%;
	padding: clamp(28px, 3.5vw, 44px);
	overflow: hidden;
	text-shadow: 0 1px 2px rgba(80, 10, 8, 0.35);
}

.home-cap-split__inner::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background: linear-gradient(
		180deg,
		rgba(140, 18, 16, 0.28) 0%,
		rgba(140, 18, 16, 0.12) 35%,
		rgba(140, 18, 16, 0.22) 100%
	);
}

.home-cap-split__pill {
	display: inline-flex;
	align-self: flex-start;
	padding: 7px 14px;
	border-radius: 999px;
	background: var(--wimira-ink-heading);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.home-cap-split__lead {
	margin: 0;
	max-width: 36ch;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.55;
}

.home-cap-acc {
	position: relative;
	display: flex;
	flex: 1;
	min-height: 0;
	margin-top: 4px;
	padding-left: 22px;
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	scrollbar-width: thin;
	scrollbar-color: rgba(255, 255, 255, 0.55) transparent;
}

.home-cap-acc::-webkit-scrollbar {
	width: 6px;
}

.home-cap-acc::-webkit-scrollbar-thumb {
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.4);
}

.home-cap-acc__rail {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 2px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.28);
	pointer-events: none;
}

.home-cap-acc__rail-fill {
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	min-height: 28px;
	margin-left: -1px;
	border-radius: 999px;
	background: #fff;
	transform: translateY(0);
	transition: transform 0.35s var(--wimira-ease), height 0.35s var(--wimira-ease);
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.home-cap-acc__list {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-width: 0;
	gap: 2px;
}

.home-cap-acc__item {
	border: 0;
}

.home-cap-acc__summary {
	display: block;
	width: 100%;
	padding: 12px 0;
	border: 0;
	background: transparent;
	color: #fff;
	font: inherit;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.3;
	text-align: left;
	cursor: pointer;
	opacity: 0.88;
	transition: color 0.25s var(--wimira-ease), opacity 0.25s var(--wimira-ease);
}

.home-cap-acc__summary:hover {
	color: #fff;
	opacity: 1;
}

.home-cap-acc__summary:focus-visible {
	color: #fff;
	opacity: 1;
	outline: 2px solid #fff;
	outline-offset: 4px;
}

.home-cap-acc__item.is-active .home-cap-acc__summary {
	color: #fff;
	opacity: 1;
	font-weight: 700;
}

.home-cap-acc__title {
	display: block;
}

.home-cap-acc__body {
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	padding: 0;
	transform: translateY(-4px);
	transition:
		max-height 0.35s var(--wimira-ease),
		opacity 0.28s var(--wimira-ease),
		transform 0.28s var(--wimira-ease),
		padding 0.28s var(--wimira-ease);
}

.home-cap-acc__item.is-active .home-cap-acc__body {
	max-height: 280px;
	opacity: 1;
	padding: 0 0 14px;
	transform: none;
}

.home-cap-acc__body ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.home-cap-acc__body li {
	position: relative;
	padding: 5px 0 5px 14px;
	color: #fff;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.4;
}

.home-cap-acc__body li::before {
	content: "";
	position: absolute;
	top: 12px;
	left: 0;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #fff;
}

.home-cap-split__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding-top: 8px;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: -0.01em;
	text-decoration: none;
	transition: opacity 0.2s var(--wimira-ease), gap 0.2s var(--wimira-ease);
}

.home-cap-split__link svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.home-cap-split__link:hover,
.home-cap-split__link:focus-visible {
	opacity: 0.88;
	gap: 12px;
}

.home-cap-split__media {
	margin: 0;
	background: #1a1d2a;
}

.home-cap-split__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 58% center;
}

.home-card-grid--six {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

/* Solutions — night band (odd solid). */
.home-row-section--solutions {
	position: relative;
	grid-template-columns: 1fr;
	gap: 0;
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding: 72px max(var(--wimira-gutter), calc(50vw - (var(--wimira-content) / 2))) 80px;
	border: none;
	border-radius: 0;
	background: var(--wimira-night);
	box-shadow: none;
	overflow: visible;
	box-sizing: border-box;
}

.home-sol-panel {
	position: relative;
	z-index: 1;
	width: 100%;
	margin: 0 auto;
}

.home-sol-head {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
	max-width: 640px;
	margin: 0 0 56px;
	text-align: left;
}

.home-sol-head .home-eyebrow {
	margin: 0;
}

.home-row-section--solutions h2,
.home-sol-head h2 {
	max-width: none;
	margin: 0;
	color: #fff;
	text-wrap: balance;
}

.home-sol-head__accent {
	color: var(--wimira-red);
}

.home-sol-flow {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 72px 56px;
	padding-left: 72px;
	padding-right: 72px;
}

.home-sol-flow__wires {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
	overflow: visible;
}

.home-sol-flow__wires path {
	fill: none;
	stroke: rgba(255, 255, 255, 0.22);
	stroke-width: 1.6;
	stroke-dasharray: 5 7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.home-sol-step {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 18px 20px;
	align-items: start;
}

.home-sol-step--1,
.home-sol-step--2,
.home-sol-step--4,
.home-sol-step--5 {
	grid-column: 1;
}

.home-sol-step--3,
.home-sol-step--6 {
	grid-column: 2;
}

.home-sol-step__num {
	margin: 0;
	color: var(--wimira-red);
	font-family: var(--wimira-font-heading);
	font-size: clamp(42px, 5vw, 64px);
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 0.9;
}

.home-sol-step__body {
	min-width: 0;
	padding-top: 4px;
}

.home-sol-step__phase {
	display: block;
	margin: 0 0 8px;
	color: var(--wimira-red);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.home-sol-step__heading {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.home-sol-step__pin {
	position: absolute;
	top: 0;
	left: -28px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--wimira-ink-heading);
	box-shadow: 0 0 0 4px #fff;
	z-index: 2;
}

.home-sol-step h3 {
	margin: 0;
	color: #fff;
	font-family: var(--wimira-font-heading);
	font-size: clamp(22px, 2.4vw, 30px);
	font-weight: 800;
	letter-spacing: -0.025em;
	line-height: 1.2;
}

.home-sol-step__body > p {
	margin: 12px 0 0;
	max-width: 48ch;
	color: rgba(255, 255, 255, 0.68);
	font-size: 15px;
	line-height: 1.65;
}

.home-card-grid--four {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-card-grid--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-card {
	min-height: 154px;
	padding: 14px;
}

.home-card--compact {
	min-height: 122px;
}

.home-card--horizontal {
	display: flex;
	gap: 12px;
	min-height: 98px;
}

.home-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	margin-bottom: 16px;
	border-radius: 8px;
	background: #fff0f0;
	color: var(--wimira-red, #e22c28);
}

.home-card--horizontal .home-icon {
	flex: 0 0 28px;
	margin-bottom: 0;
}

.home-icon svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
}

.home-card h3 {
	font-size: 15px;
}

.home-card ul {
	margin: 10px 0 0;
	padding: 0 0 0 14px;
	color: #5f6678;
	font-size: 11px;
	line-height: 1.55;
}

.home-card--red .home-icon {
	background: #fff0f0;
	color: var(--wimira-red);
}

.home-card--purple .home-icon {
	background: #fff0f0;
	color: var(--wimira-red);
}

.home-card--blue .home-icon {
	background: #fff0f0;
	color: var(--wimira-red);
}

.home-card--orange .home-icon {
	background: #fff0f0;
	color: var(--wimira-red);
}

.home-card--teal .home-icon {
	background: #fff0f0;
	color: var(--wimira-red);
}

.home-card--green .home-icon {
	background: #fff0f0;
	color: var(--wimira-red);
}

/* Partner With Wimira — container-width band + partner links. */
.home-row-section--partners {
	position: relative;
	isolation: isolate;
	grid-template-columns: 1fr;
	gap: 0;
	width: 100%;
	max-width: none;
	margin-left: 0;
	margin-right: 0;
	padding: 72px 0;
	border: none;
	border-radius: 0;
	background: #1a1214;
	box-shadow: none;
	overflow: hidden;
}

.home-partner-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-color: #1a1214;
	background-image:
		linear-gradient(105deg, rgba(30, 29, 40, 0.88) 0%, rgba(30, 29, 40, 0.72) 42%, rgba(162, 33, 30, 0.55) 100%),
		var(--partner-bg-image);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.home-partner-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(20, 19, 27, 0.2) 0%, rgba(20, 19, 27, 0.45) 100%);
}

.home-partner-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: 32px 48px;
	align-items: center;
	width: min(var(--wimira-content), calc(100% - 48px));
	margin: 0 auto;
}

.home-partner-head {
	padding-right: 0;
}

.home-partner-head .home-eyebrow {
	color: var(--wimira-red);
}

.home-partner-head h2 {
	max-width: 12ch;
	margin: 0;
	color: #fff;
	text-wrap: balance;
}

.home-partner-head .home-link {
	color: #fff;
}

.home-partner-head .home-link:hover,
.home-partner-head .home-link:focus-visible {
	color: #fff;
	opacity: 0.85;
}

.home-partner-list {
	display: flex;
	flex-direction: column;
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.home-partner-list a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #fff;
	font-size: clamp(20px, 2.4vw, 28px);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.2;
	text-decoration: none;
	transition: opacity 0.2s var(--wimira-ease), transform 0.2s var(--wimira-ease);
}

.home-partner-list a::after {
	content: "";
	width: 12px;
	height: 12px;
	background: currentColor;
	clip-path: polygon(0 42%, 62% 42%, 36% 16%, 50% 0, 100% 50%, 50% 100%, 36% 84%, 62% 58%, 0 58%);
	opacity: 0.7;
	transition: transform 0.2s var(--wimira-ease), opacity 0.2s var(--wimira-ease);
}

.home-partner-list a:hover,
.home-partner-list a:focus-visible {
	opacity: 0.9;
	transform: translateX(4px);
}

.home-partner-list a:hover::after,
.home-partner-list a:focus-visible::after {
	opacity: 1;
	transform: translateX(2px);
}

.home-row-section--industry {
	--ind-pad: max(40px, calc(50vw - (var(--wimira-content) / 2)));
	--ind-gap: 14px;
	grid-template-columns: 1fr;
	gap: 32px;
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding: 56px 0 48px;
	border: none;
	border-radius: 0;
	background: #fff;
	box-shadow: none;
	overflow: hidden;
}

.home-ind-head {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	gap: 40px 56px;
	align-items: end;
	padding: 0 var(--ind-pad);
	box-sizing: border-box;
}

.home-ind-head__title {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
}

.home-ind-head .home-eyebrow {
	margin: 0;
}

.home-row-section--industry h2,
.home-ind-head h2 {
	max-width: 14ch;
	margin: 0;
}

.home-ind-head__lead {
	margin: 0;
	max-width: 38ch;
	color: var(--wimira-text-soft);
	font-size: 16px;
	line-height: 1.65;
	justify-self: end;
}

/* Full-bleed slider: ~3.35 cards in view so each reads a bit smaller. */
.home-ind-slider {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100vw - var(--ind-pad) - var(--ind-pad) - (var(--ind-gap) * 2.35)) / 3.35);
	gap: var(--ind-gap);
	width: 100%;
	padding: 4px var(--ind-pad) 8px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-padding-left: var(--ind-pad);
	scroll-behavior: smooth;
	scrollbar-width: none;
}

.home-ind-slider::-webkit-scrollbar {
	display: none;
}

.home-ind-card {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 1 / 0.92;
	border-radius: 10px;
	background: var(--wimira-ink-heading);
	scroll-snap-align: start;
	color: inherit;
	text-decoration: none;
	cursor: pointer;
}

.home-ind-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	transition: transform 0.55s var(--wimira-ease);
}

/* Bottom readability gradient (normal state). */
.home-ind-card::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		180deg,
		rgba(8, 10, 20, 0) 42%,
		rgba(8, 10, 20, 0.55) 72%,
		rgba(8, 10, 20, 0.92) 100%
	);
	pointer-events: none;
	transition: opacity 0.35s var(--wimira-ease);
}

/* Brand tint overlay on hover. */
.home-ind-card::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	background: rgba(226, 44, 40, 0.42);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.35s var(--wimira-ease);
}

.home-ind-card__plus {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	color: #fff;
	opacity: 0;
	transform: translate(-50%, -46%) scale(0.86);
	pointer-events: none;
	transition: opacity 0.35s var(--wimira-ease), transform 0.4s var(--wimira-ease);
}

.home-ind-card__plus svg {
	width: 100%;
	height: 100%;
}

.home-ind-card__body {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 4;
	padding: 14px 14px 16px;
}

.home-ind-card h3 {
	margin: 0 0 5px;
	color: #fff;
	font-family: var(--wimira-font-heading);
	font-size: clamp(14px, 1.2vw, 17px);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.home-ind-card__tag {
	display: block;
	color: var(--wimira-red);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transition: color 0.35s var(--wimira-ease);
}

.home-ind-card:hover img {
	transform: scale(1.06);
}

.home-ind-card:hover::before {
	opacity: 1;
}

.home-ind-card:hover::after {
	opacity: 0;
}

.home-ind-card:hover .home-ind-card__plus {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

.home-ind-card:hover .home-ind-card__tag {
	color: rgba(255, 255, 255, 0.92);
}

.home-ind-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 0 var(--ind-pad);
	box-sizing: border-box;
	margin-top: -8px;
}

.home-ind-foot .home-link {
	margin-top: 0;
}

.home-ind-nav {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: none;
}

.home-ind-nav__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1.5px solid rgba(17, 17, 24, 0.2);
	border-radius: 50%;
	background: transparent;
	color: var(--wimira-ink-heading, #111118);
	cursor: pointer;
	transition:
		background-color 0.25s var(--wimira-ease),
		border-color 0.25s var(--wimira-ease),
		color 0.25s var(--wimira-ease),
		transform 0.25s var(--wimira-ease);
}

.home-ind-nav__btn svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.home-ind-nav__btn:hover {
	border-color: var(--wimira-red);
	background: var(--wimira-red);
	color: #fff;
	transform: scale(1.04);
}

.home-ind-nav__btn:focus-visible {
	outline: 2px solid var(--wimira-red);
	outline-offset: 3px;
}

.home-ind-nav__btn:disabled,
.home-ind-nav__btn.is-disabled {
	opacity: 0.35;
	cursor: default;
	pointer-events: none;
	transform: none;
}

.home-impact-grid {
	display: grid;
	grid-template-columns: minmax(260px, 1.2fr) minmax(220px, 0.8fr);
	gap: 10px;
	align-items: stretch;
}

.home-case-card,
.home-mini-insights {
	border: 1px solid #e3e7f0;
	border-radius: 8px;
	background: #fff;
}

.home-case-card {
	position: relative;
	overflow: hidden;
	min-height: 190px;
	background: #0a1020;
	color: #fff;
}

.home-case-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.42;
}

.home-case-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 74% 28%, rgba(226, 44, 40, 0.6), transparent 30%), linear-gradient(90deg, rgba(7, 10, 20, 0.96), rgba(7, 10, 20, 0.68));
}

.home-case-card div {
	position: relative;
	z-index: 1;
	padding: 18px;
	max-width: 300px;
}

.home-case-card span,
.home-case-card a {
	display: block;
	color: var(--wimira-red);
	font-size: 11px;
	font-weight: 900;
	text-decoration: none;
}

.home-case-card h3 {
	margin: 8px 0;
	color: #fff;
	font-size: 22px;
}

.home-case-card p {
	margin: 0 0 24px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 12px;
	line-height: 1.45;
}

.home-mini-insights {
	padding: 14px;
}

.home-mini-insights__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 10px;
}

.home-mini-insights__head a {
	color: var(--wimira-red);
	font-size: 11px;
	font-weight: 900;
	text-decoration: none;
}

.home-mini-insight {
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 10px;
	align-items: center;
	padding: 8px 0;
	border-top: 1px solid #edf0f5;
	color: var(--wimira-ink-heading);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.3;
	text-decoration: none;
}

.home-mini-insight img {
	width: 56px;
	height: 44px;
	border-radius: 6px;
	object-fit: cover;
}

.home-body--why {
	background: var(--wimira-night);
	padding: 0;
}

.home-row-section--why {
	grid-template-columns: 1fr;
	gap: 48px;
	width: 100%;
	max-width: var(--wimira-content);
	margin-left: auto;
	margin-right: auto;
	padding: 72px 0 64px;
	border: none;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	overflow: visible;
}

.home-why-head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
}

.home-why-head .home-eyebrow {
	margin: 0;
	justify-content: center;
}

.home-row-section--why h2,
.home-why-head h2 {
	max-width: 18ch;
	margin: 0;
	color: #fff;
	text-wrap: balance;
}

.home-why-head__lead {
	margin: 0;
	max-width: 36rem;
	color: rgba(255, 255, 255, 0.78);
	font-size: clamp(1rem, 1.5vw, 1.125rem);
	line-height: 1.5;
}

.home-why-acc {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 64px;
	width: 100%;
}

.home-why-acc__col {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.home-why-acc__item {
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	background: transparent;
}

.home-why-acc__col .home-why-acc__item:last-child {
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.home-why-acc__summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 22px 4px;
	cursor: pointer;
	list-style: none;
	color: #fff;
	font-size: 17px;
	font-weight: 600;
	letter-spacing: -0.015em;
	line-height: 1.4;
	user-select: none;
	transition: color 0.2s var(--wimira-ease);
}

.home-why-acc__summary::-webkit-details-marker {
	display: none;
}

.home-why-acc__summary::marker {
	content: "";
}

.home-why-acc__summary:hover,
.home-why-acc__summary:focus-visible {
	color: var(--wimira-red);
}

.home-why-acc__summary:focus-visible {
	outline: 2px solid var(--wimira-red);
	outline-offset: 4px;
	border-radius: 4px;
}

.home-why-acc__title {
	min-width: 0;
}

.home-why-acc__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: none;
	width: 22px;
	height: 22px;
	color: #fff;
}

.home-why-acc__icon svg {
	width: 18px;
	height: 18px;
}

.home-why-acc__icon-v {
	transform-origin: center;
	transition: transform 0.25s var(--wimira-ease), opacity 0.25s var(--wimira-ease);
}

.home-why-acc__item[open] .home-why-acc__icon-v {
	transform: scaleY(0);
	opacity: 0;
}

.home-why-acc__item[open] .home-why-acc__summary {
	color: #fff;
	padding-bottom: 12px;
}

.home-why-acc__body {
	padding: 0 4px 22px;
}

.home-why-acc__body p {
	margin: 0;
	max-width: 46ch;
	color: rgba(255, 255, 255, 0.68);
	font-size: 15px;
	line-height: 1.65;
}

/* FAQ — white band (even) before Next step night. */
.home-body--faq {
	background: #fff;
	padding: 0;
}

.home-row-section--faq {
	grid-template-columns: 1fr;
	gap: 40px;
	width: 100%;
	max-width: var(--wimira-content);
	margin-left: auto;
	margin-right: auto;
	padding: 72px 0 64px;
	border: none;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	overflow: visible;
}

.home-faq-head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	max-width: 640px;
	margin: 0 auto;
	text-align: center;
}

.home-faq-head .home-eyebrow {
	margin: 0;
	justify-content: center;
}

.home-row-section--faq h2,
.home-faq-head h2 {
	max-width: 22ch;
	margin: 0;
	color: var(--wimira-ink-heading);
	font-family: var(--wimira-font-heading);
	font-size: clamp(28px, 3.6vw, 44px);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.15;
	text-wrap: balance;
}

.home-faq-head__lead {
	margin: 0;
	max-width: 46ch;
	color: var(--wimira-text-soft);
	font-size: 15px;
	line-height: 1.6;
}

.home-faq-acc {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 820px;
	margin: 0 auto;
}

.home-faq-acc__item {
	border-top: 1px solid rgba(18, 21, 38, 0.14);
	background: transparent;
}

.home-faq-acc__item:last-child {
	border-bottom: 1px solid rgba(18, 21, 38, 0.14);
}

.home-faq-acc__summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 22px 4px;
	cursor: pointer;
	list-style: none;
	color: var(--wimira-ink-heading);
	font-size: 17px;
	font-weight: 600;
	letter-spacing: -0.015em;
	line-height: 1.4;
	user-select: none;
	transition: color 0.2s var(--wimira-ease);
}

.home-faq-acc__summary::-webkit-details-marker {
	display: none;
}

.home-faq-acc__summary::marker {
	content: "";
}

.home-faq-acc__summary:hover,
.home-faq-acc__summary:focus-visible {
	color: var(--wimira-red);
}

.home-faq-acc__summary:focus-visible {
	outline: 2px solid var(--wimira-red);
	outline-offset: 4px;
	border-radius: 4px;
}

.home-faq-acc__title {
	min-width: 0;
}

.home-faq-acc__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: none;
	width: 22px;
	height: 22px;
	color: var(--wimira-ink-heading);
}

.home-faq-acc__icon svg {
	width: 18px;
	height: 18px;
}

.home-faq-acc__icon-v {
	transform-origin: center;
	transition: transform 0.25s var(--wimira-ease), opacity 0.25s var(--wimira-ease);
}

.home-faq-acc__item[open] .home-faq-acc__icon-v {
	transform: scaleY(0);
	opacity: 0;
}

.home-faq-acc__item[open] .home-faq-acc__summary {
	color: var(--wimira-ink-heading);
	padding-bottom: 12px;
}

.home-faq-acc__body {
	padding: 0 4px 22px;
}

.home-faq-acc__body p {
	margin: 0;
	max-width: 62ch;
	color: var(--wimira-text-soft);
	font-size: 15px;
	line-height: 1.65;
}

/* Late CTA — conversion beat after FAQ, before insights. */
.home-cta-band {
	background: var(--wimira-night);
	padding: 56px 0;
}

.home-cta-band__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	max-width: var(--wimira-content);
	margin: 0 auto;
}

.home-cta-band__copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
	min-width: 0;
	max-width: 560px;
}

.home-cta-band__copy .home-eyebrow {
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
}

.home-cta-band__copy .home-eyebrow__rule {
	background: var(--wimira-red);
}

.home-cta-band h2 {
	margin: 0;
	color: #fff;
	font-family: var(--wimira-font-heading);
	font-size: clamp(26px, 3.2vw, 40px);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.15;
	text-wrap: balance;
}

.home-cta-band p {
	margin: 0;
	max-width: 46ch;
	color: rgba(255, 255, 255, 0.68);
	font-size: 15px;
	line-height: 1.6;
}

.home-cta-band__btn {
	flex: none;
	white-space: nowrap;
}

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

.home-insight-card {
	position: relative;
	overflow: hidden;
	min-height: 186px;
	border-radius: 8px;
	background: var(--wimira-ink-heading);
	color: #fff;
}

.home-insight-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.74;
}

.home-insight-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.82));
}

.home-insight-card div {
	position: absolute;
	inset: auto 14px 14px;
	z-index: 1;
}

.home-insight-card span {
	display: block;
	margin-bottom: 8px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 11px;
}

.home-insight-card h3 {
	color: #fff;
}

/* Card hover interactions — gentle lift + accent, image zoom on photo cards. */
.home-card,
.home-consult,
.home-ind-card,
.home-case-card,
.home-mini-insights,
.home-insight-card {
	transition: transform 0.28s var(--wimira-ease), box-shadow 0.28s var(--wimira-ease), border-color 0.28s var(--wimira-ease), background-color 0.28s var(--wimira-ease);
	will-change: transform;
}

.home-icon {
	transition: transform 0.28s var(--wimira-ease), background-color 0.28s var(--wimira-ease), color 0.28s var(--wimira-ease);
}

.home-ind-card img,
.home-case-card img,
.home-insight-card img,
.home-mini-insight img {
	transition: transform 0.45s var(--wimira-ease), opacity 0.45s var(--wimira-ease);
}

.home-card:hover {
	transform: translateY(-4px);
	border-color: rgba(226, 44, 40, 0.35);
	box-shadow: 0 14px 30px rgba(20, 26, 45, 0.12);
}

.home-card:hover .home-icon {
	transform: scale(1.12);
	background: var(--wimira-red);
	color: #fff;
}

.home-insight-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.45);
}

.home-insight-card:hover img {
	transform: scale(1.06);
	opacity: 0.9;
}

.home-case-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 34px rgba(10, 16, 32, 0.4);
}

.home-case-card:hover img {
	transform: scale(1.05);
	opacity: 0.55;
}

.home-mini-insights:hover {
	transform: translateY(-4px);
	border-color: rgba(226, 44, 40, 0.35);
	box-shadow: 0 14px 30px rgba(20, 26, 45, 0.1);
}

.home-mini-insight {
	transition: color 0.25s var(--wimira-ease);
}

.home-mini-insight:hover {
	color: var(--wimira-red);
}

.home-mini-insight:hover img {
	transform: scale(1.08);
}

.home-link {
	transition: color 0.25s var(--wimira-ease), gap 0.25s var(--wimira-ease);
}

.home-link:hover {
	gap: 10px;
	color: var(--wimira-red-hover);
}

@media (prefers-reduced-motion: reduce) {
	.reveal-armed [data-reveal-item],
	.reveal-armed [data-reveal-item="title"],
	.reveal-armed [data-reveal-item="text"],
	.reveal-armed [data-reveal-item="card"] {
		opacity: 1;
		transform: none;
		filter: none;
		transition: none;
	}

	.home-challenge,
	.home-challenge__media img,
	.home-challenge__arrow,
	.home-challenges-head__cta {
		transition: none;
	}

	.home-challenge:hover {
		transform: none;
	}

	.home-challenge:hover .home-challenge__media img {
		transform: none;
	}

	.home-card,
	.home-consult,
	.home-ind-card,
	.home-case-card,
	.home-mini-insights,
	.home-insight-card,
	.home-icon,
	.home-consult__icon,
	.home-ind-card img,
	.home-case-card img,
	.home-insight-card img,
	.home-mini-insight img,
	.home-mini-insight,
	.home-link {
		transition: none;
	}

	.home-card:hover,
	.home-consult:hover,
	.home-ind-card:hover,
	.home-case-card:hover,
	.home-mini-insights:hover,
	.home-insight-card:hover {
		transform: none;
	}

	.home-ind-card:hover img {
		transform: none;
	}

	.home-ind-card:hover::before,
	.home-ind-card:hover .home-ind-card__plus {
		opacity: 0;
	}

	.home-ind-nav__btn {
		transition: none;
	}

	.home-sol-step__num {
		font-size: 48px;
	}
}

/* ------------------------------------------------------------------
   Breakpoints (aligned with theme: 768 / 961 / 1280)
   - Desktop: default styles (≥961px)
   - Large:   max-width 1279px
   - Tablet:  max-width 960px
   - Mobile:  max-width 767px
   ------------------------------------------------------------------ */

/* Desktop narrow / laptop */
@media (min-width: 961px) and (max-width: 1279px) {
	.home-sol-flow {
		gap: 56px 40px;
	}
}

@media (max-width: 1279px) {
	.home-row-section {
		grid-template-columns: 1fr;
	}

	.home-card-grid--six {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.home-impact-grid {
		grid-template-columns: 1fr;
	}
}

/* Tablet + mobile */
@media (max-width: 960px) {
	.home-card-grid--four,
	.home-card-grid--three,
	.home-card-grid--six,
	.home-impact-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.home-challenges-head {
		flex-direction: column;
		align-items: flex-start;
		gap: 22px;
	}

	.home-row-section--capabilities {
		gap: 28px;
		padding: 36px max(var(--wimira-gutter), 16px) 32px;
	}

	.home-row-section--industry {
		--ind-pad: 28px;
		--ind-gap: 12px;
		gap: 28px;
		padding: 48px 0 40px;
	}

	.home-ind-head {
		grid-template-columns: 1fr;
		gap: 18px;
		align-items: start;
	}

	.home-ind-head__lead {
		justify-self: start;
		max-width: none;
	}

	.home-ind-slider {
		grid-auto-columns: calc((100vw - var(--ind-pad) - var(--ind-pad) - var(--ind-gap)) / 2.2);
	}

	.home-cap-split {
		--home-cap-split-h: auto;
		grid-template-columns: 1fr;
		gap: 16px;
		height: auto;
		min-height: 0;
	}

	.home-cap-split__panel,
	.home-cap-split__media {
		height: auto;
	}

	.home-cap-split__media {
		min-height: 320px;
		aspect-ratio: 16 / 11;
	}

	.home-cap-split__inner {
		overflow: visible;
		height: auto;
	}

	.home-cap-acc {
		overflow: visible;
		flex: none;
	}

	.home-row-section--solutions {
		padding: 56px max(var(--wimira-gutter), 16px) 48px;
	}

	.home-sol-head {
		margin-bottom: 40px;
	}

	.home-sol-flow {
		grid-template-columns: 1fr;
		gap: 40px;
		padding-left: 24px;
		padding-right: 0;
	}

	.home-sol-step--1,
	.home-sol-step--2,
	.home-sol-step--3,
	.home-sol-step--4,
	.home-sol-step--5,
	.home-sol-step--6 {
		grid-column: 1;
	}

	.home-sol-flow__wires {
		display: none;
	}

	/* Arc garland only works in a single row — drop it when the grid wraps. */
	.home-consult-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 18px;
	}

	.home-consult {
		padding: 0;
		text-align: left;
	}

	.home-consult::before,
	.home-consult-grid::before,
	.home-consult-grid::after {
		display: none;
	}

	.home-consult-arcs {
		display: none;
	}

	.home-consult p {
		margin: 8px 0 0;
		max-width: none;
	}

	.home-partner-inner {
		grid-template-columns: 1fr;
		gap: 28px;
		width: min(var(--wimira-content), calc(100% - 40px));
	}

	.home-partner-head h2 {
		max-width: none;
		font-size: clamp(28px, 8vw, 40px);
	}

	.home-partner-list a {
		font-size: clamp(18px, 5vw, 24px);
	}

	.home-row-section--why {
		gap: 36px;
		padding: 56px 0 48px;
	}

	.home-row-section--faq {
		gap: 32px;
		padding: 56px 0 48px;
	}

	.home-why-acc {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.home-why-acc__col + .home-why-acc__col .home-why-acc__item:first-child {
		border-top: 0;
	}
}

/* Mobile */
@media (max-width: 767px) {
	.home-body {
		padding: 8px 0 16px;
	}

	.home-row-section {
		padding: 14px;
	}

	.home-row-section--challenges {
		gap: 28px;
		margin-top: 8px;
		padding: 44px max(var(--wimira-gutter), 16px) 40px;
	}

	.home-row-section--challenges h2 {
		font-size: clamp(26px, 8vw, 36px);
	}

	.home-challenges-head__cta {
		width: 100%;
		justify-content: center;
		box-sizing: border-box;
		padding: 12px 20px;
	}

	.home-challenge__media {
		height: clamp(120px, 36vw, 150px);
	}

	.home-challenges {
		grid-template-columns: 1fr;
	}

	.home-row-section--consulting {
		gap: 32px;
		padding: 40px 0 36px;
	}

	.home-row-section--consulting h2 {
		font-size: clamp(24px, 7vw, 32px);
	}

	.home-consult-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.home-consult__icon {
		width: 56px;
		height: 56px;
	}

	.home-row-section--capabilities {
		gap: 24px;
		padding: 28px max(var(--wimira-gutter), 16px) 24px;
	}

	.home-row-section--capabilities h2 {
		font-size: clamp(22px, 6.8vw, 30px);
	}

	.home-cap-split {
		gap: 14px;
	}

	.home-cap-split__media {
		min-height: clamp(180px, 52vw, 240px);
		aspect-ratio: 4 / 3;
		border-radius: 16px;
	}

	.home-cap-split__panel {
		border-radius: 16px;
	}

	.home-cap-split__inner {
		padding: clamp(16px, 4.5vw, 22px);
		gap: 14px;
	}

	.home-cap-acc__summary {
		font-size: clamp(14px, 3.8vw, 15px);
		padding: 10px 0;
	}

	.home-cap-acc__body {
		padding-left: 0;
	}

	.home-row-section--solutions {
		width: 100vw;
		max-width: 100vw;
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
		padding: 40px max(var(--wimira-gutter), 16px) 36px;
	}

	.home-row-section--solutions h2,
	.home-sol-head h2 {
		font-size: clamp(22px, 6.8vw, 30px);
	}

	.home-sol-head {
		margin-bottom: 28px;
	}

	.home-sol-flow {
		gap: 24px;
		padding-left: 24px;
		padding-right: 0;
	}

	.home-sol-step__pin {
		left: -18px;
	}

	.home-sol-step {
		gap: 12px 14px;
	}

	.home-sol-step__num {
		font-size: clamp(30px, 9vw, 36px);
	}

	.home-sol-step h3 {
		font-size: clamp(18px, 5vw, 22px);
	}

	.home-row-section--partners {
		gap: 0;
		padding: 44px 0;
	}

	.home-partner-inner {
		width: min(var(--wimira-content), calc(100% - 28px));
		gap: 24px;
	}

	.home-partner-head h2 {
		font-size: clamp(24px, 7.5vw, 34px);
	}

	.home-partner-list {
		gap: 10px;
	}

	.home-partner-list a {
		font-size: clamp(17px, 5.2vw, 22px);
	}

	.home-row-section--industry {
		--ind-pad: 16px;
		gap: 20px;
		padding: 36px 0 32px;
	}

	.home-row-section--industry h2 {
		font-size: clamp(22px, 6.8vw, 30px);
	}

	.home-ind-slider {
		grid-auto-columns: calc(100vw - var(--ind-pad) - 36px);
	}

	.home-ind-card {
		aspect-ratio: 16 / 11;
	}

	.home-row-section--why {
		gap: 28px;
		padding: 40px 0 36px;
	}

	.home-row-section--why h2,
	.home-why-head h2 {
		max-width: none;
		font-size: clamp(22px, 6.8vw, 30px);
	}

	.home-row-section--faq {
		gap: 24px;
		padding: 40px 0 36px;
	}

	.home-row-section--faq h2,
	.home-faq-head h2 {
		max-width: none;
		font-size: clamp(22px, 6.8vw, 30px);
	}

	.home-why-acc__summary {
		gap: 12px;
		padding: 16px 0;
		font-size: clamp(14px, 3.8vw, 15px);
	}

	.home-why-acc__body {
		padding: 0 0 16px;
	}

	.home-faq-acc__summary {
		gap: 12px;
		padding: 16px 0;
		font-size: clamp(14px, 3.8vw, 15px);
	}

	.home-faq-acc__body {
		padding: 0 0 16px;
	}

	.home-cta-band {
		padding: 40px 0;
	}

	.home-cta-band__inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
	}

	.home-cta-band__btn {
		width: 100%;
		justify-content: center;
		box-sizing: border-box;
	}

	.home-card-grid--six,
	.home-card-grid--four,
	.home-card-grid--three,
	.home-consult-grid,
	.home-impact-grid {
		grid-template-columns: 1fr;
	}
}
