/* ============================================================
   Optivro ISPU — CTA (`.tk-cta`)
   Full-width cream band, centered head (trait) + pill/ghost buttons
   with arrow/download icons. Scoped under `.oiw-cta`. Reuses .oiw-bleed.
   ============================================================ */
.oiw-cta {
	background: var(--cream2);
	padding: 80px 40px;
	text-align: center;
}
.oiw-cta .oiw-inner {
	max-width: 1100px;
	margin: 0 auto;
	width: 100%;
}
.oiw-cta .oiw-h {
	font-size: 34px;
	line-height: 44px;
	margin-bottom: 16px;
}
.oiw-cta .oiw-sub {
	max-width: 520px;
	opacity: 0.6;
	margin: 0 auto 32px;
}
.oiw-cta-btns {
	display: flex;
	gap: 18px;
	justify-content: center;
	flex-wrap: wrap;
}
.oiw-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--navy);
	color: #fff;
	font-family: Lato, sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 16px 34px;
	border-radius: 100px;
	text-decoration: none;
	transition: transform 0.3s, box-shadow 0.3s, gap 0.3s;
}
.oiw-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 30px rgba(0, 29, 58, 0.25);
	gap: 14px;
}
.oiw-btn-primary svg {
	width: 13px;
	height: 13px;
	fill: none;
	stroke: #fff;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.oiw-btn-ghost {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--navy);
	font-family: Lato, sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-decoration: none;
	border-bottom: 1px solid rgba(0, 29, 58, 0.3);
	padding-bottom: 3px;
	transition: gap 0.3s;
}
.oiw-btn-ghost:hover {
	gap: 12px;
}
.oiw-btn-ghost svg {
	width: 12px;
	height: 12px;
	fill: none;
	stroke: var(--navy);
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}
@media (max-width: 560px) {
	.oiw-cta .oiw-h {
		font-size: 28px;
		line-height: 37px;
	}
}
