/* Program Finder CTA block. Scoped under .btpf-cta; resets use :where() so component rules win. */

.btpf-cta {
	--cta-navy: #06203a;
	--cta-navy-2: #0b2a4a;
	--cta-panel: #0d2f52;
	--cta-line: rgba(122, 162, 214, .28);
	--cta-gold: #f2a900;
	--cta-gold-hover: #ffb71a;
	--cta-ink: #0b2340;
	--cta-text: rgba(255, 255, 255, .86);
	--cta-muted: rgba(255, 255, 255, .62);
	--cta-display: "Barlow Condensed", "Oswald", "Arial Narrow", sans-serif;
	--cta-body: "Barlow", "Helvetica Neue", Arial, sans-serif;

	color: #fff;
	font-family: var(--cta-body);
	font-size: 16px;
	line-height: 1.55;
	text-align: left;
}

.btpf-cta *,
.btpf-cta *::before,
.btpf-cta *::after { box-sizing: border-box; }
.btpf-cta :where(h2, h3, p, dl, dt, dd, form) { margin: 0; padding: 0; }
.btpf-cta :where(a) { text-decoration: none; box-shadow: none; }
.btpf-cta :where(button, input) { font: inherit; margin: 0; }
.btpf-cta :focus-visible { outline: 3px solid var(--cta-gold); outline-offset: 3px; }

.btpf-cta__svg { width: 1em; height: 1em; flex: none; }
.btpf-cta__sr {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.btpf-cta__wrap {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 clamp(16px, 4vw, 56px);
}

/* Top: heading, stats, search */
.btpf-cta__top {
	padding: clamp(48px, 6vw, 72px) 0 clamp(36px, 4vw, 44px);
	background: var(--cta-navy);
}

.btpf-cta__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px 64px;
	flex-wrap: wrap;
}
.btpf-cta__copy { flex: 1 1 560px; max-width: 980px; }

.btpf-cta__eyebrow {
	font-family: var(--cta-display);
	font-weight: 700;
	font-size: 15px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--cta-gold);
}

.btpf-cta__title {
	margin-top: 14px !important;
	font-family: var(--cta-display);
	font-weight: 700;
	font-size: clamp(40px, 5.2vw, 68px);
	line-height: 1.02;
	letter-spacing: -.005em;
	color: #fff;
}

.btpf-cta__intro {
	margin-top: 16px !important;
	max-width: 980px;
	font-size: 17px;
	color: var(--cta-text);
}

.btpf-cta__stats { display: flex; gap: clamp(24px, 3.5vw, 48px); }
.btpf-cta__stats > div { display: flex; flex-direction: column-reverse; }
.btpf-cta__stats dd {
	font-family: var(--cta-display);
	font-weight: 700;
	font-size: clamp(36px, 3.4vw, 44px);
	line-height: 1;
	color: var(--cta-gold);
}
.btpf-cta__stats dt {
	margin-top: 8px;
	font-size: 12px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--cta-muted);
}

.btpf-cta__search {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: clamp(32px, 4vw, 48px) !important;
	padding: 12px 14px 12px 22px !important;
	background: var(--cta-navy-2);
	border: 1.5px solid var(--cta-line);
	border-radius: 6px;
	transition: border-color .15s;
}
.btpf-cta__search:focus-within { border-color: var(--cta-gold); }
.btpf-cta__search > .btpf-cta__svg { font-size: 20px; color: var(--cta-gold); }
.btpf-cta__search input[type="search"] {
	flex: 1;
	min-width: 0;
	height: 44px !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	outline: none;
	color: #fff !important;
	font-size: 17px !important;
	appearance: none;
}
.btpf-cta__search input::placeholder { color: var(--cta-muted); opacity: 1; }
.btpf-cta__search button {
	padding: 11px 26px !important;
	background: var(--cta-gold) !important;
	border: 0 !important;
	border-radius: 4px !important;
	box-shadow: none !important;
	color: var(--cta-ink) !important;
	font-family: var(--cta-display) !important;
	font-weight: 700;
	font-size: 16px;
	letter-spacing: .08em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background .15s;
}
.btpf-cta__search button:hover { background: var(--cta-gold-hover) !important; }

/* Bottom: start cards + help row */
.btpf-cta__bottom {
	padding: clamp(40px, 5vw, 44px) 0 clamp(48px, 6vw, 64px);
	background: var(--cta-navy-2);
}

.btpf-cta__start {
	font-family: var(--cta-display);
	font-weight: 700;
	font-size: clamp(28px, 2.6vw, 36px);
	line-height: 1.1;
	letter-spacing: .01em;
	text-transform: uppercase;
	color: #fff;
}

.btpf-cta__cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	margin-top: 24px;
}

.btpf-cta__card {
	display: flex;
	flex-direction: column;
	padding: 24px 24px 22px;
	background: var(--cta-panel);
	border: 1.5px solid var(--cta-line);
	border-radius: 8px;
	color: #fff !important;
	transition: transform .15s, border-color .15s, box-shadow .15s;
}
.btpf-cta__card:hover {
	transform: translateY(-2px);
	border-color: var(--cta-gold);
	box-shadow: 0 12px 28px rgba(0, 0, 0, .25);
}

.btpf-cta__icon {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border-radius: 6px;
	background: rgba(255, 255, 255, .08);
	color: var(--cta-gold);
	font-size: 26px;
}

.btpf-cta__card-title {
	margin-top: 22px;
	font-family: var(--cta-display);
	font-weight: 700;
	font-size: clamp(28px, 2.6vw, 38px);
	line-height: 1.05;
	text-transform: uppercase;
}

.btpf-cta__card-text {
	margin-top: 14px;
	font-size: 15.5px;
	color: var(--cta-text);
}

.btpf-cta__card-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: auto;
	padding-top: 28px;
	font-size: 13.5px;
	letter-spacing: .02em;
	color: var(--cta-muted);
}
.btpf-cta__card-foot .btpf-cta__svg { font-size: 22px; color: var(--cta-gold); transition: transform .15s; }
.btpf-cta__card:hover .btpf-cta__card-foot .btpf-cta__svg { transform: translateX(4px); }

.btpf-cta__card--primary { border: 2px solid var(--cta-gold); }
.btpf-cta__card--primary:hover { border-color: var(--cta-gold-hover); }

/* The whole card is the link; this is a visual button inside it. */
.btpf-cta__card-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 11px 20px;
	background: var(--cta-gold);
	border-radius: 4px;
	color: var(--cta-ink);
	font-family: var(--cta-display);
	font-weight: 700;
	font-size: 16px;
	letter-spacing: .08em;
	text-transform: uppercase;
	white-space: nowrap;
	transition: background .15s;
}
.btpf-cta__card-foot .btpf-cta__card-btn .btpf-cta__svg { font-size: 18px; color: var(--cta-ink); }
.btpf-cta__card--primary:hover .btpf-cta__card-btn { background: var(--cta-gold-hover); }

.btpf-cta__help {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px 40px;
	flex-wrap: wrap;
	margin-top: clamp(48px, 6vw, 88px);
}
.btpf-cta__help-title {
	font-family: var(--cta-display);
	font-weight: 700;
	font-size: clamp(26px, 2.4vw, 32px);
	line-height: 1.1;
	text-transform: uppercase;
	color: #fff;
}
.btpf-cta__help-text { margin-top: 4px !important; font-size: 15.5px; color: var(--cta-text); }

.btpf-cta__btn {
	display: inline-flex;
	align-items: center;
	padding: 13px 28px;
	background: var(--cta-gold);
	border-radius: 4px;
	color: var(--cta-ink) !important;
	font-family: var(--cta-display);
	font-weight: 700;
	font-size: 17px;
	letter-spacing: .04em;
	transition: background .15s;
}
.btpf-cta__btn:hover { background: var(--cta-gold-hover); }

@media (max-width: 860px) {
	.btpf-cta__cards { grid-template-columns: 1fr; }
	.btpf-cta__stats { width: 100%; }
}

@media (max-width: 520px) {
	.btpf-cta__search { flex-wrap: wrap; padding: 10px 12px 12px 16px !important; }
	.btpf-cta__search button { width: 100%; }
	.btpf-cta__intro { font-size: 16px; }
	.btpf-cta__stats { justify-content: space-between; }
}

@media (prefers-reduced-motion: reduce) {
	.btpf-cta *, .btpf-cta *::before, .btpf-cta *::after { transition: none !important; }
}
