.ctg-quiz {
	--ctg-primary: #90a98b;
	--ctg-primary-dark: #607b5d;
	--ctg-secondary: #607d8b;
	--ctg-surface: #f4f7f3;
	--ctg-card: #ffffff;
	--ctg-text: #20302c;
	--ctg-muted: #5c6b67;
	--ctg-border: #cad7d2;
	--ctg-focus: #90a98b;
	--ctg-urgent: #9f3434;
	--ctg-radius: 22px;
	--ctg-font: "DM Sans", "Segoe UI", Arial, sans-serif;
	--ctg-heading-font: "Darker Grotesque", "Arial Narrow", "Segoe UI", sans-serif;
	color: var(--ctg-text);
	font-family: var(--ctg-font);
	line-height: 1.55;
	margin: 1rem auto;
	max-width: 960px;
}

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

.ctg-quiz [hidden] {
	display: none !important;
}

.ctg-quiz h2 {
	color: var(--ctg-text);
	font-size: clamp(1.8rem, 4.5vw, 2.55rem);
	letter-spacing: -0.025em;
	line-height: 1.12;
	margin: 0 0 1rem;
}

.ctg-quiz__eyebrow {
	color: var(--ctg-primary-dark);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	margin: 0 0 0.75rem;
	text-transform: uppercase;
}

.ctg-quiz__eyebrow--urgent {
	color: var(--ctg-urgent);
}

.ctg-quiz__lead,
.ctg-quiz__result-copy {
	font-size: 1.08rem;
	margin: 0 0 1.6rem;
}

.ctg-quiz__disclaimer,
.ctg-quiz__result-note {
	color: var(--ctg-muted);
	font-size: 0.875rem;
	margin: 1.5rem 0 0;
}

.ctg-quiz__intro .ctg-quiz__disclaimer {
	margin-bottom: 1.25rem;
}

.ctg-quiz a {
	color: var(--ctg-primary-dark);
}

.ctg-quiz__button {
	align-items: center;
	appearance: none;
	background: var(--ctg-primary);
	border: 2px solid var(--ctg-primary);
	border-radius: 999px;
	color: #fff !important;
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-weight: 700;
	justify-content: center;
	min-height: 46px;
	padding: 0.6rem 1.35rem;
	box-shadow: 0 9px 22px rgba(96, 123, 93, 0.2);
	text-decoration: none !important;
	transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.ctg-quiz__button:hover:not(:disabled) {
	background: var(--ctg-primary-dark);
	border-color: var(--ctg-primary-dark);
	box-shadow: 0 11px 26px rgba(96, 123, 93, 0.25);
	transform: translateY(-1px);
}

.ctg-quiz__button:active:not(:disabled) {
	box-shadow: 0 4px 12px rgba(96, 123, 93, 0.18);
	transform: translateY(0);
}

.ctg-quiz__button:disabled {
	cursor: not-allowed;
	opacity: 0.55;
	transform: none;
}

.ctg-quiz__button--secondary {
	background: #fff;
	box-shadow: none;
	color: var(--ctg-primary-dark) !important;
}

.ctg-quiz__button--secondary:hover:not(:disabled) {
	background: #edf2eb;
	box-shadow: none;
}

.ctg-quiz__button--urgent {
	background: var(--ctg-urgent);
	border-color: var(--ctg-urgent);
}

.ctg-quiz__button:focus-visible,
.ctg-quiz__restart:focus-visible,
.ctg-quiz__option:has(input:focus-visible) {
	outline: 3px solid var(--ctg-focus);
	outline-offset: 3px;
}

.ctg-quiz__progress-wrap {
	margin-bottom: 2.25rem;
}

.ctg-quiz__progress-label {
	color: var(--ctg-muted);
	font-size: 0.875rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
}

.ctg-quiz__progress {
	background: #dce5e1;
	border-radius: 999px;
	height: 8px;
	overflow: hidden;
}

.ctg-quiz__progress span {
	background: var(--ctg-primary);
	display: block;
	height: 100%;
	transition: width 220ms ease;
	width: 10%;
}

.ctg-quiz__fieldset {
	border: 0;
	margin: 0;
	padding: 0;
}

.ctg-quiz__fieldset legend {
	font-size: clamp(1.4rem, 4vw, 2rem);
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1.4rem;
	padding: 0;
	width: 100%;
}

.ctg-quiz__options {
	display: grid;
	gap: 0.75rem;
}

.ctg-quiz__option {
	align-items: center;
	background: var(--ctg-card);
	border: 2px solid var(--ctg-border);
	border-radius: 12px;
	cursor: pointer;
	display: flex;
	gap: 0.9rem;
	min-height: 56px;
	padding: 0.85rem 1rem;
	transition: border-color 150ms ease, background 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.ctg-quiz__option:hover {
	border-color: var(--ctg-primary);
	box-shadow: 0 9px 24px rgba(32, 48, 44, 0.08);
	transform: translateY(-1px);
}

.ctg-quiz__option:has(input:checked) {
	background-color: #edf3eb;
	background-image: linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.64));
	border-color: var(--ctg-primary);
	box-shadow: inset 0 0 0 1px var(--ctg-primary), 0 8px 22px rgba(32, 48, 44, 0.06);
}

.ctg-quiz__option:active {
	transform: translateY(0);
}

.ctg-quiz__option input {
	accent-color: var(--ctg-primary);
	flex: 0 0 auto;
	height: 20px;
	margin: 0;
	width: 20px;
}

.ctg-quiz__option span {
	font-weight: 600;
}

.ctg-quiz__nav,
.ctg-quiz__crisis-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: space-between;
	margin-top: 1.75rem;
}

.ctg-quiz__error {
	color: var(--ctg-urgent);
	font-weight: 700;
	margin: 1rem 0 0;
}

.ctg-quiz__track-label {
	color: var(--ctg-primary-dark);
	font-weight: 700;
	margin: -0.4rem 0 1.25rem;
}

.ctg-quiz__family-note {
	background: #e8f0ec;
	border-left: 4px solid var(--ctg-primary);
	border-radius: 8px;
	margin: 1.5rem 0;
	padding: 1rem 1.15rem;
}

.ctg-quiz__family-note strong {
	display: block;
	margin-bottom: 0.25rem;
}

.ctg-quiz__secondary-copy {
	margin: 1.5rem 0 1rem;
}

.ctg-quiz__text-link {
	font-weight: 700;
}

.ctg-quiz__restart {
	background: transparent;
	border: 0;
	color: var(--ctg-primary-dark);
	cursor: pointer;
	display: block;
	font: inherit;
	margin: 1.5rem 0 0;
	padding: 0;
	text-decoration: underline;
}

.ctg-quiz__noscript {
	background: #fff4dc;
	border: 1px solid #e0bd6a;
	border-radius: 8px;
	padding: 1rem;
}

.ctg-quiz .screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

@media (max-width: 520px) {
	.ctg-quiz__nav,
	.ctg-quiz__crisis-actions {
		flex-direction: column-reverse;
	}

	.ctg-quiz__button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ctg-quiz *,
	.ctg-quiz *::before,
	.ctg-quiz *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

/* Quiz v3: button-only launcher, assessment workspace, and modern results. */
.ctg-quiz {
	--ctg-quiz-crisis: #ead0d1;
	--ctg-quiz-family: #dcebf4;
	--ctg-quiz-soft: #edf4eb;
	margin: 1rem auto;
	max-width: 1120px;
}

.ctg-quiz__intro {
	align-items: center;
	display: flex;
	justify-content: center;
	min-height: 52px;
}

.ctg-quiz__start-button {
	border-radius: 12px;
	min-height: 56px;
	padding: 0.85rem 2.15rem;
}

.ctg-quiz__start-button::after,
.ctg-quiz__nav [data-action="next"]::after {
	content: "\2192";
	font-size: 1.05em;
	margin-left: 0.7rem;
}

.ctg-quiz__nav [data-action="back"]::before {
	content: "\2190";
	font-size: 1.05em;
	margin-right: 0.7rem;
}

.ctg-quiz__questions-layout {
	align-items: start;
	display: grid;
	gap: clamp(1.2rem, 3vw, 2.5rem);
	grid-template-columns: minmax(0, 1fr) minmax(230px, var(--ctg-quiz-status-width, 280px));
}

.ctg-quiz__question-column {
	min-width: 0;
}

.ctg-quiz__question-card {
	background: #fff;
	border: 1px solid rgba(202, 215, 210, 0.5);
	border-radius: 28px;
	box-shadow: 0 14px 40px rgba(32, 48, 44, 0.07);
	padding: clamp(1.5rem, 4vw, 3rem);
}

.ctg-quiz__progress-wrap {
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.ctg-quiz__progress-heading {
	align-items: center;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	margin-bottom: 0.65rem;
}

.ctg-quiz__progress-label,
.ctg-quiz__progress-percent {
	color: var(--ctg-muted);
	font-size: 0.9rem;
	font-weight: 500;
	margin: 0;
}

.ctg-quiz__progress {
	background: #e7eee5;
	height: 8px;
}

.ctg-quiz__progress span {
	background: linear-gradient(90deg, var(--ctg-primary-dark), var(--ctg-primary));
	width: 0;
}

.ctg-quiz__fieldset legend {
	font-size: clamp(1.6rem, 3vw, 2rem);
	letter-spacing: -0.025em;
	margin-bottom: clamp(1.5rem, 3vw, 2.2rem);
}

.ctg-quiz__options {
	gap: 0.9rem;
}

.ctg-quiz__option {
	background: #fff;
	border: 1px solid #d8e1d6;
	border-radius: 14px;
	gap: 1rem;
	min-height: 68px;
	padding: 1rem 1.2rem;
}

.ctg-quiz__option:hover {
	border-color: var(--ctg-primary);
	box-shadow: 0 8px 22px rgba(32, 48, 44, 0.06);
}

.ctg-quiz__option input {
	height: 1px;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	width: 1px;
}

.ctg-quiz__option::after {
	align-items: center;
	border: 1px solid #d6dfd4;
	border-radius: 50%;
	color: #fff;
	content: "";
	display: inline-flex;
	flex: 0 0 24px;
	font-size: 0.85rem;
	font-weight: 800;
	height: 24px;
	justify-content: center;
	margin-left: auto;
	transition: background-color 150ms ease, border-color 150ms ease, transform 150ms ease;
	width: 24px;
}

.ctg-quiz__option:has(input:checked) {
	background: var(--ctg-quiz-soft);
	border-color: var(--ctg-primary-dark);
	box-shadow: none;
}

.ctg-quiz__option:has(input:checked)::after {
	background: var(--ctg-primary-dark);
	border-color: var(--ctg-primary-dark);
	content: "\2713";
	transform: scale(1.04);
}

.ctg-quiz__option:has(input:focus-visible) {
	outline: 3px solid rgba(130, 155, 125, 0.3);
	outline-offset: 3px;
}

.ctg-quiz__option span {
	font-size: 1rem;
	font-weight: 500;
}

.ctg-quiz__nav {
	border-top: 1px solid #eef1ed;
	margin-top: clamp(2rem, 4vw, 3rem);
	padding-top: 1.6rem;
}

.ctg-quiz__nav .ctg-quiz__button {
	border-radius: 12px;
	min-width: 116px;
}

.ctg-quiz__nav .ctg-quiz__button:disabled {
	background: #f5f6f4;
	border-color: #e7ebe5;
	color: #97a19b !important;
	box-shadow: none;
	opacity: 1;
}

.ctg-quiz__question-disclaimer {
	color: var(--ctg-muted);
	font-size: 0.78rem;
	line-height: 1.5;
	margin: 0.8rem auto 0;
	max-width: 86%;
	text-align: center;
}

.ctg-quiz__persistent-crisis-note {
	border-top: 1px solid #eef1ed;
	color: var(--ctg-muted);
	font-size: 0.84rem;
	line-height: 1.45;
	margin: 1.25rem 0 0;
	padding-top: 1rem;
}

.ctg-quiz__persistent-crisis-note a {
	color: var(--ctg-primary-dark);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 0.16em;
}

.ctg-quiz__persistent-crisis-note a:hover,
.ctg-quiz__persistent-crisis-note a:focus-visible {
	color: var(--ctg-primary);
}

.ctg-quiz__status-card {
	background: #edf4eb;
	border: 1px solid rgba(130, 155, 125, 0.1);
	border-radius: 22px;
	padding: clamp(1.4rem, 3vw, 2rem);
}

.ctg-quiz__status-icon {
	color: var(--ctg-primary);
	height: 40px;
	margin-bottom: 1.2rem;
	width: 40px;
}

.ctg-quiz__status-card h3 {
	color: var(--ctg-text);
	font-size: 1.25rem;
	letter-spacing: -0.02em;
	margin: 0 0 1.7rem;
}

.ctg-quiz__status-card dl {
	display: grid;
	gap: 1rem;
	margin: 0;
}

.ctg-quiz__status-card dl div {
	align-items: center;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
}

.ctg-quiz__status-card dt {
	color: var(--ctg-muted);
	font-size: 0.9rem;
}

.ctg-quiz__status-card dd {
	color: var(--ctg-text);
	font-size: 0.9rem;
	font-weight: 800;
	margin: 0;
}

.ctg-quiz__result {
	background: #fff;
	border: 1px solid var(--ctg-border);
	border-radius: 28px;
	box-shadow: 0 16px 44px rgba(32, 48, 44, 0.08);
	margin: 0 auto;
	max-width: 860px;
	padding: clamp(1.7rem, 5vw, 3.5rem);
}

.ctg-quiz__result h2 {
	font-size: clamp(2rem, 4vw, 3rem);
}

.ctg-quiz__result-copy {
	color: var(--ctg-muted);
	font-size: 1.05rem;
	line-height: 1.65;
}

.ctg-quiz__secondary-copy {
	background: var(--ctg-quiz-soft);
	border-radius: 18px;
	line-height: 1.65;
	margin: 1.5rem 0;
	padding: 1.25rem 1.4rem;
}

.ctg-quiz__family-note {
	background: var(--ctg-quiz-family);
	border: 0;
	border-radius: 18px;
	line-height: 1.6;
	padding: 1.25rem 1.4rem;
}

.ctg-quiz__family-icon {
	color: var(--ctg-primary-dark);
	display: block;
	height: 34px;
	margin-bottom: 0.65rem;
	width: 34px;
}

.ctg-quiz__result-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: 1.7rem;
}

.ctg-quiz__result-actions .ctg-quiz__button {
	border-radius: 12px;
}

.ctg-quiz__result--crisis {
	background: var(--ctg-quiz-crisis);
	border: 0;
	max-width: 900px;
}

.ctg-quiz__crisis-icon {
	color: var(--ctg-text);
	height: 54px;
	margin-bottom: 0.4rem;
	width: 54px;
}

.ctg-quiz__result--crisis .ctg-quiz__eyebrow {
	color: var(--ctg-primary-dark);
	margin-bottom: 0.65rem;
}

.ctg-quiz__result--crisis h2 {
	font-size: clamp(2rem, 4.8vw, 3.15rem);
	margin-bottom: 0.35rem;
}

.ctg-quiz__crisis-resources {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 2rem 0;
}

.ctg-quiz__crisis-resources a {
	background: #fff;
	border: 1px solid rgba(255, 255, 255, 0.75);
	border-radius: 18px;
	color: var(--ctg-text);
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	min-height: 98px;
	padding: 1.2rem 1.35rem;
	text-decoration: none;
	transition: box-shadow 150ms ease, transform 150ms ease;
}

.ctg-quiz__crisis-resources a:hover,
.ctg-quiz__crisis-resources a:focus-visible {
	box-shadow: 0 10px 24px rgba(32, 48, 44, 0.1);
	outline: 0;
	transform: translateY(-2px);
}

.ctg-quiz__crisis-resources small {
	color: var(--ctg-muted);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.ctg-quiz__crisis-resources strong {
	color: var(--ctg-primary-dark);
	font-size: 1.05rem;
}

.ctg-quiz__result--crisis .ctg-quiz__secondary-copy {
	background: #edf4eb;
}

.ctg-quiz__result--crisis .ctg-quiz__family-note {
	background: var(--ctg-quiz-family);
}

@media (max-width: 820px) {
	.ctg-quiz__questions-layout {
		grid-template-columns: 1fr;
	}

	.ctg-quiz__status-card {
		display: grid;
		gap: 1rem;
		grid-template-columns: auto 1fr;
	}

	.ctg-quiz__status-icon,
	.ctg-quiz__status-card h3 {
		margin: 0;
	}

	.ctg-quiz__status-card dl {
		grid-column: 1 / -1;
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.ctg-quiz__status-card dl div {
		align-items: flex-start;
		flex-direction: column;
		gap: 0.25rem;
	}
}

@media (max-width: 620px) {
	.ctg-quiz__question-card,
	.ctg-quiz__result {
		border-radius: 20px;
		padding: 1.25rem;
	}

	.ctg-quiz__question-disclaimer {
		max-width: 100%;
	}

	.ctg-quiz__crisis-resources {
		grid-template-columns: 1fr;
	}

	.ctg-quiz__status-card dl {
		grid-template-columns: 1fr;
	}

	.ctg-quiz__status-card dl div {
		align-items: center;
		flex-direction: row;
	}

	.ctg-quiz__result-actions {
		flex-direction: column;
	}

	.ctg-quiz__result-actions .ctg-quiz__button {
		width: 100%;
	}
}

/* Reference-aligned booking selector.
 * Container queries keep the layout readable inside narrow Elementor columns,
 * even when the browser viewport itself is still desktop sized.
 */
.ctg-booking {
	container-name: ctg-booking;
	container-type: inline-size;
}

.ctg-booking__step[data-booking-step="1"] > .ctg-booking__appointment-layout {
	grid-column: 1 / -1;
}

.ctg-booking__appointment-layout {
	align-items: stretch;
	display: grid;
	gap: 1.25rem;
	grid-template-columns: minmax(190px, 0.72fr) minmax(0, 1.85fr);
	width: 100%;
}

.ctg-booking__session-column {
	min-width: 0;
}

.ctg-booking__session-column .ctg-booking__fieldset {
	margin: 0;
}

.ctg-booking__datetime-card {
	background: #fff;
	border: 1px solid rgba(202, 215, 210, 0.72);
	border-radius: 18px;
	box-shadow: 0 12px 34px rgba(32, 48, 44, 0.06);
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: clamp(1rem, 2.6cqi, 1.4rem);
}

.ctg-booking__datetime-header {
	align-items: center;
	border-bottom: 1px solid #edf1eb;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	margin-bottom: 1rem;
	padding-bottom: 0.85rem;
}

.ctg-booking__datetime-header > h4 {
	font-size: 1.1rem;
	font-weight: 800;
	margin: 0;
}

.ctg-booking__datetime-header .ctg-booking__timezone {
	align-items: center;
	display: grid;
	gap: 0.15rem;
	grid-template-columns: auto minmax(150px, 205px);
	margin: 0;
}

.ctg-booking__datetime-header .ctg-booking__timezone > span {
	color: var(--ctg-muted);
	font-size: 0.72rem;
	font-weight: 600;
	white-space: nowrap;
}

.ctg-booking__datetime-header .ctg-booking__timezone select {
	font-size: 0.82rem;
	min-height: 38px;
	padding-block: 0.4rem;
}

.ctg-booking__datetime-grid {
	align-items: start;
	display: grid;
	flex: 1;
	gap: 1rem;
	grid-template-columns: minmax(230px, 1.15fr) minmax(155px, 0.85fr);
}

.ctg-booking__step[data-booking-step="1"] .ctg-booking__datetime-card .ctg-booking__calendar-section,
.ctg-booking__step[data-booking-step="1"] .ctg-booking__datetime-card .ctg-booking__slots-section {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	margin: 0;
	padding: 0;
}

.ctg-booking__panel-label {
	color: var(--ctg-muted);
	display: block;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	margin-bottom: 0.55rem;
	text-transform: uppercase;
}

.ctg-booking__datetime-card .ctg-booking__calendar-header {
	grid-template-columns: 2rem 1fr 2rem;
	margin-bottom: 0.65rem;
}

.ctg-booking__datetime-card .ctg-booking__calendar-header button {
	height: 2rem;
}

.ctg-booking__datetime-card .ctg-booking__calendar-header strong {
	font-size: 0.9rem;
}

.ctg-booking__datetime-card .ctg-booking__calendar-weekdays {
	font-size: 0.6rem;
	letter-spacing: 0.025em;
}

.ctg-booking__datetime-card .ctg-booking__calendar-weekdays,
.ctg-booking__datetime-card .ctg-booking__calendar-days {
	gap: 0.25rem;
}

.ctg-booking__datetime-card .ctg-booking__calendar-days button {
	font-size: 0.8rem;
}

.ctg-booking__datetime-card .ctg-booking__slots-section > h4 {
	border-bottom: 1px solid #edf1eb;
	font-size: 0.82rem;
	margin: 0 0 0.65rem;
	padding-bottom: 0.55rem;
}

.ctg-booking__datetime-card .ctg-booking__slot-status {
	font-size: 0.75rem;
	line-height: 1.45;
}

.ctg-booking__datetime-card .ctg-booking__slot-buttons {
	gap: 0.45rem;
}

.ctg-booking__datetime-card .ctg-booking__slot-button {
	font-size: 0.75rem;
	min-height: 36px;
}

.ctg-booking__datetime-card > .ctg-booking__step-nav {
	border-top: 1px solid #edf1eb;
	margin-top: 1rem;
	padding-top: 0.85rem;
}

.ctg-booking__datetime-card > .ctg-booking__step-nav .ctg-quiz__button {
	border-radius: 9px;
	margin-left: auto;
	min-height: 42px;
	min-width: 190px;
}

@container ctg-booking (max-width: 720px) {
	.ctg-booking__appointment-layout {
		grid-template-columns: minmax(175px, 0.72fr) minmax(0, 1.5fr);
	}

	.ctg-booking__datetime-header {
		align-items: stretch;
		flex-direction: column;
	}

	.ctg-booking__datetime-header .ctg-booking__timezone {
		grid-template-columns: 1fr;
	}

	.ctg-booking__datetime-grid {
		grid-template-columns: minmax(205px, 1.1fr) minmax(135px, 0.9fr);
	}
}

@container ctg-booking (max-width: 590px) {
	.ctg-booking__appointment-layout,
	.ctg-booking__datetime-grid {
		grid-template-columns: 1fr;
	}

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

	.ctg-booking__datetime-header {
		align-items: center;
		flex-direction: row;
	}

	.ctg-booking__datetime-header .ctg-booking__timezone {
		grid-template-columns: minmax(135px, 190px);
	}

	.ctg-booking__datetime-header .ctg-booking__timezone > span {
		display: none;
	}
}

@container ctg-booking (max-width: 460px) {
	.ctg-booking__session-column .ctg-booking__session-grid {
		grid-template-columns: 1fr;
	}

	.ctg-booking__datetime-header {
		align-items: stretch;
		flex-direction: column;
	}

	.ctg-booking__datetime-header .ctg-booking__timezone {
		grid-template-columns: 1fr;
	}

	.ctg-booking__slot-buttons {
		display: none;
	}

	.ctg-booking__slot-select--native {
		display: block;
	}

	.ctg-booking__datetime-card > .ctg-booking__step-nav .ctg-quiz__button {
		min-width: 0;
		width: 100%;
	}
}

/* Quiz typography and buttons are scoped strongly enough to beat generic
 * Elementor Kit/theme rules while remaining overridable by widget controls.
 */
.ctg-quiz {
	font-size: 16px;
}

.ctg-quiz .ctg-quiz__progress-label,
.ctg-quiz .ctg-quiz__progress-percent {
	font-size: 14px;
	line-height: 1.4;
}

.ctg-quiz .ctg-quiz__fieldset legend {
	font-size: clamp(25px, 2.5vw, 32px);
	line-height: 1.2;
}

.ctg-quiz .ctg-quiz__option span {
	font-size: 16px;
	line-height: 1.45;
}

.ctg-quiz .ctg-quiz__question-disclaimer {
	font-size: 12px;
	line-height: 1.55;
}

.ctg-quiz .ctg-quiz__status-card h3 {
	font-size: 18px;
	line-height: 1.35;
}

.ctg-quiz .ctg-quiz__status-card dt,
.ctg-quiz .ctg-quiz__status-card dd {
	font-size: 14px;
	line-height: 1.4;
}

.ctg-quiz .ctg-quiz__button {
	background: var(--ctg-primary-dark);
	border-color: var(--ctg-primary-dark);
	border-radius: 12px;
	box-shadow: 0 9px 22px rgba(96, 123, 93, 0.2);
	color: #fff !important;
	font-size: 15px;
	font-weight: 700;
	min-height: 48px;
	padding: 0.7rem 1.55rem;
}

.ctg-quiz .ctg-quiz__button:hover:not(:disabled) {
	background: #4f694d;
	border-color: #4f694d;
	box-shadow: 0 12px 26px rgba(79, 105, 77, 0.25);
}

.ctg-quiz .ctg-quiz__button--secondary {
	background: #fff;
	border-color: #d7e0d5;
	box-shadow: none;
	color: var(--ctg-primary-dark) !important;
}

.ctg-quiz .ctg-quiz__button--secondary:hover:not(:disabled) {
	background: #f0f5ef;
	border-color: var(--ctg-primary-dark);
	box-shadow: none;
	color: var(--ctg-primary-dark) !important;
}

.ctg-quiz .ctg-quiz__button:disabled {
	background: #f2f4f1;
	border-color: #e0e5de;
	box-shadow: none;
	color: #8b9790 !important;
	opacity: 1;
}

@media (max-width: 620px) {
	.ctg-quiz .ctg-quiz__fieldset legend {
		font-size: 24px;
	}

	.ctg-quiz .ctg-quiz__option span {
		font-size: 15px;
	}

	.ctg-quiz .ctg-quiz__status-card h3 {
		font-size: 17px;
	}
}

.ctg-booking {
	--ctg-primary: #829b7d;
	--ctg-primary-dark: #607b5d;
	--ctg-surface: #f4f7f3;
	--ctg-card: #ffffff;
	--ctg-text: #20302c;
	--ctg-muted: #5c6b67;
	--ctg-border: #cad7d2;
	--ctg-focus: #829b7d;
	--ctg-urgent: #9f3434;
	--ctg-radius: 22px;
	--ctg-calendar-day-size: 38px;
	--ctg-calendar-day-color: #20302c;
	--ctg-calendar-day-background: #edf2eb;
	--ctg-calendar-day-border: #c3d0bf;
	--ctg-calendar-day-radius: 12px;
	--ctg-calendar-day-hover-background: #829b7d;
	--ctg-calendar-day-hover-color: #ffffff;
	--ctg-calendar-day-selected-background: #607b5d;
	--ctg-calendar-day-selected-color: #ffffff;
	--ctg-calendar-today-border: #607b5d;
	--ctg-calendar-disabled-background: #f5f6f4;
	--ctg-calendar-disabled-color: #5c6b67;
	--ctg-calendar-disabled-opacity: 0.58;
	--ctg-font: "DM Sans", "Segoe UI", Arial, sans-serif;
	--ctg-heading-font: "Darker Grotesque", "Arial Narrow", "Segoe UI", sans-serif;
	color: var(--ctg-text);
	font-family: var(--ctg-font);
	line-height: 1.55;
	margin: 1rem auto;
	max-width: 840px;
}

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

.ctg-booking__step h3,
.ctg-booking__step h4,
.ctg-booking__fieldset legend,
.ctg-booking__field > span,
.ctg-booking__consent {
	color: var(--ctg-text);
}

.ctg-booking__notice {
	border-radius: 10px;
	margin: 1rem 0;
	padding: 0.75rem 0.95rem;
}

.ctg-booking__notice--success {
	background: #e5f3ea;
	border: 1px solid #8db79b;
}

.ctg-booking__notice--error {
	background: #fff0f0;
	border: 1px solid #d49a9a;
	color: #722727;
}

.ctg-booking__form {
	margin-top: 1.35rem;
}

.ctg-booking__step {
	animation: ctg-booking-step-in 180ms ease-out;
	background: rgba(255, 255, 255, 0.76);
	border: 1px solid rgba(202, 215, 210, 0.86);
	border-radius: 18px;
	box-shadow: 0 10px 32px rgba(32, 48, 44, 0.055);
	padding: clamp(1rem, 2.5vw, 1.5rem);
}

.ctg-booking__step[hidden] {
	display: none !important;
}

.ctg-booking__step h3 {
	font-size: clamp(1.35rem, 3vw, 1.7rem);
	line-height: 1.2;
	margin: 0 0 1.25rem;
}

.ctg-booking__step h4 {
	font-size: 1.05rem;
	margin: 0 0 0.7rem;
}

@keyframes ctg-booking-step-in {
	from {
		opacity: 0;
		transform: translateY(5px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

.ctg-booking__fieldset {
	border: 0;
	margin: 0 0 1.25rem;
	padding: 0;
}

.ctg-booking__fieldset legend {
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 0.7rem;
	padding: 0;
}

.ctg-booking__session-grid,
.ctg-booking__payment-grid,
.ctg-booking__grid {
	display: grid;
	gap: 0.9rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ctg-booking__fieldset--duration .ctg-booking__session-grid {
	grid-template-columns: 1fr;
}

.ctg-booking__session,
.ctg-booking__payment {
	align-items: center;
	background: var(--ctg-card);
	border: 1px solid var(--ctg-border);
	border-radius: 14px;
	cursor: pointer;
	display: flex;
	gap: 0.8rem;
	padding: 0.9rem;
	position: relative;
	transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.ctg-booking__session {
	min-height: 142px;
	padding: 1rem;
}

.ctg-booking__fieldset--format .ctg-booking__session {
	min-height: 60px;
}

.ctg-booking__session > input {
	opacity: 0;
	pointer-events: none;
	position: absolute;
}

.ctg-booking__session > span:not(.ctg-booking__recommended) {
	gap: 0.18rem;
	width: 100%;
}

.ctg-booking__session-heading {
	align-items: center;
	display: flex !important;
	flex-direction: row !important;
	justify-content: space-between;
}

.ctg-booking__session-heading strong {
	font-size: 1.05rem;
}

.ctg-booking__session-heading b {
	color: var(--ctg-primary-dark);
	font-size: 1.35rem;
}

.ctg-booking__session em {
	color: var(--ctg-muted);
	font-size: 0.84rem;
	font-style: normal;
	line-height: 1.5;
	margin: 0.45rem 0 0.7rem;
}

.ctg-booking__select-option {
	align-items: center;
	border: 1px solid var(--ctg-primary);
	border-radius: 9px;
	color: var(--ctg-primary-dark);
	display: flex !important;
	font-size: 0.8rem;
	font-weight: 700;
	justify-content: center;
	margin-top: auto;
	min-height: 34px;
	padding: 0.4rem 0.65rem;
	transition: background-color 160ms ease, color 160ms ease;
}

.ctg-booking__session:has(input:checked) .ctg-booking__select-option {
	background: var(--ctg-primary-dark);
	color: #fff;
}

.ctg-booking__session--recommended {
	border-color: var(--ctg-primary-dark);
}

.ctg-booking__recommended {
	background: #d6e3d2;
	border-radius: 999px 10px 0 999px;
	color: var(--ctg-primary-dark);
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	padding: 0.25rem 0.6rem;
	position: absolute;
	right: -1px;
	text-transform: uppercase;
	top: -1px;
}

.ctg-booking__reschedule-note {
	background: rgba(130, 155, 125, 0.12);
	border-radius: 12px;
	color: var(--ctg-muted);
	font-size: 0.8rem;
	line-height: 1.45;
	margin: 0.85rem 0 0;
	padding: 0.8rem;
}

.ctg-booking__session:hover,
.ctg-booking__payment:hover {
	border-color: var(--ctg-primary);
	box-shadow: 0 9px 24px rgba(32, 48, 44, 0.08);
	transform: translateY(-1px);
}

.ctg-booking__session:has(input:checked),
.ctg-booking__payment:has(input:checked) {
	background-color: #edf3eb;
	background-image: linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.64));
	border-color: var(--ctg-primary);
	box-shadow: inset 0 0 0 1px var(--ctg-primary), 0 8px 22px rgba(32, 48, 44, 0.06);
}

.ctg-booking__session input,
.ctg-booking__payment input,
.ctg-booking__consent input {
	accent-color: var(--ctg-primary);
	height: 20px;
	margin: 0;
	width: 20px;
}

.ctg-booking__session span,
.ctg-booking__payment span {
	display: flex;
	flex-direction: column;
}

.ctg-booking__session small,
.ctg-booking__payment small {
	color: var(--ctg-muted);
}

.ctg-booking__field {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	margin-bottom: 0.85rem;
}

.ctg-booking__field > span {
	font-weight: 700;
}

.ctg-booking__field input,
.ctg-booking__field select {
	background: var(--ctg-card);
	border: 1px solid var(--ctg-border);
	border-radius: 12px;
	box-shadow: 0 3px 10px rgba(32, 48, 44, 0.025);
	color: var(--ctg-text);
	font: inherit;
	min-height: 46px;
	padding: 0.6rem 0.75rem;
	width: 100%;
	transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.ctg-booking__field select,
.ctg-booking__slot-select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%23607b5d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-position: right 0.85rem center;
	background-repeat: no-repeat;
	background-size: 14px 8px;
	padding-right: 2.75rem;
}

.ctg-booking__field select option,
.ctg-booking__slot-select option {
	background: #fff;
	color: var(--ctg-text);
	font: inherit;
}

.ctg-booking__field input:focus,
.ctg-booking__field select:focus,
.ctg-booking__session:has(input:focus-visible),
.ctg-booking__payment:has(input:focus-visible),
.ctg-booking__consent:has(input:focus-visible),
.ctg-booking__calendar button:focus-visible,
.ctg-booking__slot-select:focus-visible {
	border-color: var(--ctg-primary);
	box-shadow: 0 0 0 3px rgba(96, 123, 93, 0.18);
	outline: 0;
}

.ctg-booking__calendar-section,
.ctg-booking__slots-section {
	margin: 0 0 1.25rem;
}

.ctg-booking__step[data-booking-step="1"] .ctg-booking__calendar-section,
.ctg-booking__step[data-booking-step="1"] .ctg-booking__slots-section {
	background: var(--ctg-card);
	border: 1px solid var(--ctg-border);
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(32, 48, 44, 0.045);
	margin: 0;
	padding: 1rem;
}

.ctg-booking__calendar-section > h4,
.ctg-booking__slots-section > h4 {
	color: var(--ctg-text);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.35;
}

.ctg-booking__calendar {
	background-color: var(--ctg-card);
	background-image: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(130, 155, 125, 0.035));
	border: 1px solid var(--ctg-border);
	border-radius: 16px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 8px 24px rgba(32, 48, 44, 0.045);
	padding: clamp(0.8rem, 2.5vw, 1.1rem);
}

.ctg-booking__step[data-booking-step="1"] .ctg-booking__calendar {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	padding: 0;
}

.ctg-booking__calendar-header {
	align-items: center;
	display: grid;
	gap: 0.75rem;
	grid-template-columns: 2.5rem 1fr 2.5rem;
	margin-bottom: 0.85rem;
	text-align: center;
}

.ctg-booking__calendar-header strong {
	color: var(--ctg-text);
	font-size: 1.05rem;
	line-height: 1.3;
}

.ctg-booking__calendar-header button {
	align-items: center;
	background: #f5f8f4;
	border: 1px solid #afc2aa;
	border-radius: var(--ctg-calendar-day-radius);
	color: var(--ctg-text);
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	height: 2.4rem;
	justify-content: center;
	padding: 0;
	transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.ctg-booking__calendar-header button:hover:not(:disabled) {
	background: var(--ctg-primary);
	border-color: var(--ctg-primary);
	color: #fff;
	transform: translateY(-1px);
}

.ctg-booking__calendar-header button:disabled {
	cursor: not-allowed;
	opacity: 0.35;
}

.ctg-booking__calendar-weekdays,
.ctg-booking__calendar-days {
	display: grid;
	gap: 0.35rem;
	grid-template-columns: repeat(7, minmax(0, 1fr));
}

.ctg-booking__calendar-weekdays {
	color: var(--ctg-muted);
	font-size: 0.8rem;
	font-weight: 700;
	margin-bottom: 0.35rem;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.055em;
}

.ctg-booking__calendar-weekdays span {
	color: var(--ctg-muted);
}

.ctg-booking__calendar-days button {
	align-items: center;
	background: var(--ctg-calendar-day-background);
	border: 1px solid var(--ctg-calendar-day-border);
	border-radius: var(--ctg-calendar-day-radius);
	color: var(--ctg-calendar-day-color);
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	height: clamp(24px, var(--ctg-calendar-day-size), 64px) !important;
	justify-content: center;
	justify-self: center;
	min-height: clamp(24px, var(--ctg-calendar-day-size), 64px) !important;
	padding: 0.25rem;
	width: clamp(24px, var(--ctg-calendar-day-size), 64px) !important;
	transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.ctg-booking__calendar-days button:hover:not(:disabled) {
	background: var(--ctg-calendar-day-hover-background);
	border-color: var(--ctg-calendar-day-hover-background);
	color: var(--ctg-calendar-day-hover-color);
	box-shadow: 0 6px 14px rgba(32, 48, 44, 0.14);
	transform: translateY(-1px);
}

.ctg-booking__calendar-days button.is-today {
	border-color: var(--ctg-calendar-today-border);
	box-shadow: inset 0 0 0 1px var(--ctg-calendar-today-border);
}

.ctg-booking__calendar-days button.is-selected {
	background: var(--ctg-calendar-day-selected-background);
	border-color: var(--ctg-calendar-day-selected-background);
	color: var(--ctg-calendar-day-selected-color);
	font-weight: 700;
}

.ctg-booking__calendar-days button:disabled {
	background: var(--ctg-calendar-disabled-background);
	border-color: #e2e7df;
	color: var(--ctg-calendar-disabled-color);
	cursor: not-allowed;
	opacity: var(--ctg-calendar-disabled-opacity);
}

.ctg-booking__slot-status {
	color: var(--ctg-muted);
	font-size: 0.9rem;
	margin: 0 0 0.6rem;
}

.ctg-booking__slot-status:empty {
	display: none;
}

.ctg-booking__slot-select {
	appearance: none;
	background-color: var(--ctg-card);
	border: 1px solid var(--ctg-border);
	border-radius: 12px;
	box-shadow: 0 3px 10px rgba(32, 48, 44, 0.025);
	color: var(--ctg-text);
	cursor: pointer;
	font: inherit;
	min-height: 46px;
	padding: 0.6rem 0.75rem;
	width: 100%;
}

.ctg-booking__slot-select option {
	background: #fff;
	color: var(--ctg-text);
}

.ctg-booking__slot-select:hover:not(:disabled),
.ctg-booking__slot-select:focus {
	border-color: var(--ctg-primary);
}

.ctg-booking__slot-select:disabled {
	background-color: #f5f6f4;
	color: var(--ctg-muted);
	cursor: not-allowed;
	opacity: 1;
}

.ctg-booking__slot-select--native {
	display: none;
}

.ctg-booking__slot-buttons {
	display: grid;
	gap: 0.55rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ctg-booking__slot-button {
	background: #fff;
	border: 1px solid var(--ctg-border);
	border-radius: 9px;
	color: var(--ctg-text);
	cursor: pointer;
	font: inherit;
	font-size: 0.85rem;
	min-height: 40px;
	padding: 0.45rem;
	transition: background-color 150ms ease, border-color 150ms ease, box-shadow 150ms ease, color 150ms ease, transform 150ms ease;
}

.ctg-booking__slot-button:hover:not(:disabled) {
	border-color: var(--ctg-primary);
	box-shadow: 0 6px 15px rgba(32, 48, 44, 0.09);
	transform: translateY(-1px);
}

.ctg-booking__slot-button.is-selected {
	background: var(--ctg-primary);
	border-color: var(--ctg-primary);
	color: #fff;
	font-weight: 700;
}

.ctg-booking__slot-button:focus-visible {
	border-color: var(--ctg-primary-dark);
	box-shadow: 0 0 0 3px rgba(96, 123, 93, 0.18);
	outline: 0;
}

.ctg-booking__slot-button:disabled {
	background: #f5f6f4;
	color: var(--ctg-muted);
	cursor: not-allowed;
	opacity: 0.48;
}

.ctg-booking__step-nav {
	align-items: center;
	display: flex;
	gap: 0.8rem;
	justify-content: space-between;
	margin-top: 1.35rem;
}

.ctg-booking__step-nav--end {
	justify-content: flex-end;
}

.ctg-booking__summary {
	background: transparent;
	border: 0;
	border-radius: 0;
	display: grid;
	gap: 0.7rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 0 0 1rem;
	overflow: visible;
}

.ctg-booking__summary div {
	background: var(--ctg-card);
	border: 1px solid var(--ctg-border);
	border-radius: 12px;
	box-shadow: 0 5px 16px rgba(32, 48, 44, 0.035);
	padding: 0.75rem 0.9rem;
}

.ctg-booking__summary dt {
	color: var(--ctg-muted);
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
}

.ctg-booking__summary dd {
	font-weight: 700;
	margin: 0.2rem 0 0;
}

.ctg-booking__inline-payment {
	background: var(--ctg-card);
	border: 1px solid var(--ctg-border);
	border-radius: 14px;
	box-shadow: 0 8px 24px rgba(32, 48, 44, 0.05);
	margin: 0.75rem 0;
	padding: 0.8rem;
}

.ctg-booking__ajax-message {
	border-radius: 10px;
	margin: 1rem 0 0;
	padding: 0;
}

.ctg-booking__ajax-message.is-error,
.ctg-booking__ajax-message.is-success,
.ctg-booking__ajax-message.is-status {
	padding: 0.85rem 1rem;
}

.ctg-booking__ajax-message.is-error {
	background: #fff0f0;
	border: 1px solid #d49a9a;
	color: #722727;
}

.ctg-booking__ajax-message.is-success {
	background: #e5f3ea;
	border: 1px solid #8db79b;
}

.ctg-booking__ajax-message.is-status {
	background: #fff4dc;
	border: 1px solid #e0bd6a;
}

.ctg-booking__form.is-complete .ctg-booking__details-content {
	display: none;
}

.ctg-booking__confirmation {
	background: linear-gradient(145deg, #f7fbf6, #eaf2e8);
	border: 1px solid var(--ctg-primary);
	border-radius: 18px;
	box-shadow: 0 12px 30px rgba(32, 48, 44, 0.08);
	padding: clamp(1.5rem, 4vw, 2.5rem);
	text-align: center;
}

.ctg-booking__confirmation-icon {
	align-items: center;
	background: var(--ctg-primary-dark);
	border-radius: 50%;
	color: #fff;
	display: inline-flex;
	font-size: 1.4rem;
	height: 3.25rem;
	justify-content: center;
	margin-bottom: 1rem;
	width: 3.25rem;
}

.ctg-booking__confirmation h3 {
	margin-bottom: 0.6rem;
}

.ctg-booking__confirmation p {
	color: var(--ctg-muted);
	margin: 0 auto;
	max-width: 56ch;
}

.ctg-booking__confirmation-summary {
	margin: 1.35rem auto 0;
	max-width: 680px;
	text-align: left;
}

.ctg-booking__consent {
	align-items: center;
	display: flex;
	gap: 0.65rem;
	margin: 0.75rem 0;
	background: #f7f9f6;
	border: 1px solid var(--ctg-border);
	border-radius: 12px;
	padding: 0.85rem;
}

.ctg-booking__consent input {
	flex: 0 0 auto;
	margin: 0;
}

.ctg-booking__privacy {
	color: var(--ctg-muted);
	font-size: 0.875rem;
	background: rgba(130, 155, 125, 0.08);
	border-left: 3px solid var(--ctg-primary);
	border-radius: 0 9px 9px 0;
	margin: 0.75rem 0;
	padding: 0.65rem 0.75rem;
}

.ctg-booking__honeypot {
	height: 1px;
	left: -10000px;
	overflow: hidden;
	position: absolute;
	width: 1px;
}

.ctg-booking .ctg-quiz__button:disabled {
	cursor: not-allowed;
	opacity: 0.55;
	transform: none;
}

.ctg-booking .ctg-quiz__button {
	background: var(--ctg-primary);
	border-color: var(--ctg-primary);
	box-shadow: 0 9px 22px rgba(96, 123, 93, 0.2);
	min-height: 46px;
	padding: 0.6rem 1.35rem;
}

.ctg-booking .ctg-quiz__button:hover:not(:disabled) {
	background: var(--ctg-primary-dark);
	border-color: var(--ctg-primary-dark);
	box-shadow: 0 11px 26px rgba(96, 123, 93, 0.25);
}

.ctg-booking .ctg-quiz__button--secondary {
	background: #fff;
	border-color: var(--ctg-primary);
	color: var(--ctg-primary-dark) !important;
	box-shadow: none;
}

.ctg-booking .ctg-quiz__button--secondary:hover:not(:disabled) {
	background: #edf2eb;
	border-color: var(--ctg-primary-dark);
	color: var(--ctg-primary-dark) !important;
}

@media (min-width: 821px) {
	.ctg-booking__step[data-booking-step="1"] {
		align-items: start;
		display: grid;
		gap: 1rem;
		grid-template-columns: minmax(190px, 0.82fr) minmax(280px, 1.25fr) minmax(190px, 0.9fr);
	}

	.ctg-booking__step[data-booking-step="1"] > h3 {
		grid-column: 1 / -1;
	}

	.ctg-booking__fieldset--duration {
		grid-column: 1;
		grid-row: 2 / span 3;
		margin: 0;
	}

	.ctg-booking__step[data-booking-step="1"] .ctg-booking__calendar-section {
		grid-column: 2;
		grid-row: 2 / span 2;
	}

	.ctg-booking__step[data-booking-step="1"] .ctg-booking__slots-section {
		grid-column: 3;
		grid-row: 2;
	}

	.ctg-booking__step[data-booking-step="1"] .ctg-booking__timezone {
		grid-column: 3;
		grid-row: 3;
		margin: 0;
	}

	.ctg-booking__step[data-booking-step="1"] .ctg-booking__step-nav {
		grid-column: 2 / -1;
		margin-top: 0;
	}
}

@media (max-width: 620px) {
	.ctg-booking__session-grid,
	.ctg-booking__payment-grid,
	.ctg-booking__grid {
		grid-template-columns: 1fr;
	}

	.ctg-booking {
		--ctg-calendar-day-size: 34px;
		margin: 1rem auto;
	}

	.ctg-booking__calendar {
		padding: 0.85rem;
	}

	.ctg-booking__calendar-weekdays,
	.ctg-booking__calendar-days {
		gap: 0.2rem;
	}

	.ctg-booking__calendar-days button {
		font-size: 0.9rem;
	}

	.ctg-booking__summary {
		grid-template-columns: 1fr;
	}

	.ctg-booking__step-nav {
		align-items: stretch;
		flex-direction: column-reverse;
	}

	.ctg-booking__step-nav .ctg-quiz__button {
		justify-content: center;
		width: 100%;
	}
}

/* Final reference-layout normalization.
 * Kept after the legacy booking rules so Elementor columns are governed by
 * the widget's real width rather than the browser viewport.
 */
.ctg-booking {
	container-name: ctg-booking;
	container-type: inline-size;
	max-width: 1120px;
}

.ctg-booking__step[data-booking-step="1"] {
	display: block;
}

.ctg-booking__step[data-booking-step="1"] > h3 {
	margin-bottom: 1rem;
}

.ctg-booking__step[data-booking-step="1"] > .ctg-booking__appointment-layout {
	display: grid;
	gap: var(--ctg-booking-appointment-gap, 1.25rem);
	grid-template-columns: minmax(190px, 0.72fr) minmax(0, 1.85fr);
	width: 100%;
}

.ctg-booking__step[data-booking-step="1"] .ctg-booking__datetime-card {
	background: var(--ctg-booking-datetime-background, #fff);
	border: 1px solid var(--ctg-booking-datetime-border, rgba(202, 215, 210, 0.72));
	border-radius: var(--ctg-booking-datetime-radius, 18px);
	box-shadow: 0 12px 34px rgba(32, 48, 44, 0.06);
	padding: var(--ctg-booking-datetime-padding, clamp(1rem, 2.6cqi, 1.4rem));
}

.ctg-booking__step[data-booking-step="1"] .ctg-booking__datetime-grid {
	gap: var(--ctg-booking-datetime-gap, 1rem);
}

.ctg-booking__step[data-booking-step="1"] .ctg-booking__datetime-card .ctg-booking__calendar {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	padding: 0;
}

.ctg-booking__step[data-booking-step="1"] .ctg-booking__datetime-card > .ctg-booking__step-nav {
	align-items: center;
	flex-direction: row;
	justify-content: flex-end;
}

@container ctg-booking (max-width: 720px) {
	.ctg-booking__step[data-booking-step="1"] > .ctg-booking__appointment-layout {
		grid-template-columns: minmax(175px, 0.72fr) minmax(0, 1.5fr);
	}
}

@container ctg-booking (max-width: 590px) {
	.ctg-booking__step[data-booking-step="1"] > .ctg-booking__appointment-layout,
	.ctg-booking__step[data-booking-step="1"] .ctg-booking__datetime-grid {
		grid-template-columns: 1fr;
	}

	.ctg-booking__step[data-booking-step="1"] .ctg-booking__session-column .ctg-booking__session-grid {
		grid-template-columns: 1fr;
	}
}

@container ctg-booking (max-width: 460px) {
	.ctg-booking__step[data-booking-step="1"] .ctg-booking__session-column .ctg-booking__session-grid {
		grid-template-columns: 1fr;
	}

	.ctg-booking__step[data-booking-step="1"] .ctg-booking__datetime-card > .ctg-booking__step-nav {
		align-items: stretch;
		flex-direction: column;
	}
}

/* Readable quiz defaults and reference-matched sage navigation. */
.ctg-quiz .ctg-quiz__progress-label,
.ctg-quiz .ctg-quiz__progress-percent {
	font-size: 14px;
}

.ctg-quiz .ctg-quiz__fieldset legend {
	font-size: clamp(25px, 2.5vw, 32px);
}

.ctg-quiz .ctg-quiz__option span {
	font-size: 16px;
	line-height: 1.45;
}

.ctg-quiz .ctg-quiz__status-card h3 {
	font-size: 18px;
}

.ctg-quiz .ctg-quiz__status-card dt,
.ctg-quiz .ctg-quiz__status-card dd {
	font-size: 14px;
}

.ctg-quiz .ctg-quiz__question-disclaimer {
	font-size: 12px;
}

.ctg-quiz .ctg-quiz__questions .ctg-quiz__button,
.ctg-quiz .ctg-quiz__result .ctg-quiz__button {
	background-color: var(--ctg-primary-dark);
	border-color: var(--ctg-primary-dark);
	border-radius: 12px;
	color: #fff !important;
	font-size: 15px;
	font-weight: 700;
	min-height: 48px;
}

.ctg-quiz .ctg-quiz__questions .ctg-quiz__button:hover:not(:disabled),
.ctg-quiz .ctg-quiz__result .ctg-quiz__button:hover:not(:disabled) {
	background-color: #4f694d;
	border-color: #4f694d;
}

.ctg-quiz .ctg-quiz__questions .ctg-quiz__button--secondary,
.ctg-quiz .ctg-quiz__result .ctg-quiz__button--secondary {
	background-color: #fff;
	border-color: #d7e0d5;
	color: var(--ctg-primary-dark) !important;
}

.ctg-quiz .ctg-quiz__questions .ctg-quiz__button--secondary:hover:not(:disabled),
.ctg-quiz .ctg-quiz__result .ctg-quiz__button--secondary:hover:not(:disabled) {
	background-color: #f0f5ef;
	border-color: var(--ctg-primary-dark);
	color: var(--ctg-primary-dark) !important;
}

@media (max-width: 820px) {
	.elementor-element .ctg-quiz .ctg-quiz__questions-layout {
		grid-template-columns: 1fr;
	}
}

/* Quiz v4 reference finish: exact sage color, crisp selection mark,
 * restrained navigation arrows, and the supplied crisis-result proportions.
 */
.ctg-quiz .ctg-quiz__progress span {
	background: #90a98b;
}

.ctg-quiz .ctg-quiz__option::after {
	background-color: transparent;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 14px 14px;
	border-color: #d7dfd5;
	content: "";
	flex-basis: 22px;
	height: 22px;
	width: 22px;
}

.ctg-quiz .ctg-quiz__option:has(input:checked) {
	background: #edf3eb;
	border-color: #90a98b;
}

.ctg-quiz .ctg-quiz__option:has(input:checked)::after {
	background-color: #90a98b;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpolyline points='3.5,8 6.5,11 12.5,4.5' fill='none' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	border-color: #90a98b;
	content: "";
}

.ctg-quiz .ctg-quiz__start-button::after,
.ctg-quiz .ctg-quiz__nav [data-action="next"]::after {
	font-size: var(--ctg-quiz-arrow-size, 0.76em);
	font-weight: 400;
	line-height: 1;
	margin-left: 0.45rem;
}

.ctg-quiz .ctg-quiz__nav [data-action="back"]::before {
	font-size: var(--ctg-quiz-arrow-size, 0.76em);
	font-weight: 400;
	line-height: 1;
	margin-right: 0.45rem;
}

.ctg-quiz .ctg-quiz__questions .ctg-quiz__button,
.ctg-quiz .ctg-quiz__result .ctg-quiz__button {
	background-color: #90a98b;
	border-color: #90a98b;
}

.ctg-quiz .ctg-quiz__questions .ctg-quiz__button:hover:not(:disabled),
.ctg-quiz .ctg-quiz__result .ctg-quiz__button:hover:not(:disabled) {
	background-color: #789373;
	border-color: #789373;
}

.ctg-quiz .ctg-quiz__questions .ctg-quiz__button--secondary,
.ctg-quiz .ctg-quiz__result .ctg-quiz__button--secondary {
	background-color: #fff;
	border-color: #d8e0d6;
	color: #526a4f !important;
}

.ctg-quiz .ctg-quiz__result .ctg-quiz__result-actions .ctg-quiz__button--secondary:hover:not(:disabled) {
	background-color: #789373;
	border-color: #789373;
	color: #fff !important;
}

.ctg-quiz .ctg-quiz__result.ctg-quiz__result--crisis {
	background: #ead0d1;
	border: 0;
	border-radius: 28px;
	box-shadow: 0 12px 30px rgba(32, 48, 44, 0.06);
	max-width: 810px;
	padding: 50px;
}

.ctg-quiz .ctg-quiz__result.ctg-quiz__result--crisis .ctg-quiz__crisis-icon {
	color: var(--ctg-text);
	display: block;
	height: 54px;
	margin: 0 0 0.4rem;
	width: 54px;
}

.ctg-quiz .ctg-quiz__result.ctg-quiz__result--crisis .ctg-quiz__eyebrow {
	color: #607b5d;
	font-size: 12px;
	letter-spacing: 0.14em;
	margin: 0 0 0.65rem;
}

.ctg-quiz .ctg-quiz__result.ctg-quiz__result--crisis h2 {
	font-size: 32px;
	letter-spacing: -0.025em;
	line-height: 1.15;
	margin: 0 0 0.3rem;
}

.ctg-quiz .ctg-quiz__result.ctg-quiz__result--crisis .ctg-quiz__result-copy {
	color: #5c6b67;
	font-size: 16px;
	line-height: 1.55;
	margin: 0;
	max-width: 690px;
}

.ctg-quiz .ctg-quiz__result.ctg-quiz__result--crisis .ctg-quiz__crisis-resources {
	gap: 14px;
	margin: 38px 0 36px;
}

.ctg-quiz .ctg-quiz__result.ctg-quiz__result--crisis .ctg-quiz__crisis-resources a {
	border: 0;
	border-radius: 18px;
	justify-content: center;
	min-height: 84px;
	padding: 18px 22px;
}

.ctg-quiz .ctg-quiz__result.ctg-quiz__result--crisis .ctg-quiz__crisis-resources small {
	font-size: 10px;
	letter-spacing: 0.13em;
}

.ctg-quiz .ctg-quiz__result.ctg-quiz__result--crisis .ctg-quiz__crisis-resources strong {
	color: #607b5d;
	font-size: 16px;
	line-height: 1.3;
}

.ctg-quiz .ctg-quiz__result.ctg-quiz__result--crisis .ctg-quiz__secondary-copy {
	align-items: center;
	background: #edf4eb;
	border-radius: 20px;
	display: flex;
	font-size: 14px;
	line-height: 1.65;
	margin: 0 0 20px;
	min-height: 105px;
	padding: 24px 28px;
}

.ctg-quiz .ctg-quiz__result.ctg-quiz__result--crisis .ctg-quiz__family-note {
	background: #dcebf4;
	border-radius: 18px;
	font-size: 14px;
	line-height: 1.55;
	margin: 0;
	min-height: 160px;
	padding: 24px 26px;
}

.ctg-quiz .ctg-quiz__result.ctg-quiz__result--crisis .ctg-quiz__family-icon {
	color: #607b5d;
	height: 32px;
	margin-bottom: 0.65rem;
	width: 32px;
}

.ctg-quiz .ctg-quiz__result.ctg-quiz__result--crisis .ctg-quiz__family-note strong {
	font-size: 16px;
	margin-bottom: 0.25rem;
}

.ctg-quiz .ctg-quiz__result.ctg-quiz__result--crisis .ctg-quiz__result-actions {
	gap: 12px;
	margin-top: 36px;
}

.ctg-quiz .ctg-quiz__result.ctg-quiz__result--crisis .ctg-quiz__result-actions .ctg-quiz__button {
	min-height: 44px;
	padding: 0.65rem 1.45rem;
}

@media (max-width: 620px) {
	.ctg-quiz .ctg-quiz__result.ctg-quiz__result--crisis {
		border-radius: 22px;
		padding: 26px 20px;
	}

	.ctg-quiz .ctg-quiz__result.ctg-quiz__result--crisis h2 {
		font-size: 27px;
	}

	.ctg-quiz .ctg-quiz__result.ctg-quiz__result--crisis .ctg-quiz__crisis-resources {
		gap: 10px;
		margin: 28px 0;
	}

	.ctg-quiz .ctg-quiz__result.ctg-quiz__result--crisis .ctg-quiz__secondary-copy,
	.ctg-quiz .ctg-quiz__result.ctg-quiz__result--crisis .ctg-quiz__family-note {
		min-height: 0;
		padding: 20px;
	}
}

/* Elementor booking width guard.
 * Inline-size containment on an auto-sized flex widget can otherwise make
 * Elementor use the contained element's near-zero intrinsic width.
 */
.elementor-widget-ctg-treatment-booking {
	align-self: stretch;
	max-width: 100% !important;
	min-width: 0;
	width: 100% !important;
}

.elementor-widget-ctg-treatment-booking > .elementor-widget-container {
	display: block;
	max-width: 100%;
	min-width: 0;
	width: 100%;
}

.elementor-widget-ctg-treatment-booking .ctg-booking,
.ctg-booking {
	container-name: none;
	container-type: normal;
	display: block;
	inline-size: 100%;
	min-width: 0;
	width: 100%;
}

.ctg-booking__shell {
	container-name: ctg-booking;
	container-type: inline-size;
	inline-size: 100%;
	min-width: 0;
	width: 100%;
}

/* Reference-only booking selector: no visible outer wrapper or extra header. */
.ctg-booking {
	background: transparent;
	margin: 0;
	max-width: 100%;
}

.ctg-booking .ctg-booking__form {
	margin: 0;
}

.ctg-booking .ctg-booking__step[data-booking-step="1"] {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	padding: 0;
}

.ctg-booking .ctg-booking__step[data-booking-step="1"] > .ctg-booking__appointment-layout {
	align-items: stretch;
	display: grid;
	gap: var(--ctg-booking-appointment-gap, 32px);
	grid-template-columns: var(--ctg-booking-appointment-columns, minmax(0, var(--ctg-booking-session-column, 232px)) minmax(0, 1fr));
	width: 100%;
}

.ctg-booking .ctg-booking__session-column {
	background: transparent;
	min-width: 0;
}

.ctg-booking .ctg-booking__fieldset--duration,
.ctg-booking .ctg-booking__session-column .ctg-booking__fieldset {
	margin: 0;
}

.ctg-booking__sr-only {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	white-space: nowrap;
	width: 1px;
}

.ctg-booking .ctg-booking__session-column .ctg-booking__session-grid {
	gap: 16px;
	grid-template-columns: 1fr;
}

.ctg-booking .ctg-booking__session-column .ctg-booking__session {
	background: #fff;
	border: 1px solid #dce4da;
	border-radius: 16px;
	box-shadow: 0 7px 20px rgba(32, 48, 44, 0.045);
	min-height: 174px;
	padding: 18px 21px;
}

.ctg-booking .ctg-booking__session-column .ctg-booking__session:has(input:checked) {
	background: #edf4eb;
	border-color: #607b5d;
	box-shadow: none;
}

.ctg-booking .ctg-booking__session-heading strong {
	font-size: 18px;
	line-height: 1.25;
}

.ctg-booking .ctg-booking__session-heading b {
	color: #4f694d;
	font-size: 24px;
	line-height: 1.1;
}

.ctg-booking .ctg-booking__session small {
	font-size: 13px;
	line-height: 1.35;
}

.ctg-booking .ctg-booking__session em {
	font-size: 13px;
	line-height: 1.5;
	margin: 15px 0 17px;
}

.ctg-booking .ctg-booking__select-option {
	border-color: #90a98b;
	border-radius: 8px;
	font-size: 13px;
	min-height: 38px;
}

.ctg-booking .ctg-booking__session:has(input:checked) .ctg-booking__select-option {
	background: #526d50;
	border-color: #526d50;
	color: #fff;
}

.ctg-booking .ctg-booking__recommended {
	background: #9fb896;
	border-radius: 0 14px 0 10px;
	color: #385036;
	font-size: 10px;
	padding: 4px 12px;
	right: -1px;
	top: -1px;
}

.ctg-booking .ctg-booking__session--recommended > span:not(.ctg-booking__recommended) {
	padding-top: 14px;
}

.ctg-booking .ctg-booking__reschedule-note {
	align-items: center;
	background: #e8f1e9;
	border-radius: 8px;
	color: #34443f;
	display: flex;
	font-size: 12px;
	gap: 9px;
	line-height: 1.35;
	margin: 16px 0 0;
	min-height: 58px;
	padding: 12px 16px;
}

.ctg-booking .ctg-booking__reschedule-note svg {
	color: #526d50;
	flex: 0 0 17px;
	height: 17px;
	width: 17px;
}

.ctg-booking .ctg-booking__datetime-card {
	background: var(--ctg-booking-datetime-background, #fff);
	border: 0;
	border-radius: 15px;
	box-shadow: 0 8px 24px rgba(32, 48, 44, 0.045);
	min-height: 448px;
	padding: 20px 22px;
}

.ctg-booking .ctg-booking__datetime-header {
	border: 0;
	margin: 0 0 22px;
	padding: 0;
}

.ctg-booking .ctg-booking__datetime-header > h4 {
	font-size: 19px;
	font-weight: 800;
	line-height: 1.25;
	margin: 0;
}

.ctg-booking .ctg-booking__datetime-header .ctg-booking__timezone {
	align-items: center;
	display: flex;
	flex-direction: row;
	gap: 6px;
	margin: 0;
	width: auto;
}

.ctg-booking .ctg-booking__timezone > svg {
	color: #526d50;
	flex: 0 0 13px;
	height: 13px;
	width: 13px;
}

.ctg-booking .ctg-booking__datetime-header .ctg-booking__timezone select {
	appearance: none;
	background: transparent;
	background-image: none;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	color: #41514c;
	cursor: pointer;
	font-size: 12px;
	min-height: 24px;
	padding: 0;
	width: auto;
}

.ctg-booking .ctg-booking__datetime-grid {
	align-items: start;
	gap: var(--ctg-booking-datetime-gap, 28px);
	grid-template-columns: minmax(220px, 1fr) minmax(210px, 1fr);
}

.ctg-booking .ctg-booking__step[data-booking-step="1"] .ctg-booking__calendar-section,
.ctg-booking .ctg-booking__step[data-booking-step="1"] .ctg-booking__slots-section,
.ctg-booking .ctg-booking__step[data-booking-step="1"] .ctg-booking__timezone {
	grid-column: auto;
	grid-row: auto;
}

.ctg-booking .ctg-booking__panel-label {
	display: none;
}

.ctg-booking .ctg-booking__datetime-card .ctg-booking__calendar-header {
	grid-template-columns: 24px 1fr 24px;
	margin-bottom: 19px;
}

.ctg-booking .ctg-booking__datetime-card .ctg-booking__calendar-header button {
	background: transparent;
	border: 0;
	border-radius: 0;
	color: #263630;
	font-size: 15px;
	height: 24px;
}

.ctg-booking .ctg-booking__datetime-card .ctg-booking__calendar-header button:hover:not(:disabled) {
	background: transparent;
	color: #607b5d;
	transform: none;
}

.ctg-booking .ctg-booking__datetime-card .ctg-booking__calendar-header strong {
	font-size: 16px;
}

.ctg-booking .ctg-booking__datetime-card .ctg-booking__calendar-weekdays {
	color: #263630;
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
}

.ctg-booking .ctg-booking__datetime-card .ctg-booking__calendar-weekdays,
.ctg-booking .ctg-booking__datetime-card .ctg-booking__calendar-days {
	gap: 4px;
}

.ctg-booking .ctg-booking__datetime-card .ctg-booking__calendar-days button {
	--ctg-calendar-day-size: 30px;
	background: transparent;
	border: 0;
	border-radius: 6px;
	font-size: 13px;
	height: 30px !important;
	width: 30px !important;
}

.ctg-booking .ctg-booking__datetime-card .ctg-booking__calendar-days button:hover:not(:disabled) {
	background: #edf4eb;
	color: #20302c;
}

.ctg-booking .ctg-booking__datetime-card .ctg-booking__calendar-days button.is-selected {
	background: #526d50;
	color: #fff;
}

.ctg-booking .ctg-booking__datetime-card .ctg-booking__calendar-days button:disabled {
	background: transparent;
}

.ctg-booking .ctg-booking__slots-section {
	background: transparent;
	display: flex;
	flex-direction: column;
	margin: 0;
	min-width: 0;
}

.ctg-booking .ctg-booking__datetime-card .ctg-booking__slots-section > h4 {
	border-bottom: 1px solid #e8ece6;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.35;
	margin: 0 0 12px;
	min-height: 28px;
	padding: 0 0 10px;
}

.ctg-booking .ctg-booking__slot-status {
	font-size: 12px;
	line-height: 1.35;
	margin: -5px 0 8px;
}

.ctg-booking .ctg-booking__slot-status:empty {
	display: none;
}

.ctg-booking .ctg-booking__slot-buttons {
	gap: 8px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ctg-booking .ctg-booking__datetime-card .ctg-booking__slot-button {
	background: #fff;
	border: 1px solid #dce2da;
	border-radius: 8px;
	font-size: 13px;
	min-height: 38px;
	padding: 7px;
}

.ctg-booking .ctg-booking__datetime-card .ctg-booking__slot-button.is-date-disabled {
	background: #f8faf7;
	border-color: #e3e8e1;
	color: #829087;
	cursor: not-allowed;
	opacity: 0.72;
}

.ctg-booking .ctg-booking__datetime-card .ctg-booking__slot-button.is-selected {
	background: #90a98b;
	border-color: #90a98b;
	color: #fff;
}

.ctg-booking .ctg-booking__confirm-selection {
	background: #526d50;
	border-color: #526d50;
	border-radius: 7px;
	box-shadow: 0 7px 15px rgba(32, 48, 44, 0.12);
	font-size: 13px;
	margin-top: 12px;
	min-height: 40px;
	padding: 8px 12px;
	width: 100%;
}

.ctg-booking .ctg-booking__confirm-selection:hover:not(:disabled) {
	background: #445f43;
	border-color: #445f43;
}

@container ctg-booking (max-width: 680px) {
	.ctg-booking .ctg-booking__step[data-booking-step="1"] > .ctg-booking__appointment-layout,
	.ctg-booking .ctg-booking__datetime-grid {
		grid-template-columns: 1fr;
	}

	.ctg-booking .ctg-booking__datetime-card {
		min-height: 0;
	}
}

@container ctg-booking (max-width: 460px) {
	.ctg-booking .ctg-booking__datetime-header {
		align-items: flex-start;
		flex-direction: column;
	}
}

/* Quiz selection and wellness icon alignment. */
.ctg-quiz .ctg-quiz__option::after,
.ctg-quiz .ctg-quiz__option:has(input:checked)::after {
	background-position: 50% 50%;
	transform: none;
}

.ctg-quiz .ctg-quiz__option:has(input:checked)::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M3.75 8.25 6.75 11.25 12.25 5.25' fill='none' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-size: 13px 13px;
}

.ctg-quiz .ctg-quiz__status-card .ctg-quiz__status-icon {
	color: #90a98b;
	display: block;
	height: 42px;
	margin: 0 0 18px;
	overflow: visible;
	width: 42px;
}

/* Spacious details/payment step and shared consultation dropdowns. */
.ctg-booking .ctg-booking__step[data-booking-step="2"] {
	padding: clamp(26px, 4vw, 44px);
}

.ctg-booking .ctg-booking__step[data-booking-step="2"] > h3 {
	margin-bottom: 26px;
}

.ctg-booking .ctg-booking__details-content {
	display: grid;
	gap: 20px;
}

.ctg-booking .ctg-booking__details-content > *,
.ctg-booking .ctg-booking__step[data-booking-step="2"] .ctg-booking__field {
	margin-bottom: 0;
}

.ctg-booking .ctg-booking__step[data-booking-step="2"] .ctg-booking__grid {
	column-gap: 20px;
	row-gap: 16px;
}

.ctg-booking .ctg-booking__step[data-booking-step="2"] .ctg-booking__field {
	gap: 8px;
}

.ctg-booking .ctg-booking__step[data-booking-step="2"] .ctg-booking__field input {
	min-height: 52px;
	padding: 11px 15px;
}

.ctg-booking .ctg-booking__field--format {
	grid-column: 1 / -1;
}

.ctg-booking .ctg-booking__select-shell {
	align-items: center;
	background: #fff;
	border: 1px solid var(--ctg-border);
	border-radius: 12px;
	box-shadow: 0 4px 14px rgba(32, 48, 44, 0.04);
	color: var(--ctg-primary-dark);
	display: flex;
	min-height: 52px;
	overflow: visible;
	position: relative;
	transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
	width: 100%;
}

.ctg-booking .ctg-booking__select-shell:focus-within,
.ctg-booking .ctg-booking__select-shell.is-open {
	border-color: var(--ctg-primary);
	box-shadow: 0 0 0 3px rgba(96, 123, 93, 0.16);
}

.ctg-booking .ctg-booking__select-leading-icon {
	color: #607b5d;
	height: 20px;
	left: 15px;
	pointer-events: none;
	position: absolute;
	width: 20px;
	z-index: 1;
}

.ctg-booking .ctg-booking__select-shell select {
	appearance: none;
	background-color: transparent;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%23607b5d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-position: right 16px center;
	background-repeat: no-repeat;
	background-size: 14px 8px;
	border: 0;
	border-radius: inherit;
	box-shadow: none;
	color: var(--ctg-text);
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	min-height: 52px;
	padding: 10px 48px 10px 48px;
	width: 100%;
}

.ctg-booking .ctg-booking__select-shell.is-enhanced > select {
	border: 0 !important;
	clip: rect(0 0 0 0) !important;
	clip-path: inset(50%) !important;
	height: 1px !important;
	margin: 0 !important;
	opacity: 0 !important;
	overflow: hidden !important;
	padding: 0 !important;
	pointer-events: none !important;
	position: absolute !important;
	width: 1px !important;
}

.ctg-booking .ctg-booking__select-shell select:focus {
	border: 0;
	box-shadow: none;
	outline: 0;
}

.ctg-booking .ctg-booking__select-trigger {
	align-items: center;
	appearance: none;
	background: transparent;
	border: 0;
	border-radius: inherit;
	box-shadow: none;
	color: var(--ctg-text);
	cursor: pointer;
	display: flex;
	font: inherit;
	font-size: 16px;
	font-weight: 600;
	gap: 12px;
	justify-content: space-between;
	line-height: 1.35;
	min-height: 50px;
	margin: 0;
	padding: 10px 15px 10px 48px;
	text-align: left;
	text-transform: none;
	width: 100%;
}

.ctg-booking .ctg-booking__select-trigger:hover {
	background: rgba(144, 169, 139, 0.08);
}

.ctg-booking .ctg-booking__select-trigger:focus-visible {
	box-shadow: none;
	outline: 0;
}

.ctg-booking .ctg-booking__select-trigger.is-placeholder {
	color: #74817d;
	font-weight: 500;
}

.ctg-booking .ctg-booking__select-chevron {
	color: #607b5d;
	flex: 0 0 14px;
	height: 8px;
	transition: transform 160ms ease;
	width: 14px;
}

.ctg-booking .ctg-booking__select-shell.is-open .ctg-booking__select-chevron {
	transform: rotate(180deg);
}

.ctg-booking .ctg-booking__select-shell.is-open {
	z-index: 30;
}

.ctg-booking .ctg-booking__select-shell.is-invalid {
	border-color: #a74646;
	box-shadow: 0 0 0 3px rgba(167, 70, 70, 0.12);
}

.ctg-booking .ctg-booking__select-menu {
	background: #fff;
	border: 1px solid var(--ctg-border);
	border-radius: 12px;
	box-shadow: 0 18px 42px rgba(32, 48, 44, 0.16);
	display: grid;
	gap: 4px;
	left: -1px;
	min-width: calc(100% + 2px);
	padding: 6px;
	position: absolute;
	top: calc(100% + 8px);
	z-index: 40;
}

.ctg-booking .ctg-booking__select-option-item {
	align-items: center;
	appearance: none;
	background: transparent;
	border: 0;
	border-radius: 8px;
	box-shadow: none;
	color: var(--ctg-text);
	cursor: pointer;
	display: flex;
	font: inherit;
	font-size: 15px;
	font-weight: 500;
	justify-content: space-between;
	line-height: 1.35;
	margin: 0;
	min-height: 42px;
	padding: 9px 38px 9px 12px;
	position: relative;
	text-align: left;
	text-transform: none;
	transition: background-color 140ms ease, color 140ms ease;
	width: 100%;
}

.ctg-booking .ctg-booking__select-option-item:hover:not(:disabled),
.ctg-booking .ctg-booking__select-option-item:focus-visible {
	background: #f1f5ef;
	color: var(--ctg-primary-dark);
	outline: 0;
}

.ctg-booking .ctg-booking__select-option-item.is-selected {
	background: #e7efe4;
	color: var(--ctg-primary-dark);
	font-weight: 700;
}

.ctg-booking .ctg-booking__select-option-item.is-selected::after {
	background-color: #90a98b;
	border-radius: 50%;
	content: "";
	height: 16px;
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
}

.ctg-booking .ctg-booking__select-option-item.is-selected::before {
	border-color: #fff;
	border-style: solid;
	border-width: 0 2px 2px 0;
	content: "";
	height: 7px;
	position: absolute;
	right: 17px;
	top: 50%;
	transform: translateY(-60%) rotate(45deg);
	width: 4px;
	z-index: 1;
}

.ctg-booking .ctg-booking__select-option-item:disabled {
	color: #87928e;
	cursor: default;
	opacity: 0.72;
}

.ctg-booking .ctg-booking__datetime-header .ctg-booking__timezone {
	min-width: 250px;
	width: min(280px, 100%);
}

.ctg-booking .ctg-booking__datetime-header .ctg-booking__timezone .ctg-booking__select-shell {
	min-height: 42px;
}

.ctg-booking .ctg-booking__datetime-header .ctg-booking__timezone .ctg-booking__select-leading-icon {
	height: 17px;
	left: 13px;
	width: 17px;
}

.ctg-booking .ctg-booking__datetime-header .ctg-booking__timezone .ctg-booking__select-shell select {
	font-size: 12px;
	min-height: 42px;
	padding: 8px 38px 8px 40px;
	width: 100%;
}

.ctg-booking .ctg-booking__datetime-header .ctg-booking__timezone .ctg-booking__select-trigger {
	font-size: 12px;
	min-height: 40px;
	padding: 8px 12px 8px 40px;
}

.ctg-booking .ctg-booking__datetime-header .ctg-booking__timezone .ctg-booking__select-menu {
	left: auto;
	min-width: max(100%, 250px);
	right: -1px;
}

.ctg-booking .ctg-booking__datetime-header .ctg-booking__timezone .ctg-booking__select-option-item {
	font-size: 13px;
	min-height: 38px;
	padding-block: 8px;
}

.ctg-booking .ctg-booking__summary {
	gap: 12px;
}

.ctg-booking .ctg-booking__summary div {
	padding: 14px 16px;
}

.ctg-booking .ctg-booking__consent {
	align-items: center;
	padding: 15px 16px;
}

.ctg-booking .ctg-booking__consent input[type="checkbox"] {
	appearance: none !important;
	background: #fff !important;
	border: 1.5px solid #aebdb1 !important;
	border-radius: 3px !important;
	box-shadow: none !important;
	display: grid;
	flex: 0 0 var(--ctg-consent-checkbox-size, 20px);
	height: var(--ctg-consent-checkbox-size, 20px) !important;
	margin: 0 !important;
	min-height: var(--ctg-consent-checkbox-size, 20px) !important;
	padding: 0 !important;
	place-content: center;
	width: var(--ctg-consent-checkbox-size, 20px) !important;
}

.ctg-booking .ctg-booking__consent input[type="checkbox"]::before {
	border-color: var(--ctg-primary);
	border-style: solid;
	border-width: 0 2px 2px 0;
	content: "";
	height: 8px;
	transform: rotate(45deg) scale(0);
	transform-origin: center;
	transition: transform 120ms ease;
	width: 4px;
}

.ctg-booking .ctg-booking__consent input[type="checkbox"]:checked {
	background: #fff !important;
	border-color: var(--ctg-primary) !important;
}

.ctg-booking .ctg-booking__consent input[type="checkbox"]:checked::before {
	transform: translateY(-1px) rotate(45deg) scale(1);
}

.ctg-booking .ctg-booking__consent input[type="checkbox"]:focus-visible {
	border-color: var(--ctg-primary) !important;
	box-shadow: 0 0 0 3px rgba(144, 169, 139, 0.2) !important;
	outline: 0;
}

.ctg-booking .ctg-booking__consent > span {
	display: block;
	line-height: 1.5;
}

.ctg-booking .ctg-booking__privacy {
	font-size: 14px;
	line-height: 1.55;
	padding: 11px 14px;
}

.ctg-booking .ctg-booking__step[data-booking-step="2"] .ctg-booking__fieldset > legend {
	color: var(--ctg-text);
	font-family: var(--ctg-heading-font);
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -0.015em;
	line-height: 1.15;
	margin: 0 0 14px;
	padding: 0;
	width: 100%;
}

.ctg-booking .ctg-booking__payment {
	min-height: 76px;
	padding: 16px 18px;
}

.ctg-booking .ctg-booking__inline-payment {
	margin: 0;
	padding: 18px;
}

.ctg-booking .ctg-booking__step-nav {
	margin-top: 4px;
}

@container ctg-booking (max-width: 620px) {
	.ctg-booking .ctg-booking__step[data-booking-step="2"] {
		padding: 22px 18px;
	}

	.ctg-booking .ctg-booking__details-content {
		gap: 16px;
	}

	.ctg-booking .ctg-booking__datetime-header .ctg-booking__timezone {
		min-width: 0;
		width: 100%;
	}
}

/* Confirmation owns the only visible card after payment completes. */
.ctg-booking .ctg-booking__form.is-complete .ctg-booking__step[data-booking-step="2"] {
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	overflow: visible;
	padding: 0 !important;
}

.ctg-booking .ctg-booking__form.is-complete .ctg-booking__step[data-booking-step="2"] > h3 {
	display: none !important;
}

/* Wrapper audit: structural shells remain only for Elementor controls and
 * container queries; they never add another visible card by default. */
.ctg-quiz > .ctg-quiz__shell,
.ctg-booking > .ctg-booking__shell {
	background: transparent;
	background-image: none;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	isolation: auto;
	overflow: visible;
	padding: 0;
}

.ctg-quiz > .ctg-quiz__shell::before,
.ctg-booking > .ctg-booking__shell::before {
	display: none;
}

/* Plugin-wide typography. Elementor typography controls remain more specific
 * and can override these defaults for individual widget parts. */
.ctg-quiz,
.ctg-booking {
	font-family: var(--ctg-font);
}

.ctg-quiz :where(button, input, select, textarea),
.ctg-booking :where(button, input, select, textarea) {
	font-family: inherit;
}

.ctg-quiz :where(h1, h2, h3, h4, h5, h6, legend),
.ctg-booking :where(h1, h2, h3, h4, h5, h6, legend),
.ctg-quiz :where(.ctg-quiz__crisis-resources strong),
.ctg-booking :where(.ctg-booking__session-heading strong, .ctg-booking__payment strong) {
	font-family: var(--ctg-heading-font);
	font-weight: 700;
}

.ctg-quiz__contact {
	max-width: 760px;
	margin: 0 auto;
}

.ctg-quiz__contact-card {
	padding: 38px;
	border: 1px solid var(--ctg-border);
	border-radius: 28px;
	background: #fff;
	box-shadow: 0 18px 42px rgba(36, 53, 42, .08);
}

.ctg-quiz__contact-card h2 { margin: 0; font-size: clamp(32px, 4vw, 44px); }
.ctg-quiz__contact-card > p { margin: 8px 0 24px; color: var(--ctg-muted); }
.ctg-quiz__contact-card form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ctg-quiz__contact-card label { display: grid; gap: 7px; color: var(--ctg-ink); font-size: 14px; font-weight: 700; }
.ctg-quiz__contact-card label:last-of-type, .ctg-quiz__contact-card [data-contact-submit], .ctg-quiz__contact-card [data-contact-error] { grid-column: 1 / -1; }
.ctg-quiz__contact-card input, .ctg-quiz__contact-card textarea { width: 100%; min-height: 48px; box-sizing: border-box; border: 1px solid var(--ctg-border); border-radius: 10px; background: #fff; color: var(--ctg-ink); padding: 12px; }
.ctg-quiz__contact-card textarea { min-height: 105px; resize: vertical; }
.ctg-quiz__contact-card .ctg-quiz__contact-opt-in { display: flex; grid-column: 1 / -1; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; line-height: 1.45; }
.ctg-quiz__contact-card .ctg-quiz__contact-opt-in input[type="checkbox"] { appearance: none !important; background: #fff !important; border: 1.5px solid #aebdb1 !important; border-radius: 3px !important; box-shadow: none !important; display: grid; width: 18px !important; min-width: 18px; min-height: 18px !important; height: 18px !important; margin: 0 !important; padding: 0 !important; place-content: center; }
.ctg-quiz__contact-card .ctg-quiz__contact-opt-in input[type="checkbox"]::before { border-color: var(--ctg-primary); border-style: solid; border-width: 0 2px 2px 0; content: ''; height: 8px; transform: translateY(-1px) rotate(45deg) scale(0); transition: transform .15s ease; width: 4px; }
.ctg-quiz__contact-card .ctg-quiz__contact-opt-in input[type="checkbox"]:checked { border-color: var(--ctg-primary) !important; }
.ctg-quiz__contact-card .ctg-quiz__contact-opt-in input[type="checkbox"]:checked::before { transform: translateY(-1px) rotate(45deg) scale(1); }
.ctg-quiz__contact-card .ctg-quiz__contact-opt-in input[type="checkbox"]:focus-visible { border-color: var(--ctg-primary) !important; box-shadow: 0 0 0 3px rgba(144, 169, 139, .2) !important; outline: 0; }
.ctg-quiz__contact-card .ctg-quiz__contact-opt-in span { display: block; }
.ctg-quiz__soft-crisis-note { margin: 20px 0; padding: 14px 16px; border-left: 3px solid var(--ctg-primary); border-radius: 8px; background: #f5f8f3; color: var(--ctg-ink); font-size: 14px; }
@media (max-width: 640px) { .ctg-quiz__contact-card { padding: 24px; border-radius: 20px; } .ctg-quiz__contact-card form { grid-template-columns: 1fr; } .ctg-quiz__contact-card label:last-of-type, .ctg-quiz__contact-card [data-contact-submit], .ctg-quiz__contact-card [data-contact-error] { grid-column: auto; } }

/* Custom select menus must respect the native hidden attribute at every breakpoint. */
.ctg-booking [hidden] {
	display: none !important;
}

/* Booking first stage: choose one session, then continue to date and time.
 * The two stages deliberately never share the same visual row. */
.ctg-booking .ctg-booking__step[data-booking-step="1"] > .ctg-booking__appointment-layout {
	display: block !important;
}

.ctg-booking .ctg-booking__session-column {
	margin: 0 auto;
	max-width: 760px;
	width: min(100%, 760px) !important;
}

.ctg-booking .ctg-booking__step[data-booking-step="1"] .ctg-booking__session-column .ctg-booking__session-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ctg-booking .ctg-booking__session-column .ctg-booking__session {
	min-width: 0;
}

.ctg-booking .ctg-booking__session-continue {
	display: flex;
	justify-content: center;
	margin: 1.25rem auto 0;
	min-width: min(100%, 240px);
}

.ctg-booking .ctg-booking__session-continue:disabled {
	cursor: not-allowed;
	opacity: 0.55;
}

.ctg-booking .ctg-booking__datetime-card {
	margin: 0 auto;
	max-width: 1100px;
	width: 100%;
}

.ctg-booking .ctg-booking__timezone-note {
	align-items: center;
	color: var(--ctg-primary-dark);
	display: inline-flex;
	font-size: 0.86rem;
	font-weight: 700;
	gap: 0.45rem;
	margin: 0;
}

.ctg-booking .ctg-booking__timezone-note svg {
	flex: 0 0 1rem;
	height: 1rem;
	width: 1rem;
}

@container ctg-booking (max-width: 540px) {
	.ctg-booking .ctg-booking__step[data-booking-step="1"] .ctg-booking__session-column .ctg-booking__session-grid {
		grid-template-columns: 1fr;
	}

	.ctg-booking .ctg-booking__session-continue {
		width: 100%;
	}

	.ctg-booking .ctg-booking__datetime-header {
		align-items: flex-start;
		flex-direction: column;
	}
}

.ctg-booking-cta{display:flex;width:100%}.ctg-booking-cta__button{display:inline-flex;align-items:center;justify-content:center;gap:10px;padding:14px 26px;border:1px solid #90a98b;border-radius:999px;background:#90a98b;color:#fff!important;font-family:"DM Sans",sans-serif;font-weight:700;line-height:1.2;text-decoration:none;transition:background-color .2s ease,color .2s ease,border-color .2s ease,transform .2s ease,box-shadow .2s ease}.ctg-booking-cta__button:hover{background:#587555;border-color:#587555;color:#fff!important;transform:translateY(-1px);box-shadow:0 10px 24px rgba(51,78,55,.15)}.ctg-booking-cta__button:active{transform:translateY(0)}.ctg-booking-cta__icon{display:inline-flex;align-items:center;justify-content:center;flex:0 0 auto;font-size:14px}.ctg-booking-cta__icon svg{display:block;width:1em;height:1em;fill:currentColor}.ctg-booking-cta.is-justify .ctg-booking-cta__button{width:100%}
