/* =============================================================================
   BuddyPilot Services: service landing page blocks
   Handles: service-hero, service-features, service-bridge
   Uses the theme's --bp-* design tokens (loaded by buddypilot-base on the
   front end); no per-service accent colour, unlike the plan pages.
   ============================================================================= */

/* -- Service Hero ------------------------------------------------------------ */

.bp-service-hero {
	background: var(--bp-navy);
	padding: clamp(72px, 10vw, 120px) 0 clamp(56px, 8vw, 96px);
	overflow: hidden;
	position: relative;
}

.bp-service-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(
		ellipse 70% 60% at 70% 40%,
		rgba(147, 197, 253, .18) 0%,
		transparent 70%
	);
	pointer-events: none;
}

.bp-service-hero__content {
	position: relative;
	max-width: 68ch;
}

.bp-service-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	background: rgba(147, 197, 253, .15);
	border: 1px solid rgba(147, 197, 253, .35);
	color: var(--bp-tx-sky);
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	padding: .35rem .9rem;
	border-radius: 100px;
	margin-bottom: 1.25rem;
}

.bp-service-hero__heading {
	font-size: clamp(2rem, 4.5vw, 3.25rem);
	font-weight: 800;
	color: var(--bp-tx-l1);
	line-height: 1.15;
	margin-bottom: 1.25rem;
	letter-spacing: -.03em;
	max-width: none;
}

.bp-service-hero__sub {
	font-size: 1.125rem;
	color: var(--bp-tx-l2);
	margin-bottom: 1.25rem;
	line-height: 1.7;
	max-width: 58ch;
}

.bp-service-hero__price {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--bp-tx-org);
	margin-bottom: 1.75rem;
}

.bp-service-hero__actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 2rem;
}

.bp-service-hero__trust {
	font-family: var(--bp-font-body);
	font-size: .875rem;
	color: var(--bp-tx-l2);
	display: flex;
	align-items: center;
	gap: .75rem;
	flex-wrap: wrap;
}

.bp-service-hero__trust i {
	color: var(--bp-tx-sky);
	flex-shrink: 0;
}

/* -- Service Features (numbered card grid) ----------------------------------- */

.bp-service-features__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.5rem;
	margin-top: 2.5rem;
}

/* Card visuals (.sk-card / .sk-card__deco / .sk-card__body) are shared,
   theme-level classes already defined in assets/css/blocks.css. */

/* -- Service Bridge (icon + note, ends most service pages) ------------------ */

.bp-service-bridge {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	background: var(--bp-ice);
	border: 1px solid var(--bp-border);
	border-radius: 12px;
	padding: 1.5rem;
	margin: 3rem 0;
}

.bp-service-bridge__icon {
	color: var(--bp-cobalt);
	font-size: 1.25rem;
	flex-shrink: 0;
	margin-top: .15rem;
}

.bp-service-bridge p {
	color: var(--bp-tx-sec);
	font-size: .95rem;
	line-height: 1.6;
	max-width: none;
}

.bp-service-bridge a {
	color: var(--bp-tx-link);
	font-weight: 700;
	text-decoration: underline;
}

@media (max-width: 640px) {
	.bp-service-bridge {
		flex-direction: column;
	}
}
