:root {
	--color-bg: #ffffff;
	--color-panel: #ffffff;
	--color-soft: #fff5f9;
	--color-soft-blue: #f2f6ff;
	--color-ink: #1f2633;
	--color-muted: #657084;
	--color-navy: #253c77;
	--color-charcoal: #2f3439;
	--color-rose: #aa2063;
	--color-heading: #cd0867;
	--color-gold: #c8a15f;
	--color-line: #ead5df;
	--color-success: #226a49;
	--color-error: #9f2d35;
	--font-body: "Poppins", Arial, sans-serif;
	--font-display: "Merriweather", Georgia, serif;
	--shadow-soft: 0 18px 60px rgba(37, 60, 119, 0.1);
	--shadow-subtle: 0 10px 30px rgba(37, 60, 119, 0.07);
	--radius: 8px;
	--radius-small: 6px;
	--container: 1180px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--color-bg);
	color: var(--color-ink);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.7;
	text-rendering: optimizeLegibility;
}

:where(h1, h2, h3, h4, h5, h6) {
	color: var(--color-heading);
	letter-spacing: 0;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover,
a:focus {
	color: var(--color-rose);
}

button,
input,
textarea {
	font: inherit;
}

button {
	cursor: pointer;
}

input,
textarea {
	width: 100%;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-small);
	background: #fff;
	color: var(--color-ink);
	padding: 0.82rem 0.95rem;
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

input:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
	outline: 2px solid rgba(181, 111, 114, 0.45);
	outline-offset: 3px;
}

label span {
	display: block;
	margin-bottom: 0.35rem;
	color: var(--color-charcoal);
	font-weight: 600;
}

.container {
	width: min(calc(100% - 40px), var(--container));
	margin-inline: auto;
}

.container.narrow {
	max-width: 820px;
}

.center {
	text-align: center;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	top: 1rem;
	left: 1rem;
	width: auto;
	height: auto;
	padding: 0.6rem 1rem;
	background: #fff;
	box-shadow: var(--shadow-soft);
	clip: auto;
	z-index: 1000;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.94);
	border-bottom: 1px solid rgba(234, 213, 223, 0.72);
	backdrop-filter: blur(18px);
	transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
	box-shadow: 0 10px 30px rgba(15, 38, 59, 0.08);
	background: rgba(255, 255, 255, 0.97);
}

.header-inner {
	min-height: 82px;
	display: flex;
	align-items: center;
	gap: 1.4rem;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	min-width: 230px;
}

.brand-logo {
	width: 218.5px;
	max-height: 50px;
	object-fit: contain;
}

.site-nav {
	margin-left: auto;
}

.primary-menu,
.footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-menu {
	display: flex;
	align-items: center;
	gap: 0.2rem;
}

.primary-menu > li {
	position: relative;
}

.primary-menu a {
	display: block;
	padding: 0.75rem 0.78rem;
	color: var(--color-charcoal);
	font-size: 0.92rem;
	font-weight: 600;
}

.primary-menu a:hover,
.primary-menu a:focus {
	color: var(--color-rose);
}

.primary-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 270px;
	margin: 0;
	padding: 0.55rem;
	list-style: none;
	background: #fff;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-subtle);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.primary-menu .sub-menu a {
	padding: 0.72rem 0.75rem;
	border-radius: var(--radius-small);
}

.primary-menu .sub-menu a:hover {
	background: var(--color-soft);
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-small);
	background: #fff;
	padding: 0.55rem;
	gap: 4px;
	flex-direction: column;
	justify-content: center;
}

.menu-toggle span:not(.screen-reader-text) {
	display: block;
	height: 2px;
	background: var(--color-navy);
	border-radius: 10px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0.78rem 1.15rem;
	border: 1px solid var(--color-rose);
	border-radius: var(--radius-small);
	background: var(--color-rose);
	color: #fff;
	font-weight: 700;
	line-height: 1.2;
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus {
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 12px 30px rgba(170, 32, 99, 0.22);
}

.btn-secondary {
	background: transparent;
	color: var(--color-rose);
	border-color: rgba(170, 32, 99, 0.32);
}

.btn-secondary:hover,
.btn-secondary:focus {
	background: #fff5f9;
	color: var(--color-rose);
	border-color: rgba(170, 32, 99, 0.38);
}

.btn-light {
	background: #fff;
	border-color: #fff;
	color: var(--color-navy);
}

.btn-light:hover,
.btn-light:focus,
.btn-light:focus-visible {
	background: #fff0f6;
	border-color: #f3a8c9;
	color: var(--color-rose);
	box-shadow: 0 12px 30px rgba(170, 32, 99, 0.28);
}

.btn-small {
	min-height: 40px;
	padding: 0.65rem 0.92rem;
	font-size: 0.88rem;
}

.btn:disabled,
.btn[disabled] {
	cursor: not-allowed;
	opacity: 0.52;
	transform: none;
	box-shadow: none;
}

.text-link {
	display: inline-flex;
	color: var(--color-rose);
	font-weight: 800;
	border-bottom: 1px solid rgba(170, 32, 99, 0.36);
}

.section,
.hero-section,
.page-hero {
	position: relative;
	padding: 92px 0;
}

.hero-section {
	padding: 70px 0 74px;
	background: #fff;
}

.hero-reference {
	overflow: hidden;
}

.hero-grid,
.split-grid,
.simulator-layout,
.contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 54px;
	align-items: center;
}

.hero-grid {
	grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
}

.hero-copy h1,
.page-hero h1,
.section-heading h2,
.section-intro h2,
.cta-band h2 {
	margin: 0;
	color: var(--color-heading);
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 700;
	line-height: 1.12;
}

.hero-copy h1,
.page-hero h1 {
	max-width: 760px;
	font-size: 3.2rem;
	letter-spacing: 0;
}

.section-heading h2,
.section-intro h2,
.cta-band h2 {
	font-size: calc(2.7rem - 3px);
}

.hero-copy p,
.page-hero p,
.section-intro p,
.section-heading p {
	color: var(--color-muted);
}

.hero-copy > p,
.page-hero > .container > p,
.page-hero .hero-grid p {
	max-width: 650px;
	font-size: 1rem;
}

.eyebrow {
	margin: 0 0 0.85rem;
	color: var(--color-rose);
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
}

.hero-actions,
.cta-actions,
.simulator-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: 1.5rem;
}

.hero-checklist,
.about-highlights {
	display: grid;
	gap: 0.75rem;
	margin: 1.45rem 0 0;
	padding: 0;
	list-style: none;
}

.hero-checklist li,
.about-highlights li {
	position: relative;
	padding-left: 2rem;
	color: var(--color-charcoal);
	font-weight: 600;
}

.hero-checklist li::before,
.about-highlights li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0.05rem;
	display: grid;
	place-items: center;
	width: 1.3rem;
	height: 1.3rem;
	border-radius: 50%;
	background: rgba(170, 32, 99, 0.1);
	color: var(--color-rose);
	font-size: 0.76rem;
	font-weight: 900;
}

.hero-media,
.rounded-media,
.single-featured img {
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
	overflow: hidden;
}

.hero-media img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	object-position: center right;
}

.hero-visual {
	position: relative;
	min-height: 520px;
	isolation: isolate;
}

.hero-main-photo,
.hero-floating-photo,
.hero-result-card {
	border-radius: 18px;
	box-shadow: 0 20px 60px rgba(37, 60, 119, 0.14);
}

.hero-main-photo {
	position: absolute;
	right: 0;
	top: 0;
	width: 70%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero-floating-photo {
	position: absolute;
	left: 0;
	top: 6%;
	z-index: 2;
	width: 48%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border: 8px solid #fff;
}

.hero-result-card {
	position: absolute;
	right: 3%;
	bottom: 6%;
	z-index: 3;
	width: min(250px, 44%);
	padding: 1.05rem;
	background: rgba(255, 255, 255, 0.94);
	text-align: center;
}

.hero-result-card span,
.hero-result-card small {
	display: block;
	color: var(--color-muted);
	font-size: 0.82rem;
}

.hero-result-card strong {
	display: block;
	color: var(--color-heading);
	font-family: var(--font-display);
	font-size: 2.15rem;
	font-style: italic;
	line-height: 1;
}

.home-stats-band {
	padding: 58px 0;
	background: var(--color-rose);
	color: #fff;
}

.stats-layout {
	display: grid;
	grid-template-columns: 1.35fr 0.7fr 0.95fr 1.25fr;
	gap: 34px;
	align-items: center;
}

.home-stats-band .eyebrow,
.stats-layout h2,
.stats-layout p,
.stat-item span {
	color: #fff;
}

.stats-layout h2 {
	margin: 0.25rem 0 1rem;
	font-family: var(--font-display);
	font-size: clamp(1.3rem, 1.8vw, 1.72rem);
	font-style: italic;
	line-height: 1.14;
}

.stats-link {
	display: inline-flex;
	color: #fff;
	font-weight: 800;
	border-bottom: 1px solid rgba(255, 255, 255, 0.72);
}

.stat-item {
	min-height: 138px;
	display: grid;
	align-content: center;
	padding: 0 26px;
	border-left: 1px solid rgba(255, 255, 255, 0.46);
}

.stat-item strong {
	color: #fff;
	font-family: var(--font-display);
	font-size: 2.5rem;
	font-style: italic;
	font-weight: 700;
	line-height: 0.96;
}

.stat-item span {
	font-size: 0.98rem;
}

.stats-note p {
	margin: 0;
	color: rgba(255, 255, 255, 0.86);
	font-size: 0.98rem;
	line-height: 1.55;
}

.about-clinic-section {
	background: #fff;
	overflow: hidden;
}

.about-full-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	gap: 20px;
	align-items: center;
	min-height: 470px;
	padding: 20px;
	border: 1px solid rgba(234, 213, 223, 0.72);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 24px 70px rgba(37, 60, 119, 0.08);
}

.about-panel {
	align-self: center;
	padding: clamp(1.8rem, 4.5vw, 4.1rem);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 245, 249, 0.84)),
		#fff;
	border-radius: 14px;
}

.about-panel .btn {
	margin-top: 1.55rem;
}

.about-room-media {
	display: flex;
	align-items: center;
	justify-content: center;
}

.about-room-media img {
	width: min(100%, 650px);
	/* height: auto; */
	max-height: 430px;
	min-height: 0;
	aspect-ratio: 2 / 30;
	object-fit: cover;
	border-radius: 16px;
}

.rounded-media {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.soft-section {
	background: #fff;
	border-top: 1px solid rgba(234, 213, 223, 0.45);
	border-bottom: 1px solid rgba(234, 213, 223, 0.45);
}

.featured-treatments-section {
	background:
		linear-gradient(180deg, rgba(255, 241, 248, 0.98), rgba(255, 231, 242, 0.96)),
		#fff1f7;
	border-top: 1px solid rgba(170, 32, 99, 0.12);
	border-bottom: 1px solid rgba(170, 32, 99, 0.12);
}

.featured-treatments-section .treatment-card {
	background: #fff;
	border-color: rgba(170, 32, 99, 0.14);
	box-shadow: 0 14px 38px rgba(170, 32, 99, 0.08);
}

.compact-hero {
	padding: 84px 0 68px;
	background: linear-gradient(125deg, rgba(255, 245, 249, 0.9), rgba(242, 246, 255, 0.72));
}

.image-hero {
	overflow: hidden;
	background: #fff;
}

.image-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.76)),
		url("../images/aesthetic-treatment-room.png") center / cover no-repeat;
	opacity: 0.25;
}

.image-hero > .container {
	position: relative;
	z-index: 1;
}

.about-hero::before {
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72)),
		url("../images/drchio-team.webp") center / cover no-repeat;
}

.services-hero::before {
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72)),
		url("../images/services-hero-aesthetic-treatment.png") center / cover no-repeat;
}

.hero-side-photo {
	max-height: 420px;
	object-position: center top;
}

.about-team-hero-photo {
	aspect-ratio: 16 / 9;
	object-fit: contain;
	object-position: center;
	background: #fff;
}

.services-hero-photo {
	object-position: center center;
}

.placeholder-hero {
	min-height: 68vh;
	display: grid;
	align-items: center;
	background: linear-gradient(125deg, rgba(247, 244, 241, 0.9), rgba(238, 245, 247, 0.82));
}

.section-heading {
	max-width: 820px;
	margin-bottom: 34px;
}

.section-heading.with-action {
	max-width: none;
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 1.5rem;
}

.card-grid {
	display: grid;
	gap: 22px;
}

.card-grid.three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.four {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid.two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card,
.treatment-card,
.product-card,
.feature-card,
.post-card,
.testimonial-card,
.contact-form-panel,
.contact-details,
.large-card,
.doctor-card,
.branch-card,
.icon-feature-card,
.nearby-card,
.service-mini-card,
.founder-card,
.branch-location-card {
	background: var(--color-panel);
	border: 1px solid rgba(231, 222, 216, 0.9);
	border-radius: var(--radius);
	box-shadow: 0 8px 28px rgba(15, 38, 59, 0.04);
}

.service-card,
.treatment-card,
.product-card,
.feature-card,
.post-card-body,
.testimonial-card,
.contact-form-panel,
.contact-details,
.large-card,
.doctor-card,
.branch-card,
.icon-feature-card,
.nearby-card,
.service-mini-card,
.founder-card,
.branch-location-card {
	padding: 24px;
}

.service-card,
.treatment-card,
.product-card,
.post-card {
	overflow: hidden;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.treatment-card:hover,
.product-card:hover,
.post-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-subtle);
	border-color: rgba(170, 32, 99, 0.3);
}

.service-card img,
.treatment-card img,
.product-card img,
.post-card-image img {
	width: calc(100% + 48px);
	max-width: none;
	margin: -24px -24px 20px;
	aspect-ratio: 16 / 11;
	object-fit: cover;
	background: var(--color-soft);
}

.treatment-card img {
	aspect-ratio: 5 / 4;
}

.product-card img {
	aspect-ratio: 1 / 1;
	object-fit: contain;
	padding: 18px;
	background: linear-gradient(145deg, #fff7fb, #ffffff);
}

.product-showcase-section {
	position: relative;
	width: 100%;
	min-height: 520px;
	overflow: hidden;
	background: #f8e8eb;
}

.product-showcase-image {
	position: absolute;
	inset: 0 auto 0 0;
	width: 108%;
	max-width: none;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: none;
}

.product-showcase-content {
	position: absolute;
	z-index: 1;
	left: max(20px, calc((100% - var(--container)) / 2));
	top: 50%;
	width: min(36%, 520px);
	transform: translateY(-50%);
	text-align: left;
}

.product-showcase-content h2 {
	margin: 0;
	color: var(--color-heading);
	font-family: var(--font-display);
	font-size: calc(2.7rem - 3px);
	font-style: italic;
	line-height: 1.12;
}

.product-showcase-copy {
	max-width: 470px;
	margin: 1rem 0 0;
	color: var(--color-muted);
	font-size: 1rem;
	line-height: 1.75;
}

.product-showcase-content .btn {
	margin-top: 1.4rem;
}

.service-card h2,
.service-card h3,
.treatment-card h2,
.treatment-card h3,
.product-card h2,
.product-card h3,
.feature-card h3,
.post-card h3 {
	margin: 0 0 0.7rem;
	color: var(--color-heading);
	line-height: 1.25;
	font-size: 1.05rem;
}

.service-card p,
.treatment-card p,
.product-card p,
.feature-card p,
.post-card p,
.testimonial-card p {
	color: var(--color-muted);
}

.large-card h2 {
	font-family: var(--font-display);
	font-size: 1.25rem;
}

.service-filter-bar {
	position: sticky;
	top: 92px;
	z-index: 8;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 2rem 0 2.4rem;
	padding: 14px;
	border: 1px solid rgba(231, 222, 216, 0.85);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 14px 38px rgba(37, 60, 119, 0.08);
	backdrop-filter: blur(14px);
}

.service-filter-bar button {
	min-height: 42px;
	padding: 0.72rem 1rem;
	border: 1px solid rgba(170, 32, 99, 0.22);
	border-radius: 999px;
	background: #fff;
	color: var(--color-navy);
	font: inherit;
	font-size: 0.86rem;
	font-weight: 800;
	cursor: pointer;
	transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.service-filter-bar button:hover,
.service-filter-bar button.is-active {
	border-color: var(--color-rose);
	background: var(--color-rose);
	color: #fff;
	transform: translateY(-1px);
}

.service-groups {
	display: grid;
	gap: 34px;
}

.service-group {
	scroll-margin-top: 140px;
}

.service-group.is-hidden {
	display: none;
}

.service-group-header {
	max-width: 820px;
	margin-bottom: 1.3rem;
}

.service-group-header h2 {
	margin: 0 0 0.7rem;
	color: var(--color-heading);
	font-family: var(--font-display);
	font-size: 2rem;
	font-style: italic;
	line-height: 1.16;
}

.service-group-header p:not(.eyebrow) {
	color: var(--color-muted);
}

.service-mini-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.service-mini-card {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	overflow: hidden;
	padding: 0;
	box-shadow: 0 10px 34px rgba(15, 38, 59, 0.045);
}

.service-mini-card img {
	width: 100%;
	aspect-ratio: 16 / 10;
	border-radius: 0;
	object-fit: cover;
	background: var(--color-soft);
}

.service-mini-card > div {
	padding: 24px;
}

.service-mini-card h3 {
	margin: 0 0 0.55rem;
	color: var(--color-heading);
	font-size: 1.13rem;
	line-height: 1.25;
}

.service-mini-card p {
	margin-bottom: 1rem;
	color: var(--color-muted);
	font-size: 0.94rem;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px;
}

.feature-grid.stacked {
	grid-template-columns: 1fr;
}

.feature-card {
	min-height: 188px;
}

.why-balanced-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.why-card {
	min-height: 215px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background:
		linear-gradient(180deg, rgba(255, 245, 249, 0.65), rgba(255, 255, 255, 0.98)),
		#fff;
}

.why-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin-bottom: 1rem;
	border-radius: 50%;
	background: var(--color-rose);
	color: #fff;
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 700;
}

.newsletter-section {
	background: linear-gradient(135deg, #fff7fb, #ffffff);
}

.newsletter-panel {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 34px;
	align-items: center;
	padding: clamp(1.8rem, 4vw, 3rem);
	border: 1px solid rgba(234, 213, 223, 0.9);
	border-radius: 18px;
	box-shadow: 0 20px 60px rgba(37, 60, 119, 0.08);
	background: #fff;
}

.newsletter-form {
	display: grid;
	gap: 14px;
}

.famicare-section {
	padding-top: clamp(3rem, 7vw, 5.5rem);
	padding-bottom: clamp(3rem, 7vw, 5.5rem);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 255, 251, 0.86)),
		#fff;
}

.famicare-panel {
	position: relative;
	display: grid;
	grid-template-columns: minmax(180px, 280px) minmax(0, 1fr) minmax(230px, 300px);
	gap: clamp(1.3rem, 3vw, 2.4rem);
	align-items: center;
	overflow: hidden;
	padding: clamp(1.25rem, 3vw, 2.4rem);
	border: 1px solid rgba(14, 125, 100, 0.3);
	border-radius: 22px;
	background:
		linear-gradient(135deg, rgba(9, 52, 70, 0.98), rgba(8, 105, 86, 0.94)),
		#093446;
	box-shadow: 0 24px 70px rgba(9, 52, 70, 0.18);
	color: #fff;
}

.famicare-panel::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(115deg, transparent 0 46%, rgba(31, 214, 174, 0.12) 46% 52%, transparent 52%),
		repeating-linear-gradient(90deg, transparent 0 38px, rgba(255, 255, 255, 0.045) 38px 39px);
	pointer-events: none;
}

.famicare-logo-card,
.famicare-copy,
.famicare-action {
	position: relative;
	z-index: 1;
}

.famicare-logo-card {
	display: grid;
	place-items: center;
	min-height: 190px;
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

.famicare-logo-card img {
	width: min(100%, 230px);
	height: auto;
	display: block;
}

.famicare-copy .eyebrow,
.famicare-copy h2,
.famicare-copy p {
	color: #fff;
}

.famicare-copy .eyebrow {
	color: #93f1d4;
}

.famicare-copy h2 {
	margin-bottom: 0.75rem;
}

.famicare-copy p {
	max-width: 720px;
	margin-bottom: 1.15rem;
	color: rgba(255, 255, 255, 0.84);
}

.famicare-copy .btn {
	background: #fff;
	color: #093446;
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.famicare-copy .btn:hover,
.famicare-copy .btn:focus-visible {
	background: #93f1d4;
	color: #093446;
}

.famicare-points {
	display: grid;
	gap: 0.65rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.famicare-points li {
	position: relative;
	padding: 0.9rem 0.95rem 0.9rem 2.35rem;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.11);
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.92rem;
	font-weight: 800;
	line-height: 1.35;
}

.famicare-points li::before {
	content: "";
	position: absolute;
	left: 0.95rem;
	top: 1.12rem;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #93f1d4;
	box-shadow: 0 0 0 5px rgba(147, 241, 212, 0.14);
}

.famicare-action {
	display: grid;
	gap: 0.65rem;
	align-self: stretch;
	align-content: center;
}

.faq-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.faq-item {
	border: 1px solid rgba(231, 222, 216, 0.9);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: 0 8px 28px rgba(15, 38, 59, 0.04);
}

.faq-item summary {
	position: relative;
	padding: 18px 46px 18px 20px;
	color: var(--color-heading);
	font-weight: 800;
	cursor: pointer;
}

.faq-item summary::after {
	content: "+";
	position: absolute;
	right: 18px;
	top: 16px;
	color: var(--color-rose);
	font-size: 1.2rem;
	font-weight: 800;
}

.faq-item[open] summary::after {
	content: "−";
}

.faq-item p {
	margin: 0;
	padding: 0 20px 20px;
	color: var(--color-muted);
}

.clinic-intro-section .split-grid {
	grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
}

.clinic-team-photo {
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: contain;
	object-position: center;
	background: #fff;
}

.founder-section {
	min-height: 640px;
	overflow: hidden;
	background: var(--color-navy);
}

.founder-section::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(120deg, rgba(170, 32, 99, 0.12), transparent 44%);
}

.founder-legacy-content {
	position: relative;
	z-index: 1;
	min-height: 456px;
	display: grid;
	grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
	gap: clamp(48px, 7vw, 108px);
	align-items: center;
}

.founder-legacy-media {
	align-self: end;
	display: flex;
	justify-content: center;
}

.founder-legacy-media img {
	width: min(100%, 390px);
	max-height: 520px;
	object-fit: contain;
	object-position: center bottom;
	filter: grayscale(1) contrast(0.94);
	opacity: 0.92;
	border-radius: 8px 8px 0 0;
}

.founder-copy {
	width: 100%;
	max-width: 720px;
	padding: clamp(2rem, 4vw, 4rem) clamp(1rem, 3vw, 3.25rem) clamp(2rem, 4vw, 4rem) 0;
}

.founder-copy .eyebrow {
	color: #f4b3cf;
}

.founder-copy h2,
.founder-copy p {
	color: #fff;
}

.founder-copy p {
	opacity: 0.9;
}

.icon-feature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.icon-feature-card h2,
.doctor-card h3,
.branch-card h3,
.nearby-card h3 {
	margin: 0 0 0.65rem;
	color: var(--color-heading);
	font-size: 1.08rem;
	line-height: 1.25;
}

.large-card h2,
.icon-feature-card h2,
.map-overlay-card h2,
.lead-modal-card h3 {
	font-size: 1.45rem;
}

.icon-feature-card p,
.doctor-card p,
.branch-card p,
.nearby-card li {
	color: var(--color-muted);
}

.about-icon {
	display: inline-grid;
	place-items: center;
	width: 48px;
	height: 48px;
	margin-bottom: 1rem;
	border-radius: 50%;
	background: rgba(170, 32, 99, 0.1);
	color: var(--color-heading);
}

.about-icon svg {
	width: 27px;
	height: 27px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.vision-mission-section {
	background: #fff;
}

.large-card p {
	color: var(--color-muted);
}

.doctor-card {
	overflow: hidden;
	padding: 0;
}

.doctor-card img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	object-position: center top;
	background: var(--color-soft);
}

.doctor-card > div {
	padding: 24px;
}

.doctor-specialization {
	display: inline-flex;
	margin: 0 0 0.7rem;
	padding: 0.42rem 0.7rem;
	border-radius: 999px;
	background: rgba(170, 32, 99, 0.1);
	color: var(--color-heading) !important;
	font-size: 0.8rem;
	font-weight: 800;
}

.doctor-credentials {
	display: grid;
	gap: 0.45rem;
	margin: 0 0 1rem;
	padding: 0;
	list-style: none;
	color: var(--color-navy) !important;
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.45;
}

.doctor-credentials li {
	position: relative;
	padding-left: 1rem;
}

.doctor-credentials li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.64em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--color-rose);
}

.about-why-band {
	padding: 92px 0;
	background: var(--color-rose);
}

.about-why-band .section-heading h2,
.about-why-band .section-heading p,
.about-why-band .eyebrow {
	color: #fff;
}

.about-why-band .why-card {
	background: rgba(255, 255, 255, 0.96);
}

.branch-card {
	min-height: 235px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background:
		linear-gradient(145deg, rgba(255, 245, 249, 0.75), rgba(255, 255, 255, 0.98)),
		#fff;
}

.branch-location-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.branch-location-card {
	display: block;
	overflow: hidden;
	padding: 0;
	background: #fff;
	color: inherit;
	text-decoration: none;
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.branch-location-card:hover,
.branch-location-card:focus-visible {
	border-color: var(--color-rose);
	box-shadow: 0 18px 48px rgba(170, 32, 99, 0.14);
	transform: translateY(-4px);
	outline: none;
}

.branch-map-graphic {
	position: relative;
	min-height: 285px;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(255, 249, 252, 0.98), rgba(239, 245, 255, 0.92)),
		repeating-linear-gradient(0deg, transparent 0 42px, rgba(37, 60, 119, 0.06) 42px 43px),
		repeating-linear-gradient(90deg, transparent 0 46px, rgba(170, 32, 99, 0.055) 46px 47px);
	box-shadow: inset 0 -1px 0 rgba(37, 60, 119, 0.08);
}

.branch-map-image {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.9;
}

.has-branch-map-image::after {
	background: rgba(255, 255, 255, 0.3);
}

.branch-map-region {
	position: absolute;
	left: 20px;
	top: 18px;
	z-index: 4;
	padding: 0.48rem 0.72rem;
	border: 1px solid rgba(170, 32, 99, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.88);
	color: var(--color-navy);
	font-size: 0.78rem;
	font-weight: 800;
	box-shadow: 0 12px 30px rgba(37, 60, 119, 0.1);
}

.branch-map-graphic::after {
	content: "";
	position: absolute;
	inset: 34px 28px 28px;
	border: 1px solid rgba(37, 60, 119, 0.12);
	border-radius: 24px;
	pointer-events: none;
}

.map-singapore {
	background:
		linear-gradient(135deg, rgba(255, 249, 252, 0.98), rgba(239, 245, 255, 0.94)),
		repeating-linear-gradient(0deg, transparent 0 42px, rgba(37, 60, 119, 0.06) 42px 43px),
		repeating-linear-gradient(90deg, transparent 0 46px, rgba(170, 32, 99, 0.055) 46px 47px);
}

.map-philippines {
	background:
		linear-gradient(135deg, rgba(255, 249, 252, 0.98), rgba(239, 245, 255, 0.94)),
		repeating-linear-gradient(0deg, transparent 0 42px, rgba(37, 60, 119, 0.06) 42px 43px),
		repeating-linear-gradient(90deg, transparent 0 46px, rgba(170, 32, 99, 0.055) 46px 47px);
}

.map-road {
	position: absolute;
	border-radius: 999px;
	pointer-events: none;
}

.map-road {
	height: 16px;
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid rgba(37, 60, 119, 0.1);
	box-shadow: 0 14px 34px rgba(37, 60, 119, 0.1);
	z-index: 1;
}

.map-road::after {
	content: "";
	position: absolute;
	left: 16px;
	right: 16px;
	top: 50%;
	border-top: 2px dashed rgba(37, 60, 119, 0.22);
	transform: translateY(-50%);
}

.map-road-one {
	width: 88%;
	left: -12%;
	top: 30%;
	transform: rotate(20deg);
}

.map-road-two {
	width: 74%;
	right: -10%;
	bottom: 25%;
	transform: rotate(-23deg);
}

.branch-map-pin {
	position: absolute;
	left: var(--x);
	top: var(--y);
	width: 24px;
	height: 24px;
	border: 5px solid #fff;
	border-radius: 50%;
	background: var(--color-rose);
	box-shadow: 0 10px 28px rgba(170, 32, 99, 0.28), 0 0 0 8px rgba(170, 32, 99, 0.1);
	transform: translate(-50%, -50%);
	z-index: 3;
}

.branch-map-pin::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 54px;
	height: 54px;
	border: 1px solid rgba(170, 32, 99, 0.32);
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.branch-map-pin span {
	position: absolute;
	left: calc(100% + 12px);
	top: 50%;
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0.38rem 0.72rem;
	border-radius: 999px;
	background: #fff;
	color: var(--color-navy);
	font-size: 0.82rem;
	font-weight: 800;
	white-space: nowrap;
	box-shadow: 0 12px 28px rgba(37, 60, 119, 0.14);
	transform: translateY(-50%);
}

.map-singapore .branch-map-pin span {
	max-width: 235px;
	white-space: normal;
	line-height: 1.25;
	border-radius: 14px;
}

.branch-map-pin span::before {
	content: "";
	position: absolute;
	right: 100%;
	top: 50%;
	width: 14px;
	height: 2px;
	background: var(--color-rose);
	transform: translateY(-50%);
}

.map-philippines .branch-map-pin span {
	left: 50%;
	top: calc(100% + 13px);
	transform: translateX(-50%);
}

.map-philippines .branch-map-pin span::before {
	left: 50%;
	right: auto;
	top: auto;
	bottom: 100%;
	width: 2px;
	height: 12px;
	transform: translateX(-50%);
}

.branch-location-body {
	display: grid;
	gap: 0.85rem;
	padding: 24px;
}

.branch-location-body h3 {
	margin: 0;
	color: var(--color-heading);
	font-size: 1.25rem;
}

.branch-location-body p {
	margin: 0;
	color: var(--color-muted);
}

.branch-address {
	display: grid;
	grid-template-columns: 22px 1fr;
	gap: 0.65rem;
	align-items: start;
	font-weight: 800;
	color: var(--color-navy) !important;
}

.branch-address svg {
	width: 22px;
	height: 22px;
	fill: var(--color-rose);
}

.branch-detail-list {
	display: grid;
	gap: 0.45rem;
	margin: 0;
	padding: 0;
	list-style: none;
	color: var(--color-muted);
	font-size: 0.93rem;
}

.branch-detail-list li {
	position: relative;
	padding-left: 1.15rem;
}

.branch-detail-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.62rem;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--color-rose);
}

.branch-sub-location-list {
	display: grid;
	gap: 0.45rem;
	margin: 0.15rem 0 0;
	padding: 0;
	list-style: none;
}

.branch-sub-location-list li {
	display: grid;
	gap: 0.12rem;
	padding: 0.62rem 0.72rem;
	border: 1px solid rgba(170, 32, 99, 0.1);
	border-radius: 12px;
	background: rgba(255, 245, 249, 0.58);
}

.branch-sub-location-list strong {
	color: var(--color-navy);
	font-size: 0.88rem;
}

.branch-sub-location-list span {
	color: var(--color-muted);
	font-size: 0.84rem;
	line-height: 1.45;
}

.branch-card-cta {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	margin-top: 0.15rem;
	padding-bottom: 0.18rem;
	border-bottom: 2px solid currentColor;
	color: var(--color-rose);
	font-size: 0.9rem;
	font-weight: 800;
}

.branch-card-cta::after {
	content: "→";
	margin-left: 0.45rem;
	transition: transform 180ms ease;
}

.branch-location-card:hover .branch-card-cta::after,
.branch-location-card:focus-visible .branch-card-cta::after {
	transform: translateX(3px);
}

.nearby-card {
	margin-top: 24px;
}

.nearby-card ul {
	display: grid;
	gap: 0.55rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.nearby-card li {
	position: relative;
	padding-left: 1.25rem;
}

.nearby-card li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.7rem;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--color-rose);
}

.testimonial-section {
	overflow: hidden;
	background: linear-gradient(180deg, #fff0f7 0%, #ffdcec 100%);
	color: var(--color-navy);
}

.testimonial-section .section-heading p {
	color: var(--color-navy);
}

.testimonial-section .eyebrow {
	color: var(--color-rose);
}

.testimonial-slider {
	position: relative;
	overflow: hidden;
	padding: 6px 0 14px;
}

.testimonial-track {
	display: flex;
	gap: 22px;
	width: max-content;
	animation: testimonial-slide 34s linear infinite;
}

.testimonial-slider:hover .testimonial-track {
	animation-play-state: paused;
}

.testimonial-card {
	flex: 0 0 min(430px, calc(100vw - 54px));
	margin: 0;
	background: #fff;
	border-color: rgba(170, 32, 99, 0.16);
	box-shadow: 0 16px 42px rgba(170, 32, 99, 0.09);
}

.testimonial-card p {
	color: var(--color-muted);
	font-size: 1.03rem;
}

.testimonial-card cite {
	display: block;
	color: var(--color-navy);
	font-style: normal;
	font-weight: 800;
}

.stars {
	margin-bottom: 0.8rem;
	color: var(--color-rose);
	letter-spacing: 0;
	font-size: 1rem;
}

@keyframes testimonial-slide {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(calc(-50% - 11px));
	}
}

.post-meta,
.small-note,
.medical-note {
	color: var(--color-muted);
	font-size: 0.88rem;
}

.content-area {
	font-size: 1.05rem;
}

.content-area p,
.content-area li {
	color: var(--color-charcoal);
}

.single-featured {
	margin-bottom: 2rem;
}

.medical-disclaimer {
	margin-top: 2rem;
	padding: 1rem;
	border-left: 3px solid var(--color-gold);
	background: var(--color-soft);
	border-radius: var(--radius-small);
	color: var(--color-muted);
	font-size: 0.95rem;
}

.simulator-section {
	background: #fff0f6;
}

.simulator-layout {
	align-items: start;
}

.simulator-section > .container {
	width: min(calc(100% - 40px), 1380px);
}

.simulator-demo-photo {
	position: relative;
	width: min(100%, 520px);
	margin: 1.35rem 0 1.25rem;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	border-radius: 18px;
	background: var(--color-soft);
	box-shadow: 0 18px 48px rgba(37, 60, 119, 0.1);
}

.simulator-demo-photo > img,
.simulator-demo-after img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.simulator-demo-photo::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(37, 60, 119, 0.2), transparent 35%, rgba(170, 32, 99, 0.12));
	pointer-events: none;
}

.simulator-demo-photo::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	z-index: 3;
	width: 2px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 0 0 1px rgba(170, 32, 99, 0.18);
}

.simulator-demo-after {
	position: absolute;
	inset: 0;
	clip-path: inset(0 0 0 50%);
	filter: brightness(1.12) saturate(1.16) contrast(1.03);
}

.simulator-demo-after::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 62% 35%, rgba(255, 255, 255, 0.3), transparent 38%);
}

.demo-label {
	position: absolute;
	z-index: 4;
	bottom: 14px;
	padding: 0.45rem 0.68rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.9);
	color: var(--color-heading);
	font-size: 0.78rem;
	font-weight: 800;
	box-shadow: 0 8px 24px rgba(37, 60, 119, 0.12);
}

.demo-label-before {
	left: 14px;
}

.demo-label-after {
	right: 14px;
}

.privacy-panel,
.simulator-disclaimer {
	margin-top: 32px;
	margin-bottom: 18px;
	padding: 18px;
	border: 1px solid rgba(170, 32, 99, 0.22);
	border-radius: var(--radius);
	background: #fffaf5;
	color: var(--color-charcoal);
}

.privacy-panel strong {
	display: block;
	color: var(--color-navy);
	margin-bottom: 0.3rem;
}

.privacy-panel p,
.simulator-disclaimer p {
	margin: 0.4rem 0 0;
	font-size: 0.92rem;
}

.simulator-panel {
	position: relative;
	background: var(--color-panel);
	border: 1px solid rgba(170, 32, 99, 0.14);
	border-radius: var(--radius);
	padding: 18px;
	box-shadow: var(--shadow-soft);
}

.preview-frame {
	position: relative;
	width: 100%;
	aspect-ratio: 9 / 11;
	overflow: hidden;
	border-radius: var(--radius);
	background: linear-gradient(135deg, #fff4f8, #f2f6ff);
	border: 1px dashed rgba(170, 32, 99, 0.35);
	transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.preview-frame.is-dragover,
.upload-control.is-dragover {
	border-color: var(--color-rose);
	background: #fff0f6;
	box-shadow: 0 0 0 4px rgba(170, 32, 99, 0.08);
}

.preview-canvas {
	width: 100%;
	height: 100%;
	display: block;
}

.camera-capture {
	position: absolute;
	inset: 0;
	z-index: 6;
	overflow: hidden;
	background: #121722;
}

.camera-capture[hidden] {
	display: none;
}

.camera-capture video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scaleX(-1);
}

.camera-face-guide {
	position: absolute;
	inset: 8% 17% 19%;
	display: grid;
	place-items: start center;
	pointer-events: none;
	border: 3px solid rgba(255, 255, 255, 0.94);
	border-radius: 48% 48% 44% 44%;
	box-shadow: 0 0 0 999px rgba(15, 26, 51, 0.2), inset 0 0 0 2px rgba(170, 32, 99, 0.34);
}

.camera-face-guide span {
	transform: translateY(-50%);
	padding: 0.42rem 0.75rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.94);
	color: var(--color-navy);
	font-size: 0.75rem;
	font-weight: 800;
	text-align: center;
}

.camera-capture-actions {
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 16px;
	z-index: 2;
	display: flex;
	justify-content: center;
	gap: 10px;
}

.preview-empty {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	color: var(--color-muted);
	font-weight: 700;
	text-align: center;
	padding: 1.4rem;
}

.preview-face-guide {
	width: min(54%, 230px);
	aspect-ratio: 3 / 4;
	border: 2px dashed rgba(170, 32, 99, 0.42);
	border-radius: 48% 48% 44% 44%;
	background:
		radial-gradient(circle at 35% 34%, rgba(170, 32, 99, 0.22) 0 3px, transparent 4px),
		radial-gradient(circle at 65% 34%, rgba(170, 32, 99, 0.22) 0 3px, transparent 4px),
		linear-gradient(180deg, transparent 0 62%, rgba(170, 32, 99, 0.14) 63% 66%, transparent 67%);
}

.preview-empty.is-hidden {
	display: none;
}

.live-face-guide {
	position: absolute;
	inset: 7% 16% 10%;
	display: grid;
	place-items: start center;
	pointer-events: none;
	border: 2px dashed rgba(255, 255, 255, 0.92);
	border-radius: 48% 48% 44% 44%;
	box-shadow: 0 0 0 999px rgba(15, 38, 59, 0.16), inset 0 0 0 1px rgba(170, 32, 99, 0.34);
}

.live-face-guide[hidden] {
	display: none;
}

.live-face-guide span {
	transform: translateY(-50%);
	padding: 0.38rem 0.7rem;
	border-radius: 999px;
	background: #fff;
	box-shadow: 0 5px 18px rgba(15, 38, 59, 0.18);
	color: var(--color-navy);
	font-size: 0.72rem;
	font-weight: 800;
}

.photo-assessment {
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 14px;
	z-index: 3;
	display: grid;
	gap: 0.62rem;
	max-height: calc(100% - 28px);
	overflow-y: auto;
	padding: 14px;
	border: 1px solid rgba(255, 255, 255, 0.78);
	border-radius: var(--radius-small);
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 10px 34px rgba(15, 38, 59, 0.2);
	backdrop-filter: blur(10px);
}

.photo-assessment[hidden] {
	display: none;
}

.photo-assessment-heading {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	color: var(--color-navy);
}

.photo-assessment-icon {
	position: relative;
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	border: 2px solid rgba(170, 32, 99, 0.32);
	border-top-color: var(--color-rose);
	border-radius: 50%;
	animation: assessment-spin 800ms linear infinite;
}

.photo-assessment.is-pass {
	right: auto;
	max-width: calc(100% - 28px);
	padding: 10px 13px;
	border-color: rgba(33, 122, 84, 0.28);
}

.photo-assessment.is-pass .photo-assessment-icon,
.photo-assessment.is-fail .photo-assessment-icon {
	display: grid;
	place-items: center;
	border: 0;
	animation: none;
}

.photo-assessment.is-pass .photo-assessment-icon::before {
	content: "✓";
	color: #217a54;
	font-size: 1.2rem;
	font-weight: 900;
}

.photo-assessment.is-fail .photo-assessment-icon::before {
	content: "!";
	width: 23px;
	height: 23px;
	border-radius: 50%;
	background: var(--color-rose);
	color: #fff;
	font-size: 0.9rem;
	font-weight: 900;
	line-height: 23px;
	text-align: center;
}

.photo-assessment.is-pass ul,
.photo-assessment.is-pass button,
.photo-assessment.is-checking button {
	display: none;
}

.photo-assessment ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.45rem 0.7rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.photo-assessment li {
	position: relative;
	padding-left: 1.1rem;
	color: var(--color-muted);
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1.35;
}

.photo-assessment li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #217a54;
	font-weight: 900;
}

.photo-assessment li.is-fail {
	color: #8b244d;
}

.photo-assessment li.is-fail::before {
	content: "×";
	color: var(--color-rose);
}

.photo-assessment button {
	justify-self: start;
	padding: 0;
	border: 0;
	border-bottom: 1px solid currentColor;
	background: transparent;
	color: var(--color-rose);
	font-size: 0.78rem;
	font-weight: 800;
}

@keyframes assessment-spin {
	to {
		transform: rotate(360deg);
	}
}

.comparison-control {
	display: grid;
	gap: 0.65rem;
	margin-top: 14px;
	padding: 14px 16px;
	border: 1px solid rgba(170, 32, 99, 0.16);
	border-radius: var(--radius-small);
	background: #fff;
}

.comparison-control[hidden] {
	display: none;
}

.comparison-labels {
	display: flex;
	justify-content: space-between;
	color: var(--color-navy);
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
}

.comparison-control input[type="range"] {
	width: 100%;
	accent-color: var(--color-rose);
	cursor: ew-resize;
}

.simulator-controls {
	display: grid;
	gap: 16px;
	margin-top: 18px;
}

.photo-source-actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.selfie-guide-card {
	padding: 16px;
	border: 1px solid rgba(170, 32, 99, 0.18);
	border-radius: var(--radius);
	background: linear-gradient(145deg, #fff7fb, #ffffff);
}

.selfie-guide-card[hidden] {
	display: none;
}

.selfie-guide-card strong {
	display: block;
	margin-bottom: 0.55rem;
	color: var(--color-heading);
	font-size: 0.96rem;
}

.selfie-guide-card ul {
	display: grid;
	gap: 0.45rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.selfie-guide-card li {
	position: relative;
	padding-left: 1.25rem;
	color: var(--color-muted);
	font-size: 0.9rem;
	line-height: 1.45;
}

.selfie-guide-card li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.58rem;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--color-rose);
}

.selfie-guide-card p {
	margin: 0.8rem 0 0;
	padding-top: 0.75rem;
	border-top: 1px solid rgba(170, 32, 99, 0.14);
	color: var(--color-charcoal);
	font-size: 0.86rem;
	line-height: 1.45;
}

.upload-control {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	padding: 0.8rem 1rem;
	border: 1px dashed rgba(170, 32, 99, 0.38);
	border-radius: var(--radius-small);
	background: #fff7fb;
	font-weight: 800;
	color: var(--color-rose);
	transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.camera-control {
	min-height: 58px;
	padding: 0.8rem 1rem;
	border: 1px solid rgba(37, 60, 119, 0.28);
	border-radius: var(--radius-small);
	background: var(--color-navy);
	color: #fff;
	font-weight: 800;
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.camera-control:hover,
.camera-control:focus-visible {
	background: #1d3166;
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 12px 28px rgba(37, 60, 119, 0.22);
}

.upload-control input {
	position: absolute;
	inset: 0;
	opacity: 0;
	cursor: pointer;
}

.treatment-options {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.option-btn {
	min-height: 46px;
	padding: 0.65rem 0.75rem;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-small);
	background: #fff;
	color: var(--color-charcoal);
	font-weight: 700;
	transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.option-btn.is-active,
.option-btn:hover {
	background: var(--color-rose);
	color: #fff;
	border-color: var(--color-rose);
}

.option-btn:disabled,
.option-btn:disabled:hover {
	cursor: not-allowed;
	border-color: var(--color-line);
	background: #f3f3f5;
	color: #9499a2;
	opacity: 0.78;
}

.treatment-summary {
	display: grid;
	gap: 0.7rem;
	padding: 16px;
	border: 1px solid rgba(170, 32, 99, 0.18);
	border-radius: var(--radius);
	background: #fff7fb;
}

.treatment-summary[hidden] {
	display: none;
}

.treatment-summary strong {
	color: var(--color-heading);
	line-height: 1.35;
}

.treatment-summary p {
	margin: 0;
	color: var(--color-muted);
	font-size: 0.9rem;
	line-height: 1.55;
}

.treatment-summary-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.treatment-summary-tags span {
	display: inline-flex;
	padding: 0.38rem 0.62rem;
	border-radius: 999px;
	background: rgba(170, 32, 99, 0.13);
	color: var(--color-heading);
	font-size: 0.78rem;
	font-weight: 800;
}

.lead-modal {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: grid;
	place-items: center;
	padding: 20px;
	background: rgba(15, 38, 59, 0.54);
}

.lead-modal[hidden] {
	display: none;
}

.lead-modal-card {
	position: relative;
	width: min(100%, 560px);
	max-height: calc(100vh - 40px);
	overflow-y: auto;
	background: #fff;
	border-radius: var(--radius);
	padding: 30px;
	box-shadow: var(--shadow-soft);
}

.lead-modal-card h3 {
	margin: 0 0 0.5rem;
	color: var(--color-heading);
	font-family: var(--font-display);
	font-size: 1.45rem;
}

.modal-close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 38px;
	height: 38px;
	border: 1px solid var(--color-line);
	border-radius: 50%;
	background: #fff;
	color: var(--color-navy);
	font-size: 1.4rem;
	line-height: 1;
}

.lead-form,
.contact-form {
	display: grid;
	gap: 15px;
	margin-top: 18px;
}

.checkbox-label {
	display: grid;
	grid-template-columns: 18px 1fr;
	gap: 10px;
	align-items: start;
}

.checkbox-label input {
	width: 18px;
	height: 18px;
	margin-top: 0.25rem;
}

.checkbox-label span {
	margin: 0;
	color: var(--color-muted);
	font-size: 0.92rem;
	font-weight: 500;
}

.contact-captcha {
	display: grid;
	gap: 0.45rem;
	padding: 0.9rem;
	border: 1px solid rgba(170, 32, 99, 0.14);
	border-radius: var(--radius-small);
	background: rgba(170, 32, 99, 0.04);
}

.contact-captcha span {
	margin: 0;
}

.contact-captcha small {
	color: var(--color-muted);
	font-size: 0.84rem;
	line-height: 1.45;
}

.contact-captcha strong {
	color: var(--color-rose);
	font-size: 1rem;
}

.hp-field {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	opacity: 0;
}

.form-feedback,
.form-alert {
	padding: 0.85rem 1rem;
	border-radius: var(--radius-small);
	font-weight: 700;
}

.form-feedback:empty {
	display: none;
}

.form-feedback.is-error,
.form-alert.is-error {
	background: rgba(159, 45, 53, 0.08);
	color: var(--color-error);
}

.form-feedback.is-success,
.form-alert.is-success {
	background: rgba(34, 106, 73, 0.1);
	color: var(--color-success);
}

.cta-band {
	display: grid;
	grid-template-columns: 1.4fr auto;
	gap: 26px;
	align-items: center;
	padding: 42px;
	border-radius: var(--radius);
	background: linear-gradient(135deg, var(--color-navy), #182a5a);
	color: #fff;
	box-shadow: var(--shadow-soft);
}

.cta-band.light {
	background: #fff;
	color: var(--color-ink);
	border: 1px solid var(--color-line);
}

.cta-band h2,
.cta-band p {
	color: inherit;
}

.contact-mini-list {
	grid-column: 1 / -1;
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem 1.3rem;
	margin: 0;
	padding: 0;
	list-style: none;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.92rem;
}

.contact-grid {
	align-items: start;
}

.contact-details ul,
.footer-contact {
	margin: 0;
	padding: 0;
	list-style: none;
}

.contact-details li,
.footer-contact li {
	margin-bottom: 0.8rem;
	color: var(--color-muted);
}

.map-placeholder {
	display: grid;
	place-items: center;
	min-height: 260px;
	margin-top: 24px;
	border: 1px dashed rgba(15, 38, 59, 0.3);
	border-radius: var(--radius);
	background: linear-gradient(135deg, #f4ece7, #e7f0f3);
	color: var(--color-navy);
	font-weight: 800;
}

.map-guide-section {
	padding: 0;
	background: #fff;
}

.map-guide-visual {
	position: relative;
	min-height: 520px;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(255, 245, 249, 0.92), rgba(242, 246, 255, 0.9)),
		repeating-linear-gradient(45deg, rgba(37, 60, 119, 0.08) 0 2px, transparent 2px 42px),
		#fff;
}

.map-guide-visual::before,
.map-guide-visual::after {
	content: "";
	position: absolute;
	inset: auto;
	background: rgba(170, 32, 99, 0.16);
	border-radius: 999px;
	transform: rotate(-18deg);
}

.map-guide-visual::before {
	width: 70%;
	height: 28px;
	left: -10%;
	top: 34%;
}

.map-guide-visual::after {
	width: 55%;
	height: 18px;
	right: -8%;
	bottom: 28%;
	background: rgba(37, 60, 119, 0.14);
	transform: rotate(22deg);
}

.map-line {
	position: absolute;
	height: 2px;
	background: rgba(37, 60, 119, 0.22);
	transform-origin: left center;
}

.map-line-one {
	width: 62%;
	left: 22%;
	top: 18%;
	transform: rotate(22deg);
}

.map-line-two {
	width: 54%;
	left: 4%;
	bottom: 18%;
	transform: rotate(-12deg);
}

.map-line-three {
	width: 46%;
	right: 5%;
	top: 58%;
	transform: rotate(-28deg);
}

.map-pin {
	position: absolute;
	left: 62%;
	top: 45%;
	width: 38px;
	height: 38px;
	border-radius: 50% 50% 50% 0;
	background: var(--color-rose);
	transform: rotate(-45deg);
	box-shadow: 0 10px 28px rgba(170, 32, 99, 0.24);
	z-index: 1;
}

.map-pin::after {
	content: "";
	position: absolute;
	inset: 10px;
	border-radius: 50%;
	background: #fff;
}

.map-guide-container {
	position: relative;
	z-index: 2;
	min-height: 520px;
	display: grid;
	align-items: center;
	padding-top: 50px;
	padding-bottom: 50px;
}

.map-overlay-card {
	width: min(100%, 510px);
	padding: clamp(2.5rem, 5vw, 4rem) clamp(1.8rem, 4vw, 3rem);
	border: 1px solid rgba(234, 213, 223, 0.9);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 24px 70px rgba(37, 60, 119, 0.13);
	backdrop-filter: blur(14px);
}

.map-overlay-card h2 {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(1.4rem, 2.12vw, 1.8rem);
	font-style: italic;
	line-height: 1.14;
}

.map-overlay-card > p {
	color: var(--color-charcoal);
	font-weight: 700;
}

.map-info-list {
	display: grid;
	gap: 0.55rem;
	margin: 1rem 0 0;
	padding: 0;
	list-style: none;
	color: var(--color-muted);
}

.map-info-list li {
	position: relative;
	padding-left: 1.35rem;
}

.map-info-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.68rem;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--color-rose);
}

.site-footer {
	padding: 62px 0 28px;
	background: var(--color-navy);
	color: #fff;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 0.8fr 1fr 1.1fr;
	gap: 34px;
}

.site-footer h2 {
	margin: 0 0 1rem;
	color: #fff;
	font-size: 1rem;
	text-transform: uppercase;
}

.footer-brand p,
.site-footer li,
.site-footer a,
.footer-bottom {
	color: rgba(255, 255, 255, 0.72);
}

.site-brand-footer {
	margin-bottom: 1rem;
	color: #fff;
}

.footer-logo {
	width: 248.1px;
	max-height: 59px;
	object-fit: contain;
}

.footer-menu li {
	margin-bottom: 0.65rem;
}

.footer-locations {
	display: grid;
	gap: 0.95rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-locations li {
	display: grid;
	gap: 0.28rem;
}

.footer-locations strong {
	color: #fff;
	font-size: 0.9rem;
}

.footer-locations span {
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.5;
}

.social-links {
	display: flex;
	gap: 0.6rem;
	margin-top: 1rem;
}

.social-links a {
	width: 38px;
	height: 38px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 50%;
	color: #fff;
	font-size: 0.82rem;
	font-weight: 800;
}

.social-links a:hover,
.social-links a:focus-visible {
	border-color: rgba(255, 255, 255, 0.5);
	background: rgba(255, 255, 255, 0.1);
	outline: none;
}

.whatsapp-widget {
	position: fixed;
	right: clamp(16px, 3vw, 28px);
	bottom: clamp(16px, 3vw, 28px);
	z-index: 60;
	display: grid;
	gap: 0.85rem;
	justify-items: end;
}

.whatsapp-float {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.78rem 1rem 0.78rem 0.78rem;
	border: 0;
	border-radius: 999px;
	background: #25d366;
	color: #073b22;
	cursor: pointer;
	font-family: inherit;
	font-size: 0.9rem;
	font-weight: 800;
	text-decoration: none;
	box-shadow: 0 18px 44px rgba(37, 211, 102, 0.34);
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
	background: #32e276;
	color: #073b22;
	transform: translateY(-2px);
	box-shadow: 0 22px 54px rgba(37, 211, 102, 0.42);
	outline: none;
}

.whatsapp-float-icon {
	width: 34px;
	height: 34px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: #fff;
	color: #128c45;
}

.whatsapp-float-icon svg {
	width: 23px;
	height: 23px;
	display: block;
	fill: currentColor;
}

.whatsapp-chat-panel {
	width: min(372px, calc(100vw - 32px));
	overflow: hidden;
	border: 1px solid rgba(18, 140, 69, 0.2);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 24px 70px rgba(15, 38, 59, 0.18);
}

.whatsapp-chat-panel[hidden] {
	display: none;
}

.whatsapp-chat-header {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 18px;
	background: linear-gradient(135deg, #128c45, #25d366);
	color: #fff;
}

.whatsapp-chat-header span {
	display: block;
	margin-bottom: 0.2rem;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.whatsapp-chat-header h2 {
	margin: 0;
	color: #fff;
	font-family: var(--font-body);
	font-size: 1.05rem;
	line-height: 1.2;
}

.whatsapp-chat-close {
	width: 34px;
	height: 34px;
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	cursor: pointer;
	font-size: 1.35rem;
	line-height: 1;
}

.whatsapp-chat-body {
	display: grid;
	gap: 14px;
	padding: 16px;
}

.whatsapp-chat-bubble {
	position: relative;
	margin: 0;
	padding: 0.85rem 0.95rem;
	border-radius: 16px 16px 16px 4px;
	background: #eff8f3;
	color: var(--color-navy);
	font-size: 0.92rem;
}

.whatsapp-quick-replies {
	display: grid;
	gap: 0.55rem;
}

.whatsapp-quick-replies button {
	width: 100%;
	padding: 0.68rem 0.78rem;
	border: 1px solid rgba(18, 140, 69, 0.18);
	border-radius: 999px;
	background: #fff;
	color: #128c45;
	cursor: pointer;
	font-family: inherit;
	font-size: 0.86rem;
	font-weight: 800;
	text-align: left;
	transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.whatsapp-quick-replies button:hover,
.whatsapp-quick-replies button:focus-visible {
	border-color: rgba(18, 140, 69, 0.4);
	background: #f4fbf7;
	transform: translateY(-1px);
	outline: none;
}

.whatsapp-chat-form {
	display: grid;
	gap: 0.7rem;
}

.whatsapp-chat-form textarea {
	width: 100%;
	min-height: 92px;
	resize: vertical;
	border-color: rgba(18, 140, 69, 0.22);
	border-radius: 14px;
	font-size: 0.9rem;
}

.whatsapp-chat-form .btn {
	width: 100%;
	background: #25d366;
	color: #073b22;
}

.whatsapp-chat-note {
	margin: -0.25rem 0 0;
	color: var(--color-muted);
	font-size: 0.78rem;
	line-height: 1.45;
}

.whatsapp-noscript {
	display: inline-flex;
	margin-top: 0.5rem;
	color: #25d366;
	font-weight: 800;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 42px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 0.9rem;
}

.pagination-wrap {
	margin-top: 32px;
}

.nav-links {
	display: flex;
	gap: 0.6rem;
	justify-content: center;
}

.nav-links a,
.nav-links span {
	padding: 0.55rem 0.8rem;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-small);
}

@media (max-width: 1080px) {
	.header-cta {
		display: none;
	}

	.feature-grid,
	.why-balanced-grid,
	.icon-feature-grid,
	.card-grid.four {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.newsletter-panel,
	.faq-grid,
	.branch-location-grid,
	.card-grid.two {
		grid-template-columns: 1fr;
	}

	.famicare-panel {
		grid-template-columns: minmax(160px, 240px) minmax(0, 1fr);
	}

	.famicare-action {
		grid-column: 1 / -1;
		justify-items: start;
		min-width: 0;
	}

	.stats-layout {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.stats-intro,
	.stats-note {
		grid-column: 1 / -1;
	}

	.about-full-grid {
		grid-template-columns: 1fr;
	}

	.about-room-media img {
		min-height: 0;
	}

	.footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.header-inner {
		min-height: 72px;
	}

	.site-brand {
		min-width: auto;
	}

	.brand-logo {
		width: 187px;
		max-height: 44px;
	}

	.footer-logo {
		width: 174px;
	}

	.menu-toggle {
		display: inline-flex;
		margin-left: auto;
	}

	.site-nav {
		position: fixed;
		top: 72px;
		left: 0;
		right: 0;
		max-height: calc(100vh - 72px);
		overflow-y: auto;
		background: #fff;
		border-bottom: 1px solid var(--color-line);
		box-shadow: var(--shadow-subtle);
		transform: translateY(-12px);
		opacity: 0;
		visibility: hidden;
		transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
	}

	.site-nav.is-open {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.primary-menu {
		display: grid;
		gap: 0;
		width: min(calc(100% - 40px), var(--container));
		margin: 0 auto;
		padding: 1rem 0 1.2rem;
	}

	.primary-menu a {
		padding: 0.9rem 0;
		border-bottom: 1px solid rgba(231, 222, 216, 0.72);
	}

	.primary-menu .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: 0;
		padding: 0 0 0 1rem;
		background: transparent;
	}

	.hero-grid,
	.split-grid,
	.simulator-layout,
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.hero-grid {
		gap: 42px;
	}

	.page-hero h1 {
		font-size: 2.35rem;
	}

	.hero-copy h1 {
		font-size: calc(2.35rem - 9px);
	}

	.section-heading h2,
	.section-intro h2,
	.cta-band h2 {
		font-size: calc(2.2rem - 3px);
	}

	.product-showcase-content h2 {
		font-size: calc(2.2rem - 3px);
	}

	.hero-visual {
		min-height: 470px;
	}

	.hero-main-photo {
		width: 74%;
	}

	.hero-floating-photo {
		width: 44%;
	}

	.card-grid.three {
		grid-template-columns: 1fr 1fr;
	}

	.section-heading.with-action,
	.cta-band {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.section-heading.with-action {
		display: grid;
	}

	.service-filter-bar {
		top: 78px;
	}

	.service-mini-grid {
		grid-template-columns: 1fr;
	}

	.founder-card {
		grid-template-columns: 1fr;
	}

	.founder-copy {
		width: 100%;
		padding-right: 0;
	}

	.founder-legacy-content {
		grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.18fr);
		gap: 36px;
	}
}

@media (max-width: 640px) {
	body {
		font-size: 15px;
	}

	.container {
		width: min(calc(100% - 28px), var(--container));
	}

	.section,
	.page-hero {
		padding: 64px 0;
	}

	.hero-section {
		padding: 48px 0 52px;
	}

	.hero-grid {
		gap: 28px;
	}

	.hero-media img {
		aspect-ratio: 16 / 9;
	}

	.page-hero h1 {
		font-size: 2.05rem;
	}

	.hero-copy h1 {
		font-size: calc(2.05rem - 9px);
	}

	.section-heading h2,
	.section-intro h2,
	.cta-band h2 {
		font-size: calc(1.85rem - 3px);
	}

	.brand-logo {
		width: 164.3px;
		max-height: 39px;
	}

	.footer-logo {
		width: 152.8px;
		max-height: 36px;
	}

	.product-showcase-section {
		display: flex;
		flex-direction: column;
		min-height: 0;
		padding: 46px 20px 0;
	}

	.product-showcase-content {
		position: static;
		order: 1;
		width: 100%;
		transform: none;
	}

	.product-showcase-content h2 {
		font-size: calc(1.85rem - 3px);
	}

	.product-showcase-image {
		position: static;
		order: 2;
		width: calc(100% + 40px);
		height: auto;
		min-height: 0;
		margin: 36px -20px 0;
		object-fit: contain;
		transform: none;
	}

	.founder-section {
		min-height: 0;
	}

	.founder-legacy-content {
		min-height: 0;
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.founder-copy {
		width: 100%;
		padding: 0 0 3rem;
	}

	.founder-legacy-media {
		align-self: auto;
	}

	.founder-legacy-media img {
		width: min(78%, 290px);
		max-height: 360px;
	}

	.card-grid.three,
	.card-grid.four,
	.feature-grid,
	.why-balanced-grid,
	.icon-feature-grid,
	.faq-grid,
	.card-grid.two,
	.stats-layout,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.newsletter-panel {
		padding: 24px;
		border-radius: 14px;
	}

	.famicare-panel {
		grid-template-columns: 1fr;
		padding: 22px;
		border-radius: 16px;
	}

	.famicare-logo-card {
		min-height: 150px;
	}

	.famicare-logo-card img {
		width: min(100%, 210px);
	}

	.famicare-points {
		display: grid;
	}

	.whatsapp-widget {
		right: 14px;
		bottom: 14px;
	}

	.whatsapp-float {
		padding: 0.68rem;
	}

	.whatsapp-float > span:last-child {
		display: none;
	}

	.about-why-band {
		padding: 64px 0;
	}

	.stats-intro,
	.stats-note {
		grid-column: auto;
	}

	.stat-item {
		min-height: auto;
		padding: 1.4rem 0 0;
		border-left: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.34);
	}

	.hero-visual {
		min-height: 360px;
	}

	.hero-main-photo {
		width: 78%;
		border-radius: 14px;
	}

	.hero-floating-photo {
		width: 44%;
		border-width: 5px;
		border-radius: 14px;
	}

	.hero-result-card {
		width: 58%;
		right: 4%;
		bottom: 4%;
		border-radius: 14px;
	}

	.hero-result-card strong {
		font-size: 1.65rem;
	}

	.about-full-grid,
	.map-overlay-card {
		border-radius: 14px;
	}

	.about-room-media img {
		min-height: 0;
	}

	.service-filter-bar {
		position: static;
		padding: 10px;
	}

	.service-filter-bar button {
		flex: 1 1 auto;
		min-height: 40px;
		padding: 0.68rem 0.82rem;
	}

	.service-mini-card {
		grid-template-columns: 1fr;
	}

	.service-mini-card img {
		width: 100%;
	}

	.service-group-header h2 {
		font-size: 1.65rem;
	}

	.founder-media img {
		width: min(100%, 220px);
	}

	.map-guide-visual,
	.map-guide-container {
		min-height: 590px;
	}

	.map-guide-container {
		align-items: end;
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.map-pin {
		left: 72%;
		top: 24%;
	}

	.testimonial-card {
		flex-basis: calc(100vw - 54px);
	}

	.treatment-options {
		grid-template-columns: 1fr;
	}

	.photo-source-actions {
		grid-template-columns: 1fr;
	}

	.camera-face-guide {
		inset: 7% 12% 21%;
	}

	.camera-capture-actions {
		display: grid;
	}

	.photo-assessment ul {
		grid-template-columns: 1fr;
	}

	.photo-assessment {
		left: 10px;
		right: 10px;
		bottom: 10px;
	}

	.live-face-guide {
		inset: 7% 12% 10%;
	}

	.simulator-actions,
	.hero-actions,
	.cta-actions {
		display: grid;
	}

	.btn,
	.upload-control,
	.option-btn {
		width: 100%;
	}

	.cta-band {
		padding: 28px;
	}

	.footer-bottom,
	.contact-mini-list {
		display: grid;
	}

	.lead-modal-card {
		padding: 24px 18px;
	}
}
