/**
 * Sitewide fix: the parent Cura theme's radiantthemes_scripts() unconditionally
 * dequeues 'elementor-icons-shared-0' / 'elementor-icons-fa-solid' (meant to
 * avoid double-loading an old bundled Font Awesome copy). Those handles also
 * carry Elementor's own base sizing rule for the inline <svg class="e-font-icon-svg">
 * it auto-generates from icon controls — without it, every Elementor icon
 * (ours and any other widget's) renders at raw/unconstrained SVG size, which
 * shows up as huge black icon shapes. Restore it here, loaded on every page.
 */
svg.e-font-icon-svg,
i.e-font-icon-svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
	display: inline-block;
	vertical-align: -0.125em;
	flex-shrink: 0;
}

/**
 * Khan's Medical — Elementor widget library structural/default styles.
 * Per-instance colors, typography, backgrounds and overlays are all
 * controlled from each widget's Style tab in Elementor; this file only
 * supplies layout + sane brand-matched defaults.
 */

.km-widget {
	--km-accent: #219151;
	--km-ink: #16233f;
	--km-slate: #5b6474;
	--km-line: #e4e2da;
	--km-cream: #f7f5ef;
	    font-family: Jost;
	color: var(--km-ink);
}

.km-widget h1,
.km-widget h2,
.km-widget h3,
.km-widget h4 {
	font-family: Jost;
	color: var(--km-ink);
	line-height: 1.2;
	margin: 0 0 8px;
}

.km-widget p {
	margin: 0;
	    font-family: Poppins, sans-serif;
}

.km-widget img {
	max-width: 100%;
	display: block;
}

.km-widget ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

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

.km-container {
	max-width: 1180px;
	margin: 0 auto;
	padding: 64px 24px;
}

/* ---- Section background + overlay ---- */
.km-section-bg {
	position: relative;
}

.km-section-bg::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
}

.km-section-bg>.km-container {
	position: relative;
	z-index: 2;
}

.km-text-center,
.km-text-center .km-section-head {
	text-align: center;
}

.km-text-center .km-eyebrow {
	justify-content: center;
}

.km-section-head.km-text-center {
	margin-left: auto;
	margin-right: auto;
}

/* ---- Shared bits ---- */
.km-eyebrow {
	text-transform: uppercase;
	letter-spacing: .14em;
	font-size: 12.5px;
	font-weight: 700;
	color: var(--km-accent);
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
}

.km-section-head {
	max-width: 640px;
	margin-bottom: 36px;
	text-align: center;
	    margin-left: auto;
    margin-right: auto;
}
.km-section-head .km-eyebrow {
	justify-content: center;
}
.km-section-head-heading {
	font-size: 32px;
	margin-top: 8px;
}

.km-section-head-desc,
.km-section-head p {
	color: var(--km-slate);
	margin-top: 12px;
	font-size: 16px;
}

.km-quote-box {
	background: #fdf3dd;
	border-left: 4px solid var(--km-accent);
	padding: 18px 22px;
	border-radius: 6px;
	font-style: italic;
	color: var(--km-ink);
	font-family: 'Source Serif 4', serif;
	font-size: 16.5px;
	margin-top: 22px;
}

.km-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 26px;
	border-radius: 6px;
	font-weight: 700;
	font-size: 15px;
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: all .18s ease;
	white-space: nowrap;
	text-decoration: none;
}

.km-btn-gold {
	background: var(--km-accent);
	color: #fff;
}

.km-btn-gold:hover {
	filter: brightness(0.9);
	color: #fff;
}

.km-btn-navy {
	background: var(--km-ink);
	color: #fff;
}

.km-btn-navy:hover {
	filter: brightness(1.2);
	color: #fff;
}

.km-btn-outline {
	border-color: rgba(255, 255, 255, .5);
	color: inherit;
	background: transparent;
}

.km-btn-outline:hover {
	border-color: currentColor;
	background: rgba(0, 0, 0, .05);
}

.km-cta-row {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 10px;
}

.km-cta-row-center {
	justify-content: center;
}

/* ================= Hero ================= */
.km-hero {
	color: #fff;
	background: linear-gradient(115deg, rgba(8, 23, 48, .94) 30%, rgba(11, 31, 61, .82) 75%);
}

.km-hero-grid {
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	align-items: center;
	gap: 40px;
	padding: 64px 24px;
	padding-top: 200px;
}

.km-hero-heading {
	font-size: 42px;
	color: #fff;
	margin: 14px 0 16px;
	font-weight: 700;
}

.km-hero-desc {
	color: #c9d2e2;
	font-size: 16.5px;
	max-width: 520px;
	margin-bottom: 24px;
}

.km-hero-trust {
	display: flex;
	gap: 20px;
	margin-top: 30px;
	flex-wrap: wrap;
}

.km-hero-trust span {
	font-size: 13px;
	color: #c9d2e2;
	display: flex;
	align-items: center;
	gap: 7px;
}

.km-hero-trust i {
	color: var(--km-accent);
}

.km-hero-form-card {
	background: #fff;
	border-radius: 12px;
	padding: 28px 26px;
	color: var(--km-ink);
	box-shadow: 0 30px 60px rgba(0, 0, 0, .35);
}

.km-hero-form-card h3 {
	font-size: 19px;
	margin-bottom: 4px;
}

.km-form-sub {
	font-size: 13px;
	color: var(--km-slate);
	margin-bottom: 18px;
}

.km-form-shortcode-area {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.km-form-placeholder {
	font-size: 13px;
	color: var(--km-slate);
	font-style: italic;
	padding: 20px;
	border: 1.5px dashed var(--km-line);
	border-radius: 6px;
	text-align: center;
}

.km-form-note {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 12px;
	color: var(--km-slate);
	margin-top: 14px;
	justify-content: center;
}

.km-form-note i {
	color: var(--km-accent);
}

/* ================= Trust strip ================= */
.km-trust-row {
	display: flex;
	justify-content: center;
	display: grid;
	    grid-template-columns: 1fr 1fr 1fr 1fr;
	padding: 20px 24px;
	flex-wrap: wrap;
	gap: 18px;
}

.km-trust-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
}

.km-trust-item strong {
	display: block;
	font-size: 14.5px;
	color: var(--km-ink);
}

.km-sub {
	color: var(--km-slate);
	font-size: 12.5px;
}

.km-trust-icon {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1.5px solid var(--km-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--km-accent);
	flex-shrink: 0;
	font-size: 16px;
}

/* ================= Icon cards ================= */
.km-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.km-card {
	background: #fff;
	border: 1px solid var(--km-line);
	border-radius: 10px;
	padding: 24px;
}

.km-card-icon {
	width: 44px;
	height: 44px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--km-accent);
	font-size: 19px;
	margin-bottom: 14px;
}

.km-card h3,
.km-card h4 {
	font-size: 17px;
	margin-bottom: 6px;
}

.km-card-text {
	font-size: 14.5px;
	color: var(--km-slate);
}

.km-card-text p:last-child {
	margin-bottom: 0;
}

/* ================= Zigzag split ================= */
.km-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.km-zigzag-right .km-split-media {
	order: 2;
}

.km-zigzag-right .km-split-copy {
	order: 1;
}

.km-split-media img {
	border-radius: 10px;
	width: 100%;
}

.km-split-heading {
	font-size: 28px;
	margin-top: 8px;
}

.km-split-text {
	color: var(--km-slate);
	margin-top: 10px;
}

.km-split-text p:last-child {
	margin-bottom: 0;
}

.km-check-list {
	margin-top: 16px;
}

.km-check-list li {
	display: flex;
	gap: 10px;
	margin-bottom: 10px;
	font-size: 15px;
	align-items: flex-start;
}

.km-check-list i {
	color: var(--km-accent);
	margin-top: 4px;
	font-size: 13px;
}

.km-info-note {
	background: #fdf3dd;
	border-radius: 8px;
	padding: 14px 18px;
	font-size: 14px;
	color: #7a5c15;
	margin-top: 18px;
	display: flex;
	gap: 10px;
	align-items: flex-start;
}

.km-info-note-text p:last-child {
	margin-bottom: 0;
}

/* ================= Checker panel ================= */
.km-checker-panel {
	background: #fff;
	border: 1px solid var(--km-line);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(11, 31, 61, .06);
}

.km-checker-head {
	color: #fff;
	padding: 26px 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.km-checker-head h3 {
	color: #fff;
	font-size: 19px;
	margin-bottom: 4px;
}

.km-checker-head-text {
	color: #b9c4da;
	font-size: 13.5px;
	max-width: 480px;
}

.km-checker-head-text p:last-child {
	margin-bottom: 0;
}

.km-badge-count {
	background: rgba(33, 145, 81, .15);
	border: 1px solid rgba(33, 145, 81, .4);
	color: var(--km-accent);
	font-size: 12.5px;
	font-weight: 700;
	padding: 7px 14px;
	border-radius: 20px;
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.km-checker-body {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.km-checker-col {
	padding: 32px;
}

.km-checker-col+.km-checker-col {
	border-left: 1px solid var(--km-line);
}

.km-checker-col-label {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
}

.km-num-badge {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #fdf3dd;
	color: var(--km-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
	flex-shrink: 0;
}

.km-checker-col-label h4 {
	font-size: 16px;
	color: var(--km-ink);
	margin: 0;
}

.km-checker-col-desc {
	font-size: 13.5px;
	color: var(--km-slate);
	margin-bottom: 18px;
}

.km-symptom-tile {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 16px;
	border-radius: 10px;
	background: var(--km-cream);
	margin-bottom: 10px;
}

.km-tile-ic {
	width: 38px;
	height: 38px;
	border-radius: 8px;
	background: #fff;
	color: var(--km-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	flex-shrink: 0;
	box-shadow: 0 2px 6px rgba(0, 0, 0, .05);
}

.km-symptom-tile span {
	font-size: 14.5px;
	font-weight: 600;
}

.km-cause-tile {
	display: flex;
	gap: 14px;
	padding: 14px 0;
	border-bottom: 1px solid var(--km-line);
}

.km-cause-tile:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.km-cause-tile:first-child {
	padding-top: 0;
}

.km-cause-ic {
	width: 38px;
	height: 38px;
	border-radius: 8px;
	background: var(--km-cream);
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--km-accent);
	font-size: 16px;
}

.km-cause-tile h4 {
	font-size: 14.5px;
	color: var(--km-ink);
	margin-bottom: 3px;
}

.km-cause-text {
	font-size: 13.5px;
	color: var(--km-slate);
}

.km-cause-text p:last-child {
	margin-bottom: 0;
}

.km-checker-foot {
	background: var(--km-cream);
	padding: 18px 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	border-top: 1px solid var(--km-line);
}

.km-checker-foot span {
	font-size: 13.5px;
	color: var(--km-slate);
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.km-checker-foot i {
	color: var(--km-accent);
	margin-top: 3px;
	flex-shrink: 0;
}

/* ================= Banner ================= */
.km-banner {
	background-color: #16233f;
}

.km-banner-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
	padding: 34px 24px;
}

.km-banner-icon-wrap {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.km-banner-icon {
	font-size: 24px;
	color: var(--km-accent);
	margin-top: 4px;
}

.km-banner-heading {
	color: #fff;
	font-size: 22px;
	max-width: 600px;
}

.km-banner-text {
	color: #c9d2e2;
	font-size: 14.5px;
	margin-top: 6px;
	max-width: 580px;
}

/* ================= Packages ================= */
.km-pkg-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.km-pkg-card {
	background: #fff;
	border: 1px solid var(--km-line);
	border-radius: 12px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: box-shadow .2s ease, transform .2s ease;
}

.km-pkg-card:hover {
	box-shadow: 0 18px 40px rgba(11, 31, 61, .12);
	transform: translateY(-3px);
}

.km-pkg-top {
	position: relative;
	height: 150px;
	overflow: hidden;
}

.km-pkg-top img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.km-pkg-top::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(8, 23, 48, .05), rgba(8, 23, 48, .55));
}

.km-pkg-ic {
	position: absolute;
	bottom: 12px;
	left: 14px;
	z-index: 2;
	width: 38px;
	height: 38px;
	border-radius: 8px;
	background: var(--km-accent);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
}

.km-pkg-body {
	padding: 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.km-pkg-eyebrow {
	font-size: 11px;
	color: var(--km-accent);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .06em;
}

.km-pkg-body h3 {
	font-size: 16.5px;
	margin: 6px 0 10px;
	line-height: 1.3;
}

.km-pkg-text {
	font-size: 13.5px;
	color: var(--km-slate);
	flex: 1;
	margin-bottom: 16px;
}

.km-pkg-text p:last-child {
	margin-bottom: 0;
}

.km-pkg-body a {
	font-size: 13.5px;
	font-weight: 700;
	color: var(--km-ink);
	display: flex;
	align-items: center;
	gap: 6px;
	text-decoration: none;
}

.km-pkg-body a i {
	color: var(--km-accent);
}

/* ================= Steps ================= */
.km-steps-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.km-step-card {
	background: #fff;
	border: 1px solid var(--km-line);
	border-radius: 10px;
	padding: 22px;
}

.km-step-num {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--km-ink);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	margin-bottom: 12px;
}

.km-step-card h4 {
	font-size: 16px;
	color: var(--km-ink);
	margin-bottom: 6px;
}

.km-step-text {
	font-size: 14px;
	color: var(--km-slate);
}

.km-step-text p:last-child {
	margin-bottom: 0;
}

/* ================= Doctor panel ================= */
.km-doctor-panel {
	display: grid;
	grid-template-columns: 1fr auto 1.4fr;
	gap: 24px;
	align-items: center;
	background: #fdf3dd;
	border-radius: 10px;
	padding: 26px;
}

.km-doctor-left h4 {
	font-size: 17px;
	color: var(--km-ink);
	margin-bottom: 8px;
}

.km-doctor-left-text {
	font-size: 14px;
	color: #7a5c15;
}

.km-doctor-left-text p:last-child {
	margin-bottom: 0;
}

.km-doctor-photo {
	width: 110px;
	height: 110px;
	border-radius: 10px;
	overflow: hidden;
}

.km-doctor-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.km-doctor-info h3 {
	font-size: 20px;
	margin: 4px 0 4px;
}

.km-cred {
	font-size: 13px;
	color: var(--km-slate);
	margin-bottom: 10px;
}

.km-bio {
	font-size: 14px;
	color: var(--km-ink);
	margin-bottom: 14px;
}

.km-bio p:last-child {
	margin-bottom: 0;
}

.km-badge-row {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 14px;
}

.km-badge-pill {
	font-size: 12px;
	color: var(--km-ink);
	display: flex;
	align-items: center;
	gap: 6px;
}

.km-badge-pill i {
	color: var(--km-accent);
}

/* ================= Patient journey ================= */
.km-journey {
	display: flex;
	justify-content: space-between;
	position: relative;
	margin-top: 20px;
}

.km-journey::before {
	content: "";
	position: absolute;
	top: 17px;
	left: 5%;
	right: 5%;
	height: 2px;
	background: var(--km-line);
}

.km-journey-step {
	position: relative;
	text-align: center;
	flex: 1;
	top: -4px;
}

.km-journey-dot {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--km-accent);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	margin: 0 auto 10px;
	position: relative;
	z-index: 2;
	border: 3px solid #fff;
}

.km-journey-step span {
	font-size: 12.5px;
	font-weight: 600;
	color: var(--km-ink);
}

/* ================= FAQ ================= */
.km-faq-list {
	max-width: 820px;
	margin: 0 auto;
}

.km-faq-item {
	border: 1px solid var(--km-line);
	border-radius: 8px;
	margin-bottom: 12px;
	overflow: hidden;
	background: #fff;
}

.km-faq-q {
	padding: 16px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	gap: 12px;
}

.km-faq-q-text {
	margin: 0;
	font-size: inherit;
	font-family: inherit;
	color: inherit;
	font-weight: inherit;
}

.km-faq-q i {
	color: var(--km-accent);
	transition: transform .2s ease;
	flex-shrink: 0;
}

.km-faq-item.km-open .km-faq-q i {
	transform: rotate(45deg);
}

.km-faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height .25s ease;
	font-size: 14px;
	color: var(--km-slate);
	padding: 0 20px;
}

.km-faq-item.km-open .km-faq-a {
	max-height: 400px;
	padding: 0 20px 16px;
}

.km-faq-a p:last-child {
	margin-bottom: 0;
}

.km-faq-cta {
	text-align: center;
	margin-top: 22px;
}

/* ================= Reviews ================= */
.km-reviews-summary {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin: 0 auto 34px;
	flex-wrap: wrap;
}

.km-reviews-summary>i {
	font-size: 30px;
	color: #4285F4;
}

.km-review-score {
	font-family: 'Source Serif 4', serif;
	font-size: 38px;
	color: var(--km-ink);
	font-weight: 700;
}

.km-review-score span {
	font-size: 18px;
	color: var(--km-slate);
}

.km-stars {
	color: var(--km-accent);
	font-size: 16px;
	margin: 4px 0;
}

.km-reviews-count {
	font-size: 13px;
	color: var(--km-slate);
}

.km-reviews-divider {
	width: 1px;
	height: 50px;
	background: var(--km-line);
}

.km-review-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.km-review-card {
	background: #fff;
	border: 1px solid var(--km-line);
	border-radius: 12px;
	padding: 22px;
}

.km-review-card .km-stars {
	font-size: 13px;
	margin-bottom: 12px;
}

.km-review-text {
	font-size: 14px;
	margin-bottom: 16px;
	line-height: 1.65;
}

.km-review-text p:last-child {
	margin-bottom: 0;
}

.km-review-author {
	display: flex;
	align-items: center;
	gap: 10px;
}

.km-review-avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--km-ink);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
	flex-shrink: 0;
}

.km-review-name {
	font-size: 13.5px;
	font-weight: 700;
	color: var(--km-ink);
}

.km-review-meta {
	font-size: 11.5px;
	color: var(--km-slate);
	display: flex;
	align-items: center;
	gap: 5px;
}

/* ================= Location ================= */
.km-location-panel {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 0;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid var(--km-line);
}

.km-location-info {
	background: var(--km-cream);
	padding: 26px;
}

.km-location-info h3 {
	font-size: 18px;
	margin-bottom: 10px;
}

.km-location-text {
	font-size: 14px;
	color: var(--km-slate);
	margin-bottom: 14px;
}

.km-location-text p:last-child {
	margin-bottom: 0;
}

.km-loc-line {
	display: flex;
	gap: 10px;
	font-size: 13.5px;
	margin-bottom: 8px;
	align-items: center;
}

.km-loc-line i {
	color: var(--km-accent);
	width: 16px;
}

.km-map-embed {
	background: #dde4ea;
	min-height: 220px;
	position: relative;
	overflow: hidden;
}

.km-map-embed img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.km-map-pin {
	position: absolute;
	top: 44%;
	left: 52%;
	background: #c0392b;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 5px 10px;
	border-radius: 20px 20px 20px 4px;
	transform: translate(-50%, -100%);
	display: flex;
	align-items: center;
	gap: 5px;
}

/* ================= Final CTA ================= */
.km-final-cta {
	color: #fff;
	text-align: center;
	background-color: #16233f;
}

.km-final-cta .km-container {
	padding: 54px 24px;
}

.km-final-cta-heading {
	color: #fff;
	font-size: 28px;
}

.km-final-cta-text {
	color: #c9d2e2;
	margin: 10px 0 26px;
}

.km-final-cta-text p:last-child {
	margin-bottom: 0;
}

.km-final-cta-fine {
	margin-top: 16px;
	font-size: 12.5px;
	color: #8ea0bd;
	letter-spacing: .03em;
}

/* ================================================================
   RESPONSIVE — mirrors the source design's breakpoints (980px / 600px)
   ================================================================ */
@media screen and (max-width: 980px) {
	.km-container {
		padding: 40px 20px;
	}

	.km-hero-grid {
		grid-template-columns: 1fr;
		padding: 40px 20px;
	}

	.km-cards-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}

	.km-pkg-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}

	.km-split {
		grid-template-columns: 1fr;
	}

	.km-zigzag-right .km-split-media,
	.km-zigzag-right .km-split-copy {
		order: 0;
	}

	.km-doctor-panel {
		grid-template-columns: 1fr;
		text-align: left;
	}

	.km-steps-row {
		grid-template-columns: 1fr !important;
	}

	.km-checker-body {
		grid-template-columns: 1fr;
	}

	.km-checker-col+.km-checker-col {
		border-left: none;
		border-top: 1px solid var(--km-line);
	}

	.km-review-grid {
		grid-template-columns: 1fr !important;
	}

	.km-location-panel {
		grid-template-columns: 1fr;
	}

	.km-journey {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 22px 16px;
	}

	.km-journey::before {
		display: none;
	}

	.km-journey-step {
		display: flex;
		align-items: center;
		gap: 12px;
		text-align: left;
		top: 0;
	}

	.km-journey-dot {
		margin: 0;
	}

	.km-banner-row {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.km-banner-icon-wrap {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	/* Images: always full-width once sections stack to a single column */
	.km-split-media img,
	.km-pkg-top img,
	.km-map-embed img {
		width: 100%;
	}

	.km-doctor-photo {
		width: 100%;
		height: 220px;
	}

	/* Zigzag: per-instance mobile image position (Content tab) */
	.km-img-mobile-bottom .km-split-media {
		order: 2;
	}

	.km-img-mobile-bottom .km-split-copy {
		order: 1;
	}

	/* Tighter section padding/spacing once stacked */
	.km-checker-head,
	.km-checker-col,
	.km-checker-foot {
		padding: 22px 20px;
	}

	.km-doctor-panel {
		padding: 20px;
	}

	.km-location-info {
		padding: 20px;
	}

	.km-final-cta .km-container {
		padding: 40px 20px;
	}

	.km-pkg-body {
		padding: 16px;
	}
}

@media screen and (max-width: 600px) {
	.km-trust-row {
		    grid-template-columns: 1fr 1fr;
	}
	.km-hero-heading {
		font-size: 30px;
	}

	.km-cards-grid,
	.km-pkg-grid {
		grid-template-columns: 1fr !important;
	}

	.km-checker-head,
	.km-checker-foot {
		flex-direction: column;
		align-items: flex-start;
	}

	.km-container {
		padding: 32px 16px;
	}

	.km-hero-grid {
		padding: 32px 16px;
		        padding-top: 200px;
        padding-bottom: 60px;
		gap: 24px;
	}

	.km-hero-form-card {
		padding: 22px 18px;
	}

	.km-section-head {
		margin-bottom: 26px;
	}

	.km-card,
	.km-step-card {
		padding: 18px;
	}

	.km-checker-col {
		padding: 20px 16px;
	}

	.km-doctor-panel,
	.km-location-info {
		padding: 16px;
	}

	.km-final-cta .km-container {
		padding: 32px 16px;
	}
}