/* Digitonz "Why Outsource" split section.
   Left: sticky kicker + heading + copy + CTA.
   Right: numbered ledger rows. */

.dgt-why {
	--dw-bg:       #ffffff;
	--dw-ink:      #1b2150;
	--dw-muted:    #7a7a8a;
	--dw-kicker:   #e8602c;
	--dw-accent:   #00b4d8;
	--dw-divider:  #e5e7ef;

	--dw-max:      1280px;
	--dw-pad-y:    96px;
	--dw-pad-x:    64px;
	--dw-gap:      80px;

	background: var(--dw-bg);
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

.dgt-why .dw-inner {
	max-width: var(--dw-max);
	margin: 0 auto;
	padding: var(--dw-pad-y) var(--dw-pad-x);
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: var(--dw-gap);
	align-items: start;
}

/* Left column */
.dgt-why .dw-left { position: sticky; top: 80px; }

.dgt-why .dw-kicker {
	font-size: 13px; font-weight: 600;
	letter-spacing: 3px; text-transform: uppercase;
	color: var(--dw-kicker);
	display: inline-block;
}

.dgt-why .dw-title {
	font-weight: 600;
	font-size: 52px;
	line-height: 1.1;
	color: var(--dw-ink);
	margin: 20px 0 28px;
}
.dgt-why .dw-title .dw-title-accent { color: var(--dw-accent); }

.dgt-why .dw-lede {
	font-size: 17px;
	line-height: 1.75;
	color: var(--dw-muted);
	margin: 0 0 32px;
	max-width: 420px;
}

.dgt-why .dw-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	border-bottom: 1.5px solid var(--dw-ink);
	padding-bottom: 6px;
	text-decoration: none;
	color: var(--dw-ink);
	transition: gap .2s ease, color .2s ease, border-color .2s ease;
}
.dgt-why .dw-cta:hover { gap: 14px; color: var(--dw-accent); border-color: var(--dw-accent); }
.dgt-why .dw-cta:hover svg { stroke: var(--dw-accent); }
.dgt-why .dw-cta-label {
	font-size: 14px; font-weight: 600;
	letter-spacing: .5px; text-transform: uppercase;
}
.dgt-why .dw-cta svg { transition: stroke .2s ease; }

/* Right column — numbered rows */
.dgt-why .dw-row {
	display: grid;
	grid-template-columns: 72px 1fr;
	gap: 24px;
	padding: 32px 0;
	border-bottom: 1px solid var(--dw-divider);
	align-items: baseline;
}
.dgt-why .dw-row:last-child { border-bottom: 0; }

.dgt-why .dw-num {
	font-weight: 400;
	font-size: 44px;
	color: var(--dw-accent);
	font-variant-numeric: tabular-nums;
	line-height: 1;
}

.dgt-why .dw-row-title {
	font-weight: 600;
	font-size: 24px;
	color: var(--dw-ink);
	margin: 0 0 8px;
}
.dgt-why .dw-row-desc {
	font-size: 15.5px;
	line-height: 1.65;
	color: var(--dw-muted);
	margin: 0;
	max-width: 520px;
}

/* Responsive */
@media (max-width: 960px) {
	.dgt-why .dw-inner {
		grid-template-columns: 1fr;
		gap: 48px;
		padding: 64px 24px;
	}
	.dgt-why .dw-left { position: static; }
	.dgt-why .dw-title { font-size: 38px; }
	.dgt-why .dw-row { grid-template-columns: 56px 1fr; gap: 16px; padding: 24px 0; }
	.dgt-why .dw-num { font-size: 36px; }
	.dgt-why .dw-row-title { font-size: 20px; }
}
