/* Tibi Sahulat homepage — performance-first, no Bootstrap */
:root {
	--home-bg: #f6f8fb;
	--home-surface: #ffffff;
	--home-ink: #0f172a;
	--home-muted: #64748b;
	--home-line: #e2e8f0;
	--home-teal: #0d9488;
	--home-teal-dark: #0f766e;
	--home-teal-soft: #ccfbf1;
	--home-accent: #0369a1;
	--home-radius: 14px;
	--home-radius-sm: 10px;
	--home-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
	--home-font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.home-page {
	margin: 0;
	padding-bottom: 5.5rem;
	font-family: var(--home-font);
	font-size: 1rem;
	line-height: 1.55;
	color: var(--home-ink);
	background: var(--home-bg);
	-webkit-font-smoothing: antialiased;
}
@media (min-width: 960px) {
	body.home-page {
		padding-bottom: 4.5rem;
	}
}
body.home-page--sub {
	padding-bottom: 0;
}

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

.home-wrap {
	width: 100%;
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 1.25rem;
}

.home-skip {
	position: absolute;
	left: -9999px;
	top: 0.5rem;
	z-index: 1000;
	padding: 0.5rem 1rem;
	background: var(--home-ink);
	color: #fff;
	text-decoration: none;
	border-radius: var(--home-radius-sm);
}
.home-skip:focus {
	left: 0.5rem;
}

/* Header */
.home-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--home-line);
}
.home-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 4.25rem;
}
.home-logo img {
	display: block;
	height: 5rem;
	width: auto;
}
.home-nav__list {
	display: none;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 1.5rem;
	align-items: center;
}
.home-nav__list a {
	color: var(--home-muted);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.9375rem;
}
.home-nav__list a:hover {
	color: var(--home-teal-dark);
}
.home-header__actions {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.home-menu-toggle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	border-radius: var(--home-radius-sm);
}
.home-menu-toggle:focus-visible {
	outline: 2px solid var(--home-teal);
	outline-offset: 2px;
}
.home-menu-toggle__bar {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--home-ink);
	margin: 0 auto;
	border-radius: 1px;
}
.home-mobile-panel {
	background: var(--home-surface);
	border-bottom: 1px solid var(--home-line);
}
.home-mobile-panel[hidden] {
	display: none !important;
}
.home-mobile-panel__list {
	list-style: none;
	margin: 0;
	padding: 0.75rem 1.25rem 1.25rem;
}
.home-mobile-panel__list li {
	border-bottom: 1px solid var(--home-line);
}
.home-mobile-panel__list a {
	display: block;
	padding: 0.85rem 0;
	color: var(--home-ink);
	text-decoration: none;
	font-weight: 500;
}

@media (min-width: 960px) {
	.home-nav__list {
		display: flex;
	}
	.home-menu-toggle {
		display: none;
	}
	.home-mobile-panel {
		display: none !important;
	}
}

/* Buttons */
.home-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	padding: 0.55rem 1.1rem;
	font-size: 0.9375rem;
	font-weight: 600;
	font-family: inherit;
	text-decoration: none;
	border-radius: 999px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.home-btn--primary {
	background: var(--home-teal);
	color: #fff;
}
.home-btn--primary:hover {
	background: var(--home-teal-dark);
	color: #fff;
}
.home-btn--ghost {
	background: transparent;
	color: var(--home-teal-dark);
	border-color: var(--home-line);
}
.home-btn--ghost:hover {
	border-color: var(--home-teal);
	background: var(--home-teal-soft);
}
.home-btn--dark {
	background: var(--home-ink);
	color: #fff;
}
.home-btn--dark:hover {
	background: #1e293b;
	color: #fff;
}
.home-btn--accent {
	background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
	color: #fff;
	box-shadow: 0 4px 14px rgba(14, 165, 233, 0.35);
}
.home-btn--accent:hover {
	filter: brightness(1.05);
	color: #fff;
}
.home-btn--sm {
	padding: 0.45rem 0.95rem;
	font-size: 0.875rem;
}
.home-btn--lg {
	padding: 0.75rem 1.35rem;
	font-size: 1rem;
}
.home-btn--block {
	width: 100%;
}

/* Hero */
.home-hero {
	position: relative;
	padding: 2.5rem 0 1rem;
	overflow: hidden;
}
.home-hero__bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(120% 80% at 100% 0%, rgba(13, 148, 136, 0.12), transparent 55%),
		radial-gradient(80% 60% at 0% 100%, rgba(3, 105, 161, 0.08), transparent 50%);
	pointer-events: none;
}
.home-hero__grid {
	position: relative;
	display: grid;
	gap: 2rem;
	align-items: center;
}
@media (min-width: 900px) {
	.home-hero__grid {
		grid-template-columns: 1.05fr 0.95fr;
		gap: 3rem;
		padding: 1rem 0 0.5rem;
	}
}
.home-eyebrow {
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--home-teal-dark);
	margin: 0 0 0.5rem;
}
.home-hero__title {
	font-size: clamp(1.85rem, 4vw, 2.65rem);
	line-height: 1.15;
	font-weight: 800;
	letter-spacing: -0.02em;
	margin: 0 0 1rem;
}
.home-hero__sub {
	margin: 0 0 1.5rem;
	color: var(--home-muted);
	font-size: 1.0625rem;
	max-width: 36rem;
}
.home-hero__cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 1.25rem;
}
.home-trust-line {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0.875rem;
	color: var(--home-muted);
}
.home-trust-line li {
	position: relative;
	padding-left: 1rem;
}
.home-trust-line li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.45em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--home-teal);
}
.home-hero__visual {
	position: relative;
}
.home-hero__img {
	width: 100%;
	height: auto;
	border-radius: var(--home-radius);
	box-shadow: var(--home-shadow);
	display: block;
	background: var(--home-line);
}

/* Search */
.home-search-wrap {
	position: relative;
	margin-top: -2rem;
	margin-bottom: 2rem;
	z-index: 2;
}
@media (min-width: 900px) {
	.home-search-wrap {
		margin-top: -3rem;
	}
}
.home-search-card {
	background: var(--home-surface);
	border-radius: var(--home-radius);
	box-shadow: var(--home-shadow);
	padding: 1.35rem 1.25rem 1.5rem;
	border: 1px solid var(--home-line);
}
.home-search-card__title {
	margin: 0 0 1rem;
	font-size: 1.125rem;
	font-weight: 700;
}
.home-search-card__hint {
	margin: -0.5rem 0 1rem;
	font-size: 0.875rem;
	color: var(--home-muted);
}
.home-search-form__row {
	display: grid;
	gap: 1rem;
}
@media (min-width: 768px) {
	.home-search-form__row {
		grid-template-columns: 1.1fr 1fr 1fr auto;
		align-items: end;
	}
	.home-field--action {
		min-width: 160px;
	}
}
.home-field__label {
	display: block;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--home-muted);
	margin-bottom: 0.35rem;
}
.home-input,
.home-select {
	width: 100%;
	padding: 0.65rem 0.85rem;
	font-size: 1rem;
	font-family: inherit;
	border: 1px solid var(--home-line);
	border-radius: var(--home-radius-sm);
	background: #fff;
	color: var(--home-ink);
	min-height: 48px;
}
.home-input:focus,
.home-select:focus {
	outline: 2px solid var(--home-teal);
	outline-offset: 1px;
	border-color: var(--home-teal);
}

/* Sections */
.home-section {
	padding: 3.25rem 0;
}
.home-section__head {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 2.25rem;
}
.home-section__title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	margin: 0 0 0.5rem;
	font-weight: 800;
	letter-spacing: -0.02em;
}
.home-section__desc {
	margin: 0;
	color: var(--home-muted);
	font-size: 1.0625rem;
}
.home-section__cta {
	text-align: center;
	margin: 2rem 0 0;
}
.home-link-arrow {
	font-weight: 600;
	color: var(--home-teal-dark);
	text-decoration: none;
}
.home-link-arrow:hover {
	text-decoration: underline;
}

/* Specialties */
.home-spec__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.85rem;
}
@media (min-width: 600px) {
	.home-spec__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (min-width: 900px) {
	.home-spec__grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 1rem;
	}
}
.home-spec__card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.35rem;
	padding: 1.1rem 1rem;
	background: var(--home-surface);
	border: 1px solid var(--home-line);
	border-radius: var(--home-radius-sm);
	text-decoration: none;
	color: inherit;
	min-height: 100%;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.home-spec__card:hover {
	border-color: var(--home-teal);
	box-shadow: 0 8px 24px rgba(13, 148, 136, 0.12);
	transform: translateY(-2px);
}
.home-spec__icon {
	color: var(--home-teal);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--home-teal-soft);
}
.home-spec__name {
	font-weight: 700;
	font-size: 0.9375rem;
}
.home-spec__go {
	font-size: 0.8125rem;
	color: var(--home-teal-dark);
	font-weight: 600;
}

/* Doctor cards */
.home-doctors__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}
@media (min-width: 600px) {
	.home-doctors__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 900px) {
	.home-doctors__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}
.home-doc-card {
	background: var(--home-surface);
	border-radius: var(--home-radius);
	border: 1px solid var(--home-line);
	overflow: hidden;
	height: 100%;
	transition: box-shadow 0.15s ease;
}
.home-doc-card:hover {
	box-shadow: var(--home-shadow);
}
.home-doc-card__link {
	display: block;
	padding: 1.25rem;
	text-decoration: none;
	color: inherit;
	height: 100%;
}
.home-doc-card__photo {
	width: 96px;
	height: 96px;
	margin: 0 auto 0.75rem;
	border-radius: 50%;
	overflow: hidden;
	background: var(--home-line);
}
.home-doc-card__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.home-doc-card__name {
	font-size: 1.0625rem;
	font-weight: 700;
	margin: 0 0 0.25rem;
	text-align: center;
}
.home-doc-card__spec {
	margin: 0;
	text-align: center;
	font-size: 0.875rem;
	color: var(--home-teal-dark);
	font-weight: 600;
}
.home-doc-card__loc {
	margin: 0.35rem 0 0;
	text-align: center;
	font-size: 0.8125rem;
	color: var(--home-muted);
	line-height: 1.4;
}
.home-doc-card__badge {
	display: inline-block;
	margin-top: 0.75rem;
	width: 100%;
	text-align: center;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--home-teal-dark);
}
.home-doc-card__badge--new {
	color: #0e7490;
	background: rgba(207, 250, 254, 0.9);
	padding: 0.35rem 0.5rem;
	border-radius: var(--home-radius-sm);
	text-transform: none;
	font-size: 0.6875rem;
	letter-spacing: 0.03em;
}

/* How it works */
.home-how {
	background: linear-gradient(180deg, #fff 0%, var(--home-bg) 100%);
}
.home-how__steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1.25rem;
	counter-reset: step;
}
@media (min-width: 768px) {
	.home-how__steps {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.5rem;
	}
	.home-how__steps--4 {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 1024px) {
	.home-how__steps--4 {
		grid-template-columns: repeat(4, 1fr);
	}
}
.home-how__step {
	background: var(--home-surface);
	border: 1px solid var(--home-line);
	border-radius: var(--home-radius);
	padding: 1.35rem 1.25rem;
	position: relative;
}
.home-how__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background: var(--home-teal);
	color: #fff;
	font-weight: 800;
	font-size: 0.875rem;
	margin-bottom: 0.75rem;
}
.home-how__title {
	margin: 0 0 0.5rem;
	font-size: 1.125rem;
	font-weight: 700;
}
.home-how__text {
	margin: 0;
	color: var(--home-muted);
	font-size: 0.9375rem;
}

/* Reviews */
.home-reviews__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1rem;
}
@media (min-width: 768px) {
	.home-reviews__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
.home-review-card {
	margin: 0;
	padding: 1.25rem;
	background: var(--home-surface);
	border-radius: var(--home-radius-sm);
	border: 1px solid var(--home-line);
	font-size: 0.9375rem;
}
.home-review-card p {
	margin: 0 0 0.75rem;
	color: var(--home-ink);
}
.home-review-card footer {
	font-size: 0.8125rem;
	color: var(--home-muted);
}

/* Stats */
.home-stats {
	background: var(--home-ink);
	color: #fff;
	padding: 2.75rem 0;
}
.home-stats__inner {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	text-align: center;
}
@media (min-width: 768px) {
	.home-stats__inner {
		grid-template-columns: repeat(4, 1fr);
	}
}
.home-stats__value {
	display: block;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 800;
	margin-bottom: 0.35rem;
}
.home-stats__label {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.75);
}

/* Blog */
.home-blog__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1rem;
}
@media (min-width: 640px) {
	.home-blog__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
.home-blog__card {
	display: block;
	padding: 1.25rem;
	background: var(--home-surface);
	border: 1px solid var(--home-line);
	border-radius: var(--home-radius-sm);
	text-decoration: none;
	color: inherit;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
	min-height: 100%;
}
.home-blog__card:hover {
	border-color: var(--home-teal);
	box-shadow: 0 8px 24px rgba(13, 148, 136, 0.1);
}
.home-blog__title {
	margin: 0 0 0.5rem;
	font-size: 1.0625rem;
	font-weight: 700;
	line-height: 1.35;
}
.home-blog__meta {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--home-teal-dark);
}

/* App CTA */
.home-app {
	padding: 3rem 0;
	background: linear-gradient(135deg, var(--home-teal-soft) 0%, #fff 45%, #e0f2fe 100%);
}
.home-app__inner {
	display: grid;
	gap: 2rem;
	align-items: center;
}
@media (min-width: 800px) {
	.home-app__inner {
		grid-template-columns: 1.2fr 0.8fr;
	}
}
.home-app__title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	margin: 0 0 0.75rem;
	font-weight: 800;
}
.home-app__text {
	margin: 0 0 1.25rem;
	color: var(--home-muted);
	max-width: 36rem;
}
.home-app__mock {
	height: 200px;
	border-radius: var(--home-radius);
	background: linear-gradient(160deg, var(--home-teal) 0%, var(--home-accent) 100%);
	opacity: 0.9;
	box-shadow: var(--home-shadow);
}

/* Newsletter */
.home-newsletter__card {
	max-width: 560px;
	margin: 0 auto;
	padding: 1.75rem;
	background: var(--home-surface);
	border-radius: var(--home-radius);
	border: 1px solid var(--home-line);
	text-align: center;
}
.home-newsletter__title {
	margin: 0 0 0.5rem;
	font-size: 1.35rem;
}
.home-newsletter__text {
	margin: 0 0 1.25rem;
	color: var(--home-muted);
}
.home-newsletter__form {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}
@media (min-width: 480px) {
	.home-newsletter__form {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
	}
	.home-newsletter__form .home-input {
		flex: 1;
		min-width: 200px;
	}
}

/* Footer */
.home-footer {
	background: #0c1222;
	color: rgba(255, 255, 255, 0.85);
	padding: 3rem 0 1.5rem;
	font-size: 0.9375rem;
}
.home-footer__grid {
	display: grid;
	gap: 2rem;
}
@media (min-width: 768px) {
	.home-footer__grid {
		grid-template-columns: 1.4fr 1fr 1fr 1fr;
		gap: 2rem;
	}
}
.home-footer__logo-link img {
	filter: brightness(1.08);
}
.home-footer__lead {
	margin: 1rem 0;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
}
.home-social {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 1rem;
}
.home-social a {
	color: #fff;
	font-weight: 600;
	text-decoration: none;
}
.home-social a:hover {
	text-decoration: underline;
}
.home-footer__title {
	font-size: 0.8125rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin: 0 0 0.75rem;
	color: rgba(255, 255, 255, 0.5);
}
.home-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
}
.home-footer__links li {
	margin-bottom: 0.5rem;
}
.home-footer__links a {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
}
.home-footer__links a:hover {
	color: #fff;
	text-decoration: underline;
}
.home-footer__address {
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.5;
}
.home-footer__bottom {
	margin-top: 2.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}
@media (min-width: 640px) {
	.home-footer__bottom {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
}
.home-footer__copy {
	margin: 0;
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.55);
}
.home-footer__copy a {
	color: rgba(255, 255, 255, 0.75);
}
.home-footer__legal {
	margin: 0;
	font-size: 0.8125rem;
}
.home-footer__legal a {
	color: rgba(255, 255, 255, 0.75);
}

.home-back-top {
	position: fixed;
	right: 1rem;
	bottom: 5.25rem;
	z-index: 40;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: none;
	background: var(--home-teal);
	color: #fff;
	font-size: 1.1rem;
	cursor: pointer;
	box-shadow: var(--home-shadow);
}
.home-back-top:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 2px;
}

/* Live activity strip */
.home-live-strip {
	margin-top: 0.5rem;
	margin-bottom: 0;
}
.home-live-strip__list {
	list-style: none;
	margin: 0;
	padding: 1rem 1.25rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.5rem;
	justify-content: center;
	background: var(--home-surface);
	border: 1px solid var(--home-line);
	border-radius: var(--home-radius);
	box-shadow: var(--home-shadow);
	font-size: 0.875rem;
	color: var(--home-muted);
}
.home-live-strip__list strong {
	color: var(--home-teal-dark);
}

/* Latest questions — distinct shell + horizontal carousel */
.home-q-latest {
	background: linear-gradient(180deg, #ecfdf5 0%, #f6f8fb 35%, #f6f8fb 100%);
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
}
.home-q-latest .home-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.home-q-slider-shell {
	background: var(--home-surface);
	border: 1px solid #a7f3d0;
	border-radius: var(--home-radius);
	box-shadow: 0 12px 40px rgba(13, 148, 136, 0.1);
	padding: 1.35rem 0.5rem 1.5rem;
	width: 100%;
	max-width: 960px;
	margin-left: auto;
	margin-right: auto;
}
@media (min-width: 768px) {
	.home-q-slider-shell {
		padding: 1.6rem 1rem 1.65rem;
	}
}
.home-q-slider-shell__cta {
	margin-top: 1.5rem;
	margin-bottom: 0;
	text-align: center;
	width: 100%;
	max-width: 960px;
}
.home-q-carousel {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	justify-content: center;
	gap: 0.35rem;
	width: 100%;
}
@media (min-width: 480px) {
	.home-q-carousel {
		gap: 0.5rem;
	}
}
.home-q-carousel__viewport {
	flex: 1;
	min-width: 0;
	overflow: hidden;
	touch-action: pan-y;
}
.home-q-carousel__track {
	display: flex;
	flex-direction: row;
	gap: 1rem;
	will-change: transform;
}
.home-q-carousel__slide {
	flex-shrink: 0;
	box-sizing: border-box;
}
.home-q-carousel__btn {
	flex-shrink: 0;
	align-self: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 1px solid var(--home-line);
	border-radius: 50%;
	background: #fff;
	color: var(--home-teal-dark);
	font-size: 1.35rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.home-q-carousel__btn:hover {
	background: var(--home-teal-soft);
	border-color: var(--home-teal);
}
.home-q-carousel__btn:focus-visible {
	outline: 2px solid var(--home-teal);
	outline-offset: 2px;
}
@media (max-width: 359px) {
	.home-q-carousel__btn {
		width: 34px;
		height: 34px;
		font-size: 1.15rem;
	}
}
.home-q-slide-card {
	position: relative;
	background: #f8fafc;
	border: 1px solid var(--home-line);
	border-radius: var(--home-radius-sm);
	padding: 1.15rem 1rem 1.2rem;
	min-height: 168px;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.65rem;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
	box-sizing: border-box;
}
.home-q-slide-card:hover {
	border-color: var(--home-teal);
	box-shadow: 0 6px 20px rgba(13, 148, 136, 0.12);
}
.home-q-slide-card--sample {
	border-style: dashed;
	background: linear-gradient(180deg, #fff 0%, #f1f5f9 100%);
}
.home-q-slide-card__pill {
	position: absolute;
	top: 0.55rem;
	right: 0.55rem;
	font-size: 0.625rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--home-muted);
	background: var(--home-line);
	padding: 0.2rem 0.45rem;
	border-radius: 4px;
}
.home-q-slide-card__query {
	margin: 0;
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.45;
	color: var(--home-ink);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-align: center;
	width: 100%;
}
.home-q-slide-card__answers {
	margin: 0;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--home-teal-dark);
	text-align: center;
	width: 100%;
}
.home-q-slide-card__cta {
	margin-top: auto;
	align-self: center;
	text-align: center;
	justify-content: center;
	min-width: 8.5rem;
}

/* Leaderboard */
.home-lb__table-wrap {
	overflow-x: auto;
	border: 1px solid var(--home-line);
	border-radius: var(--home-radius);
	background: var(--home-surface);
}
.home-lb__table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9375rem;
}
.home-lb__table th,
.home-lb__table td {
	padding: 0.85rem 1rem;
	text-align: left;
	border-bottom: 1px solid var(--home-line);
}
.home-lb__table th {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--home-muted);
	background: #f8fafc;
}
.home-lb__table tbody tr:last-child td {
	border-bottom: none;
}
.home-lb__table a {
	color: var(--home-teal-dark);
	font-weight: 600;
	text-decoration: none;
}
.home-lb__table a:hover {
	text-decoration: underline;
}
.home-lb__rank {
	font-weight: 800;
	color: var(--home-accent);
	width: 3rem;
}
.home-lb__badge {
	display: inline-block;
	font-size: 0.6875rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 0.25rem 0.5rem;
	border-radius: 999px;
	background: linear-gradient(135deg, #fef3c7, #fde68a);
	color: #92400e;
}

/* Stars of Tibi Sahulat — responsive grid, consistent card height */
.home-stars {
	background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
	color: #fff;
}
.home-stars .home-section__title,
.home-stars .home-section__desc {
	color: rgba(255, 255, 255, 0.92);
}
.home-stars .home-section__desc {
	color: rgba(255, 255, 255, 0.7);
}
.home-stars__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	align-items: stretch;
	max-width: 920px;
	margin-left: auto;
	margin-right: auto;
}
@media (max-width: 767px) {
	.home-stars__cell--elevated {
		order: -1;
	}
}
@media (min-width: 768px) {
	.home-stars__grid {
		grid-template-columns: 1fr 1.08fr 1fr;
		gap: 1rem;
		align-items: end;
	}
}
.home-stars__cell {
	display: flex;
	min-height: 0;
}
.home-stars__cell--elevated {
	align-items: flex-end;
}
@media (min-width: 768px) {
	.home-stars__cell--elevated {
		margin-bottom: 0.5rem;
	}
}
.home-stars__card {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--home-radius);
	padding: 1.35rem 1.15rem 1.35rem;
	min-height: 300px;
	box-sizing: border-box;
}
@media (min-width: 768px) {
	.home-stars__cell--elevated .home-stars__card {
		min-height: 340px;
		padding-top: 1.65rem;
		border-color: rgba(251, 191, 36, 0.35);
		box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
	}
}
.home-stars__card--gold {
	border-color: rgba(251, 191, 36, 0.45);
}
.home-stars__badge-row {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	margin-bottom: 0.65rem;
	padding: 0.35rem 0.65rem;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 0.8125rem;
	font-weight: 800;
	letter-spacing: 0.02em;
}
.home-stars__emoji {
	font-size: 1.15rem;
	line-height: 1;
}
.home-stars__tier-lbl {
	color: rgba(255, 255, 255, 0.95);
}
.home-stars__photo {
	width: 96px;
	height: 96px;
	margin: 0 0 0.85rem;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid rgba(255, 255, 255, 0.22);
	background: rgba(255, 255, 255, 0.08);
	flex-shrink: 0;
}
.home-stars__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.home-stars__name {
	margin: 0 0 0.35rem;
	font-size: 1.0625rem;
	line-height: 1.3;
	min-height: 2.6em;
	display: flex;
	align-items: center;
	justify-content: center;
}
.home-stars__name a {
	color: #fff;
	text-decoration: none;
}
.home-stars__name a:hover {
	text-decoration: underline;
}
.home-stars__spec {
	margin: 0;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.68);
	line-height: 1.35;
	min-height: 2.4em;
}
.home-stars__stat {
	margin: auto 0 0;
	padding-top: 0.75rem;
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.88);
	line-height: 1.4;
}
.home-stars__stars {
	color: #ffc107;
	letter-spacing: 0.08em;
	text-shadow: 0 0 1px rgba(0, 0, 0, 0.4);
	margin-left: 0.35rem;
}
.home-stars__ribbon {
	display: inline-block;
	margin-top: 0.85rem;
	font-size: 0.65rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 0.3rem 0.65rem;
	border-radius: 999px;
	background: rgba(13, 148, 136, 0.35);
	border: 1px solid rgba(13, 148, 136, 0.55);
	color: #99f6e4;
}

/* Doctor motivation */
.home-motivate__grid {
	display: grid;
	gap: 2rem;
	align-items: center;
}
@media (min-width: 900px) {
	.home-motivate__grid {
		grid-template-columns: 1.2fr 0.8fr;
	}
}
.home-motivate__text {
	color: var(--home-muted);
	font-size: 1.0625rem;
	line-height: 1.6;
	margin: 0 0 1rem;
}
.home-motivate__steps {
	margin: 0 0 1.25rem;
	padding-left: 1.25rem;
	color: var(--home-muted);
	line-height: 1.6;
}
.home-motivate__steps li {
	margin-bottom: 0.5rem;
}
.home-motivate__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}
.home-motivate__panel {
	min-height: 220px;
	border-radius: var(--home-radius);
	background: linear-gradient(160deg, var(--home-teal-soft), #e0f2fe);
	border: 1px solid var(--home-line);
	display: flex;
	align-items: center;
	justify-content: center;
}
.home-motivate__panel-inner {
	padding: 1.5rem;
	text-align: center;
}
.home-motivate__kpi {
	margin: 0 0 0.75rem;
	font-size: 0.75rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--home-teal-dark);
}
.home-motivate__loop {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: center;
	font-weight: 700;
	font-size: 0.9375rem;
	color: var(--home-ink);
}
.home-motivate__loop li {
	padding: 0.4rem 0.75rem;
	background: #fff;
	border-radius: 999px;
	border: 1px solid var(--home-line);
}

/* FAQ */
.home-faq__list {
	max-width: 720px;
	margin: 0 auto;
}
.home-faq__q {
	margin: 1.25rem 0 0.35rem;
	font-weight: 700;
	font-size: 1rem;
}
.home-faq__q:first-child {
	margin-top: 0;
}
.home-faq__a {
	margin: 0;
	padding: 0 0 0.5rem;
	border-bottom: 1px solid var(--home-line);
	color: var(--home-muted);
	font-size: 0.9375rem;
	line-height: 1.55;
}
.home-faq__a:last-of-type {
	border-bottom: none;
}

/* Traffic + designed */
.home-traffic {
	background: #fff;
}
.home-traffic__lead {
	color: var(--home-muted);
	font-size: 1.0625rem;
	line-height: 1.65;
	margin: 0 0 1rem;
}
.home-traffic__checks {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.85rem;
}
.home-traffic__checks li {
	padding-left: 1.5rem;
	position: relative;
	color: var(--home-muted);
	font-size: 0.9375rem;
	line-height: 1.5;
}
.home-traffic__checks li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.45em;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--home-teal);
}
.home-designed__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr;
}
@media (min-width: 640px) {
	.home-designed__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 1000px) {
	.home-designed__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}
.home-designed__item {
	background: var(--home-surface);
	border: 1px solid var(--home-line);
	border-radius: var(--home-radius-sm);
	padding: 1.15rem 1rem;
	position: relative;
}
.home-designed__n {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.75rem;
	height: 1.75rem;
	border-radius: 50%;
	background: var(--home-teal-soft);
	color: var(--home-teal-dark);
	font-weight: 800;
	font-size: 0.8125rem;
	margin-bottom: 0.5rem;
}
.home-designed__h {
	margin: 0 0 0.35rem;
	font-size: 1rem;
	font-weight: 700;
}
.home-designed__item p {
	margin: 0;
	font-size: 0.875rem;
	color: var(--home-muted);
	line-height: 1.45;
}

/* Sticky CTA bar */
.home-sticky-cta {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 60;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.5rem 0.75rem;
	padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0));
	background: rgba(255, 255, 255, 0.96);
	border-top: 1px solid var(--home-line);
	box-shadow: 0 -8px 32px rgba(15, 23, 42, 0.08);
}
.home-sticky-cta__main {
	flex: 1 1 auto;
	min-width: 160px;
	max-width: 280px;
	justify-content: center;
}
.home-sticky-cta__sub {
	flex: 0 1 auto;
	border-color: var(--home-line);
}

/* Public Q&A page */
.home-qa-public__meta {
	color: var(--home-muted);
	font-size: 0.875rem;
	margin: 0 0 1rem;
}
.home-qa-answer {
	margin-bottom: 1.25rem;
}
.home-qa-answer__by {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
	align-items: baseline;
	margin-bottom: 0.5rem;
	font-size: 0.875rem;
	font-weight: 600;
}
.home-qa-answer__by a {
	color: var(--home-teal-dark);
	text-decoration: none;
}
.home-qa-answer__when {
	font-weight: 500;
	color: var(--home-muted);
	font-size: 0.8125rem;
}

/* Doctor directory (/doctors) — homepage theme */
.home-dir-page {
	padding-top: 1.25rem;
	padding-bottom: 2.5rem;
}
.home-dir-breadcrumb {
	font-size: 0.875rem;
	color: var(--home-muted);
	margin: 0 0 1rem;
}
.home-dir-breadcrumb a {
	color: var(--home-teal-dark);
	text-decoration: none;
}
.home-dir-breadcrumb a:hover {
	text-decoration: underline;
}
.home-dir-title {
	font-size: clamp(1.35rem, 3vw, 1.75rem);
	font-weight: 700;
	margin: 0 0 0.5rem;
	letter-spacing: -0.02em;
	line-height: 1.2;
}
.home-dir-lead {
	color: var(--home-muted);
	margin: 0 0 1.5rem;
	max-width: 52ch;
}
.home-dir-search {
	margin-bottom: 1.5rem;
}
.home-dir-count {
	margin: 0 0 1rem;
	font-size: 0.9375rem;
	color: var(--home-muted);
}
.home-dir-grid {
	list-style: none;
	margin: 0;
	padding: 0;
}
.home-dir-pagination {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.5rem 0.75rem;
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--home-line);
}
.home-dir-pagination__info {
	font-size: 0.875rem;
	color: var(--home-muted);
}
.home-dir-activity {
	margin: 0.35rem 0 0;
	font-size: 0.8125rem;
	color: var(--home-muted);
	text-align: center;
}
.home-dir-verified {
	color: var(--home-teal-dark);
	font-weight: 600;
}
.home-no-results {
	margin: 1.5rem 0;
	color: var(--home-muted);
}
.home-no-results a {
	color: var(--home-teal-dark);
	font-weight: 600;
}

.home-about-copy {
	max-width: 72ch;
}
.home-about-copy p {
	margin: 0 0 1rem;
	color: var(--home-ink);
}
