.bjc-app,
.bjc-app * {
	box-sizing: border-box;
}

.bjc-app {
	--bjc-primary: #075a78;
	--bjc-accent: #21c7b7;
	--bjc-ink: #122331;
	--bjc-muted: #60717f;
	--bjc-border: #dce8ec;
	--bjc-soft: #f3f9fa;
	--bjc-danger: #b42318;
	--bjc-shadow: 0 24px 70px rgba(5, 58, 77, .12);
	width: min(1180px, calc(100% - 32px));
	margin: 24px auto 88px;
	color: var(--bjc-ink);
	font-family: Vazirmatn, IRANSansX, Tahoma, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.75;
	isolation: isolate;
}

.bjc-app button,
.bjc-app input,
.bjc-app select,
.bjc-app textarea {
	font: inherit;
}

.bjc-app button,
.bjc-app a,
.bjc-app label,
.bjc-app summary {
	-webkit-tap-highlight-color: transparent;
}

.bjc-app a {
	text-decoration: none;
}

.bjc-app [hidden] {
	display: none !important;
}

.bjc-hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(280px, .75fr);
	align-items: center;
	min-height: 520px;
	padding: 58px 68px;
	overflow: hidden;
	border-radius: 36px;
	background:
		radial-gradient(circle at 88% 20%, rgba(59, 226, 196, .28), transparent 29%),
		linear-gradient(135deg, #064966 0%, #087191 56%, #0b8b8c 100%);
	box-shadow: var(--bjc-shadow);
	color: #fff;
}

.bjc-hero::before,
.bjc-hero::after {
	position: absolute;
	content: "";
	border: 1px solid rgba(255,255,255,.13);
	border-radius: 50%;
}

.bjc-hero::before {
	width: 430px;
	height: 430px;
	right: -150px;
	top: -170px;
}

.bjc-hero::after {
	width: 250px;
	height: 250px;
	right: 22%;
	bottom: -180px;
}

.bjc-hero-copy,
.bjc-doctor-visual {
	position: relative;
	z-index: 1;
}

.bjc-doctor-kicker {
	display: inline-flex;
	align-items: center;
	gap: 13px;
	padding: 8px 10px 8px 18px;
	margin-bottom: 27px;
	border: 1px solid rgba(255,255,255,.23);
	border-radius: 18px;
	background: rgba(255,255,255,.1);
	backdrop-filter: blur(12px);
}

.bjc-doctor-kicker img {
	width: 52px;
	height: 52px;
	object-fit: contain;
	border-radius: 13px;
	background: #fff;
}

.bjc-doctor-kicker div {
	display: flex;
	flex-direction: column;
	line-height: 1.45;
}

.bjc-doctor-kicker strong {
	font-size: 16px;
}

.bjc-doctor-kicker span {
	font-size: 12px;
	color: rgba(255,255,255,.77);
}

.bjc-hero h1 {
	max-width: 690px;
	margin: 0 0 18px;
	color: #fff;
	font-size: clamp(34px, 4.2vw, 58px);
	font-weight: 900;
	line-height: 1.35;
	letter-spacing: -.8px;
}

.bjc-hero-copy > p {
	max-width: 700px;
	margin: 0 0 22px;
	color: rgba(255,255,255,.84);
	font-size: 18px;
}

.bjc-trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
	margin: 0 0 30px;
	font-size: 14px;
	color: #dffcf8;
}

.bjc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 12px 24px;
	border: 0;
	border-radius: 15px;
	cursor: pointer;
	font-weight: 800;
	line-height: 1.4;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.bjc-btn:hover {
	transform: translateY(-2px);
}

.bjc-btn-light {
	background: #fff;
	box-shadow: 0 10px 30px rgba(1,40,56,.18);
	color: var(--bjc-primary);
}

.bjc-btn-primary {
	background: linear-gradient(135deg, var(--bjc-primary), #087f91);
	box-shadow: 0 10px 24px rgba(7,90,120,.22);
	color: #fff !important;
}

.bjc-btn-sms {
	background: #e2f8f4;
	color: #08675f !important;
}

.bjc-btn-ghost {
	border: 1px solid var(--bjc-border);
	background: #fff;
	color: var(--bjc-ink);
}

.bjc-doctor-visual {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 380px;
}

.bjc-photo-ring {
	position: relative;
	width: min(330px, 100%);
	aspect-ratio: 1;
	padding: 10px;
	border: 1px solid rgba(255,255,255,.35);
	border-radius: 50%;
	background: rgba(255,255,255,.1);
	box-shadow: 0 24px 55px rgba(1,39,52,.22);
}

.bjc-photo-ring::after {
	position: absolute;
	inset: 22px -8px -8px 22px;
	z-index: -1;
	content: "";
	border-radius: 50%;
	background: var(--bjc-accent);
	opacity: .48;
}

.bjc-photo-ring img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: 5px solid #fff;
	border-radius: 50%;
}

.bjc-visual-note {
	position: absolute;
	bottom: 18px;
	right: -10px;
	display: flex;
	flex-direction: column;
	padding: 12px 18px;
	border: 1px solid rgba(255,255,255,.28);
	border-radius: 16px;
	background: rgba(3,52,72,.72);
	box-shadow: 0 12px 28px rgba(0,0,0,.16);
	backdrop-filter: blur(14px);
	line-height: 1.5;
}

.bjc-visual-note span {
	font-size: 12px;
	color: rgba(255,255,255,.73);
}

.bjc-calculator-shell {
	position: relative;
	margin: 42px auto 0;
	padding: 52px clamp(24px, 5vw, 72px) 44px;
	border: 1px solid #e4eef1;
	border-radius: 32px;
	background: #fff;
	box-shadow: var(--bjc-shadow);
}

.bjc-section-head {
	max-width: 760px;
	margin: 0 auto 34px;
	text-align: center;
}

.bjc-eyebrow {
	display: inline-block;
	margin-bottom: 8px;
	color: var(--bjc-primary);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: .2px;
}

.bjc-section-head h2,
.bjc-consultation h2 {
	margin: 0 0 9px;
	color: var(--bjc-ink);
	font-size: clamp(27px, 3vw, 40px);
	font-weight: 900;
	line-height: 1.45;
}

.bjc-section-head p {
	margin: 0;
	color: var(--bjc-muted);
}

.bjc-progress {
	position: relative;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	max-width: 750px;
	margin: 0 auto 48px;
}

.bjc-progress-track {
	position: absolute;
	top: 19px;
	right: 10%;
	left: 10%;
	height: 4px;
	overflow: hidden;
	border-radius: 99px;
	background: #e6eff1;
}

.bjc-progress-track span {
	display: block;
	width: 0;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--bjc-accent), var(--bjc-primary));
	transition: width .35s ease;
}

.bjc-progress-item {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	color: #8b9aa4;
}

.bjc-progress-item i {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 3px solid #e6eff1;
	border-radius: 50%;
	background: #fff;
	font-style: normal;
	font-size: 13px;
	font-weight: 900;
}

.bjc-progress-item small {
	font-size: 12px;
	font-weight: 700;
}

.bjc-progress-item.is-active,
.bjc-progress-item.is-done {
	color: var(--bjc-primary);
}

.bjc-progress-item.is-active i,
.bjc-progress-item.is-done i {
	border-color: var(--bjc-primary);
	box-shadow: 0 0 0 5px rgba(7,90,120,.08);
}

.bjc-progress-item.is-done i {
	background: var(--bjc-primary);
	color: #fff;
}

.bjc-form {
	max-width: 900px;
	margin: 0 auto;
}

.bjc-step {
	display: none;
	animation: bjcStepIn .32s ease both;
}

.bjc-step.is-active {
	display: block;
}

@keyframes bjcStepIn {
	from { opacity: 0; transform: translateY(9px); }
	to { opacity: 1; transform: translateY(0); }
}

.bjc-question {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 26px;
}

.bjc-question > span {
	display: grid;
	place-items: center;
	flex: 0 0 42px;
	height: 42px;
	border-radius: 14px;
	background: #e8f7f7;
	color: var(--bjc-primary);
	font-size: 18px;
	font-weight: 900;
}

.bjc-question h3 {
	margin: 0 0 3px;
	color: var(--bjc-ink);
	font-size: clamp(22px, 2.6vw, 30px);
	font-weight: 900;
	line-height: 1.5;
}

.bjc-question p {
	margin: 0;
	color: var(--bjc-muted);
	font-size: 14px;
}

.bjc-choice-grid {
	display: grid;
	gap: 16px;
}

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

.bjc-choice-card {
	position: relative;
	display: grid;
	grid-template-columns: 58px minmax(0,1fr) auto;
	grid-template-rows: auto auto;
	align-items: center;
	gap: 2px 15px;
	min-height: 118px;
	padding: 20px;
	border: 2px solid var(--bjc-border);
	border-radius: 20px;
	background: #fff;
	cursor: pointer;
	transition: border .2s ease, box-shadow .2s ease, transform .2s ease;
}

.bjc-choice-card:hover,
.bjc-choice-card:has(input:checked) {
	border-color: var(--bjc-primary);
	box-shadow: 0 12px 30px rgba(7,90,120,.1);
	transform: translateY(-2px);
}

.bjc-choice-card input,
.bjc-pill-grid input,
.bjc-insurer input,
.bjc-implant input,
.bjc-condition-grid input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.bjc-choice-icon {
	display: grid;
	grid-row: 1 / 3;
	place-items: center;
	width: 58px;
	height: 58px;
	border-radius: 17px;
	background: var(--bjc-soft);
	font-size: 27px;
}

.bjc-choice-card b {
	font-size: 19px;
}

.bjc-choice-card small {
	color: var(--bjc-muted);
}

.bjc-choice-card em {
	grid-row: 1 / 3;
	padding: 5px 10px;
	border-radius: 99px;
	background: #edf4f6;
	color: var(--bjc-muted);
	font-style: normal;
	font-size: 12px;
	font-weight: 800;
}

.bjc-choice-card:has(input:checked) em {
	background: var(--bjc-primary);
	color: #fff;
}

.bjc-subquestion {
	margin: 28px 0 12px;
}

.bjc-subquestion h4 {
	margin: 0;
	font-size: 16px;
	font-weight: 900;
}

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

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

.bjc-pill-grid label {
	position: relative;
	display: block;
	cursor: pointer;
}

.bjc-pill-grid label > span {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	min-height: 72px;
	padding: 12px 15px;
	border: 2px solid var(--bjc-border);
	border-radius: 16px;
	background: #fff;
	text-align: center;
	transition: border .2s ease, background .2s ease;
}

.bjc-pill-grid input:checked + span {
	border-color: var(--bjc-primary);
	background: #f0fbfa;
	box-shadow: inset 0 0 0 1px var(--bjc-primary);
}

.bjc-pill-grid small {
	color: var(--bjc-muted);
	font-size: 12px;
}

.bjc-fields {
	display: grid;
	grid-template-columns: 1fr .55fr;
	gap: 16px;
}

.bjc-field {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.bjc-field-wide {
	grid-column: 1 / -1;
}

.bjc-field > span {
	font-size: 14px;
	font-weight: 800;
}

.bjc-field input,
.bjc-search input {
	width: 100%;
	height: 56px;
	padding: 10px 15px;
	border: 2px solid var(--bjc-border);
	border-radius: 14px;
	outline: 0;
	background: #fff;
	color: var(--bjc-ink);
	transition: border .2s ease, box-shadow .2s ease;
}

.bjc-field input:focus,
.bjc-search input:focus {
	border-color: var(--bjc-primary);
	box-shadow: 0 0 0 4px rgba(7,90,120,.08);
}

.bjc-field.is-invalid input,
.bjc-invalid {
	border-color: var(--bjc-danger) !important;
	box-shadow: 0 0 0 4px rgba(180,35,24,.07) !important;
}

.bjc-insurer-panel {
	margin-top: 22px;
	padding: 20px;
	border: 1px solid var(--bjc-border);
	border-radius: 19px;
	background: #fbfdfd;
}

.bjc-search {
	position: relative;
	display: block;
}

.bjc-search span {
	position: absolute;
	top: 50%;
	right: 17px;
	transform: translateY(-50%);
	color: var(--bjc-muted);
	font-size: 22px;
}

.bjc-search input {
	padding-right: 47px;
}

.bjc-help {
	margin: 10px 2px 14px;
	color: var(--bjc-muted);
	font-size: 12px;
}

.bjc-insurer-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 9px;
	max-height: 355px;
	padding: 2px;
	overflow-y: auto;
}

.bjc-insurer {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 62px;
	padding: 9px;
	border: 2px solid #e4edef;
	border-radius: 14px;
	background: #fff;
	cursor: pointer;
}

.bjc-insurer:hover,
.bjc-insurer:has(input:checked) {
	border-color: var(--bjc-primary);
	background: #f0fbfa;
}

.bjc-insurer i,
.bjc-insurer img {
	display: grid;
	place-items: center;
	flex: 0 0 35px;
	width: 35px;
	height: 35px;
	border-radius: 11px;
	object-fit: contain;
	background: #fff;
}

.bjc-insurer i {
	background: var(--insurer-color);
	color: #fff;
	font-style: normal;
	font-size: 12px;
	font-weight: 900;
}

.bjc-insurer span {
	font-size: 12px;
	font-weight: 800;
	line-height: 1.5;
}

.bjc-no-insurer {
	padding: 16px;
	color: var(--bjc-muted);
	text-align: center;
}

.bjc-inline-note {
	margin-top: 18px;
	padding: 12px 15px;
	border-right: 4px solid var(--bjc-accent);
	border-radius: 10px;
	background: #f0fbfa;
	color: #38535e;
	font-size: 13px;
}

.bjc-inline-note-warning {
	border-color: #f5a524;
	background: #fff8e8;
	color: #72531c;
}

.bjc-condition-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
}

.bjc-condition-grid label {
	position: relative;
	cursor: pointer;
}

.bjc-condition-grid span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	padding: 10px;
	border: 2px solid var(--bjc-border);
	border-radius: 14px;
	background: #fff;
	text-align: center;
	font-size: 13px;
	font-weight: 700;
}

.bjc-condition-grid input:checked + span {
	border-color: var(--bjc-primary);
	background: #effafa;
	color: var(--bjc-primary);
}

.bjc-other-condition {
	margin-top: 16px;
}

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

.bjc-implant {
	position: relative;
	padding: 17px;
	border: 2px solid var(--bjc-border);
	border-radius: 19px;
	background: #fff;
	transition: border .2s ease, box-shadow .2s ease;
}

.bjc-implant:hover,
.bjc-implant:has(input:checked) {
	border-color: var(--implant-color);
	box-shadow: 0 10px 25px rgba(21,54,69,.08);
}

.bjc-implant > label {
	display: flex;
	align-items: center;
	gap: 11px;
	cursor: pointer;
}

.bjc-flag {
	display: grid;
	place-items: center;
	flex: 0 0 48px;
	height: 48px;
	border-radius: 14px;
	background: #f2f6f7;
	font-size: 25px;
}

.bjc-implant-title {
	display: flex;
	flex: 1;
	flex-direction: column;
	line-height: 1.55;
}

.bjc-implant-title b {
	font-size: 15px;
}

.bjc-implant-title small {
	color: var(--bjc-muted);
	font-size: 12px;
}

.bjc-implant > label > i {
	padding: 4px 8px;
	border-radius: 99px;
	background: #edf2f3;
	color: var(--bjc-muted);
	font-style: normal;
	font-size: 11px;
	font-weight: 900;
}

.bjc-implant:has(input:checked) > label > i {
	background: var(--implant-color);
	color: #fff;
}

.bjc-implant > p {
	margin: 13px 0 7px;
	color: var(--bjc-muted);
	font-size: 12px;
}

.bjc-implant details {
	border-top: 1px solid #ebf0f2;
	padding-top: 8px;
}

.bjc-implant summary {
	cursor: pointer;
	color: var(--bjc-primary);
	font-size: 12px;
	font-weight: 900;
}

.bjc-implant details div {
	padding-top: 9px;
	color: var(--bjc-muted);
	font-size: 12px;
}

.bjc-implant details a {
	display: inline-block;
	margin-right: 7px;
	color: var(--bjc-primary);
	font-weight: 800;
}

.bjc-reassurance {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-top: 18px;
	padding: 16px;
	border-radius: 15px;
	background: #eef9f5;
	color: #31584e;
}

.bjc-reassurance > span {
	display: grid;
	place-items: center;
	flex: 0 0 28px;
	height: 28px;
	border-radius: 50%;
	background: #149474;
	color: #fff;
	font-weight: 900;
}

.bjc-reassurance p {
	margin: 0;
	font-size: 13px;
}

.bjc-consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-top: 18px;
	padding: 14px;
	border: 1px solid var(--bjc-border);
	border-radius: 13px;
	cursor: pointer;
}

.bjc-consent input {
	width: 21px;
	height: 21px;
	margin-top: 3px;
	accent-color: var(--bjc-primary);
}

.bjc-consent span {
	display: flex;
	flex-direction: column;
	font-size: 13px;
	font-weight: 800;
}

.bjc-consent small {
	color: var(--bjc-muted);
	font-weight: 400;
}

.bjc-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.bjc-form-error {
	margin-top: 18px;
	padding: 12px 15px;
	border: 1px solid #f4c7c3;
	border-radius: 12px;
	background: #fff1f0;
	color: var(--bjc-danger);
	font-size: 13px;
	font-weight: 800;
}

.bjc-form-nav {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	margin-top: 30px;
	padding-top: 22px;
	border-top: 1px solid #e9f0f2;
}

.bjc-form-nav .bjc-next,
.bjc-form-nav .bjc-submit {
	margin-right: auto;
	min-width: 180px;
}

.bjc-spinner {
	width: 19px;
	height: 19px;
	margin-right: 9px;
	border: 2px solid rgba(255,255,255,.4);
	border-top-color: #fff;
	border-radius: 50%;
	animation: bjcSpin .7s linear infinite;
}

@keyframes bjcSpin { to { transform: rotate(360deg); } }

.bjc-result {
	max-width: 800px;
	margin: 10px auto 0;
	animation: bjcStepIn .4s ease both;
}

.bjc-result-success {
	display: flex;
	align-items: center;
	gap: 13px;
	margin-bottom: 22px;
}

.bjc-result-success > span {
	display: grid;
	place-items: center;
	flex: 0 0 52px;
	height: 52px;
	border-radius: 50%;
	background: #daf4ea;
	color: #08795c;
	font-size: 24px;
	font-weight: 900;
}

.bjc-result-success h3 {
	margin: 0;
	font-size: 25px;
}

.bjc-result-success p {
	margin: 0;
	color: var(--bjc-muted);
	font-size: 13px;
}

.bjc-result-summary {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
}

.bjc-result-summary span {
	padding: 7px 11px;
	border-radius: 10px;
	background: var(--bjc-soft);
	color: #395461;
	font-size: 12px;
	font-weight: 800;
}

.bjc-price-box {
	padding: 28px;
	border-radius: 23px;
	background: linear-gradient(135deg, #064f6b, #07828a);
	box-shadow: 0 18px 38px rgba(5,83,105,.2);
	color: #fff;
	text-align: center;
}

.bjc-price-label {
	display: block;
	font-size: 13px;
	opacity: .77;
}

.bjc-total-price {
	margin: 3px 0;
	font-size: clamp(34px, 6vw, 54px);
	font-weight: 900;
	line-height: 1.35;
}

.bjc-price-box small {
	opacity: .78;
}

.bjc-price-box.is-quote .bjc-total-price {
	font-size: clamp(24px, 4vw, 36px);
}

.bjc-breakdown {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-top: 14px;
}

.bjc-breakdown div {
	padding: 13px 15px;
	border: 1px solid var(--bjc-border);
	border-radius: 13px;
	background: #fbfdfd;
	font-size: 13px;
}

.bjc-breakdown span {
	display: block;
	color: var(--bjc-muted);
	font-size: 11px;
}

.bjc-total-note {
	margin: 10px 0 0;
	color: var(--bjc-muted);
	font-size: 11px;
	text-align: center;
}

.bjc-disclaimer {
	margin-top: 16px;
	padding: 14px 16px;
	border-radius: 13px;
	background: #fff8e9;
	color: #72531c;
	font-size: 12px;
}

.bjc-result-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 20px;
}

.bjc-result-actions .bjc-text-link {
	grid-column: 1 / -1;
	padding: 7px;
	color: var(--bjc-primary);
	font-size: 13px;
	font-weight: 900;
	text-align: center;
}

.bjc-restart {
	display: block;
	margin: 14px auto 0;
	padding: 8px 15px;
	border: 0;
	background: transparent;
	color: var(--bjc-muted);
	cursor: pointer;
	font-size: 12px;
	text-decoration: underline;
}

.bjc-consultation {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr);
	align-items: center;
	gap: 45px;
	margin-top: 42px;
	padding: clamp(32px, 5vw, 60px);
	border-radius: 30px;
	background: linear-gradient(135deg, #eef9f8, #f9fcfc);
	box-shadow: 0 16px 50px rgba(11,71,85,.08);
}

.bjc-consultation-copy > p {
	max-width: 650px;
	margin: 0 0 18px;
	color: var(--bjc-muted);
	font-size: 17px;
}

.bjc-office-meta {
	display: flex;
	flex-direction: column;
	gap: 5px;
	color: #3d5660;
	font-size: 13px;
}

.bjc-contact-card {
	display: grid;
	gap: 9px;
	padding: 18px;
	border: 1px solid #dbe9ea;
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 12px 35px rgba(8,76,91,.1);
}

.bjc-contact-main {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px;
	border-radius: 15px;
	background: #eff9f8;
	color: var(--bjc-ink);
}

.bjc-contact-main i {
	display: grid;
	place-items: center;
	width: 43px;
	height: 43px;
	border-radius: 13px;
	background: var(--bjc-primary);
	color: #fff;
	font-style: normal;
}

.bjc-contact-main span {
	display: flex;
	flex-direction: column;
	line-height: 1.5;
}

.bjc-contact-main small,
.bjc-contact-alt span {
	color: var(--bjc-muted);
	font-size: 11px;
}

.bjc-contact-main b {
	font-size: 20px;
}

.bjc-contact-alt {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 4px 12px 10px;
	color: var(--bjc-ink);
}

.bjc-faq {
	margin-top: 52px;
}

.bjc-faq-list {
	display: grid;
	gap: 10px;
	max-width: 900px;
	margin: 0 auto;
}

.bjc-faq-list details {
	border: 1px solid var(--bjc-border);
	border-radius: 16px;
	background: #fff;
	overflow: hidden;
}

.bjc-faq-list summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	padding: 17px 20px;
	cursor: pointer;
	font-weight: 900;
	list-style: none;
}

.bjc-faq-list summary::-webkit-details-marker {
	display: none;
}

.bjc-faq-list summary i {
	display: grid;
	place-items: center;
	flex: 0 0 30px;
	height: 30px;
	border-radius: 9px;
	background: var(--bjc-soft);
	color: var(--bjc-primary);
	font-style: normal;
	transition: transform .2s ease;
}

.bjc-faq-list details[open] summary i {
	transform: rotate(45deg);
}

.bjc-faq-list details > div {
	padding: 0 20px 17px;
	color: var(--bjc-muted);
	font-size: 14px;
}

.bjc-faq-list details p {
	margin: 0;
}

.bjc-mobile-contact {
	display: none;
}

@media (max-width: 900px) {
	.bjc-hero {
		grid-template-columns: 1fr;
		padding: 45px 40px 0;
		text-align: center;
	}
	.bjc-doctor-kicker,
	.bjc-trust-row { justify-content: center; }
	.bjc-hero-copy > p { margin-inline: auto; }
	.bjc-doctor-visual { min-height: 340px; margin-top: 18px; }
	.bjc-photo-ring { width: 280px; }
	.bjc-visual-note { right: calc(50% - 160px); }
	.bjc-insurer-grid,
	.bjc-condition-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
	.bjc-consultation { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
	.bjc-app {
		width: min(100%, calc(100% - 18px));
		margin-top: 9px;
		margin-bottom: 86px;
		font-size: 15px;
	}
	.bjc-hero {
		min-height: auto;
		padding: 27px 20px 0;
		border-radius: 24px;
	}
	.bjc-doctor-kicker { margin-bottom: 20px; }
	.bjc-doctor-kicker img { width: 43px; height: 43px; }
	.bjc-doctor-kicker strong { font-size: 14px; }
	.bjc-hero h1 { font-size: 31px; }
	.bjc-hero-copy > p { font-size: 15px; }
	.bjc-trust-row { gap: 5px 12px; font-size: 11px; }
	.bjc-doctor-visual { min-height: 285px; }
	.bjc-photo-ring { width: 230px; }
	.bjc-visual-note { right: calc(50% - 140px); bottom: 12px; }
	.bjc-calculator-shell {
		margin-top: 18px;
		padding: 32px 16px 28px;
		border-radius: 23px;
	}
	.bjc-section-head { margin-bottom: 25px; }
	.bjc-section-head h2,
	.bjc-consultation h2 { font-size: 26px; }
	.bjc-progress { margin-bottom: 34px; }
	.bjc-progress-item small { display: none; }
	.bjc-progress-item i { width: 36px; height: 36px; }
	.bjc-progress-track { top: 16px; }
	.bjc-question > span { flex-basis: 36px; height: 36px; }
	.bjc-question h3 { font-size: 22px; }
	.bjc-choice-grid-2,
	.bjc-pill-grid,
	.bjc-pill-grid-3,
	.bjc-fields,
	.bjc-implant-grid { grid-template-columns: 1fr; }
	.bjc-field-wide { grid-column: auto; }
	.bjc-choice-card { min-height: 105px; padding: 15px; }
	.bjc-insurer-panel { padding: 13px; }
	.bjc-insurer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); max-height: 370px; }
	.bjc-condition-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
	.bjc-form-nav { position: sticky; bottom: 56px; z-index: 8; margin-inline: -16px; padding: 13px 16px; border-top: 1px solid #e2ebed; background: rgba(255,255,255,.96); box-shadow: 0 -10px 30px rgba(10,66,80,.07); }
	.bjc-form-nav .bjc-next,
	.bjc-form-nav .bjc-submit { min-width: 0; flex: 1; }
	.bjc-form-nav .bjc-prev { padding-inline: 15px; }
	.bjc-breakdown,
	.bjc-result-actions { grid-template-columns: 1fr; }
	.bjc-result-actions .bjc-text-link { grid-column: auto; }
	.bjc-price-box { padding: 22px 14px; }
	.bjc-consultation { gap: 25px; margin-top: 18px; padding: 30px 18px; border-radius: 23px; }
	.bjc-office-meta { font-size: 12px; }
	.bjc-mobile-contact {
		position: fixed;
		right: 9px;
		bottom: 8px;
		left: 9px;
		z-index: 9999;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 7px;
		padding: 7px;
		border: 1px solid #dbe7e9;
		border-radius: 16px;
		background: rgba(255,255,255,.96);
		box-shadow: 0 10px 35px rgba(4,53,68,.2);
		backdrop-filter: blur(14px);
	}
	.bjc-mobile-contact a {
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 45px;
		border-radius: 11px;
		background: var(--bjc-primary);
		color: #fff;
		font-weight: 900;
	}
	.bjc-mobile-contact a:last-child { background: #dff6f1; color: #08665e; }
}

@media (prefers-reduced-motion: reduce) {
	.bjc-app *, .bjc-app *::before, .bjc-app *::after {
		scroll-behavior: auto !important;
		animation-duration: .01ms !important;
		transition-duration: .01ms !important;
	}
}
