.service-hero {
	position: relative;
	padding: clamp(3.5rem, 7vw, 7rem) 0;
	background: linear-gradient(135deg, #edf5fa 0%, #fff 62%);
	overflow: hidden;
}
.service-hero::before {
	position: absolute;
	top: -15rem;
	left: -13rem;
	width: 36rem;
	height: 36rem;
	border: 1px solid rgba(23, 104, 190, 0.12);
	border-radius: 50%;
	box-shadow:
		0 0 0 5rem rgba(23, 104, 190, 0.035),
		0 0 0 10rem rgba(23, 104, 190, 0.02);
	content: "";
}
.service-hero__grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.84fr);
	align-items: center;
	gap: clamp(3rem, 8vw, 7rem);
}
.service-breadcrumbs ol {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin: 0 0 2rem;
	padding: 0;
	color: var(--muted);
	font-size: 0.88rem;
	list-style: none;
}
.service-breadcrumbs li + li::before {
	margin-right: 0.6rem;
	color: #71858e;
	content: "/";
}
.service-breadcrumbs a {
	text-decoration: underline;
	text-decoration-color: transparent;
	text-underline-offset: 0.2em;
}
.service-breadcrumbs a:hover {
	text-decoration-color: currentColor;
}
.service-hero h1 {
	max-width: 46rem;
	margin-bottom: 1.5rem;
	color: var(--navy);
	font-size: clamp(3rem, 5.8vw, 5.5rem);
	text-wrap: balance;
}
.service-hero__lead {
	max-width: 46rem;
	color: var(--text);
	font-size: clamp(1.02rem, 1.55vw, 1.18rem);
}
.service-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 2rem;
}
.service-hero__media {
	position: relative;
	margin: 0;
	padding: 0 0 1.5rem 1.5rem;
}
.service-hero__media::before {
	position: absolute;
	z-index: 0;
	right: 1.5rem;
	bottom: 0;
	left: 0;
	height: 72%;
	border-radius: var(--radius);
	background: var(--navy);
	content: "";
}
.service-hero__media img {
	position: relative;
	z-index: 1;
	width: 100%;
	aspect-ratio: 4/4.35;
	object-fit: cover;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}
.service-hero__media figcaption {
	position: absolute;
	z-index: 2;
	right: -0.8rem;
	bottom: 3rem;
	display: flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.9rem 1.1rem;
	border-radius: 999px;
	background: #fff;
	color: var(--navy);
	box-shadow: var(--shadow);
	font-size: 0.78rem;
	font-weight: 800;
}
.service-hero__media figcaption span {
	display: grid;
	width: 1.4rem;
	height: 1.4rem;
	place-items: center;
	border-radius: 50%;
	background: #eaf4ff;
	color: var(--navy);
}
.service-jump {
	/* position: sticky; */
	z-index: 20;
	top: 6.7rem;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
}
.service-jump__inner {
	display: flex;
	min-height: 3.8rem;
	align-items: center;
	gap: 2rem;
	overflow-x: auto;
}
.service-jump__inner > span {
	flex: 0 0 auto;
	color: var(--navy);
	font-size: 0.76rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}
.service-jump ul {
	display: flex;
	gap: 1.4rem;
	margin: 0;
	padding: 0;
	list-style: none;
}
.service-jump a {
	display: block;
	padding: 0.8rem 0;
	color: var(--muted);
	font-size: 0.82rem;
	font-weight: 800;
	white-space: nowrap;
}
.service-jump a:hover {
	color: var(--blue-dark);
}
.service-content-grid,
.service-cost__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
	align-items: start;
	gap: clamp(3rem, 8vw, 7rem);
}
.service-section-heading {
	position: sticky;
	top: 11.5rem;
}
.service-lead {
	color: var(--ink);
	font-size: 1.12rem;
	font-weight: 700;
}
.service-rich-text p:not(.service-lead),
.service-cost__content p {
	color: var(--muted);
}
.service-treatments-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	margin-top: 4rem;
}
.service-treatment {
	padding: 1.5rem;
	border: 1px solid var(--line);
	border-radius: 1rem;
	background: #fff;
	transition:
		transform 0.25s,
		box-shadow 0.25s;
}
.service-treatment:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow);
}
.service-treatment__icon {
	display: grid;
	width: 4.8rem;
	height: 4.8rem;
	margin-bottom: 1.3rem;
	place-items: center;
	border-radius: 0.75rem;
	background: #eaf4ff;
	color: var(--navy);
}
.service-treatment__icon svg {
	width: 3.4rem;
	height: 3.4rem;
}
.service-treatment__icon svg * {
	fill: currentColor;
}
.service-treatment__icon--outline svg * {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
	vector-effect: non-scaling-stroke;
}
.service-treatment__icon--outline svg .service-icon-cutout {
	fill: #eaf4ff;
	stroke: none;
}
.service-treatment h3 {
	font-size: 1.15rem;
}
.service-treatment p {
	margin: 0;
	color: var(--muted);
	font-size: 0.85rem;
}
.service-process {
	background: var(--surface);
}
.service-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: steps;
}
.service-steps li {
	position: relative;
	padding: 1.5rem;
	border: 1px solid #d9e3e7;
	border-radius: 1rem;
	background: #fff;
}
.service-steps li > span {
	display: block;
	margin-bottom: 2rem;
	color: #52636b;
	font-family: Georgia, serif;
	font-size: 2.3rem;
}
.service-steps h3 {
	margin-bottom: 0.65rem;
}
.service-steps p {
	color: var(--muted);
	font-size: 0.85rem;
}
.service-steps small {
	display: block;
	padding-top: 0.8rem;
	border-top: 1px solid var(--line);
	color: var(--blue-dark);
	font-weight: 800;
}
.service-candidates__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.65fr);
	align-items: center;
	gap: clamp(3rem, 8vw, 7rem);
}
.service-candidates__copy > p:not(.eyebrow) {
	color: var(--muted);
}
.service-check-list {
	display: grid;
	gap: 0.75rem;
	margin: 1.5rem 0;
	padding: 0;
	list-style: none;
}
.service-check-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
}
.service-check-list li > span {
	display: grid;
	flex: 0 0 1.5rem;
	height: 1.5rem;
	place-items: center;
	border-radius: 50%;
	background: #eaf4ff;
	color: var(--navy);
	font-size: 0.75rem;
	font-weight: 900;
}
.service-doctor-card {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: var(--shadow);
	overflow: hidden;
}
.service-doctor-card img {
	width: 100%;
	aspect-ratio: 4/3.55;
	object-fit: cover;
	object-position: center top;
	background: #dce7ec;
}
.service-doctor-card > div {
	padding: 1.5rem;
}
.service-doctor-card h3 {
	margin-bottom: 0.3rem;
}
.service-doctor-card > div > p:not(.eyebrow) {
	color: var(--muted);
}
.service-doctor-card a {
	color: var(--blue-dark);
	font-weight: 800;
}
.service-cost {
	background: #eaf4ff;
}
.service-cost__heading {
	position: sticky;
	top: 11.5rem;
}
.service-cost__content {
	padding: 2rem;
	border: 1px solid rgba(23, 104, 190, 0.16);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.84);
}
.service-review {
	padding: clamp(4.5rem, 8vw, 7rem) 0;
	background: var(--navy);
	color: #fff;
}
.service-review h2 {
	color: #fff;
}
.service-review__inner {
	max-width: 68rem;
}
.service-review__heading { margin-bottom: clamp(2rem, 4vw, 3rem); text-align: center; }
.service-review__heading .eyebrow { color: #9dccff; }
.service-review__heading h2 { margin-bottom: 0; }
.service-review__viewport { overflow-x: auto; border-radius: var(--radius); scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; }
.service-review__viewport::-webkit-scrollbar { display: none; }
.service-review__track { display: flex; margin: 0; padding: 0; list-style: none; }
.service-review__slide { display: flex; min-width: 100%; min-height: 21rem; flex-direction: column; align-items: center; justify-content: center; padding: clamp(2rem, 5vw, 4rem); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); background: rgba(255,255,255,.055); text-align: center; scroll-snap-align: start; }
.service-review__stars {
	margin: 0 0 1.5rem;
	color: #f5b83b;
	letter-spacing: 0.18em;
}
.service-review__text {
	max-width: 48rem;
	margin: 0;
	font-family: Georgia, serif;
	font-size: clamp(1.5rem, 2vw, 1.35rem);
	line-height: 1.4;
}
.service-review__author {
	margin: 1.5rem 0 0;
}
.service-review__author strong,
.service-review__author span {
	display: block;
}
.service-review__author span {
	color: #bcd0d7;
	font-size: 0.78rem;
}
.service-review__footer { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; margin-top: 1.5rem; }
.service-review__controls { display: flex; align-items: center; gap: .8rem; }
.service-review__controls > button { display: grid; width: 2.75rem; height: 2.75rem; place-items: center; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; background: transparent; color: #fff; cursor: pointer; }
.service-review__controls > button:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.service-review__dots { display: flex; gap: .45rem; }
.service-review__dots button { width: .55rem; height: .55rem; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.35); cursor: pointer; }
.service-review__dots button[aria-current="true"] { width: 1.6rem; border-radius: 999px; background: #f5b83b; }
.service-review__google-link { color: #fff; font-weight: 800; text-decoration: underline; text-underline-offset: .25em; }
.service-review__google-link:hover { color: #9dccff; }
@media (max-width: 620px) {
	.service-review__slide { min-height: 24rem; }
	.service-review__footer { align-items: flex-start; flex-direction: column; }
}
.service-faq__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr);
	gap: clamp(3rem, 8vw, 7rem);
}
.service-faq__intro {
	position: sticky;
	top: 11.5rem;
	align-self: start;
}
.service-faq__intro > p:not(.eyebrow) {
	color: var(--muted);
}
.service-related {
	background: var(--surface);
}
.service-related__heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: 2.5rem;
}
.service-related__heading h2 {
	margin: 0;
}
.service-related__heading > a {
	color: var(--blue-dark);
	font-weight: 800;
}
.service-related__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}
.service-related-card {
	display: block;
	padding: 1.7rem;
	border: 1px solid #d9e3e7;
	border-radius: 1rem;
	background: #fff;
	transition:
		transform 0.25s,
		box-shadow 0.25s;
}
.service-related-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow);
}
.service-related-card > span {
	color: #52636b;
	font-family: Georgia, serif;
	font-size: 2rem;
}
.service-related-card h3 {
	margin: 1.5rem 0 0.6rem;
}
.service-related-card p {
	color: var(--muted);
}
.service-related-card strong {
	color: var(--blue-dark);
	font-size: 0.8rem;
}
.service-final-cta {
	position: relative;
	display: flex;
	min-height: clamp(25rem, 42vw, 34rem);
	align-items: center;
	padding: clamp(3.5rem, 6vw, 5.5rem) 0;
	background-color: #0d3545;
	background-image:
		linear-gradient(
			90deg,
			rgba(6, 33, 45, 0.9) 0%,
			rgba(13, 53, 69, 0.78) 45%,
			rgba(35, 128, 228, 0.42) 100%
		),
		radial-gradient(
			circle at 84% 18%,
			rgba(234, 244, 255, 0.28),
			transparent 38%
		),
		url("/wp-content/uploads/2026/08/union-family-dental-cabinet-horizontal.webp");
	background-position: center;
	background-size: cover;
	color: #d7e4e9;
	isolation: isolate;
	overflow: hidden;
}
.service-final-cta::after {
	position: absolute;
	z-index: -1;
	right: clamp(-9rem, -8vw, -4rem);
	bottom: clamp(-12rem, -10vw, -6rem);
	width: clamp(18rem, 35vw, 32rem);
	aspect-ratio: 1;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	box-shadow:
		0 0 0 3rem rgba(255, 255, 255, 0.035),
		0 0 0 6rem rgba(255, 255, 255, 0.02);
	content: "";
}
.service-final-cta__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 3rem;
}
.service-final-cta .eyebrow {
	color: #9dccff;
}
.service-final-cta h2 {
	margin-bottom: 0.6rem;
	color: #fff;
}
.service-final-cta p:last-child {
	margin: 0;
}
.service-final-cta__actions {
	display: flex;
	flex: 0 0 auto;
	flex-wrap: wrap;
	gap: 0.8rem;
}
.service-final-cta__secondary {
	border-color: #fff;
	background: #fff;
	color: var(--navy);
}
.service-final-cta__secondary:hover {
	background: #dcebf4;
	color: var(--navy);
}
@media (max-width: 1050px) {
	.service-treatments-grid,
	.service-steps {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 820px) {
	.service-hero__grid,
	.service-content-grid,
	.service-candidates__grid,
	.service-cost__grid,
	.service-faq__grid {
		grid-template-columns: 1fr;
	}
	.service-hero__media {
		width: min(100%, 35rem);
		margin-inline: auto;
	}
	.service-section-heading,
	.service-cost__heading,
	.service-faq__intro {
		position: static;
	}
	.service-jump {
		top: 6.25rem;
	}
	.service-related__grid {
		grid-template-columns: 1fr;
	}
	.service-final-cta__inner {
		align-items: flex-start;
		flex-direction: column;
	}
	.service-final-cta__actions {
		flex: none;
	}
}
@media (max-width: 560px) {
	.service-hero {
		padding-top: 2.5rem;
	}
	.service-hero__actions,
	.service-hero__actions .button,
	.service-final-cta__actions,
	.service-final-cta__actions .button {
		width: 100%;
	}
	.service-hero__media {
		padding: 0 0 1rem 1rem;
	}
	.service-jump__inner > span {
		display: none;
	}
	.service-treatments-grid,
	.service-steps {
		grid-template-columns: 1fr;
	}
	.service-related__heading {
		align-items: flex-start;
		flex-direction: column;
	}
	.service-cost__content {
		padding: 1.4rem;
	}
}
@media (prefers-reduced-motion: reduce) {
	.service-treatment,
	.service-related-card {
		transition: none;
	}
}
