/**
 * GMA Case Evaluator — frontend styles.
 * All rules scoped under .gma-ce. Brand: navy #0C2031 / gold #C38C32.
 */

.gma-ce {
	--gma-navy: #0C2031;
	--gma-ink2: #0D2941;
	--gma-gold: #C38C32;
	--gma-gold-dark: #A8791F;
	--gma-alt: #F7F8FA;
	--gma-body: #55606D;
	--gma-border: #E4E8EE;
	--gma-shadow: 0 10px 30px rgba(12, 32, 49, 0.08);
	--gma-radius-card: 16px;
	--gma-radius-pill: 30px;
	--gma-ease: cubic-bezier(0.22, 1, 0.36, 1);

	box-sizing: border-box;
	font-family: 'Inter', inherit;
	color: var(--gma-body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	max-width: 760px;
	margin: 0 auto;
	padding: 8px;
}

.gma-ce *,
.gma-ce *::before,
.gma-ce *::after {
	box-sizing: inherit;
}

.gma-ce svg {
	display: block;
	width: 100%;
	height: 100%;
}

/* ------------------------------------------------------------------ *
 * Card shell
 * ------------------------------------------------------------------ */
.gma-ce-card {
	background: #fff;
	border: 1px solid var(--gma-border);
	border-radius: var(--gma-radius-card);
	box-shadow: var(--gma-shadow);
	padding: 40px 44px 44px;
	animation: gma-ce-enter 0.45s var(--gma-ease) both;
}

@keyframes gma-ce-enter {
	from {
		opacity: 0;
		transform: translateY(14px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.gma-ce-body {
	animation: gma-ce-enter 0.4s var(--gma-ease) both;
}

/* ------------------------------------------------------------------ *
 * Typography
 * ------------------------------------------------------------------ */
.gma-ce-eyebrow {
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gma-gold);
}

.gma-ce-eyebrow--light {
	color: #E9C98F;
}

.gma-ce-step-title {
	margin: 0 0 10px;
	font-size: 28px;
	line-height: 1.25;
	font-weight: 700;
	color: var(--gma-navy);
	outline: none;
}

.gma-ce-sub {
	margin: 0;
	max-width: 54ch;
	color: var(--gma-body);
}

.gma-ce-intro {
	margin-bottom: 28px;
}

.gma-ce-section-title {
	margin: 0 0 14px;
	font-size: 18px;
	font-weight: 700;
	color: var(--gma-navy);
}

/* ------------------------------------------------------------------ *
 * Stepper
 * ------------------------------------------------------------------ */
.gma-ce-stepper {
	display: flex;
	align-items: flex-start;
	list-style: none;
	margin: 0 0 34px;
	padding: 0;
}

.gma-ce-stepper-item {
	position: relative;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	text-align: center;
}

/* Connecting line */
.gma-ce-stepper-item:not(:first-child)::before {
	content: '';
	position: absolute;
	top: 17px;
	right: calc(50% + 24px);
	left: calc(-50% + 24px);
	height: 2px;
	background: var(--gma-border);
	transition: background 0.3s ease;
}

.gma-ce-stepper-item.is-complete:not(:first-child)::before,
.gma-ce-stepper-item.is-active:not(:first-child)::before {
	background: var(--gma-gold);
}

.gma-ce-stepper-dot {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 2px solid var(--gma-border);
	background: #fff;
	color: var(--gma-body);
	font-size: 14px;
	font-weight: 700;
	transition: all 0.3s ease;
}

.gma-ce-stepper-dot svg {
	width: 16px;
	height: 16px;
}

.gma-ce-stepper-item.is-active .gma-ce-stepper-dot {
	border-color: var(--gma-gold);
	background: var(--gma-gold);
	color: #fff;
	box-shadow: 0 0 0 5px rgba(195, 140, 50, 0.16);
}

.gma-ce-stepper-item.is-complete .gma-ce-stepper-dot {
	border-color: var(--gma-gold);
	background: #fff;
	color: var(--gma-gold);
}

.gma-ce-stepper-label {
	font-size: 13px;
	font-weight: 600;
	color: var(--gma-body);
	transition: color 0.3s ease;
}

.gma-ce-stepper-item.is-active .gma-ce-stepper-label,
.gma-ce-stepper-item.is-complete .gma-ce-stepper-label {
	color: var(--gma-navy);
}

/* ------------------------------------------------------------------ *
 * Buttons
 * ------------------------------------------------------------------ */
.gma-ce-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 34px;
	border-radius: var(--gma-radius-pill);
	border: 1px solid transparent;
	font-family: inherit;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;
}

.gma-ce-btn:active {
	transform: translateY(1px);
}

.gma-ce-btn--gold {
	background: var(--gma-gold);
	color: #fff;
	box-shadow: 0 6px 18px rgba(195, 140, 50, 0.35);
}

.gma-ce-btn--gold:hover:not(:disabled) {
	background: var(--gma-gold-dark);
	color: #fff;
}

.gma-ce-btn--gold:disabled {
	background: #D9DEE5;
	color: #97A1AC;
	box-shadow: none;
	cursor: not-allowed;
}

.gma-ce-btn--outline {
	background: #fff;
	border-color: var(--gma-gold);
	color: var(--gma-gold-dark);
}

.gma-ce-btn--outline:hover {
	background: rgba(195, 140, 50, 0.08);
	color: var(--gma-gold-dark);
}

.gma-ce-btn--ghost {
	background: transparent;
	border-color: var(--gma-border);
	color: var(--gma-body);
}

.gma-ce-btn--ghost:hover {
	border-color: var(--gma-navy);
	color: var(--gma-navy);
	background: transparent;
}

.gma-ce-actions {
	display: flex;
	justify-content: flex-end;
	margin-top: 30px;
}

.gma-ce-actions--split {
	justify-content: space-between;
}

/* Focus visibility (WCAG) */
.gma-ce :focus-visible {
	outline: 3px solid rgba(195, 140, 50, 0.65);
	outline-offset: 2px;
	border-radius: 6px;
}

.gma-ce .gma-ce-btn:focus-visible,
.gma-ce .gma-ce-drop:focus-visible {
	outline-offset: 3px;
}

/* ------------------------------------------------------------------ *
 * Step 1 — drop zone + thumbnails
 * ------------------------------------------------------------------ */
.gma-ce-drop {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 44px 24px;
	border: 2px dashed rgba(195, 140, 50, 0.55);
	border-radius: var(--gma-radius-card);
	background: var(--gma-alt);
	text-align: center;
	cursor: pointer;
	transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.gma-ce-drop:hover,
.gma-ce-drop.is-over {
	border-color: var(--gma-gold);
	background: rgba(195, 140, 50, 0.07);
	box-shadow: inset 0 0 0 1px rgba(195, 140, 50, 0.2);
}

.gma-ce-drop.is-busy {
	opacity: 0.65;
	pointer-events: none;
}

.gma-ce-drop-icon {
	width: 46px;
	height: 46px;
	color: var(--gma-gold);
	margin-bottom: 4px;
}

.gma-ce-drop-title {
	font-size: 18px;
	font-weight: 700;
	color: var(--gma-navy);
}

.gma-ce-drop-or {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--gma-body);
}

.gma-ce-drop-browse {
	padding: 11px 28px;
}

.gma-ce-drop-hint {
	margin-top: 6px;
	font-size: 13px;
	color: var(--gma-body);
	opacity: 0.85;
}

.gma-ce-file-input {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.gma-ce-file-errors {
	margin-top: 12px;
}

.gma-ce-file-error {
	margin: 6px 0 0;
	padding: 10px 14px;
	border-radius: 10px;
	background: #FBEFEA;
	border: 1px solid #F0CDBF;
	color: #8A3B22;
	font-size: 14px;
}

/* Thumbnails */
.gma-ce-thumbs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.gma-ce-thumbs.has-photos {
	margin-top: 22px;
}

.gma-ce-thumb {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--gma-border);
	background: var(--gma-alt);
	box-shadow: 0 4px 12px rgba(12, 32, 49, 0.06);
	aspect-ratio: 1 / 1;
}

.gma-ce-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.gma-ce-thumb-remove {
	position: absolute;
	top: 6px;
	right: 6px;
	width: 26px;
	height: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: 50%;
	background: rgba(12, 32, 49, 0.75);
	color: #fff;
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s ease;
}

.gma-ce-thumb-remove:hover {
	background: var(--gma-navy);
}

.gma-ce-thumb-size {
	position: absolute;
	left: 6px;
	bottom: 6px;
	padding: 2px 8px;
	border-radius: 20px;
	background: rgba(12, 32, 49, 0.75);
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.02em;
}

/* ------------------------------------------------------------------ *
 * Step 2 — detail choices
 * ------------------------------------------------------------------ */
.gma-ce-details {
	display: flex;
	flex-direction: column;
	gap: 26px;
}

.gma-ce-field {
	margin: 0;
	padding: 0;
	border: none;
}

.gma-ce-field-label {
	display: block;
	margin-bottom: 12px;
	padding: 0;
	font-size: 15px;
	font-weight: 700;
	color: var(--gma-navy);
}

.gma-ce-choices {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.gma-ce-choice {
	cursor: pointer;
}

.gma-ce-choice-input {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
}

.gma-ce-choice-pill {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 48px;
	padding: 11px 24px;
	border: 1px solid var(--gma-border);
	border-radius: var(--gma-radius-pill);
	background: #fff;
	color: var(--gma-navy);
	font-size: 15px;
	font-weight: 600;
	transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.gma-ce-choice:hover .gma-ce-choice-pill {
	border-color: var(--gma-gold);
}

.gma-ce-choice-input:checked + .gma-ce-choice-pill {
	border-color: var(--gma-gold);
	background: rgba(195, 140, 50, 0.1);
	color: var(--gma-gold-dark);
	box-shadow: inset 0 0 0 1px var(--gma-gold);
}

.gma-ce-choice-input:focus-visible + .gma-ce-choice-pill {
	outline: 3px solid rgba(195, 140, 50, 0.65);
	outline-offset: 2px;
}

.gma-ce-choice-icon {
	width: 22px;
	height: 22px;
	flex: none;
}

/* Big variant (Vehicle / Property) */
/* Grid rather than a stretch-flex row: with six options a wrapping flex row
   leaves the last line stretched to full width and visually broken. */
.gma-ce-choices--big {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.gma-ce-choices--big .gma-ce-choice {
	min-width: 0;
}

@media (max-width: 700px) {
	.gma-ce-choices--big {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 380px) {
	.gma-ce-choices--big {
		grid-template-columns: minmax(0, 1fr);
	}
}

.gma-ce-choices--big .gma-ce-choice-pill {
	width: 100%;
	flex-direction: column;
	gap: 10px;
	padding: 22px 18px;
	border-radius: var(--gma-radius-card);
	font-size: 16px;
}

.gma-ce-choices--big .gma-ce-choice-icon {
	width: 34px;
	height: 34px;
	color: var(--gma-gold);
}

/* ------------------------------------------------------------------ *
 * Step 3 — loader
 * ------------------------------------------------------------------ */
.gma-ce-loader {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 34px 0 26px;
}

.gma-ce-loader-ring {
	position: relative;
	width: 108px;
	height: 108px;
	margin-bottom: 26px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--gma-navy);
	box-shadow: 0 0 0 0 rgba(195, 140, 50, 0.45);
	animation: gma-ce-pulse 2s ease-out infinite;
}

.gma-ce-loader-ring::after {
	content: '';
	position: absolute;
	inset: -7px;
	border-radius: 50%;
	border: 2px solid rgba(195, 140, 50, 0.35);
	border-top-color: var(--gma-gold);
	animation: gma-ce-spin 1.4s linear infinite;
}

@keyframes gma-ce-pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(195, 140, 50, 0.4);
	}
	70% {
		box-shadow: 0 0 0 22px rgba(195, 140, 50, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(195, 140, 50, 0);
	}
}

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

.gma-ce-loader-glyph {
	width: 46px;
	height: 46px;
	color: var(--gma-gold);
}

.gma-ce-loader-title {
	margin-bottom: 6px;
}

.gma-ce-loader-status {
	margin: 0;
	min-height: 1.6em;
	font-size: 15px;
	color: var(--gma-body);
	animation: gma-ce-fade 0.4s ease both;
}

@keyframes gma-ce-fade {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* ------------------------------------------------------------------ *
 * Error card
 * ------------------------------------------------------------------ */
.gma-ce-error {
	text-align: center;
	padding: 18px 0 6px;
}

.gma-ce-error-message {
	max-width: 46ch;
	margin: 0 auto 22px;
}

.gma-ce-error-alt {
	margin: 18px 0 0;
	font-size: 14px;
}

.gma-ce-error-alt a,
.gma-ce-disclaimer a {
	color: var(--gma-gold-dark);
	font-weight: 600;
	text-decoration: underline;
}

/* ------------------------------------------------------------------ *
 * Step 4 — results
 * ------------------------------------------------------------------ */
.gma-ce-summary {
	display: flex;
	align-items: center;
	gap: 34px;
	padding: 26px;
	border: 1px solid var(--gma-border);
	border-radius: var(--gma-radius-card);
	background: var(--gma-alt);
	margin-bottom: 18px;
}

.gma-ce-gauge {
	position: relative;
	width: 180px;
	height: 180px;
	flex: none;
}

.gma-ce-gauge-track {
	fill: none;
	stroke: var(--gma-navy);
	opacity: 0.12;
	stroke-linecap: round;
}

.gma-ce-gauge-arc {
	fill: none;
	stroke: var(--gma-gold);
	stroke-linecap: round;
}

.gma-ce-gauge-value {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: baseline;
	justify-content: center;
	flex-direction: row;
	align-content: center;
	flex-wrap: wrap;
	color: var(--gma-navy);
}

.gma-ce-gauge-number {
	font-size: 46px;
	font-weight: 800;
	line-height: 1;
}

.gma-ce-gauge-max {
	font-size: 16px;
	font-weight: 600;
	color: var(--gma-body);
	margin-left: 2px;
}

.gma-ce-verdict-label {
	margin: 0 0 6px;
	font-size: 22px;
	font-weight: 700;
	color: var(--gma-navy);
}

.gma-ce-verdict-label.is-strong {
	color: #1E7A46;
}

.gma-ce-verdict-label.is-moderate {
	color: var(--gma-gold-dark);
}

.gma-ce-verdict-label.is-weak {
	color: #A44A2A;
}

.gma-ce-verdict-note {
	margin: 0;
	font-size: 14px;
}

/* Fact cards */
.gma-ce-facts {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	margin-bottom: 26px;
}

.gma-ce-fact {
	padding: 20px 22px;
	border: 1px solid var(--gma-border);
	border-radius: var(--gma-radius-card);
	background: #fff;
	box-shadow: 0 4px 14px rgba(12, 32, 49, 0.05);
}

.gma-ce-fact-value {
	margin: 0;
	font-size: 19px;
	font-weight: 700;
	color: var(--gma-navy);
}

/* Findings */
.gma-ce-findings {
	margin-bottom: 26px;
}

.gma-ce-findings-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.gma-ce-finding {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

.gma-ce-finding-icon {
	flex: none;
	width: 22px;
	height: 22px;
	margin-top: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(195, 140, 50, 0.14);
	color: var(--gma-gold-dark);
	padding: 4px;
}

.gma-ce-finding-text {
	color: var(--gma-navy);
}

/* Next-step callout */
.gma-ce-next-step {
	padding: 22px 26px;
	border-radius: var(--gma-radius-card);
	border-left: 4px solid var(--gma-gold);
	background: linear-gradient(135deg, var(--gma-navy), var(--gma-ink2));
	color: #fff;
	margin-bottom: 30px;
}

.gma-ce-next-step-text {
	margin: 0;
	font-size: 17px;
	font-weight: 600;
	color: #fff;
	line-height: 1.55;
}

/* ------------------------------------------------------------------ *
 * Lead gate
 * ------------------------------------------------------------------ */
.gma-ce-lead {
	padding: 30px 32px;
	border: 1px solid var(--gma-border);
	border-radius: var(--gma-radius-card);
	background: var(--gma-alt);
	box-shadow: var(--gma-shadow);
}

.gma-ce-lead-title {
	margin: 0 0 8px;
	font-size: 21px;
	font-weight: 700;
	color: var(--gma-navy);
	outline: none;
}

.gma-ce-lead-sub {
	margin: 0 0 20px;
	font-size: 15px;
}

.gma-ce-lead-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.gma-ce-input-wrap:first-child {
	grid-column: 1 / -1;
}

.gma-ce-input-label {
	display: block;
	margin-bottom: 6px;
	font-size: 13px;
	font-weight: 700;
	color: var(--gma-navy);
}

.gma-ce-input {
	width: 100%;
	padding: 13px 16px;
	border: 1px solid var(--gma-border);
	border-radius: 10px;
	background: #fff;
	font-family: inherit;
	font-size: 15px;
	color: var(--gma-navy);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.gma-ce-input:focus {
	outline: none;
	border-color: var(--gma-gold);
	box-shadow: 0 0 0 3px rgba(195, 140, 50, 0.18);
}

.gma-ce-lead-error {
	grid-column: 1 / -1;
	margin: 0;
	font-size: 14px;
	color: #8A3B22;
}

.gma-ce-lead-error:empty {
	display: none;
}

.gma-ce-lead-submit {
	grid-column: 1 / -1;
	width: 100%;
	padding: 16px 34px;
	font-size: 16px;
}

.gma-ce-lead-privacy {
	grid-column: 1 / -1;
	margin: 2px 0 0;
	text-align: center;
	font-size: 13px;
	color: var(--gma-body);
	opacity: 0.85;
}

/* Confirmation */
.gma-ce-lead--done {
	text-align: center;
	padding: 38px 32px;
}

.gma-ce-lead-done-icon {
	width: 52px;
	height: 52px;
	margin: 0 auto 16px;
	padding: 13px;
	border-radius: 50%;
	background: rgba(195, 140, 50, 0.15);
	color: var(--gma-gold-dark);
}

.gma-ce-lead--done .gma-ce-lead-sub {
	margin-bottom: 22px;
}

/* Disclaimer */
/* Must be legible, not decorative — it carries the attorney-advertising and
   no-attorney-client-relationship statements. */
.gma-ce-disclaimer {
	margin: 24px 0 26px;
	padding: 18px 20px;
	border: 1px solid var(--gma-border);
	border-top: 3px solid var(--gma-gold);
	border-radius: var(--gma-radius-card);
	background: var(--gma-alt);
	font-size: 13.5px;
	line-height: 1.7;
	color: var(--gma-body);
}

/* Cost caveat, sits directly under the estimate it qualifies. */
.gma-ce-estimate-note {
	margin: -4px 0 18px;
	font-size: 13.5px;
	line-height: 1.7;
	color: var(--gma-body);
}

/* Unscoreable / out-of-jurisdiction submissions: no gauge, no verdict colour. */
.gma-ce-summary--unscored {
	display: block;
	border-left: 4px solid var(--gma-gold);
}

.gma-ce-summary--unscored .gma-ce-verdict-label {
	margin: 6px 0 8px;
}

.gma-ce-summary--mismatch .gma-ce-btn {
	margin-top: 16px;
}

.gma-ce-choice-aside {
	margin: -8px 0 22px;
	font-size: 14px;
	line-height: 1.6;
	color: var(--gma-body);
}

.gma-ce-choice-aside a {
	color: var(--gma-gold-dark);
	font-weight: 600;
	text-decoration: underline;
}

.gma-ce-juris {
	margin: 0 0 22px;
	padding: 20px 22px;
	border: 1px solid var(--gma-border);
	border-radius: var(--gma-radius-card);
	background: var(--gma-alt);
}

.gma-ce-juris-text {
	margin: 8px 0 0;
	font-size: 14px;
	line-height: 1.7;
	color: var(--gma-body);
}

/* ------------------------------------------------------------------ *
 * Unavailable notice
 * ------------------------------------------------------------------ */
.gma-ce-card--notice {
	text-align: center;
	padding: 48px 40px;
}

.gma-ce-notice-icon {
	width: 52px;
	height: 52px;
	margin: 0 auto 18px;
	color: var(--gma-gold);
}

.gma-ce-card--notice .gma-ce-sub {
	margin: 0 auto 24px;
}

/* ------------------------------------------------------------------ *
 * Responsive
 * ------------------------------------------------------------------ */
@media (max-width: 700px) {
	.gma-ce-card {
		padding: 26px 20px 30px;
	}

	.gma-ce-step-title {
		font-size: 23px;
	}

	.gma-ce-thumbs {
		grid-template-columns: repeat(2, 1fr);
	}

	.gma-ce-summary {
		flex-direction: column;
		gap: 18px;
		text-align: center;
	}

	.gma-ce-facts {
		grid-template-columns: 1fr;
	}

	.gma-ce-lead-form {
		grid-template-columns: 1fr;
	}

	.gma-ce-input-wrap:first-child {
		grid-column: auto;
	}

	.gma-ce-lead-error,
	.gma-ce-lead-submit,
	.gma-ce-lead-privacy {
		grid-column: auto;
	}

	.gma-ce-actions--split {
		flex-direction: column-reverse;
		gap: 12px;
	}

	.gma-ce-actions--split .gma-ce-btn {
		width: 100%;
	}

	.gma-ce-choices--big .gma-ce-choice {
		min-width: 120px;
	}
}

/* Compact stepper on small phones */
@media (max-width: 480px) {
	.gma-ce-stepper {
		justify-content: center;
		gap: 18px;
		margin-bottom: 26px;
	}

	.gma-ce-stepper-item {
		flex: none;
	}

	.gma-ce-stepper-item::before {
		display: none !important;
	}

	.gma-ce-stepper-dot {
		width: 12px;
		height: 12px;
		border-width: 0;
		background: var(--gma-border);
		color: transparent;
		font-size: 0;
		overflow: hidden;
	}

	.gma-ce-stepper-dot svg {
		display: none;
	}

	.gma-ce-stepper-item.is-active .gma-ce-stepper-dot {
		background: var(--gma-gold);
		box-shadow: 0 0 0 4px rgba(195, 140, 50, 0.18);
	}

	.gma-ce-stepper-item.is-complete .gma-ce-stepper-dot {
		background: var(--gma-gold-dark);
	}

	.gma-ce-stepper-label {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0 0 0 0);
		white-space: nowrap;
	}

	.gma-ce-gauge {
		width: 150px;
		height: 150px;
	}

	.gma-ce-gauge-number {
		font-size: 38px;
	}

	.gma-ce-drop {
		padding: 32px 16px;
	}

	.gma-ce-lead {
		padding: 24px 18px;
	}
}

/* ------------------------------------------------------------------ *
 * Reduced motion
 * ------------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
	.gma-ce-card,
	.gma-ce-body,
	.gma-ce-loader-status {
		animation: none;
	}

	.gma-ce-loader-ring {
		animation: none;
	}

	.gma-ce-loader-ring::after {
		animation-duration: 3s;
	}

	.gma-ce * {
		transition-duration: 0.01ms !important;
	}
}
