/**
 * Alpha Dental Aesthetic — CareDent visual clone
 * Brand: Alpha Dental · Look: CareDent (caredent-1…9)
 */

/* ===== TOKENS ===== */
:root {
	--font: 'Inter Display', 'Inter', system-ui, sans-serif;
	--blue: #4A80F5;
	--blue-dark: #3B6FF5;
	--blue-soft: #E8F0FE;
	--blue-soft-2: #F0F5FF;
	--ink: #1A1F2C;
	--muted: #6B7285;
	--line: #E6EAF2;
	--bg: #FFFFFF;
	--bg-tint: #F7F9FC;
	--footer: #32363E;
	--container: min(1520px, calc(100% - 4rem));
	--radius: 24px;
	--radius-lg: 40px;
	--radius-pill: 999px;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--shadow: 0 10px 40px rgba(26, 31, 44, 0.08);
	--shadow-lg: 0 24px 60px rgba(26, 31, 44, 0.12);
	--focus: 0 0 0 3px rgba(74, 128, 245, 0.35);
}

/* ===== RESET / BASE ===== */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font);
	font-optical-sizing: auto;
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--ink);
	background-color: var(--bg);
	background-image:
		radial-gradient(ellipse 70% 50% at 8% -5%, rgba(74, 128, 245, 0.12), transparent 55%),
		radial-gradient(ellipse 55% 45% at 92% 8%, rgba(74, 128, 245, 0.08), transparent 50%),
		radial-gradient(ellipse 40% 30% at 50% 100%, rgba(232, 240, 254, 0.7), transparent 60%);
	background-attachment: fixed;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img,
svg,
video,
iframe {
	max-width: 100%;
	height: auto;
	display: block;
}

iframe {
	border: 0;
	width: 100%;
	height: 100%;
}

a {
	color: var(--blue);
	text-decoration: none;
	transition: color 0.25s var(--ease), opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

a:hover {
	color: var(--blue-dark);
}

:focus-visible {
	outline: none;
	box-shadow: var(--focus);
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	font-family: var(--font);
	font-optical-sizing: auto;
	letter-spacing: -0.035em;
	line-height: 1.15;
	color: var(--ink);
	font-weight: 650;
}

p {
	margin: 0;
}

ul, ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

button {
	font-family: inherit;
	cursor: pointer;
	border: 0;
	background: none;
}

input,
textarea {
	font-family: inherit;
	font-size: 1rem;
}

.site-main {
	overflow-x: clip;
}

/* ===== SKIP LINK ===== */
.skip-link {
	position: absolute;
	left: 1rem;
	top: -100px;
	z-index: 10000;
	padding: 0.75rem 1.25rem;
	background: var(--ink);
	color: #fff;
	border-radius: var(--radius-pill);
	font-size: 0.875rem;
	font-weight: 600;
	transition: top 0.2s var(--ease);
}

.skip-link:focus {
	top: 1rem;
	color: #fff;
	box-shadow: var(--focus);
}

/* ===== REVEAL / MOTION ===== */
.reveal {
	opacity: 0;
	filter: blur(12px);
	transform: translateY(24px);
	transition:
		opacity 0.8s var(--ease),
		filter 0.8s var(--ease),
		transform 0.8s var(--ease);
	will-change: opacity, filter, transform;
}

.reveal.is-visible {
	opacity: 1;
	filter: blur(0);
	transform: translateY(0);
}

.hover-lift {
	transition:
		transform 0.45s var(--ease),
		box-shadow 0.45s var(--ease);
}

.hover-lift:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
}

@keyframes float-y {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

.float-y {
	animation: float-y 4.5s var(--ease) infinite;
	animation-delay: var(--float-delay, 0s);
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }

	.reveal {
		opacity: 1;
		filter: none;
		transform: none;
		transition: none;
	}

	.float-y { animation: none; }

	.hover-lift:hover {
		transform: none;
	}
}

/* ===== BUTTONS ===== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	padding: 0.9rem 1.5rem;
	border-radius: var(--radius-pill);
	font-size: 0.9375rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	line-height: 1.2;
	border: 1.5px solid transparent;
	cursor: pointer;
	white-space: nowrap;
	transition:
		background 0.3s var(--ease),
		color 0.3s var(--ease),
		border-color 0.3s var(--ease),
		box-shadow 0.3s var(--ease),
		transform 0.3s var(--ease);
}

.btn:hover {
	transform: translateY(-2px);
}

.btn--primary {
	background: var(--blue);
	color: #fff;
	box-shadow: 0 8px 24px rgba(74, 128, 245, 0.35);
}

.btn--primary:hover {
	background: var(--blue-dark);
	color: #fff;
	box-shadow: 0 12px 32px rgba(74, 128, 245, 0.45);
}

.btn--ghost {
	background: transparent;
	color: var(--ink);
	border-color: var(--line);
}

.btn--ghost:hover {
	border-color: var(--blue);
	color: var(--blue);
	background: var(--blue-soft-2);
}

.btn--soft {
	background: var(--blue-soft);
	color: var(--blue);
}

.btn--soft:hover {
	background: var(--blue);
	color: #fff;
}

.btn--white {
	background: #fff;
	color: var(--ink);
	box-shadow: var(--shadow);
}

.btn--white:hover {
	color: var(--blue);
	box-shadow: var(--shadow-lg);
}

.btn--lg {
	padding: 1.1rem 2rem;
	font-size: 1rem;
}

.btn__chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.75rem;
	height: 1.75rem;
	border-radius: 50%;
	background: var(--blue-soft);
	color: var(--blue);
	font-size: 0.85rem;
	flex-shrink: 0;
	transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.btn--soft:hover .btn__chip,
.btn--white:hover .btn__chip {
	background: #fff;
	color: var(--blue);
}

.btn--primary .btn__chip {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
}

/* ===== ICON BTN ===== */
.icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	border: 1.5px solid var(--line);
	background: #fff;
	color: var(--ink);
	font-size: 1.35rem;
	line-height: 1;
	transition:
		background 0.3s var(--ease),
		border-color 0.3s var(--ease),
		color 0.3s var(--ease),
		box-shadow 0.3s var(--ease);
}

.icon-btn:hover {
	background: var(--blue);
	border-color: var(--blue);
	color: #fff;
	box-shadow: 0 8px 24px rgba(74, 128, 245, 0.3);
}

/* ===== TYPOGRAPHY HELPERS ===== */
.eyebrow {
	display: inline-block;
	margin: 0 0 0.75rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--blue);
	line-height: 1.4;
}

.section-title {
	font-size: clamp(2rem, 4.2vw, 3.25rem);
	font-weight: 700;
	letter-spacing: -0.04em;
	line-height: 1.12;
	color: var(--ink);
	max-width: 18ch;
}

.section-title--center {
	text-align: center;
	margin-inline: auto;
	max-width: 22ch;
}

.accent {
	color: var(--blue);
}

/* ===== BRAND ===== */
.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--ink);
	text-decoration: none;
}

.brand:hover {
	color: var(--ink);
	opacity: 0.9;
}

.brand__icon {
	display: flex;
	flex-shrink: 0;
	width: 40px;
	height: 40px;
}

.brand__icon svg {
	width: 100%;
	height: 100%;
}

.brand__text {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
	min-width: 0;
}

.brand__logo-img {
	height: 48px;
	width: auto;
	object-fit: contain;
}

.brand__name {
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.2;
	color: inherit;
}

.brand__tag {
	font-size: 0.625rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
	line-height: 1.2;
}

.brand--light {
	color: #fff;
}

.brand--light .brand__name {
	color: #fff;
}

.brand--light .brand__tag {
	color: rgba(255, 255, 255, 0.55);
}

/* ===== SITE HEADER ===== */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	padding: 1rem 0 0;
	background: transparent;
}

.site-header__bar {
	position: relative;
	width: var(--container);
	margin-inline: auto;
	padding: 0.55rem 0.7rem 0.55rem 1.15rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(255, 255, 255, 0.85);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.9) inset,
		0 10px 40px rgba(26, 31, 44, 0.06);
	backdrop-filter: blur(18px) saturate(1.35);
	-webkit-backdrop-filter: blur(18px) saturate(1.35);
	transition:
		background 0.35s var(--ease),
		box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled .site-header__bar {
	background: rgba(255, 255, 255, 0.9);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.95) inset,
		0 14px 44px rgba(26, 31, 44, 0.1);
}

.site-header__inner {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 1rem;
}

.site-header__nav {
	display: none;
}

.primary-menu {
	display: flex;
	align-items: center;
	gap: 0.15rem;
}

.primary-menu a {
	position: relative;
	display: inline-flex;
	align-items: center;
	padding: 0.55rem 0.9rem;
	font-size: 0.92rem;
	font-weight: 550;
	color: var(--ink);
	letter-spacing: -0.015em;
	text-decoration: none;
	transition: color 0.25s var(--ease);
}

.primary-menu a::after {
	content: '';
	position: absolute;
	left: 0.9rem;
	right: 0.9rem;
	bottom: 0.3rem;
	height: 1.5px;
	border-radius: 2px;
	background: var(--blue);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.28s var(--ease);
	opacity: 0.9;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a {
	color: var(--blue);
	background: transparent;
}

.primary-menu a:hover::after,
.primary-menu .current-menu-item > a::after,
.primary-menu .current_page_item > a::after {
	transform: scaleX(1);
}

.primary-menu .chev {
	font-size: 0.65rem;
	opacity: 0.5;
}

.site-header__actions {
	display: none;
	align-items: center;
	gap: 0.75rem;
}

.site-header__phone {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.45rem 0.85rem 0.45rem 0.5rem;
	border-radius: var(--radius-pill);
	color: var(--ink);
	font-size: 0.875rem;
	font-weight: 550;
	letter-spacing: -0.01em;
	text-decoration: none;
	background: transparent;
	border: 0;
	transition: color 0.25s var(--ease);
}

.site-header__phone:hover {
	color: var(--blue);
}

.site-header__phone-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.15rem;
	height: 2.15rem;
	border-radius: 50%;
	background: var(--blue-soft);
	color: var(--blue);
	flex-shrink: 0;
}

.site-header__cta {
	padding: 0.8rem 1.35rem;
	font-size: 0.9rem;
	box-shadow: 0 8px 22px rgba(74, 128, 245, 0.28);
}

.site-header__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	border-radius: 50%;
	border: 0;
	background: var(--blue-soft);
	color: var(--ink);
	justify-self: end;
	transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.site-header__toggle:hover {
	background: #dce8fd;
	color: var(--blue);
}

.site-header__toggle-box {
	position: relative;
	display: block;
	width: 1.05rem;
	height: 0.72rem;
}

.site-header__toggle-box span {
	position: absolute;
	left: 0;
	display: block;
	width: 100%;
	height: 1.5px;
	border-radius: 999px;
	background: currentColor;
	transition:
		transform 0.3s var(--ease),
		opacity 0.25s var(--ease),
		top 0.3s var(--ease),
		width 0.3s var(--ease),
		left 0.3s var(--ease);
}

.site-header__toggle-box span:nth-child(1) {
	top: 0;
}

.site-header__toggle-box span:nth-child(2) {
	top: 50%;
	transform: translateY(-50%);
	width: 70%;
	left: 15%;
}

.site-header__toggle-box span:nth-child(3) {
	bottom: 0;
	top: auto;
}

.site-header.is-open .site-header__toggle {
	background: var(--blue);
	color: #fff;
}

.site-header.is-open .site-header__toggle-box span:nth-child(1) {
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}

.site-header.is-open .site-header__toggle-box span:nth-child(2) {
	opacity: 0;
	transform: translateY(-50%) scaleX(0);
}

.site-header.is-open .site-header__toggle-box span:nth-child(3) {
	top: 50%;
	bottom: auto;
	transform: translateY(-50%) rotate(-45deg);
}

/* Overlay panel — does not push page content */
.site-header__mobile {
	position: absolute;
	top: calc(100% + 0.55rem);
	left: 0;
	right: 0;
	z-index: 20;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	padding: 1rem;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(255, 255, 255, 0.9);
	box-shadow: 0 18px 50px rgba(26, 31, 44, 0.12);
	backdrop-filter: blur(18px) saturate(1.3);
	-webkit-backdrop-filter: blur(18px) saturate(1.3);
}

.site-header__mobile[hidden] {
	display: none !important;
}

.primary-menu--mobile {
	flex-direction: column;
	align-items: stretch;
	gap: 0.15rem;
}

.primary-menu--mobile a {
	padding: 0.85rem 0.9rem;
	border-radius: 14px;
}

.primary-menu--mobile a::after {
	display: none;
}

.primary-menu--mobile a:hover {
	background: var(--blue-soft-2);
}

.site-header__phone--mobile {
	justify-content: center;
	padding: 0.85rem 1rem;
	background: var(--bg-tint);
	border-radius: 16px;
}

.site-header__mobile .btn {
	width: 100%;
}

@media (min-width: 1024px) {
	.site-header {
		padding: 1.15rem 0 0;
	}

	.site-header__bar {
		padding: 0.55rem 0.75rem 0.55rem 1.35rem;
	}

	/* Equal side columns → nav sits on the true visual center */
	.site-header__inner {
		grid-template-columns: 1fr auto 1fr;
		gap: 1rem;
	}

	.site-header__nav {
		display: flex;
		justify-content: center;
		justify-self: center;
	}

	.site-header__actions {
		display: flex;
		justify-self: end;
	}

	.brand {
		justify-self: start;
	}

	.site-header__toggle,
	.site-header__mobile {
		display: none !important;
	}
}

@media (max-width: 1023px) {
	.site-header__bar {
		border-radius: 24px;
		padding: 0.6rem 0.75rem 0.6rem 1rem;
	}
}

/* ===== HERO ===== */
.hero {
	position: relative;
	padding: clamp(2.5rem, 6vw, 5.5rem) 0 clamp(3.5rem, 8vw, 7rem);
	overflow: hidden;
}

.hero__glow {
	position: absolute;
	inset: -10% 20% auto;
	height: 60%;
	background: radial-gradient(ellipse at center, rgba(74, 128, 245, 0.14), transparent 70%);
	pointer-events: none;
	z-index: 0;
}

.hero__inner {
	position: relative;
	z-index: 1;
	width: var(--container);
	margin-inline: auto;
	display: grid;
	gap: 3rem;
	align-items: center;
}

.hero__content {
	text-align: center;
}

.hero__title {
	font-size: clamp(2.6rem, 7vw, 5.75rem);
	font-weight: 700;
	letter-spacing: -0.045em;
	line-height: 1.05;
	max-width: 14ch;
	margin-inline: auto;
	margin-bottom: 1.35rem;
}

.hero__subtitle {
	font-size: clamp(1.05rem, 1.6vw, 1.3rem);
	color: var(--muted);
	max-width: 38ch;
	line-height: 1.7;
	margin-inline: auto;
	margin-bottom: 1.5rem;
}

.hero__lead {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--ink);
	margin-bottom: 1.25rem;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 1rem 1.25rem;
}

.hero__visual {
	position: relative;
	min-height: 360px;
	display: flex;
	align-items: center;
	justify-content: center;
	isolation: isolate;
}

.hero__main {
	position: relative;
	z-index: 1;
	width: min(100%, 520px);
	height: auto;
	object-fit: contain;
	/* hero1 is rendered on black — blend out the black plate on light bg */
	mix-blend-mode: lighten;
	filter: drop-shadow(0 28px 60px rgba(74, 128, 245, 0.18));
	pointer-events: none;
	user-select: none;
}

.hero__orb {
	position: absolute;
	z-index: 3;
	width: clamp(4.5rem, 12vw, 7rem);
	height: auto;
	object-fit: contain;
	mix-blend-mode: lighten;
	filter: drop-shadow(0 12px 28px rgba(26, 31, 44, 0.12));
	pointer-events: none;
	user-select: none;
	border-radius: 50%;
}

.hero__orb--f {
	top: 6%;
	right: 4%;
	width: clamp(5rem, 13vw, 7.5rem);
}

.hero__orb--ca {
	top: 28%;
	left: 0;
	width: clamp(5.25rem, 14vw, 8rem);
}

.hero__orb--p {
	bottom: 14%;
	left: 18%;
	width: clamp(3.75rem, 10vw, 5.5rem);
}

@media (min-width: 900px) {
	.hero__inner {
		grid-template-columns: 1.05fr 0.95fr;
		gap: 2rem 3rem;
	}

	.hero__content {
		text-align: left;
	}

	.hero__title,
	.hero__subtitle {
		margin-inline: 0;
	}

	.hero__actions {
		justify-content: flex-start;
	}

	.hero__visual {
		min-height: 620px;
	}

	.hero__main {
		width: min(100%, 680px);
	}
}

@media (max-width: 899px) {
	.hero__orb--f {
		right: 2%;
		top: 2%;
	}

	.hero__orb--ca {
		left: -2%;
		top: 22%;
	}

	.hero__orb--p {
		left: 12%;
		bottom: 8%;
	}
}

/* ===== SERVICES ===== */
.services {
	padding: clamp(3.5rem, 8vw, 6.5rem) 0;
	overflow: hidden;
}

.services__inner {
	width: var(--container);
	margin-inline: auto;
}

.services__head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
}

.services__intro .section-title {
	margin: 0;
}

.services__controls {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	flex-shrink: 0;
}

.services__pager {
	display: flex;
	align-items: center;
	gap: 0.15rem;
	margin-right: 0.35rem;
	font-size: 0.875rem;
	font-weight: 650;
	letter-spacing: -0.02em;
	color: var(--muted);
}

.services__page {
	appearance: none;
	border: 0;
	background: transparent;
	padding: 0.35rem 0.3rem;
	margin: 0;
	font: inherit;
	font-weight: 650;
	letter-spacing: -0.02em;
	color: inherit;
	opacity: 0.4;
	cursor: pointer;
	line-height: 1;
	transition: opacity 0.25s var(--ease), color 0.25s var(--ease);
}

.services__page:hover {
	opacity: 0.75;
	color: var(--ink);
}

.services__page.is-active {
	opacity: 1;
	color: var(--blue);
	cursor: default;
}

/* CareDent-style progress dash after the active page index */
.services__page.is-active::after {
	content: '';
	display: inline-block;
	width: 2.75rem;
	height: 1.5px;
	margin: 0 0.45rem 0 0.55rem;
	vertical-align: middle;
	background: var(--blue);
	border-radius: 2px;
	opacity: 0.85;
}

.services__page.is-active:last-child::after {
	display: none;
}

.services__track-wrap {
	/* Bleed carousel from container left edge to the right viewport edge */
	width: calc(100% + max(0px, (100vw - 100%) / 2));
	max-width: none;
}

.services__track {
	display: flex;
	gap: 1.35rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-padding-inline: 0;
	padding-bottom: 1.25rem;
	padding-right: 2rem;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	overscroll-behavior-x: contain;
}

.services__track::-webkit-scrollbar {
	display: none;
}

.service-card {
	flex: 0 0 min(90vw, 540px);
	scroll-snap-align: start;
	display: grid;
	grid-template-columns: 1fr;
	background: var(--blue-soft-2);
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid rgba(74, 128, 245, 0.07);
	min-height: 360px;
	box-shadow: 0 8px 28px rgba(26, 31, 44, 0.04);
}

.service-card__body {
	display: flex;
	flex-direction: column;
	padding: 1.85rem 1.6rem 1.75rem;
	gap: 0.7rem;
	min-width: 0;
}

.service-card__num {
	font-size: 0.8125rem;
	font-weight: 700;
	color: var(--blue);
	letter-spacing: 0.06em;
}

.service-card__title {
	font-size: clamp(1.4rem, 2.4vw, 1.85rem);
	font-weight: 700;
	letter-spacing: -0.035em;
	line-height: 1.15;
}

.service-card__text {
	font-size: 0.95rem;
	color: var(--muted);
	line-height: 1.65;
	flex: 1;
	max-width: 28ch;
}

.service-card__body .btn {
	align-self: flex-start;
	margin-top: 0.65rem;
	padding: 0.7rem 0.85rem 0.7rem 1.25rem;
}

.service-card__media {
	position: relative;
	min-height: 220px;
	overflow: hidden;
	background: var(--blue-soft);
}

.service-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	min-height: 220px;
	transition: transform 0.6s var(--ease);
}

.service-card:hover .service-card__media img {
	transform: scale(1.04);
}

@media (min-width: 640px) {
	.service-card {
		flex: 0 0 min(72vw, 640px);
		grid-template-columns: 1fr 1fr;
		min-height: 380px;
	}

	.service-card__body {
		padding: 2.25rem 2rem 2.1rem;
		justify-content: center;
	}

	.service-card__media {
		min-height: 100%;
	}

	.service-card__media img {
		position: absolute;
		inset: 0;
		min-height: 100%;
	}
}

@media (min-width: 1100px) {
	.service-card {
		flex: 0 0 680px;
		min-height: 400px;
	}

	.service-card__body {
		padding: 2.5rem 2.25rem;
	}

	.service-card__text {
		font-size: 1rem;
	}
}

@media (max-width: 639px) {
	.services__page.is-active::after {
		width: 1.5rem;
		margin-inline: 0.25rem 0.35rem;
	}
}

/* ===== IMPLANTS ===== */
.implants {
	padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.implants__inner {
	width: var(--container);
	margin-inline: auto;
	display: grid;
	gap: 3rem;
	align-items: center;
}

.implants__visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.15rem;
	min-height: 360px;
}

.implants__pins {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	z-index: 2;
	margin: 0;
	padding: 0;
	list-style: none;
}

.implants__pin {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.7rem 1rem;
	background: #fff;
	border-radius: var(--radius-pill);
	border: 1px solid rgba(26, 31, 44, 0.08);
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--ink);
	white-space: nowrap;
}

.implants__pin-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background: var(--blue-soft);
	color: var(--blue);
	flex-shrink: 0;
}

.implants__card {
	position: relative;
	margin: 0;
	width: min(100%, 300px);
	aspect-ratio: 3 / 4;
	background: linear-gradient(165deg, #F8FAFD 0%, #EEF3FA 100%);
	border-radius: var(--radius-lg);
	border: 1px solid rgba(26, 31, 44, 0.06);
	overflow: hidden;
}

.implants__card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.implants__content .section-title {
	margin-bottom: 1.15rem;
	max-width: 16ch;
}

.implants__text {
	color: var(--muted);
	font-size: 1.05rem;
	line-height: 1.7;
	max-width: 42ch;
	margin-bottom: 1.5rem;
}

.implants__list {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	margin-bottom: 2rem;
}

.implants__list li {
	position: relative;
	padding-left: 2rem;
	font-size: 1rem;
	font-weight: 550;
	color: var(--ink);
	line-height: 1.45;
}

.implants__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.2rem;
	width: 1.25rem;
	height: 1.25rem;
	border-radius: 50%;
	background: var(--blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8.5l3 3 6-6.5' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 0.7rem no-repeat;
}

@media (min-width: 900px) {
	.implants__inner {
		grid-template-columns: 0.95fr 1.05fr;
		gap: 4rem;
	}

	.implants__visual {
		min-height: 480px;
		justify-content: flex-start;
		padding-left: 0.5rem;
	}

	.implants__card {
		width: 320px;
	}
}

@media (max-width: 640px) {
	.implants__visual {
		flex-direction: column-reverse;
		gap: 1.25rem;
	}

	.implants__pins {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
	}
}

/* ===== WHY ===== */
.why {
	padding: clamp(3.5rem, 8vw, 6.5rem) 0;
	background: linear-gradient(180deg, transparent 0%, var(--bg-tint) 30%, var(--bg-tint) 70%, transparent 100%);
}

.why__inner {
	width: var(--container);
	margin-inline: auto;
}

.why__head {
	display: grid;
	gap: 1.25rem;
	margin-bottom: 2.5rem;
	align-items: end;
}

.why__intro {
	color: var(--muted);
	font-size: 1.05rem;
	line-height: 1.7;
	max-width: 42ch;
}

.why__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

.why-card {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	padding: 1.75rem 1.5rem;
	background: #fff;
	border-radius: var(--radius);
	border: 1px solid var(--line);
	box-shadow: 0 4px 20px rgba(26, 31, 44, 0.04);
	min-height: 280px;
}

.why-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 14px;
	background: var(--blue-soft);
	color: var(--blue);
	font-size: 1.15rem;
	margin-bottom: 0.25rem;
}

.why-card__title {
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: -0.03em;
	transition: color 0.3s var(--ease);
}

.why-card__text {
	font-size: 0.95rem;
	color: var(--muted);
	line-height: 1.65;
	flex: 1;
}

.why-card .btn {
	align-self: flex-start;
	margin-top: 0.5rem;
}

.why-card.is-active {
	border-color: transparent;
	box-shadow: var(--shadow-lg);
	background: #fff;
}

.why-card.is-active .why-card__title {
	color: var(--blue);
}

.why-card.is-active .why-card__icon {
	background: var(--blue);
	color: #fff;
}

.why__footer {
	margin-top: 2.5rem;
	text-align: center;
	color: var(--muted);
	font-size: 1rem;
	max-width: 54ch;
	margin-inline: auto;
	line-height: 1.7;
}

@media (min-width: 640px) {
	.why__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (min-width: 900px) {
	.why__head {
		grid-template-columns: 1fr 1fr;
		gap: 3rem;
	}

	.why__grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.why-card {
		padding: 2rem 1.65rem;
	}
}

/* ===== VIDEO ===== */
.video {
	padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.video__inner {
	width: var(--container);
	margin-inline: auto;
}

.video__head {
	text-align: center;
	margin-bottom: 2.5rem;
}

.video__stage {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: visible;
	max-width: 1100px;
	margin-inline: auto;
}

.video__poster {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
}

.video__play {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 4;
	width: 5rem;
	height: 5rem;
	border-radius: 50%;
	background: #fff;
	color: var(--blue);
	font-size: 1.25rem;
	box-shadow: var(--shadow-lg);
	display: flex;
	align-items: center;
	justify-content: center;
	transition:
		transform 0.35s var(--ease),
		background 0.35s var(--ease),
		color 0.35s var(--ease),
		box-shadow 0.35s var(--ease);
}

.video__play:hover {
	background: var(--blue);
	color: #fff;
	transform: translate(-50%, -50%) scale(1.08);
	box-shadow: 0 16px 40px rgba(74, 128, 245, 0.4);
}

.video__widget {
	position: absolute;
	z-index: 5;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border: 1px solid rgba(255, 255, 255, 0.95);
	box-shadow: var(--shadow);
	border-radius: var(--radius);
}

.video__widget--clients {
	left: -0.5rem;
	bottom: 12%;
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 0.9rem 1.15rem;
}

.video__widget--clients strong {
	display: block;
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.2;
	color: var(--ink);
}

.video__widget--clients span {
	font-size: 0.75rem;
	color: var(--muted);
	font-weight: 500;
}

.video__avatars {
	display: flex;
}

.video__avatars span {
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	border: 2px solid #fff;
	margin-left: -0.55rem;
	background: linear-gradient(135deg, #A8C5FF, #4A80F5);
}

.video__avatars span:first-child {
	margin-left: 0;
	background: linear-gradient(135deg, #C8D9FF, #6B9BFF);
}

.video__avatars span:nth-child(2) {
	background: linear-gradient(135deg, #9BB8F5, #3B6FF5);
}

.video__avatars span:nth-child(3) {
	background: linear-gradient(135deg, #D6E4FF, #5A8CF5);
}

.video__avatars span:nth-child(4) {
	background: linear-gradient(135deg, #B4CCFF, #4A80F5);
}

.video__widget--badge {
	top: 8%;
	right: 6%;
	width: 4.25rem;
	height: 4.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	padding: 0;
}

.video__badge-icon {
	font-size: 1.75rem;
	line-height: 1;
}

.video__widget--doctor {
	right: -0.5rem;
	bottom: 8%;
	display: grid;
	grid-template-columns: auto 1fr;
	grid-template-rows: auto auto;
	column-gap: 0.75rem;
	row-gap: 0.1rem;
	align-items: center;
	padding: 0.75rem 1.1rem 0.75rem 0.75rem;
	min-width: 200px;
}

.video__widget--doctor img {
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	object-fit: cover;
	grid-row: 1 / 3;
}

.video__widget--doctor strong {
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--ink);
	grid-column: 2;
}

.video__widget--doctor > span:last-child {
	font-size: 0.75rem;
	color: var(--muted);
	grid-column: 2;
}

.video__online {
	position: absolute;
	left: 3rem;
	top: 0.75rem;
	width: 0.65rem;
	height: 0.65rem;
	border-radius: 50%;
	background: #22C55E;
	border: 2px solid #fff;
	grid-column: unset;
}

@media (max-width: 700px) {
	.video__widget--clients {
		left: 0.75rem;
		bottom: -1.25rem;
		scale: 0.9;
		transform-origin: left bottom;
	}

	.video__widget--doctor {
		right: 0.75rem;
		bottom: -1.5rem;
		scale: 0.9;
		transform-origin: right bottom;
	}

	.video__widget--badge {
		top: auto;
		bottom: 55%;
		right: 1rem;
		width: 3.25rem;
		height: 3.25rem;
	}

	.video__stage {
		margin-bottom: 3rem;
	}

	.video__play {
		width: 4rem;
		height: 4rem;
	}
}

@media (min-width: 701px) {
	.video__widget--clients {
		left: -1.5rem;
	}

	.video__widget--doctor {
		right: -1.5rem;
	}
}

/* ===== TEAM ===== */
.team {
	padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.team__inner {
	width: var(--container);
	margin-inline: auto;
	display: grid;
	gap: 3rem;
	align-items: center;
}

.team__content .section-title {
	margin-bottom: 1.15rem;
}

.team__text {
	color: var(--muted);
	font-size: 1.05rem;
	line-height: 1.75;
	max-width: 38ch;
	margin-bottom: 1.75rem;
}

.team__interview {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--ink);
	font-size: 0.95rem;
	font-weight: 550;
	letter-spacing: -0.01em;
	text-decoration: none;
}

.team__interview:hover {
	color: var(--blue);
}

.team__interview-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	border: 1.5px solid var(--line);
	background: #fff;
	color: var(--blue);
	flex-shrink: 0;
}

.team__gallery {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem;
}

.team-member {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	min-width: 0;
}

.team-member__photo {
	margin: 0;
	aspect-ratio: 4 / 5;
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--bg-tint);
	border: 1px solid rgba(26, 31, 44, 0.06);
}

.team-member__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}

.team-member__meta {
	padding-inline: 0.15rem;
}

.team-member__name {
	margin: 0 0 0.3rem;
	font-size: clamp(1.05rem, 1.6vw, 1.25rem);
	font-weight: 650;
	letter-spacing: -0.025em;
	line-height: 1.25;
	color: var(--ink);
}

.team-member__role {
	margin: 0;
	font-size: 0.9rem;
	color: var(--muted);
	letter-spacing: -0.01em;
}

@media (min-width: 900px) {
	.team__inner {
		grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
		gap: 4.5rem;
		align-items: center;
	}

	.team__gallery {
		gap: 1.75rem;
	}

	.team-member__photo {
		aspect-ratio: 3 / 4;
	}
}

@media (max-width: 560px) {
	.team__gallery {
		grid-template-columns: 1fr;
		max-width: 22rem;
		margin-inline: auto;
	}

	.team__content {
		text-align: center;
	}

	.team__text {
		margin-inline: auto;
	}

	.team__interview {
		justify-content: center;
	}
}

/* ===== CONTACT ===== */
.contact {
	padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(4rem, 9vw, 7rem);
}

.contact__inner {
	width: var(--container);
	margin-inline: auto;
}

.contact__inner > .eyebrow {
	margin-bottom: 0.5rem;
}

.contact__inner > .section-title {
	margin-bottom: 2.25rem;
	max-width: 16ch;
}

.contact__grid {
	display: grid;
	gap: 1.5rem;
}

.contact__info,
.contact__map {
	background: var(--bg-tint);
	border-radius: var(--radius-lg);
	border: 1px solid var(--line);
	overflow: hidden;
}

.contact__info {
	padding: 1.75rem 1.5rem;
}

.contact__info ul {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 1.75rem;
	padding-bottom: 1.75rem;
	border-bottom: 1px solid var(--line);
}

.contact__info li {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.contact__info strong {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted);
}

.contact__info a,
.contact__info span {
	font-size: 1.05rem;
	font-weight: 550;
	color: var(--ink);
	letter-spacing: -0.01em;
}

.contact__info a:hover {
	color: var(--blue);
}

.contact__form {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

.contact__form input,
.contact__form textarea {
	width: 100%;
	padding: 0.95rem 1.15rem;
	border: 1.5px solid var(--line);
	border-radius: 16px;
	background: #fff;
	color: var(--ink);
	transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
	resize: vertical;
}

.contact__form input:focus,
.contact__form textarea:focus {
	outline: none;
	border-color: var(--blue);
	box-shadow: var(--focus);
}

.contact__form input::placeholder,
.contact__form textarea::placeholder {
	color: var(--muted);
	opacity: 0.7;
}

.contact__form .btn {
	align-self: flex-start;
	margin-top: 0.35rem;
}

.contact__ok {
	padding: 0.85rem 1rem;
	background: #ECFDF5;
	color: #047857;
	border-radius: 14px;
	font-size: 0.9rem;
	font-weight: 600;
}

.contact__map {
	min-height: 360px;
}

.contact__map iframe {
	min-height: 360px;
	border-radius: var(--radius-lg);
}

@media (min-width: 900px) {
	.contact__grid {
		grid-template-columns: 1fr 1.1fr;
		gap: 1.75rem;
		align-items: stretch;
	}

	.contact__info {
		padding: 2.25rem 2rem;
	}

	.contact__map,
	.contact__map iframe {
		min-height: 100%;
		height: 100%;
	}
}

/* ===== FOOTER ===== */
.site-footer {
	position: relative;
	background: var(--footer);
	color: rgba(255, 255, 255, 0.75);
	padding: 0 0 3.5rem;
	margin-top: 2rem;
}

.site-footer__sheet {
	height: 3rem;
	background: var(--bg);
	border-radius: 0 0 var(--radius-lg) var(--radius-lg);
	margin-bottom: 3.5rem;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.site-footer__inner {
	width: var(--container);
	margin-inline: auto;
	display: grid;
	gap: 3rem;
}

.site-footer__headline {
	margin-top: 1.5rem;
	font-size: clamp(1.75rem, 3.5vw, 2.75rem);
	font-weight: 700;
	letter-spacing: -0.04em;
	line-height: 1.15;
	color: #fff;
	max-width: 14ch;
}

.site-footer__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.5rem;
	margin-top: 1.75rem;
}

.site-footer__legal a {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.5);
}

.site-footer__legal a:hover {
	color: #fff;
}

.site-footer__cat {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
	margin-bottom: 1.25rem;
}

.site-footer__cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem 2.5rem;
}

.site-footer__cols a {
	display: block;
	padding: 0.35rem 0;
	font-size: 1rem;
	font-weight: 550;
	color: rgba(255, 255, 255, 0.8);
	letter-spacing: -0.01em;
}

.site-footer__cols a:hover {
	color: #fff;
}

.site-footer__copy {
	margin-top: 2.5rem;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.4);
	line-height: 1.5;
}

@media (min-width: 900px) {
	.site-footer__inner {
		grid-template-columns: 1.2fr 0.8fr;
		gap: 4rem;
		align-items: start;
	}

	.site-footer__sheet {
		height: 4rem;
		margin-bottom: 4.5rem;
	}
}

/* ===== UTIL / LAYOUT SAFETY ===== */
@media (max-width: 480px) {
	:root {
		--container: min(1520px, calc(100% - 2rem));
	}

	.hero__title {
		font-size: clamp(2.25rem, 11vw, 3rem);
	}

	.btn--lg {
		padding: 1rem 1.5rem;
	}
}

/* ===== INNER PAGES (Customizer-driven) ===== */
.page-hero {
	padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
}
.page-hero__inner {
	width: var(--container);
	margin-inline: auto;
	display: grid;
	gap: 2rem;
	align-items: center;
}
@media (min-width: 900px) {
	.page-hero__inner { grid-template-columns: 1.1fr 0.9fr; gap: 3rem; }
}
.page-hero__title {
	font-size: clamp(2.4rem, 5vw, 4rem);
	font-weight: 700;
	letter-spacing: -0.04em;
	line-height: 1.08;
	margin: 0.5rem 0 1rem;
}
.page-hero__intro {
	color: var(--muted);
	font-size: 1.1rem;
	max-width: 65ch;
	line-height: 1.7;
}
.page-hero__media {
	border-radius: var(--radius-lg);
	overflow: hidden;
	min-height: 260px;
	background: var(--blue-soft);
	box-shadow: var(--shadow);
}
.page-hero__media img {
	width: 100%;
	height: 100%;
	min-height: 260px;
	object-fit: cover;
}
.page-hero__media--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	text-align: center;
	color: var(--muted);
	font-size: 0.95rem;
	border: 2px dashed rgba(74,128,245,0.35);
	background: var(--blue-soft-2);
}
.page-section {
	padding: clamp(2.5rem, 6vw, 5rem) 0;
}
.page-section--tint { background: var(--bg-tint); }
.page-section__inner {
	width: var(--container);
	margin-inline: auto;
}
.page-grid--services {
	display: grid;
	gap: 1.5rem;
}
@media (min-width: 900px) {
	.page-grid--services { grid-template-columns: repeat(2, 1fr); }
}
.content-card {
	display: grid;
	gap: 0;
	background: #fff;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
	border: 1px solid var(--line);
}
@media (min-width: 700px) {
	.content-card { grid-template-columns: 1fr 1fr; }
}
.content-card__media {
	min-height: 220px;
	background: var(--blue-soft);
}
.content-card__media img {
	width: 100%;
	height: 100%;
	min-height: 220px;
	object-fit: cover;
}
.content-card__media--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--muted);
	font-size: 0.9rem;
	border-right: 1px dashed rgba(74,128,245,0.25);
}
.content-card__body { padding: 1.75rem 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.content-card__num { color: var(--muted); font-weight: 700; letter-spacing: 0.04em; }
.content-card__title { font-size: 1.35rem; letter-spacing: -0.02em; margin: 0; }
.content-card__text { color: var(--muted); margin: 0; line-height: 1.6; }
.content-row {
	display: grid;
	gap: 1.5rem;
	align-items: center;
	margin-bottom: 2.5rem;
}
@media (min-width: 900px) {
	.content-row { grid-template-columns: 1fr 1fr; gap: 3rem; }
	.content-row--flip .content-row__media { order: 2; }
}
.content-row__media {
	border-radius: var(--radius-lg);
	overflow: hidden;
	min-height: 280px;
	background: var(--blue-soft);
	box-shadow: var(--shadow);
}
.content-row__media img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; }
.content-row__media--placeholder {
	display: flex; align-items: center; justify-content: center;
	color: var(--muted); border: 2px dashed rgba(74,128,245,0.3);
}
.content-row__title { font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: -0.03em; margin: 0 0 0.75rem; }
.content-row__text { color: var(--muted); line-height: 1.7; margin: 0; }
.page-grid--3 {
	display: grid;
	gap: 1.25rem;
}
@media (min-width: 800px) {
	.page-grid--3 { grid-template-columns: repeat(3, 1fr); }
}
.value-card {
	background: #fff;
	border-radius: var(--radius);
	padding: 1.75rem;
	box-shadow: var(--shadow);
	border: 1px solid var(--line);
}
.value-card__icon {
	width: 3.5rem; height: 3.5rem; border-radius: 1rem;
	background: var(--blue-soft); display: flex; align-items: center; justify-content: center;
	margin-bottom: 1rem; overflow: hidden; color: var(--blue); font-size: 1.25rem;
}
.value-card__icon img { width: 100%; height: 100%; object-fit: cover; }
.value-card h3 { margin: 0 0 0.5rem; font-size: 1.15rem; }
.value-card p { margin: 0; color: var(--muted); line-height: 1.55; }
.about-team-head { margin-bottom: 2rem; max-width: 40rem; }
.about-team-grid {
	display: grid;
	gap: 1.5rem;
}
@media (min-width: 800px) {
	.about-team-grid { grid-template-columns: repeat(2, 1fr); }
}
.about-member {
	background: #fff;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
	border: 1px solid var(--line);
}
.about-member img {
	width: 100%;
	height: 320px;
	object-fit: cover;
	object-position: center top;
}
.about-member__body { padding: 1.5rem; }
.about-member h3 { margin: 0 0 0.25rem; }
.about-member__role { color: var(--blue); font-weight: 600; margin: 0 0 0.75rem; }
.about-member__placeholder { color: var(--muted); font-style: italic; font-size: 0.9rem; }
.faq-list { display: flex; flex-direction: column; gap: 0.85rem; max-width: 48rem; }
.faq-item {
	background: #fff;
	border-radius: var(--radius);
	border: 1px solid var(--line);
	padding: 1rem 1.25rem;
	box-shadow: var(--shadow);
}
.faq-item summary {
	cursor: pointer;
	font-weight: 650;
	letter-spacing: -0.01em;
	list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin: 0.75rem 0 0; color: var(--muted); line-height: 1.6; }

/* ===== BLOG FEED ===== */
.blog-grid {
	display: grid;
	gap: 1.5rem;
}
@media (min-width: 700px) {
	.blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
	.blog-grid { grid-template-columns: repeat(3, 1fr); }
}

.blog-card {
	background: #fff;
	border-radius: var(--radius);
	border: 1px solid rgba(26, 31, 44, 0.06);
	overflow: hidden;
	height: 100%;
}

.blog-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.blog-card__link:hover { color: inherit; }

.blog-card__media {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--blue-soft);
}

.blog-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.blog-card__media--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--blue);
	font-size: 1.5rem;
}

.blog-card__body {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	padding: 1.35rem 1.3rem 1.5rem;
	flex: 1;
}

.blog-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.8rem;
	color: var(--muted);
	font-weight: 550;
}

.blog-card__title {
	margin: 0;
	font-size: 1.2rem;
	letter-spacing: -0.025em;
	line-height: 1.3;
}

.blog-card__excerpt {
	margin: 0;
	color: var(--muted);
	font-size: 0.95rem;
	line-height: 1.6;
	flex: 1;
}

.blog-card__more {
	margin-top: 0.35rem;
	font-size: 0.9rem;
	font-weight: 650;
	color: var(--blue);
}

.blog-empty {
	padding: 3rem 1.5rem;
	text-align: center;
	color: var(--muted);
	background: var(--bg-tint);
	border-radius: var(--radius);
	border: 1px dashed rgba(74, 128, 245, 0.25);
}

.blog-pagination {
	margin-top: 2.5rem;
}

.blog-pagination .page-numbers {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.45rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.blog-pagination .page-numbers li { margin: 0; }

.blog-pagination a,
.blog-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.5rem;
	padding: 0 0.75rem;
	border-radius: 999px;
	border: 1px solid rgba(26, 31, 44, 0.08);
	background: #fff;
	color: var(--ink);
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
}

.blog-pagination a:hover {
	color: var(--blue);
	border-color: rgba(74, 128, 245, 0.35);
}

.blog-pagination .current {
	background: var(--blue);
	border-color: var(--blue);
	color: #fff;
}

/* ===== SINGLE POST ===== */
.post-single__hero {
	padding: clamp(2rem, 5vw, 3.5rem) 0 1.5rem;
}

.post-single__hero-inner {
	width: var(--container);
	margin-inline: auto;
	max-width: 48rem;
}

.post-single__title {
	font-size: clamp(2rem, 4.5vw, 3.25rem);
	letter-spacing: -0.04em;
	line-height: 1.12;
	margin: 0.35rem 0 1rem;
}

.post-single__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	color: var(--muted);
	font-size: 0.95rem;
	font-weight: 550;
}

.post-single__cover {
	width: var(--container);
	margin: 0 auto 0.5rem;
	border-radius: var(--radius-lg);
	overflow: hidden;
	max-height: 520px;
	background: var(--blue-soft);
}

.post-single__cover img {
	width: 100%;
	height: 100%;
	max-height: 520px;
	object-fit: cover;
	display: block;
}

.post-single__content .post-single__prose {
	width: var(--container);
	margin-inline: auto;
	max-width: 48rem;
	color: var(--ink);
	font-size: 1.0625rem;
	line-height: 1.8;
}

.post-single__prose > *:first-child { margin-top: 0; }
.post-single__prose p { margin: 0 0 1.15rem; color: var(--muted); }
.post-single__prose h2,
.post-single__prose h3 {
	margin: 2rem 0 0.85rem;
	letter-spacing: -0.03em;
}
.post-single__prose ul,
.post-single__prose ol {
	margin: 0 0 1.15rem;
	padding-left: 1.25rem;
	color: var(--muted);
	list-style: disc;
}
.post-single__prose a { text-decoration: underline; }
.post-single__prose img {
	border-radius: var(--radius);
	margin: 1.25rem 0;
}

.post-single__footer .page-section__inner {
	max-width: 48rem;
}
.page-cta {
	padding: clamp(3rem, 7vw, 5rem) 0;
	background: linear-gradient(180deg, var(--blue-soft-2), #fff);
}
.page-cta__inner {
	width: var(--container);
	margin-inline: auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}
.page-cta__inner p { color: var(--muted); max-width: 36ch; }
.page-prose { max-width: 48rem; }
.page-prose__content { color: var(--muted); line-height: 1.75; }

/* ===== SERVICE SINGLE ===== */
.service-single__crumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.45rem;
	margin-bottom: 2rem;
	font-size: 0.9rem;
	color: var(--muted);
}
.service-single__crumb a { color: var(--muted); }
.service-single__crumb a:hover { color: var(--blue); }
.service-single__crumb span:last-child { color: var(--ink); font-weight: 600; }

.service-single__grid {
	display: grid;
	gap: 2.5rem;
	align-items: start;
}
@media (min-width: 960px) {
	.service-single__grid {
		grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.7fr);
		gap: 3.5rem;
	}
}

.service-single__main {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
.service-single__prose {
	color: var(--muted);
	font-size: 1.05rem;
	line-height: 1.75;
	max-width: 58ch;
}
.service-single__prose p { margin: 0 0 1.1rem; }
.service-single__prose p:last-child { margin-bottom: 0; }

.service-single__benefits {
	display: grid;
	gap: 0.85rem;
	margin: 0.5rem 0 0;
	padding: 0;
	list-style: none;
}
.service-single__benefits li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-weight: 550;
	letter-spacing: -0.01em;
}
.service-single__check {
	flex-shrink: 0;
	width: 1.65rem;
	height: 1.65rem;
	border-radius: 50%;
	background: var(--blue-soft);
	color: var(--blue);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	font-weight: 700;
}
.service-single__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 0.75rem;
}

.service-single__cta-card {
	background: var(--blue-soft-2);
	border: 1px solid rgba(74, 128, 245, 0.1);
	border-radius: var(--radius-lg);
	padding: 2rem 1.75rem;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	box-shadow: var(--shadow);
}
.service-single__cta-title {
	font-size: clamp(1.35rem, 2.2vw, 1.7rem);
	letter-spacing: -0.03em;
	margin: 0;
}
.service-single__cta-card p:not(.eyebrow) {
	color: var(--muted);
	margin: 0;
	line-height: 1.65;
}
.service-single__cta-card .btn { align-self: flex-start; margin-top: 0.35rem; }

.service-related__head { margin-bottom: 2rem; max-width: 40rem; }
.service-related__grid {
	display: grid;
	gap: 1.25rem;
}
@media (min-width: 720px) {
	.service-related__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
	.service-related__grid { grid-template-columns: repeat(4, 1fr); }
}
.service-related__card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid rgba(74, 128, 245, 0.08);
	box-shadow: var(--shadow);
	color: inherit;
	text-decoration: none;
	height: 100%;
}
.service-related__card:hover { color: inherit; }
.service-related__media {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--blue-soft);
}
.service-related__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.55s var(--ease);
}
.service-related__card:hover .service-related__media img { transform: scale(1.04); }
.service-related__body {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	padding: 1.25rem 1.2rem 1.4rem;
	flex: 1;
}
.service-related__body h3 {
	font-size: 1.1rem;
	letter-spacing: -0.02em;
	margin: 0;
}
.service-related__body p {
	color: var(--muted);
	font-size: 0.92rem;
	line-height: 1.55;
	margin: 0;
	flex: 1;
}
.service-related__more {
	margin-top: 0.5rem;
	font-size: 0.9rem;
	font-weight: 650;
	color: var(--blue);
}
