/* ═══════════════════════════════════════════════════════════════════════════════
 * MICROSITE SECTIONS — Per-section styles.
 *
 * @package 4M Dental Microsite
 * ═══════════════════════════════════════════════════════════════════════════════ */


/* ─── 1. Hero ──────────────────────────────────────────────────────────────── */

.fm-section--hero {
	position: relative;
	min-height: 600px;
	display: flex;
	align-items: center;
	padding: 120px 0 80px;
    background-image: var(--fm-hero-bg);
	background-color: var(--fm-color-bg-dark);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

.fm-hero__overlay {
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	background: linear-gradient(269deg, rgba(0, 0, 0, 0) 43%, rgba(0, 0, 0, 0.75) 100%);
	z-index: 1;
}

.fm-section--hero .fm-container {
	position: relative;
	z-index: 2;
}

.fm-hero__content {
	max-width: 515px;
	color: var(--fm-color-header-inverse);
}

.fm-hero__badge {
	font-family: var(--fm-font-display);
	font-weight: 300;
	font-size: 45px;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--fm-color-header-inverse);
	margin: 0 0 8px;
}

.fm-hero__headline {
	font-size: var(--fm-text-hero);
	line-height: 1.0;
	letter-spacing: -0.02em;
	color: var(--fm-color-header-inverse);
	margin: 0 0 16px;
}

.fm-hero__subheadline {
	font-family: var(--fm-font-body);
	font-size: var(--fm-text-sm);
	font-weight: 500;
	line-height: 1.7;
	color: var(--fm-color-header-inverse);
	max-width: 480px;
	margin: 0 0 32px;
}

.fm-hero__cta {
	margin-bottom: 40px;
}

.fm-hero__cta .fm-btn--light {
	font-size: var(--fm-text-lg);
	padding: 20px 24px;
	border-radius: 40px;
}

.fm-hero__cta {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
}

.fm-hero__phone{
	margin-left: 20px;
}
.fm-hero__phone:hover {
	color: var(--fm-color-header-inverse);
	opacity: 0.8;
}

.fm-hero__phone svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* Google badge card */
.fm-hero__badge-card {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--fm-radius-md);
	padding: 12px 20px;
	color: var(--fm-color-header-inverse);
}

.fm-hero__badge-card .fm-google-badge {
	color: var(--fm-color-header-inverse);
}

.fm-hero__badge-card .fm-google-badge__icon {
	width: 36px;
	height: 36px;
}

.fm-hero__badge-card .fm-google-badge__rating {
	font-size: 22px;
	font-weight: 800;
}

.fm-hero__badge-card .fm-star {
	font-size: 16px;
}

.fm-hero__reviews-link {
	font-family: var(--fm-font-ui);
	font-size: 13px;
	font-weight: 500;
	color: var(--fm-color-header-inverse);
	text-decoration: underline;
	text-underline-offset: 2px;
	opacity: 0.8;
	transition: opacity 0.2s;
}

.fm-hero__reviews-link:hover {
	opacity: 1;
	color: var(--fm-color-header-inverse);
}

/* Elfsight / reviews widget */
.fm-hero__reviews-widget {
	margin-top: 24px;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.fm-hero__reviews-widget > * {
	flex-shrink: 0;
}


/* ─── 2. FAQ Accordion ─────────────────────────────────────────────────────── */

/* Base accordion styles are in microsite-base.css */
/* Section-specific overrides only */

.fm-section--faq_accordion {
	padding: var(--fm-section-padding);
}

.fm-section--faq_accordion .fm-section-header {
	text-align: left;
	margin-bottom: var(--fm-gap-lg);
}

.fm-section--faq_accordion .fm-section-title {
	font-size: var(--fm-text-h2);
}

.fm-section--faq_accordion .fm-faq__list {
	max-width: 840px;
}


/* ─── 3. Final CTA ─────────────────────────────────────────────────────────── */

.fm-section--final-cta {
	position: relative;
	min-height: 400px;
	display: flex;
	align-items: center;
	padding: 100px 0;
	background-color: var(--fm-color-bg-dark);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

.fm-final-cta__overlay {
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	background: rgba(6, 12, 23, 0.7);
	z-index: 1;
}

.fm-section--final-cta .fm-container {
	position: relative;
	z-index: 2;
}

.fm-final-cta__content {
	max-width: 720px;
	margin: 0 auto;
}

.fm-microsite .fm-final-cta__headline {
	font-family: var(--fm-font-serif);
	font-style: normal;
	font-size: var(--fm-text-h1-serif);
	line-height: 1.0;
	letter-spacing: -0.02em;
	color: var(--fm-color-header-inverse);
	margin: 0 0 16px;
}

.fm-final-cta__subheadline {
	font-size: var(--fm-text-lg);
	color: var(--fm-color-body-inverse);
	margin: 0 0 32px;
}

.fm-final-cta__action {
	margin-top: 8px;
}

.fm-final-cta__action .fm-btn--light {
	font-size: var(--fm-text-lg);
	padding: 18px 36px;
}


/* ─── 4. Video CTA ─────────────────────────────────────────────────────────── */

/* Section-level styling: dark bg with gradient */
.fm-section--video_cta {
	background: linear-gradient(to bottom, #060c17, #000000);
}

.fm-video-cta {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--fm-gap-xl);
	align-items: center;
}

.fm-video-cta__text {
	max-width: 512px;
}

.fm-microsite .fm-video-cta__heading {
	font-family: var(--fm-font-display);
	font-weight: 500;
	font-size: 49px;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #fff;
	text-transform: capitalize;
	margin: 0 0 35px;
}

.fm-video-cta__heading mark {
	background: #fff;
	color: var(--fm-color-header);
	padding: 2px 8px;
}

.fm-video-cta__desc {
	font-family: var(--fm-font-body);
	font-weight: 500;
	font-size: 18px;
	line-height: 1.5;
	color: #fff;
	margin-bottom: var(--fm-gap-lg);
}

.fm-video-cta__media {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
}

.fm-video-cta__player {
	display: block;
	width: 100%;
	padding: 0;
	border: none;
	background: none;
	cursor: pointer;
	position: relative;
}

.fm-video-cta__thumb {
	width: 100%;
	aspect-ratio: 603 / 497;
	object-fit: cover;
	display: block;
}

.fm-video-cta__play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: transform 0.2s;
}

.fm-video-cta__player:hover .fm-video-cta__play {
	transform: translate(-50%, -50%) scale(1.1);
}


/* ─── 5. Comparison Table ──────────────────────────────────────────────────── */

.fm-section--comparison_table {
	background: var(--fm-color-bg-main);
	overflow: visible;
}

/* Header: heading left, description right */
.fm-compare__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px;
	margin-bottom: var(--fm-gap-xl);
}

.fm-microsite .fm-compare__heading {
	font-family: var(--fm-font-display);
	font-weight: 400;
	font-size: var(--fm-text-h2);
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #000;
	margin: 0;
	max-width: 490px;
}

.fm-compare__desc {
	font-family: var(--fm-font-body);
	font-weight: 500;
	font-size: 18px;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: #000;
	text-align: right;
	margin: 0;
	max-width: 384px;
}

/* Grid layout: features | 4M card | competitors */
.fm-compare__layout {
	display: flex;
	align-items: stretch;
	overflow: visible;
	padding-bottom: 40px;
}


/* Shared cell height */
.fm-compare__cell {
	height: 73px;
	display: flex;
	align-items: center;
	box-sizing: border-box;
}

.fm-compare__cell--head {
	height: 73px;
}

.fm-compare__cell--tall {
	height: 94px;
}

/* Feature names column */
.fm-compare__feat-col {
	flex: 0 0 auto;
	min-width: 200px;
	padding-right: 8px;
}

.fm-compare__feat {
	gap: 11px;
	padding: 0 16px;
}

.fm-compare__cell--even {
	background: rgba(255, 255, 255, 0.8);
}

.fm-compare__num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #000;
	color: #fff;
	font-family: var(--fm-font-body);
	font-weight: 500;
	font-size: 16px;
	letter-spacing: -0.02em;
	flex-shrink: 0;
}

.fm-compare__feat-name {
	display: block;
	font-family: var(--fm-font-body);
	font-weight: 500;
	font-size: 18px;
	line-height: 1.4;
	letter-spacing: -0.02em;
	color: #000;
}

.fm-compare__feat-note {
	display: block;
	font-family: var(--fm-font-body);
	font-weight: 500;
	font-size: 10px;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: #000;
}

/* 4M Card — frosted glass */
.fm-compare__4m-card {
	flex: 0 0 297px;
	background: rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(9px);
	-webkit-backdrop-filter: blur(9px);
	border-radius: 24px;
	box-shadow:
		0 100px 80px rgba(0, 0, 0, 0.07),
		0 65px 47px rgba(0, 0, 0, 0.05),
		0 39px 25px rgba(0, 0, 0, 0.04),
		0 20px 13px rgba(0, 0, 0, 0.04),
		0 8px 7px rgba(0, 0, 0, 0.03),
		0 2px 3px rgba(0, 0, 0, 0.02);
}

.fm-compare__4m-head {
	gap: 14px;
	padding: 0 36px;
}

.fm-compare__4m-logo {
	display: block;
	flex-shrink: 0;
}

.fm-compare__4m-label {
	font-family: var(--fm-font-body);
	font-weight: 600;
	font-size: 16px;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: #000;
}

.fm-compare__4m-row {
	gap: 9px;
	padding: 0 18px;
}

.fm-compare__4m-check {
	display: block;
	flex-shrink: 0;
}

.fm-compare__4m-text {
	display: flex;
	flex-direction: column;
	gap: 1px;
	line-height: 1.2;
	color: #000;
}

.fm-compare__4m-text strong {
	font-family: var(--fm-font-body);
	font-weight: 600;
	font-size: 16px;
	letter-spacing: -0.02em;
}

.fm-compare__4m-text span {
	font-family: var(--fm-font-body);
	font-weight: 500;
	font-size: 14px;
	letter-spacing: -0.02em;
}

/* Competitor columns */
.fm-compare__comp-col {
	flex: 1;
	min-width: 0;
	margin-left: 16px;
}

.fm-compare__comp-headers,
.fm-compare__comp-row {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	justify-items: center;
	padding: 0 16px;
}

.fm-compare__comp-name {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 68px;
	font-family: var(--fm-font-body);
	font-weight: 600;
	font-size: 14px;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #000;
	text-align: center;
}

.fm-compare__comp-cell {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 68px;
	gap: 4px;
}

.fm-compare__comp-cell img {
	display: block;
	width: 24px;
	height: 24px;
}

.fm-compare__comp-label {
	font-family: var(--fm-font-body);
	font-weight: 500;
	font-size: 12px;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: #000;
	text-align: center;
}

/* Bottom CTA */
.fm-compare__cta {
	text-align: center;
	margin-top: 80px;
}

.fm-microsite .fm-compare__cta-heading {
	font-family: var(--fm-font-display);
	font-weight: 400;
	font-size: var(--fm-text-h3);
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #000;
	margin: 0 0 32px;
}


/* ─── 5b. Image Break ──────────────────────────────────────────────────────── */

.fm-section--image_break {
	padding: 0;
	overflow: hidden;
}

.fm-section--image_break .fm-container {
	max-width: none;
	padding: 0;
}

.fm-imgbrk__img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: top;
	max-height: 535px;
}


/* ─── 6. Pricing Cards ────────────────────────────────────────────────────── */

.fm-pricing__grid {
	display: grid;
	gap: var(--fm-gap-md);
	align-items: start;
}

.fm-pricing__grid--1 {
	max-width: 400px;
	margin: 0 auto;
}

.fm-pricing__grid--2 {
	grid-template-columns: repeat(2, 1fr);
	max-width: 800px;
	margin: 0 auto;
}

.fm-pricing__grid--3 {
	grid-template-columns: repeat(3, 1fr);
}

.fm-pricing__card {
	background: var(--fm-color-bg-white);
	border: 1px solid var(--fm-color-border);
	border-radius: var(--fm-radius-lg);
	padding: 32px 28px;
	position: relative;
	transition: transform 0.2s, box-shadow 0.2s;
}

.fm-pricing__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.fm-pricing__card--featured {
	border-color: var(--fm-color-bg-dark);
	border-width: 2px;
	transform: scale(1.03);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.fm-pricing__card--featured:hover {
	transform: scale(1.03) translateY(-4px);
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.fm-pricing__badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--fm-color-bg-dark);
	color: var(--fm-color-header-inverse);
	font-family: var(--fm-font-ui);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 6px 16px;
	border-radius: var(--fm-radius-pill);
	white-space: nowrap;
}

.fm-pricing__plan-name {
	font-family: var(--fm-font-display);
	font-size: var(--fm-text-lg);
	font-weight: 500;
	margin: 0 0 12px;
	color: var(--fm-color-header);
}

.fm-pricing__price-wrap {
	display: flex;
	align-items: baseline;
	gap: 4px;
	margin-bottom: 24px;
}

.fm-pricing__price {
	font-family: var(--fm-font-display);
	font-size: 40px;
	font-weight: 400;
	letter-spacing: -0.02em;
	color: var(--fm-color-header);
}

.fm-pricing__period {
	font-size: var(--fm-text-sm);
	color: var(--fm-color-body-inverse);
}

.fm-pricing__features {
	list-style: none;
	padding: 0;
	margin: 0 0 28px;
}

.fm-pricing__feature {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 8px 0;
	font-size: var(--fm-text-sm);
	color: var(--fm-color-body);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.fm-pricing__feature:last-child {
	border-bottom: none;
}

.fm-pricing__feature-check {
	color: #4CAF50;
	font-size: 14px;
	font-weight: 700;
	flex-shrink: 0;
	margin-top: 1px;
}

.fm-pricing__card-cta {
	margin-top: auto;
}

.fm-pricing__card-cta .fm-btn {
	width: 100%;
}

/* Infographic */
.fm-pricing__infographic {
	max-width: 960px;
	margin-left: auto;
	margin-right: auto;
}

.fm-pricing__infographic img {
	border-radius: var(--fm-radius-lg);
}

/* Financing sub-section */
.fm-pricing__fin-heading {
	font-family: var(--fm-font-display);
	font-size: var(--fm-text-h4);
	margin-bottom: var(--fm-gap-sm);
}

.fm-pricing__fin-desc {
	font-size: var(--fm-text-md);
	color: var(--fm-color-body);
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}


/* ═══════════════════════════════════════════════════════════════════════════════
 * PHASE 3 — Slider Sections
 * ═══════════════════════════════════════════════════════════════════════════════ */


/* ─── Shared Swiper Nav ────────────────────────────────────────────────────── */

.fm-swiper-nav {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: var(--fm-gap-md);
}

.fm-swiper-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid var(--fm-color-border);
	background: var(--fm-color-bg-white);
	color: var(--fm-color-header);
	font-size: 20px;
	cursor: pointer;
	transition: background-color 0.2s, border-color 0.2s;
}

.fm-swiper-btn:hover {
	background: var(--fm-color-bg-dark);
	border-color: var(--fm-color-bg-dark);
	color: var(--fm-color-header-inverse);
}

.fm-swiper-btn.swiper-button-disabled {
	opacity: 0.35;
	cursor: default;
}


/* ─── 7. Before & After ────────────────────────────────────────────────────── */

/* Two-column layout: text left (~1/3), slider right (~2/3) */
.fm-ba__layout {
	display: flex;
	align-items: center;
	gap: 48px;
}

/* ── Left column: text ── */
.fm-ba__text {
	flex: 0 0 352px;
	max-width: 352px;
}

.fm-microsite .fm-ba__title {
	font-family: var(--fm-font-display);
	font-weight: 700;
	font-size: var(--fm-text-h2);
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--fm-color-header);
	margin: 0 0 24px;
}

.fm-ba__subtitle {
	display: flex;
	flex-direction: column;
	margin-bottom: 44px;
}

.fm-ba__subtitle-line {
	font-family: var(--fm-font-display);
	font-weight: 400;
	font-size: var(--fm-text-h2);
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--fm-color-header);
}

.fm-ba__subtitle-highlight {
	font-family: var(--fm-font-display);
	font-weight: 400;
	font-size: var(--fm-text-h2);
	line-height: 1.1;
	letter-spacing: -0.02em;
	background: var(--fm-color-header);
	color: #fff;
	display: inline-block;
	width: fit-content;
	padding: 2px 6px;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

.fm-ba__desc {
	font-family: var(--fm-font-body);
	font-weight: 500;
	font-size: var(--fm-text-lg);
	line-height: 1.4;
	letter-spacing: -0.02em;
	color: var(--fm-color-header);
	margin: 0;
	max-width: 331px;
	padding-left: 4px;
}

/* ── Right column: slider ── */
.fm-ba__slider {
	flex: 1;
	min-width: 0;
	position: relative;
}

.fm-ba__card {
	overflow: hidden;
	border-radius: 0;
}

.fm-ba__images {
	display: grid;
	grid-template-columns: 1fr 1fr;
	aspect-ratio: 785 / 435;
	border-radius: 32px 32px 0 0;
	overflow: hidden;
}

.fm-ba__img-wrap {
	position: relative;
	overflow: hidden;
	min-height: 0;
}

.fm-ba__img-wrap--before {
	border-right: 5px solid #fff;
}

.fm-ba__img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.fm-ba__card-footer {
	background: var(--fm-color-bg-dark);
	padding: 10px 35px;
	border-radius: 0 0 15px 15px;
	min-height: 108px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: center;
}

.fm-ba__patient {
	display: flex;
	flex-direction: column;
}

.fm-ba__patient-name {
	font-family: var(--fm-font-body);
	font-weight: 500;
	font-size: 16px;
	line-height: 1.4;
	letter-spacing: -0.02em;
	color: #fff;
}

.fm-ba__patient-sub {
	font-family: var(--fm-font-body);
	font-weight: 500;
	font-size: 12px;
	line-height: 1.4;
	letter-spacing: -0.02em;
	color: #fff;
	opacity: 0.6;
}

.fm-ba__quote {
	font-family: var(--fm-font-body);
	font-weight: 500;
	font-size: 14px;
	line-height: 1.4;
	letter-spacing: -0.02em;
	color: #fff;
	margin: 0;
}

/* ── Navigation arrows ── */
.fm-ba__nav {
	position: absolute;
	top: 37%;
	transform: translateY(-50%);
	background: none;
	border: none;
	cursor: pointer;
	color: #b8b8b8;
	padding: 8px;
	z-index: 5;
	outline: none;
	-webkit-tap-highlight-color: transparent;
}

.fm-microsite .fm-ba__nav:hover,
.fm-microsite .fm-ba__nav:active,
.fm-microsite .fm-ba__nav:focus,
.fm-microsite .fm-ba__nav:focus-visible {
	color: #b8b8b8;
	background: none;
	outline: none;
}

.fm-ba__nav--prev {
	left: -55px;
}

.fm-ba__nav--next {
	right: -55px;
}

/* ── Pagination dots ── */
.fm-ba-swiper.swiper {
	overflow-x: clip;
	overflow-y: visible;
	padding-bottom: 40px;
}

.fm-ba__pagination.swiper-pagination {
	top: auto;
	bottom: 0;
}

.fm-ba__pagination .swiper-pagination-bullet {
	width: 13px;
	height: 13px;
	background: #ccc;
	border-radius: 50%;
	opacity: 1;
	transition: background 0.2s, transform 0.2s;
}

.fm-ba__pagination .swiper-pagination-bullet-active,
.fm-ba__pagination .swiper-pagination-bullet-active-main {
	background: var(--fm-color-header);
}


/* ─── 8. Testimonial Ticker ────────────────────────────────────────────────── */

.fm-section--testimonial_ticker {
	padding: 60px 0;
	overflow: hidden;
}

.fm-section--testimonial_ticker .fm-container {
	max-width: none;
	padding: 0;
}

/* Photo tiles in ticker */
.fm-ticker__photo {
	flex-shrink: 0;
	width: 240px;
	height: 250px;
	border-radius: 16px;
	overflow: hidden;
}

.fm-ticker__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fm-ticker__row {
	overflow: hidden;
	padding: 4px 0;
}

.fm-ticker__track {
	display: flex;
	gap: 16px;
	width: max-content;
}

.fm-ticker__row--left .fm-ticker__track {
	animation: fm-ticker-left var(--fm-ticker-speed) linear infinite;
}

.fm-ticker__row--right .fm-ticker__track {
	animation: fm-ticker-right var(--fm-ticker-speed) linear infinite;
}

@keyframes fm-ticker-left {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

@keyframes fm-ticker-right {
	0%   { transform: translateX(-50%); }
	100% { transform: translateX(0); }
}

.fm-ticker__card {
	flex-shrink: 0;
	width: 320px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--fm-radius-md);
	padding: 20px;
	color: var(--fm-color-header-inverse);
}

.fm-ticker__stars {
	display: flex;
	gap: 2px;
	margin-bottom: 10px;
}

.fm-ticker__stars .fm-star {
	font-size: 14px;
}

.fm-ticker__text {
	font-size: var(--fm-text-sm);
	line-height: 1.5;
	color: var(--fm-color-body-inverse);
	margin: 0 0 12px;
}

.fm-ticker__author {
	font-family: var(--fm-font-ui);
	font-size: 12px;
	font-weight: 600;
	color: var(--fm-color-header-inverse);
}


/* ─── 10. Four Step Process ────────────────────────────────────────────────── */

/* Section rounded bottom corners */
.fm-section--rounded-bottom {
	border-radius: 0 0 55px 55px;
	padding-bottom: 80px;
}

/* Two-column header */
.fm-steps__header {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: start;
	margin-bottom: 110px;
}

.fm-microsite .fm-steps__heading {
	font-family: var(--fm-font-display);
	font-size: var(--fm-text-h2);
	font-weight: 400;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #000;
	margin: 0;
	max-width: 600px;
}

.fm-steps__intro {
	display: flex;
	flex-direction: column;
	gap: 37px;
	align-items: flex-start;
	max-width: 390px;
	margin-left: auto;
}

.fm-steps__desc {
	font-family: var(--fm-font-body);
	font-size: var(--fm-text-lg);
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: -0.02em;
	color: #000;
	margin: 0;
}

/* Subtitle band */
.fm-steps__subtitle {
	text-align: center;
	font-family: var(--fm-font-display);
	font-size: var(--fm-text-h2);
	font-weight: 400;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #000;
	margin-bottom: 40px;
}

.fm-steps__subtitle-highlight {
	background: var(--fm-color-bg-dark);
	color: #fff;
	padding: 4px 12px;
	display: inline;
}

/* Step titles row */
.fm-steps__titles-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 33px;
	margin-bottom: 37px;
}

.fm-steps__title-item {
	display: flex;
	align-items: center;
	gap: 12px;
}

.fm-steps__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.04);
	color: #000;
	font-family: var(--fm-font-body);
	font-size: var(--fm-text-lg);
	font-weight: 500;
	letter-spacing: -0.02em;
	flex-shrink: 0;
}

.fm-steps__title-text {
	font-family: var(--fm-font-serif);
	font-size: var(--fm-text-h4);
	font-weight: 400;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #000;
	white-space: nowrap;
}

/* Step cards grid */
.fm-steps__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 33px;
}

.fm-steps__card {
	background: #f7f7f7;
	border-radius: 28px;
	overflow: hidden;
}

.fm-steps__card-image {
	overflow: hidden;
	border-radius: 28px;
	flex-shrink: 0;
}

.fm-steps__card-image img {
	width: 100%;
	aspect-ratio: 330 / 311;
	object-fit: cover;
	display: block;
	border-radius: 28px;
}

.fm-steps__card-body {
	padding: 20px 28px 28px;
}

.fm-steps__card-desc {
	font-family: var(--fm-font-body);
	font-size: var(--fm-text-lg);
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: #000;
	margin: 0;
}


/* ─── 11. Media Recognition ────────────────────────────────────────────────── */

.fm-section--media_recognition {
	background-color: #0a111c;
	padding: 60px 0;
}

.fm-media__header {
	text-align: center;
	margin-bottom: var(--fm-gap-lg);
}

.fm-microsite .fm-media__heading {
	font-family: var(--fm-font-display);
	font-size: 40px;
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: -2px;
	color: #fff;
	margin: 0;
}

.fm-logos__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.fm-logos__item {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fm-logos__img {
	display: block;
	width: auto;
	height: auto;
	object-fit: contain;
	opacity: 0.85;
	transition: opacity 0.3s;
}

/* Per-logo sizes from Figma (270×149 containers, scaled for 1200px layout) */
/* .fm-logos__item:nth-child(1) .fm-logos__img { max-width: 175px; max-height: 77px; }  
.fm-logos__item:nth-child(2) .fm-logos__img { max-width: 150px; max-height: 77px; } 
.fm-logos__item:nth-child(3) .fm-logos__img { max-width: 107px; max-height: 107px; }
.fm-logos__item:nth-child(4) .fm-logos__img { max-width: 107px; max-height: 107px; } 
.fm-logos__item:nth-child(5) .fm-logos__img { max-width: 190px; max-height: 96px; }  */

.fm-logos__img:hover {
	opacity: 1;
}


/* ─── 12. Doctors Team ─────────────────────────────────────────────────────── */

.fm-section--doctors_team {
	background: linear-gradient(to bottom, #060c17, #000000);
}

.fm-section--doctors_team .fm-section-header {
	text-align: left;
}

.fm-doc__card {
	background: #0d1117;
	border-radius: var(--fm-radius-lg);
	overflow: hidden;
	height: 100%;
}

.fm-doc__image {
	overflow: hidden;
}

.fm-doc__image img {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	object-position: center top;
	display: block;
}

.fm-doc__image--placeholder {
	background: #1a2332;
}

/* Carousel wrapper — positions arrows at sides */
.fm-docs__carousel {
	position: relative;
}

.fm-docs__prev,
.fm-docs__next {
	position: absolute;
	top: 40%;
	transform: translateY(-50%);
	z-index: 10;
}

.fm-docs__prev { left: -24px; }
.fm-docs__next { right: -24px; }

/* Dark variant arrows */
.fm-swiper-btn--dark {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.2);
	color: #fff;
}

.fm-swiper-btn--dark:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.3);
	color: #fff;
}

.fm-swiper-btn--dark.swiper-button-disabled {
	opacity: 0;
	pointer-events: none;
}

.fm-doc__info {
	padding: 16px 20px;
}

h3.fm-doc__name {
	font-family: var(--fm-font-display);
	font-size: 32px;
	font-weight: 400;
	letter-spacing: -0.02em;
	line-height: 1.1;
	color: var(--fm-color-header-inverse) !important; /* ← add !important */
	margin: 0 0 8px;
}

.fm-doc__desc {
	font-size: var(--fm-text-md);
	line-height: 1.5;
	color: var(--fm-color-body-inverse);
	margin: 0;
}

/* Navigation tabs */
.fm-docs-nav {
	margin-top: var(--fm-gap-lg);
	overflow: visible;
}

.fm-docs-nav .swiper-wrapper {
	justify-content: center;
}

.fm-docs-nav .swiper-slide {
	width: auto;
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

.fm-docs-nav .swiper-slide:not(:last-child)::after {
	content: '';
	display: block;
	width: 1px;
	height: 16px;
	background: rgba(255, 255, 255, 0.2);
	margin-left: 0;
}

.fm-doc__nav-label {
	display: block;
	padding: 10px 20px;
	font-family: var(--fm-font-body);
	font-size: var(--fm-text-sm);
	color: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: color 0.3s ease;
	white-space: nowrap;
	text-align: center;
}

.fm-docs-nav .swiper-slide-thumb-active .fm-doc__nav-label {
	color: #ffffff;
}

/* Grid layout */
.fm-docs__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: var(--fm-gap-md);
}


/* ═══════════════════════════════════════════════════════════════════════════════
 * PHASE 4 — Remaining Sections
 * ═══════════════════════════════════════════════════════════════════════════════ */


/* ─── Patient Testimonials Slider ─────────────────────────────────────────── */

.fm-section--patient_testimonials_slider {
	border-radius: 55px 55px 0 0;
	overflow: hidden;
	position: relative;
	z-index: 1;
	margin-top: -55px;
}

.fm-pts__layout {
	display: grid;
	grid-template-columns: 38% 1fr;
	gap: var(--fm-gap-xl);
	align-items: center;
}

.fm-pts__text {
	max-width: 472px;
}

.fm-microsite .fm-pts__heading {
	font-family: var(--fm-font-display);
	font-weight: 500;
	font-size: var(--fm-text-h2);
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--fm-color-header);
	margin: 0 0 var(--fm-gap-md);
	text-transform: capitalize;
}

.fm-pts__heading mark {
	background: #000;
	color: #fff;
	padding: 2px 8px;
	border-radius: 4px;
}

.fm-pts__desc {
	font-family: var(--fm-font-body);
	font-size: var(--fm-text-lg);
	line-height: 1.4;
	color: var(--fm-color-body);
	margin: 0 0 var(--fm-gap-md);
}

.fm-pts__cta {
	margin-bottom: var(--fm-gap-lg);
}

/* Carousel arrows */
.fm-pts__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	cursor: pointer;
	color: #b8b8b8;
	padding: 8px;
	z-index: 5;
	outline: none;
	-webkit-tap-highlight-color: transparent;
}

.fm-microsite .fm-pts__nav:hover,
.fm-microsite .fm-pts__nav:active,
.fm-microsite .fm-pts__nav:focus,
.fm-microsite .fm-pts__nav:focus-visible {
	color: #b8b8b8;
	background: none;
	outline: none;
}

.fm-pts__nav--prev {
	left: -55px;
}

.fm-pts__nav--next {
	right: -55px;
}

.fm-pts__nav.swiper-button-disabled {
	opacity: 0.3;
	cursor: default;
}

/* Carousel right column */
.fm-pts__carousel {
	position: relative;
	min-width: 0;
}

.fm-pts-swiper {
	overflow: hidden;
	width: 100%;
}

.fm-pts__card {
	display: block;
	border-radius: 8px;
	overflow: hidden;
	height: 100%;
}

.fm-pts__card--video {
	position: relative;
	width: 100%;
	height: 540px;
	padding: 0;
	border: none;
	background: #1a2332;
	cursor: pointer;
}

.fm-microsite .fm-pts__card-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.fm-pts__card-placeholder {
	background: #1a2332;
}

.fm-pts__card--video::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(6, 12, 23, 0.20);
	z-index: 1;
	border-radius: 8px;
	pointer-events: none;
}

.fm-pts__card-play--center {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transform: none;
	justify-content: center;
	align-items: center;
	z-index: 2;
}

.fm-pts__card-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 120px;
	background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
	border-radius: 0 0 8px 8px;
	pointer-events: none;
}

.fm-pts__card-play {
	position: absolute;
	bottom: 20px;
	left: 20px;
	right: 20px;
	display: flex;
	align-items: center;
	gap: 12px;
	pointer-events: none;
}

.fm-pts__play-label {
	font-family: var(--fm-font-body);
	font-size: var(--fm-text-lg);
	font-weight: 500;
	color: #fff;
	letter-spacing: -0.02em;
}

/* Slide heights */
.fm-pts-swiper .swiper-slide {
	height: auto;
	transition: all 0.3s ease;
}


/* ─── 13. Candidate Quiz ──────────────────────────────────────────────────── */

/* moved to candidate_quiz.php component */


/* ─── 14. Why Choose 4M ──────────────────────────────────────────────────── */

.fm-section--why_choose_4m {
	background:
		radial-gradient(ellipse at 80% 0%, rgba(255, 255, 255, 0.08) 0%, transparent 60%),
		var(--fm-color-bg-dark);
}

.fm-why__header {
	text-align: center;
	margin-bottom: var(--fm-gap-xl);
}

.fm-microsite .fm-why__heading {
	font-family: var(--fm-font-display);
	font-weight: 500;
	font-size: var(--fm-text-h2);
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #fff;
	margin: 0;
}

.fm-why__heading mark {
	background: #fff;
	color: var(--fm-color-header);
	padding: 2px 8px;
}

.fm-why__services {
	display: flex;
	flex-direction: column;
	gap: var(--fm-gap-xl);
}

.fm-why__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--fm-gap-xl);
	align-items: center;
}

.fm-why__row--img-right .fm-why__image {
	order: 2;
}

.fm-why__row--img-right .fm-why__text {
	order: 1;
}

.fm-why__image img {
	width: 100%;
	border-radius: var(--fm-radius-lg);
	display: block;
}

.fm-microsite .fm-why__title {
	font-family: var(--fm-font-display);
	font-size: var(--fm-text-h3);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #fff !important;   /* ← force white over base rule */
	margin: 0 0 16px;
}

.fm-why__desc {
	font-family: var(--fm-font-body);
	font-weight: 500;
	font-size: 25px;
	line-height: 1.4;
	letter-spacing: -0.02em;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
}

.fm-why__cta {
	margin-top: var(--fm-gap-xl);
}

.fm-btn--outline-light {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.4);
	color: #fff;
}

.fm-btn--outline-light:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: #fff;
}


/* ─── 15. Science Behind ─────────────────────────────────────────────────── */

.fm-section--science_behind {
	background:
		linear-gradient(180deg, #0c131e 26%, transparent 100%),
		var(--fm-color-bg-main);
}

.fm-science__header {
	text-align: center;
	margin-bottom: var(--fm-gap-xl);
}

.fm-microsite .fm-science__heading {
	font-family: var(--fm-font-display);
	font-weight: 500;
	font-size: var(--fm-text-h2);
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #fff;
	margin: 0 0 16px;
}

.fm-science__heading mark {
	background: #fff;
	color: #0c131e;
	padding: 2px 8px;
}

.fm-science__sub {
	font-family: var(--fm-font-body);
	font-weight: 500;
	font-size: 18px;
	line-height: 1.4;
	letter-spacing: -0.02em;
	color: #fff;
	margin: 0;
}

.fm-science__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}

.fm-science__card {
	background: #fff;
	border-radius: 20px;
	padding: 30px 10px 10px;
	text-align: center;
	min-height: 435px;
}

.fm-science__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 117px;
	height: 117px;
	border-radius: 50%;
	background: #162b4e;
	margin: 0 auto 22px;
}

.fm-science__icon svg,
.fm-science__icon img {
	display: block;
	width: 64px;
	height: 64px;
}

.fm-microsite .fm-science__title {
	font-family: var(--fm-font-serif);
	font-style: normal;
	font-size: var(--fm-text-h4);
	font-weight: 400;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #000;
	margin: 0 0 25px;
}

.fm-science__desc {
	font-family: var(--fm-font-display);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: -0.02em;
	color: rgba(0, 0, 0, 0.6);
	margin: 0;
}


/* ─── 16. Stats Banner ───────────────────────────────────────────────────── */

.fm-section--stats_banner {
	padding: 48px 0;
}

.fm-section--stats_banner {
	overflow: visible;
	background: transparent !important;
}

.fm-stats-banner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--fm-gap-xl);
	position: relative;
	z-index: 0;
}

.fm-stats-banner::before {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	top: 15%;
	bottom: 15%;
	background: var(--fm-color-bg-main);
	z-index: -1;
}

.fm-microsite .fm-stats-banner__headline {
	font-family: var(--fm-font-display);
	font-size: var(--fm-text-h2);
	font-weight: 400;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #000;
	flex: 1;
	max-width: 900px;
}

.fm-stats-banner__headline mark {
	background: #000;
	color: #fff;
	padding: 0 4px;
	font-style: inherit;
}

.fm-stats-banner__callout {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
	text-decoration: none;
	color: #000;
	transition: opacity 0.2s;
	transform: rotate(4deg);
}

a.fm-stats-banner__callout:hover {
	opacity: 0.85;
	color: #000;
}

.fm-stats-banner__photo {
	background: #fff;
	border-radius: 12px;
	padding: 8px 8px 0;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.fm-stats-banner__img {
	width: 220px;
	height: 280px;
	border-radius: 8px;
	object-fit: cover;
	display: block;
}

.fm-stats-banner__callout-text {
	font-family: var(--fm-font-serif);
	font-size: 25px;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: -0.02em;
	text-align: center;
	max-width: 216px;
}


/* ─── 17. Location Content Blocks ────────────────────────────────────────── */

.fm-lcb__blocks {
	display: flex;
	flex-direction: column;
	gap: 120px;
}

.fm-lcb__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 100px;
	align-items: center;
}

.fm-lcb__row--img-right .fm-lcb__image {
	order: 2;
}

.fm-lcb__row--img-right .fm-lcb__content {
	order: 1;
}

/* Image column */
.fm-lcb__image {
	position: relative;
}

.fm-lcb__image img {
	width: 100%;
	aspect-ratio: 600 / 494;
	object-fit: cover;
	border-radius: 32px;
	display: block;
	background: #f7f7f7;
}

/* Content column */
.fm-microsite .fm-lcb__heading {
	font-family: var(--fm-font-display);
	font-size: var(--fm-text-h2);
	font-weight: 400;
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin: 0 0 20px;
}

.fm-lcb__text {
	font-size: var(--fm-text-lg);
	line-height: 1.5;
	color: var(--fm-color-body);
	margin-bottom: 28px;
}

.fm-lcb__text p:last-child {
	margin-bottom: 0;
}

.fm-lcb__content .fm-btn {
	margin-top: 8px;
}

/* Testimonial overlay card */
.fm-lcb__testimonial-card {
	position: absolute;
	bottom: -40px;
	right: -40px;
	width: 280px;
	background: #fff;
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	z-index: 2;
}

.fm-lcb__testimonial-stars {
	font-size: 14px;
	letter-spacing: 2px;
	color: #000;
	margin-bottom: 12px;
}

.fm-lcb__testimonial-quote {
	font-family: var(--fm-font-body);
	font-size: 13px;
	line-height: 1.5;
	color: #333;
	margin: 0 0 16px;
}

.fm-lcb__testimonial-divider {
	height: 1px;
	background: #e5e5e5;
	margin-bottom: 16px;
}

.fm-lcb__testimonial-author {
	display: flex;
	align-items: center;
	gap: 10px;
}

.fm-lcb__testimonial-avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	object-fit: cover;
}

.fm-lcb__testimonial-info {
	display: flex;
	flex-direction: column;
}

.fm-lcb__testimonial-name {
	font-family: var(--fm-font-body);
	font-size: 13px;
	font-weight: 600;
	color: #000;
}

.fm-lcb__testimonial-title {
	font-family: var(--fm-font-body);
	font-size: 11px;
	color: #888;
}


/* ─── 18. Dr. Sean Feature ───────────────────────────────────────────────── */

.fm-section--dr_sean_feature {
	position: relative;
	overflow: hidden;
}

.fm-drsean {
	position: relative;
}

/* Background watermark text — lives at section level, full width */
.fm-drsean__watermark {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	width: 100%;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
}

.fm-drsean__watermark-row {
	display: flex;
	gap: 28px;
	white-space: nowrap;
	font-family: var(--fm-font-serif);
	font-style: normal;
	font-size: 160px;
	line-height: 1.1;
	letter-spacing: -3.2px;
	color: #fff;
	opacity: 0.06;
}

.fm-drsean__watermark-row span {
	flex-shrink: 0;
}

.fm-drsean__watermark-row--offset {
	margin-left: -300px;
	margin-top: -20px;
}

/* Section header — title + badge */
.fm-drsean__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: var(--fm-gap-lg);
	margin-bottom: 48px;
	position: relative;
	z-index: 1;
}

.fm-microsite .fm-drsean__section-title {
	font-family: var(--fm-font-serif);
	font-style: normal;
	font-size: var(--fm-text-h1-serif);
	font-weight: 400;
	line-height: 1.0;
	letter-spacing: -0.02em;
	color: #fff;
	max-width: 820px;
	margin: 0;
}

.fm-drsean__badge {
	width: 194px;
	height: auto;
	flex-shrink: 0;
}

/* Frosted glass card */
.fm-drsean__card {
	display: grid;
	grid-template-columns: 392px 1fr;
	gap: 0;
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-radius: 34px;
	padding: 6px;
	position: relative;
	z-index: 1;
}

.fm-drsean__photo {
	overflow: hidden;
	border-radius: 28px;
}

.fm-drsean__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.fm-drsean__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 40px 48px;
	gap: 28px;
}

.fm-drsean__desc {
	font-family: var(--fm-font-body);
	font-size: 22px;
	line-height: 1.4;
	letter-spacing: -0.02em;
	color: #fff;
	opacity: 0.6;
	margin: 0;
}

.fm-drsean__stats {
	display: flex;
	gap: 41px;
	align-items: flex-end;
}

.fm-drsean__stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.fm-drsean__stat-icon {
	color: #fbf7f3;
	margin-bottom: 4px;
}

.fm-drsean__stat-icon svg {
	display: block;
}

.fm-drsean__stat-value {
	font-family: var(--fm-font-serif);
	font-style: normal;
	font-size: 31.5px;
	text-transform: uppercase;
	color: #fbf7f3;
	line-height: 1;
}

.fm-drsean__stat-label {
	font-family: var(--fm-font-body);
	font-size: 17.5px;
	font-weight: 500;
	color: #e69056;
	line-height: 1.28;
	margin-top: 2px;
}

.fm-drsean__tagline {
	font-family: var(--fm-font-serif);
	font-style: normal;
	font-size: 43px;
	line-height: 1.5;
	color: #fff;
	margin: 0;
}

.fm-drsean__cta {
	margin: 0;
}

.fm-drsean__cta .fm-btn--light {
	background: #fff;
	color: #000;
	border-radius: 40px;
	padding: 12px 18px;
	font-size: var(--fm-text-md);
}


/* ─── 19. Location Map ───────────────────────────────────────────────────── */

.fm-map__embed {
	border-radius: var(--fm-radius-lg);
	overflow: hidden;
	margin-bottom: var(--fm-gap-md);
}

.fm-map__embed iframe {
	display: block;
}

.fm-map__directions {
	margin-top: var(--fm-gap-md);
}


/* ─── 20. What Is an Implant ─────────────────────────────────────────────── */

.fm-section--what_is_implant {
	background: var(--fm-color-bg-main);
	overflow: visible;
}

/* Section heading — full width above two columns */
.fm-wii__section-header {
	margin-bottom: 48px;
	max-width: 810px;
}

.fm-microsite .fm-wii__section-heading {
	font-family: var(--fm-font-display);
	font-size: var(--fm-text-h2);
	font-weight: 400;
	line-height: 1.0;
	letter-spacing: -0.02em;
	color: var(--fm-color-header);
	margin: 0;
}

.fm-wii__section-heading mark {
	background: var(--fm-color-bg-dark);
	color: #fff;
	padding: 2px 6px;
	text-transform: uppercase;
	font-style: normal;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
}

/* Two-column layout */
.fm-wii__layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 100px;
	align-items: center;
}

/* Left: Patient Story Photo + Card */
.fm-wii__stories {
	position: relative;
	margin-bottom: 120px;
}

.fm-wii__photo {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: top;
	border-radius: 12px;
}

/* White testimonial card — bottom-right, overlapping the photo */
.fm-wii__card {
	position: absolute;
	right: -48px;
	bottom: -100px;
	background: #fff;
	border-radius: 28px;
	padding: 8px;
	max-width: 290px;
	z-index: 2;
}

.fm-wii__card > .fm-wii__stars,
.fm-wii__card > .fm-wii__quote,
.fm-wii__card > .fm-wii__author {
	padding: 0 28px;
}

.fm-wii__card > .fm-wii__stars {
	padding-top: 28px;
}

.fm-wii__card > .fm-wii__author {
	padding-bottom: 28px;
}

.fm-wii__stars {
	display: flex;
	gap: 2px;
	margin-bottom: 14px;
}

.fm-wii__stars .fm-star {
	font-size: 16px;
	color: #f5a623;
}

.fm-wii__quote {
	font-family: var(--fm-font-body);
	font-weight: 500;
	font-size: 17px;
	line-height: 1.47;
	color: var(--fm-color-header);
	margin: 0 0 14px;
}

.fm-wii__author {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-top: 24px;
}

.fm-wii__avatar {
	width: 33px;
	height: 33px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.fm-wii__author-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.fm-wii__name {
	font-family: var(--fm-font-body);
	font-weight: 500;
	font-size: 16px;
	line-height: 1;
	color: var(--fm-color-header);
}

.fm-wii__subtitle {
	font-family: var(--fm-font-body);
	font-weight: 500;
	font-size: 12px;
	line-height: 1.3;
	color: var(--fm-color-header);
	opacity: 0.6;
}

/* Right: Content column */
.fm-wii__content-col {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.fm-microsite .fm-wii__heading {
	font-family: var(--fm-font-serif);
	font-size: var(--fm-text-h1-serif);
	font-weight: 400;
	line-height: 1.0;
	letter-spacing: -0.02em;
	color: var(--fm-color-header);
	margin: 0 0 35px;
}

.fm-wii__body.fm-prose {
	font-family: var(--fm-font-body);
	font-weight: 500;
	font-size: 18px;
	line-height: 1.2;
	color: var(--fm-color-header);
}

.fm-wii__body.fm-prose p {
	margin: 0 0 21px;
}

.fm-wii__body.fm-prose p:last-child {
	margin-bottom: 0;
}


/* ─── 21. 4M Protocol ────────────────────────────────────────────────────── */

.fm-section--protocol_4m {
	background: #fff;
}

.fm-proto__layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: stretch;
}

.fm-proto__image {
	position: relative;
	overflow: hidden;
}

.fm-proto__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Right column: heading + description + subheading + features */
.fm-proto__content {
	padding-top: 4px;
}

.fm-microsite .fm-proto__heading {
	font-family: var(--fm-font-display);
	font-size: var(--fm-text-h2);
	font-weight: 400;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--fm-color-header);
	margin: 0 0 20px;
}

.fm-proto__desc {
	font-family: var(--fm-font-body);
	font-size: var(--fm-text-md);
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: -0.02em;
	color: var(--fm-color-body);
	margin: 0 0 32px;
	max-width: 652px;
}

.fm-microsite .fm-proto__subheading {
	font-size: 36px;
	font-weight: 400;
	line-height: 1.0;
	letter-spacing: -0.02em;
	color: var(--fm-color-header);
	margin: 0 0 32px;
}

.fm-proto__features {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.fm-proto__card {
	display: flex;
	gap: 22px;
	align-items: flex-start;
}

.fm-proto__icon {
	flex-shrink: 0;
	width: 55px;
	height: 55px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--fm-color-bg-dark-feint);
	border: none;
	border-radius: 50%;
	color: #fff;
}

.fm-microsite .fm-proto__card-title {
	font-family: var(--fm-font-serif);
	font-size: var(--fm-text-h4);
	font-weight: 400;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #000;
	margin: 0 0 15px;
}

.fm-proto__card-desc {
	font-family: var(--fm-font-body);
	font-size: var(--fm-text-lg);
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: -0.02em;
	color: #646464;
	margin: 0;
}