/**
 * BKC Tally — built-in home landing (theme layout).
 */

.bkc-home {
	--bkc-home-navy: var(--bkc-navy);
	--bkc-home-navy-light: var(--bkc-navy-light);
	--bkc-home-gold: var(--bkc-gold);
	--bkc-home-gold-dark: var(--bkc-gold-dark);
	--bkc-home-cream: var(--bkc-cream);
}

/* —— Hero —— */
.bkc-home__hero {
	position: relative;
	min-height: min(88vh, 920px);
	display: flex;
	align-items: stretch;
	padding: clamp(2rem, 6vw, 4rem) 0 clamp(3rem, 7vw, 5rem);
	overflow: hidden;
	color: #fff;
}

.bkc-home__hero-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		145deg,
		var(--bkc-home-navy) 0%,
		#0c1a30 35%,
		var(--bkc-home-navy-light) 65%,
		#070f1c 100%
	);
	background-size: 200% 200%;
	animation: bkc-home-hero-bg 22s ease-in-out infinite;
	z-index: 0;
}

.bkc-home__hero--video .bkc-home__hero-bg {
	animation: none;
	background: linear-gradient(
		155deg,
		rgba(10, 22, 40, 0.82) 0%,
		rgba(7, 15, 28, 0.78) 45%,
		rgba(10, 22, 40, 0.88) 100%
	);
	background-size: 100% 100%;
}

.bkc-home__hero-video {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
}

.bkc-home__hero-video iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	height: 56.25vw;
	min-height: 100%;
	min-width: 177.77vh;
	transform: translate(-50%, -50%);
	border: 0;
}

.bkc-home__hero-scrim {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(
		105deg,
		rgba(4, 10, 22, 0.55) 0%,
		rgba(4, 10, 22, 0.2) 48%,
		rgba(4, 10, 22, 0.45) 100%
	);
}

@media (prefers-reduced-motion: reduce) {
	.bkc-home__hero-bg {
		animation: none;
		background-size: 100% 100%;
	}
}

@keyframes bkc-home-hero-bg {
	0%,
	100% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
}

.bkc-home__hero-glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.32;
	pointer-events: none;
	z-index: 0;
}

.bkc-home__hero-glow--1 {
	width: min(50vw, 380px);
	height: min(50vw, 380px);
	background: radial-gradient(circle, rgba(212, 168, 75, 0.5) 0%, transparent 70%);
	top: -20%;
	right: -5%;
}

.bkc-home__hero-glow--2 {
	width: min(40vw, 300px);
	height: min(40vw, 300px);
	background: radial-gradient(circle, rgba(59, 130, 180, 0.28) 0%, transparent 70%);
	bottom: 10%;
	left: -10%;
}

.bkc-home__hero-inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr minmax(0, min(100%, 400px));
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
	width: 100%;
}

@media (max-width: 900px) {
	.bkc-home__hero-inner {
		grid-template-columns: 1fr;
	}

	.bkc-home__hero-card,
	.bkc-home__hero-form-wrap {
		max-width: 420px;
	}
}

.bkc-home__kicker {
	margin: 0 0 0.75rem;
	font-size: 0.8125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--bkc-home-gold);
}

.bkc-home__title {
	font-family: var(--bkc-font-head);
	font-size: clamp(2rem, 5vw, 3.15rem);
	font-weight: 700;
	line-height: 1.12;
	margin: 0 0 1rem;
	letter-spacing: 0.01em;
	max-width: 18ch;
}

@media (min-width: 901px) {
	.bkc-home__title {
		max-width: 22ch;
	}
}

.bkc-home__lead {
	margin: 0 0 1.75rem;
	font-size: clamp(1rem, 2vw, 1.125rem);
	line-height: 1.65;
	color: rgba(244, 246, 249, 0.88);
	max-width: 36rem;
}

.bkc-home__hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
	margin-bottom: 2rem;
}

.bkc-home__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.5rem;
	font-weight: 700;
	font-size: 0.9rem;
	text-decoration: none;
	border-radius: 999px;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
	border: 2px solid transparent;
}

.bkc-home__btn--primary {
	background: linear-gradient(135deg, var(--bkc-home-gold) 0%, var(--bkc-home-gold-dark) 100%);
	color: var(--bkc-home-navy);
	box-shadow: 0 6px 28px rgba(212, 168, 75, 0.35);
}

.bkc-home__btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 36px rgba(212, 168, 75, 0.42);
	color: var(--bkc-home-navy);
}

.bkc-home__btn--ghost {
	background: transparent;
	color: #fff;
	border-color: rgba(212, 168, 75, 0.55);
}

.bkc-home__btn--ghost:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: var(--bkc-home-gold);
	color: #fff;
}

.bkc-home__btn--light {
	background: #fff;
	color: var(--bkc-home-navy);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.bkc-home__btn--light:hover {
	transform: translateY(-2px);
	color: var(--bkc-home-navy);
}

.bkc-home__hero-stats {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding-top: 1.35rem;
}

.bkc-home__hero-stats li {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.bkc-home__hero-stats strong {
	font-family: var(--bkc-font-head);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--bkc-home-gold);
}

.bkc-home__hero-stats span {
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(244, 246, 249, 0.65);
}

.bkc-home__hero-card {
	border-radius: 20px;
	padding: 1px;
	background: linear-gradient(135deg, rgba(212, 168, 75, 0.45), rgba(255, 255, 255, 0.12));
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.bkc-home__hero-card-inner {
	background: rgba(10, 22, 40, 0.85);
	backdrop-filter: blur(12px);
	border-radius: 19px;
	padding: 1.5rem 1.35rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.bkc-home__hero-card-label {
	display: block;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--bkc-home-gold);
	margin-bottom: 0.35rem;
}

.bkc-home__hero-card-title {
	margin: 0 0 0.5rem;
	font-family: var(--bkc-font-head);
	font-size: 1.2rem;
	font-weight: 600;
	color: #fff;
}

.bkc-home__hero-card-text {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.5;
	color: rgba(244, 246, 249, 0.78);
}

.bkc-home__hero-form-wrap {
	border-radius: 20px;
	padding: 1px;
	background: linear-gradient(135deg, rgba(212, 168, 75, 0.5), rgba(255, 255, 255, 0.18));
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.bkc-home__hero-form-wrap .bkc-inquiry {
	margin: 0;
	background: rgba(10, 22, 40, 0.88);
	backdrop-filter: blur(14px);
	border-radius: 19px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 1.35rem 1.25rem 1.25rem;
	box-shadow: none;
}

.bkc-home__hero-form-wrap .bkc-inquiry__title {
	color: #fff;
	margin-top: 0;
}

.bkc-home__hero-form-wrap .bkc-inquiry label {
	color: rgba(244, 246, 249, 0.92);
}

.bkc-home__hero-form-wrap .bkc-inquiry input,
.bkc-home__hero-form-wrap .bkc-inquiry textarea {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.14);
	color: #fff;
}

.bkc-home__hero-form-wrap .bkc-inquiry-note {
	color: rgba(244, 246, 249, 0.55);
	font-size: 0.72rem;
}

/* —— Scroll reveal —— */
.bkc-home__reveal {
	opacity: 0;
	transform: translate3d(0, 28px, 0);
	transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.bkc-home__reveal.is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
	.bkc-home__reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* —— Trust strip —— */
.bkc-home__trust {
	background: var(--bkc-home-navy-light);
	border-block: 1px solid rgba(212, 168, 75, 0.15);
	overflow: hidden;
	padding: 0.85rem 0;
}

.bkc-home__trust-track {
	display: flex;
	flex-wrap: nowrap;
	gap: 2.5rem;
	width: max-content;
	animation: bkc-home-trust 32s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
	.bkc-home__trust-track {
		animation: none;
		flex-wrap: wrap;
		justify-content: center;
		width: 100%;
		padding: 0 1rem;
	}
}

@keyframes bkc-home-trust {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

.bkc-home__trust-item {
	flex-shrink: 0;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(244, 246, 249, 0.85);
	white-space: nowrap;
}

.bkc-home__trust-item::before {
	content: "✦";
	margin-right: 0.65rem;
	color: var(--bkc-home-gold);
	opacity: 0.85;
}

/* —— Partners strip —— */
.bkc-home__section--partners {
	background: linear-gradient(180deg, #fff 0%, var(--bkc-home-cream) 100%);
	padding: clamp(2.25rem, 5vw, 3.25rem) 0;
	border-block: 1px solid rgba(10, 22, 40, 0.06);
}

.bkc-home__partners-title {
	font-family: var(--bkc-font-head);
	font-size: clamp(1.15rem, 2.5vw, 1.4rem);
	font-weight: 700;
	text-align: center;
	margin: 0 0 1.5rem;
	color: var(--bkc-home-navy);
}

.bkc-home__partners-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem 1rem;
}

.bkc-home__partners-item {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.55rem 1rem 0.55rem 0.65rem;
	background: #fff;
	border-radius: 999px;
	border: 1px solid rgba(10, 22, 40, 0.08);
	box-shadow: 0 4px 20px rgba(10, 22, 40, 0.05);
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--bkc-home-navy-light);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	animation-delay: calc(var(--bkc-d, 0) * 0.06s);
}

.bkc-home__partners-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(10, 22, 40, 0.08);
}

.bkc-home__partners-icon {
	display: flex;
	color: var(--bkc-home-gold-dark);
	flex-shrink: 0;
}

.bkc-home__partners-label {
	line-height: 1.3;
}

/* —— Spotlight —— */
.bkc-home__section--spotlight {
	background: linear-gradient(135deg, #f0f4fa 0%, var(--bkc-home-cream) 55%, #fff 100%);
}

.bkc-home__spotlight-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
	gap: clamp(2rem, 5vw, 3.5rem);
	align-items: center;
}

@media (max-width: 820px) {
	.bkc-home__spotlight-grid {
		grid-template-columns: 1fr;
	}
}

.bkc-home__spotlight-visual {
	border-radius: 20px;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: linear-gradient(145deg, var(--bkc-home-navy-light), var(--bkc-home-navy));
	box-shadow: 0 20px 60px rgba(10, 22, 40, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.bkc-home__spotlight-visual--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
}

.bkc-home__spotlight-img-el {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.bkc-home__spotlight-ph {
	color: rgba(255, 255, 255, 0.35);
}

.bkc-home__spotlight-text {
	font-size: 1.05rem;
	line-height: 1.65;
	color: var(--bkc-muted);
	margin: 0 0 1.5rem;
	max-width: 36rem;
}

.bkc-home__spotlight-copy .bkc-home__section-title {
	margin-bottom: 1rem;
}

/* —— Facility —— */
.bkc-home__section--facility {
	background: #fff;
}

.bkc-home__facility-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1.25rem, 3vw, 2rem);
}

@media (max-width: 900px) {
	.bkc-home__facility-grid {
		grid-template-columns: 1fr;
		max-width: 420px;
		margin: 0 auto;
	}
}

.bkc-home__facility-card {
	border-radius: 18px;
	overflow: hidden;
	background: var(--bkc-home-cream);
	border: 1px solid rgba(10, 22, 40, 0.07);
	box-shadow: 0 10px 40px rgba(10, 22, 40, 0.06);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bkc-home__facility-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 50px rgba(10, 22, 40, 0.1);
}

.bkc-home__facility-media {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: linear-gradient(160deg, #e2e8f0, #cbd5e1);
	display: flex;
	align-items: center;
	justify-content: center;
}

.bkc-home__facility-media--empty {
	min-height: 10rem;
}

.bkc-home__facility-img-el {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

.bkc-home__facility-card:hover .bkc-home__facility-img-el {
	transform: scale(1.04);
}

.bkc-home__facility-ph {
	color: rgba(10, 22, 40, 0.25);
}

.bkc-home__facility-body {
	padding: 1.25rem 1.3rem 1.4rem;
}

.bkc-home__facility-title {
	font-family: var(--bkc-font-head);
	font-size: 1.1rem;
	font-weight: 600;
	margin: 0 0 0.5rem;
	color: var(--bkc-home-navy);
}

.bkc-home__facility-text {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.55;
	color: var(--bkc-muted);
}

/* —— FAQ —— */
.bkc-home__section--faq {
	background: linear-gradient(180deg, var(--bkc-home-cream) 0%, #fff 100%);
}

.bkc-home__faq-list {
	max-width: 42rem;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.bkc-home__faq-item {
	border-radius: 14px;
	border: 1px solid rgba(10, 22, 40, 0.08);
	background: #fff;
	box-shadow: 0 4px 20px rgba(10, 22, 40, 0.04);
	overflow: hidden;
}

.bkc-home__faq-item[open] {
	box-shadow: 0 8px 32px rgba(10, 22, 40, 0.07);
}

.bkc-home__faq-q {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	padding: 1rem 1.15rem;
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--bkc-home-navy);
	cursor: pointer;
	list-style: none;
}

.bkc-home__faq-q::-webkit-details-marker {
	display: none;
}

.bkc-home__faq-q::marker {
	content: '';
}

.bkc-home__faq-q-icon {
	flex-shrink: 0;
	color: var(--bkc-home-gold-dark);
	margin-top: 0.1rem;
}

.bkc-home__faq-a {
	padding: 0 1.15rem 1.15rem 2.55rem;
	font-size: 0.92rem;
	line-height: 1.6;
	color: var(--bkc-muted);
}

/* —— Sections —— */
.bkc-home__section {
	padding: clamp(3rem, 7vw, 5.5rem) 0;
	background: var(--bkc-home-cream);
}

.bkc-home__section--courses {
	background: #fff;
}

.bkc-home__section--alt {
	background: linear-gradient(180deg, #f1f5f9 0%, var(--bkc-home-cream) 100%);
}

.bkc-home__section--steps {
	background: var(--bkc-home-navy);
	color: #fff;
	padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.bkc-home__section--testimonials {
	background: #fff;
}

.bkc-home__section--contact {
	background: linear-gradient(180deg, var(--bkc-home-cream) 0%, #e8edf3 100%);
	padding-bottom: clamp(4rem, 10vw, 6rem);
}

.bkc-home__section-head {
	max-width: 40rem;
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.bkc-home__section-title {
	font-family: var(--bkc-font-head);
	font-size: clamp(1.65rem, 3.5vw, 2.25rem);
	font-weight: 700;
	margin: 0 0 0.65rem;
	color: var(--bkc-home-navy);
	letter-spacing: 0.01em;
}

.bkc-home__section--steps .bkc-home__section-title {
	color: #fff;
}

.bkc-home__section-title--center {
	text-align: center;
	max-width: none;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 2.5rem;
}

.bkc-home__section-sub {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.6;
	color: var(--bkc-muted);
}

.bkc-home__section-foot {
	margin: 2rem 0 0;
	text-align: center;
}

.bkc-home__text-link {
	font-weight: 700;
	color: var(--bkc-home-navy-light);
	text-decoration: none;
	transition: color 0.2s ease;
}

.bkc-home__text-link:hover {
	color: var(--bkc-home-gold-dark);
}

/* —— Grids & cards —— */
.bkc-home__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1.25rem, 3vw, 2rem);
}

@media (max-width: 960px) {
	.bkc-home__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.bkc-home__grid {
		grid-template-columns: 1fr;
	}
}

.bkc-home__card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid rgba(10, 22, 40, 0.07);
	box-shadow: 0 8px 40px rgba(10, 22, 40, 0.06);
	display: flex;
	flex-direction: column;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bkc-home__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 50px rgba(10, 22, 40, 0.1);
}

.bkc-home__card--light {
	background: #fff;
}

.bkc-home__card-media {
	display: block;
	line-height: 0;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.bkc-home__card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.bkc-home__card:hover .bkc-home__card-media img {
	transform: scale(1.04);
}

.bkc-home__card-body {
	padding: 1.25rem 1.35rem 1.4rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.bkc-home__card-title {
	font-family: var(--bkc-font-head);
	font-size: 1.1rem;
	font-weight: 600;
	margin: 0 0 0.5rem;
	line-height: 1.3;
}

.bkc-home__card-title a {
	color: var(--bkc-home-navy);
	text-decoration: none;
	transition: color 0.2s ease;
}

.bkc-home__card-title a:hover {
	color: var(--bkc-home-gold-dark);
}

.bkc-home__card-excerpt {
	margin: 0 0 0.65rem;
	font-size: 0.9rem;
	line-height: 1.55;
	color: var(--bkc-muted);
	flex: 1;
}

.bkc-home__card-meta {
	margin: 0 0 0.75rem;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--bkc-home-navy-light);
}

.bkc-home__card-link {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--bkc-home-gold-dark);
	text-decoration: none;
	align-self: flex-start;
}

.bkc-home__card-link:hover {
	text-decoration: underline;
}

/* —— Why us —— */
.bkc-home__features {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(1.25rem, 3vw, 2rem);
}

@media (max-width: 900px) {
	.bkc-home__features {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 520px) {
	.bkc-home__features {
		grid-template-columns: 1fr;
	}
}

.bkc-home__feature {
	background: #fff;
	border-radius: 16px;
	padding: 1.5rem 1.35rem;
	border: 1px solid rgba(10, 22, 40, 0.06);
	box-shadow: 0 4px 24px rgba(10, 22, 40, 0.04);
}

.bkc-home__feature-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(212, 168, 75, 0.22), rgba(212, 168, 75, 0.08));
	color: var(--bkc-home-navy-light);
	margin-bottom: 1rem;
}

.bkc-home__feature-icon svg {
	display: block;
}

.bkc-home__feature-title {
	font-family: var(--bkc-font-head);
	font-size: 1.05rem;
	font-weight: 600;
	margin: 0 0 0.5rem;
	color: var(--bkc-home-navy);
}

.bkc-home__feature-text {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.55;
	color: var(--bkc-muted);
}

/* —— Steps —— */
.bkc-home__steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.5rem;
	counter-reset: none;
}

@media (max-width: 800px) {
	.bkc-home__steps {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 480px) {
	.bkc-home__steps {
		grid-template-columns: 1fr;
	}
}

.bkc-home__step {
	position: relative;
	text-align: center;
	padding: 1.5rem 1rem;
	background: rgba(255, 255, 255, 0.06);
	border-radius: 16px;
	border: 1px solid rgba(212, 168, 75, 0.2);
}

.bkc-home__step-icon {
	display: flex;
	justify-content: center;
	color: rgba(212, 168, 75, 0.95);
	margin-bottom: 0.35rem;
}

.bkc-home__step-icon svg {
	display: block;
}

.bkc-home__step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 50%;
	background: var(--bkc-home-gold);
	color: var(--bkc-home-navy);
	font-weight: 800;
	font-size: 1.1rem;
	margin-bottom: 0.85rem;
}

.bkc-home__step-text {
	margin: 0;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.92);
}

/* —— Testimonials —— */
.bkc-home__quotes {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1.25rem, 3vw, 2rem);
}

@media (max-width: 900px) {
	.bkc-home__quotes {
		grid-template-columns: 1fr;
	}
}

.bkc-home__quote {
	margin: 0;
	padding: 1.5rem 1.35rem;
	background: linear-gradient(145deg, #f8fafc 0%, #fff 100%);
	border-radius: 16px;
	border: 1px solid rgba(10, 22, 40, 0.06);
	box-shadow: 0 6px 28px rgba(10, 22, 40, 0.05);
	position: relative;
}

.bkc-home__quote::before {
	content: "\201C";
	position: absolute;
	top: 0.65rem;
	left: 1rem;
	font-family: Georgia, serif;
	font-size: 3rem;
	line-height: 1;
	color: rgba(212, 168, 75, 0.35);
	pointer-events: none;
}

.bkc-home__quote p {
	margin: 0 0 1rem;
	padding-top: 0.5rem;
	font-size: 0.95rem;
	line-height: 1.65;
	color: var(--bkc-text);
	position: relative;
	z-index: 1;
}

.bkc-home__quote cite {
	font-style: normal;
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--bkc-home-navy-light);
}

/* —— Mid CTA —— */
.bkc-home__mid-cta {
	background: linear-gradient(120deg, var(--bkc-home-navy-light) 0%, var(--bkc-home-navy) 100%);
	color: #fff;
	padding: clamp(2.5rem, 5vw, 3.5rem) 0;
	border-block: 1px solid rgba(212, 168, 75, 0.2);
}

.bkc-home__mid-cta-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem 2rem;
}

.bkc-home__mid-cta-title {
	font-family: var(--bkc-font-head);
	font-size: clamp(1.35rem, 3vw, 1.85rem);
	font-weight: 700;
	margin: 0 0 0.5rem;
}

.bkc-home__mid-cta-text {
	margin: 0;
	max-width: 36rem;
	font-size: 1rem;
	line-height: 1.55;
	color: rgba(244, 246, 249, 0.88);
}

/* —— Contact —— */
.bkc-home__contact-grid {
	display: grid;
	grid-template-columns: 1fr minmax(0, 420px);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: start;
}

@media (max-width: 880px) {
	.bkc-home__contact-grid {
		grid-template-columns: 1fr;
	}
}

.bkc-home__contact-lead {
	margin: 0 0 1.5rem;
	font-size: 1.05rem;
	line-height: 1.6;
	color: var(--bkc-muted);
}

.bkc-home__contact-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
}

.bkc-home__contact-list li {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.bkc-home__contact-list strong {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--bkc-home-navy-light);
}

.bkc-home__contact-list span,
.bkc-home__contact-list a {
	font-size: 1rem;
	color: var(--bkc-text);
}

.bkc-home__contact-list a {
	font-weight: 600;
	text-decoration: none;
	color: var(--bkc-home-navy-light);
}

.bkc-home__contact-list a:hover {
	color: var(--bkc-home-gold-dark);
}

.bkc-home__contact-form-wrap .bkc-inquiry {
	box-shadow: 0 16px 48px rgba(10, 22, 40, 0.1);
}
