/* ============================================================
   LAB59 — Online Credibility Scorecard
   Modern dark-glassmorphism UI over a cinematic video background.
   Brand palette : #000000  #FFFFFF  #0046FF  #97999F  #B8860B
   Typography    : Montserrat (Bold + Regular)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

.ctlc-scorecard-container {
	/* Brand */
	--ctlc-blue: #0046ff;
	--ctlc-blue-bright: #4d7bff;
	--ctlc-blue-soft: #8fb0ff;
	--ctlc-gold: #e0ad3d;
	--ctlc-gold-deep: #b8860b;
	--ctlc-white: #ffffff;

	/* Text on dark */
	--ctlc-text: #eef1f8;
	--ctlc-muted: rgba(255, 255, 255, 0.66);
	--ctlc-faint: rgba(255, 255, 255, 0.45);

	/* Glass surfaces */
	--ctlc-glass: rgba(12, 16, 28, 0.72);
	--ctlc-glass-elev: rgba(24, 30, 48, 0.78);
	--ctlc-inner: rgba(255, 255, 255, 0.05);
	--ctlc-inner-2: rgba(255, 255, 255, 0.08);
	--ctlc-border: rgba(255, 255, 255, 0.12);
	--ctlc-border-strong: rgba(255, 255, 255, 0.22);

	/* Effects */
	--ctlc-blue-grad: linear-gradient(135deg, #3b74ff 0%, #0046ff 100%);
	--ctlc-glow: 0 22px 60px rgba(0, 44, 150, 0.35);
	--ctlc-glow-soft: 0 14px 40px rgba(3, 8, 24, 0.5);
	--ctlc-blur: saturate(150%) blur(20px);
	--ctlc-radius: 20px;
	--ctlc-font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

	max-width: 100%;
	margin: 0 auto;
	font-family: var(--ctlc-font) !important;
	background: transparent; /* the video lives on <body>, behind the whole page */
	border-radius: 8px;
	font-size: 18px;
	color: var(--ctlc-text);
	position: relative;
	-webkit-font-smoothing: antialiased;
}

.ctlc-scorecard-container *,
.ctlc-scorecard-container *::before,
.ctlc-scorecard-container *::after {
	box-sizing: border-box;
}

.ctlc-scorecard-container h1,
.ctlc-scorecard-container h2,
.ctlc-scorecard-container h3,
.ctlc-scorecard-container h4,
.ctlc-main-title,
.ctlc-q-title-new,
.ctlc-lead-title,
.ctlc-result-heading {
	font-family: var(--ctlc-font) !important;
	color: var(--ctlc-white);
	font-weight: 700;
	margin-bottom: 11px;
}

.ctlc-svg-icon {
	display: block;
	width: 3em;
	height: 3em;
	flex-shrink: 0;
}

/* Reusable glass card */
.ctlc-lead-box,
.ctlc-welcome-benefit-card,
.ctlc-category-box-new,
.ctlc-result-card {
	background: var(--ctlc-glass);
	-webkit-backdrop-filter: var(--ctlc-blur);
	backdrop-filter: var(--ctlc-blur);
	border: 1px solid var(--ctlc-border);
	border-radius: var(--ctlc-radius);
	box-shadow: var(--ctlc-glow-soft);
}

/* ============================================================
   WELCOME / LEAD-CAPTURE (FIRST PAGE)
   ============================================================ */
.ctlc-step-block {
	text-align: center;
	max-width: 100%;
	margin: 0 auto;
	padding: 6px 0 4px;
}

/* Brand mark */
.ctlc-brand-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	margin-bottom: 30px;
	position: relative;
}
.ctlc-brand-header::before {
	content: "";
	position: absolute;
	top: -30px;
	width: 220px;
	height: 120px;
	background: radial-gradient(closest-side, rgba(77, 123, 255, 0.35), transparent 70%);
	filter: blur(6px);
	pointer-events: none;
	z-index: -1;
}
.ctlc-brand-logo {
	font-family: var(--ctlc-font) !important;
	font-size: 42px;
	line-height: 1;
	letter-spacing: -0.02em;
	color: var(--ctlc-white);
}
.ctlc-brand-logo-strong {
	font-weight: 800;
}
.ctlc-brand-logo-light {
	font-weight: 400;
	color: var(--ctlc-blue-soft);
}
.ctlc-brand-estd {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--ctlc-faint);
	padding: 4px 12px;
	border: 1px solid var(--ctlc-border);
	border-radius: 999px;
}

.ctlc-main-title {
	font-weight: 800;
	font-size: clamp(2.1rem, 4.6vw, 3.3rem);
	line-height: 1.06;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	margin: 0 0 16px;
	background: linear-gradient(180deg, #ffffff 0%, #c3d0ff 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: #ffffff;
}
.ctlc-welcome-tagline {
	font-family: var(--ctlc-font) !important;
	font-weight: 700;
	font-size: 20px;
	line-height: 1.4;
	color: var(--ctlc-blue-soft);
	max-width: 82%;
	margin: 0 auto 14px;
}
.ctlc-subtitle-text {
	font-family: var(--ctlc-font) !important;
	font-size: 18px;
	line-height: 1.62;
	color: var(--ctlc-muted);
	max-width: 78%;
	margin: 0 auto 30px;
}

/* Meta strip -> glass pills */
.ctlc-welcome-meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin: 0 auto 34px;
}
.ctlc-welcome-meta-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 600;
	color: var(--ctlc-text);
	background: var(--ctlc-inner);
	border: 1px solid var(--ctlc-border);
	border-radius: 999px;
	padding: 8px 16px 8px 8px;
	-webkit-backdrop-filter: var(--ctlc-blur);
	backdrop-filter: var(--ctlc-blur);
}
.ctlc-welcome-meta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: rgba(77, 123, 255, 0.18);
	color: var(--ctlc-blue-soft);
	flex-shrink: 0;
}
.ctlc-welcome-meta-svg {
	width: 17px;
	height: 17px;
}

/* Lead form card */
.ctlc-lead-box {
	padding: 36px;
	text-align: center;
}
.ctlc-welcome-lead-box {
	max-width: 560px;
	margin: 0 auto 44px;
	position: relative;
	box-shadow: var(--ctlc-glow);
}
.ctlc-lead-form {
	max-width: 460px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.ctlc-form-group {
	text-align: left;
	position: relative;
	font-family: var(--ctlc-font) !important;
}
.ctlc-input-icon-wrap {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--ctlc-blue-soft);
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(77, 123, 255, 0.16);
	border-radius: 12px;
	padding: 0.35rem;
}
.ctlc-input-icon-svg {
	width: 1.5rem !important;
	height: 1.5rem !important;
}
.ctlc-form-group input {
	width: 100%;
	height: 56px;
	padding: 14px 20px 14px 62px !important;
	background: rgba(255, 255, 255, 0.04) !important;
	border: 1px solid var(--ctlc-border) !important;
	border-radius: 14px !important;
	font-weight: 500;
	color: var(--ctlc-white) !important;
	font-size: 16px;
	font-family: var(--ctlc-font) !important !important;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.ctlc-form-group input:focus {
	outline: none;
	border-color: var(--ctlc-blue-bright) !important;
	background: rgba(77, 123, 255, 0.08) !important;
	box-shadow: 0 0 0 4px rgba(77, 123, 255, 0.18);
}
.ctlc-form-group input::placeholder {
	color: var(--ctlc-faint);
	font-weight: 500;
}

/* Primary button (kept the .ctlc-btn-pink / .ctlc-start-btn class names) */
.ctlc-btn-pink {
	background: var(--ctlc-blue-grad);
	color: var(--ctlc-white);
	border: none;
	padding: 12px 30px;
	border-radius: 12px;
	font-weight: 700;
	font-size: 16px;
	cursor: pointer;
	font-family: var(--ctlc-font) !important;
	box-shadow: 0 14px 30px rgba(0, 70, 255, 0.35);
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.ctlc-btn-pink:hover {
	transform: translateY(-2px);
	box-shadow: 0 20px 44px rgba(0, 70, 255, 0.45);
	filter: brightness(1.05);
}
.ctlc-btn-pink:disabled {
	background: rgba(255, 255, 255, 0.08);
	color: var(--ctlc-faint);
	cursor: not-allowed;
	box-shadow: none;
	transform: none;
	filter: none;
}
.ctlc-start-btn {
	width: 100%;
	margin-top: 24px;
	min-height: 56px;
	padding: 0 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.01em;
}
.ctlc-start-btn .ctlc-btn-icon-svg {
	transition: transform 0.2s ease;
}
.ctlc-start-btn:hover:not(:disabled) .ctlc-btn-icon-svg {
	transform: translateX(4px);
}
.ctlc-btn-icon-svg {
	width: 18px;
	height: 18px;
}

/* Trust line */
.ctlc-welcome-trustline {
	margin: 20px auto 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	color: var(--ctlc-faint);
}
.ctlc-welcome-trust-svg {
	width: 15px;
	height: 15px;
	color: var(--ctlc-blue-soft);
}
.ctlc-welcome-trust-dot {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--ctlc-faint);
}

/* What you will get */
.ctlc-what-you-get {
	margin-top: 10px;
}
.ctlc-what-you-get h4 {
	font-size: 26px;
	line-height: 1.2;
	color: var(--ctlc-white);
	margin: 2.5rem 0 2rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.01em;
}
.ctlc-welcome-benefits {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}
.ctlc-welcome-benefit-card {
	padding: 24px 20px;
	text-align: left;
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.ctlc-welcome-benefit-card:hover {
	transform: translateY(-5px);
	border-color: var(--ctlc-border-strong);
	box-shadow: var(--ctlc-glow);
}
.ctlc-welcome-benefit-icon {
	width: 50px;
	height: 50px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
}
.ctlc-welcome-benefit-icon-blue {
	background: rgba(77, 123, 255, 0.16);
	color: var(--ctlc-blue-soft);
	box-shadow: inset 0 0 0 1px rgba(77, 123, 255, 0.25);
}
.ctlc-welcome-benefit-icon-gold {
	background: rgba(224, 173, 61, 0.16);
	color: var(--ctlc-gold);
	box-shadow: inset 0 0 0 1px rgba(224, 173, 61, 0.25);
}
.ctlc-welcome-benefit-icon-dark {
	background: rgba(255, 255, 255, 0.08);
	color: var(--ctlc-white);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}
.ctlc-welcome-benefit-svg {
	width: 24px;
	height: 24px;
}
.ctlc-welcome-benefit-card h5 {
	margin: 0 0 8px;
	font-size: 18px;
	line-height: 1.25;
	font-weight: 700;
	color: var(--ctlc-white);
	font-family: var(--ctlc-font) !important;
}
.ctlc-welcome-benefit-card p {
	margin: 0;
	font-size: 15px;
	line-height: 1.55;
	color: var(--ctlc-muted);
	font-family: var(--ctlc-font) !important;
}

/* ============================================================
   QUESTION STEPS
   ============================================================ */
.ctlc-progress-header {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	color: var(--ctlc-muted);
	margin-bottom: 14px;
	font-family: var(--ctlc-font) !important;
	letter-spacing: 0.02em;
}
.ctlc-progress-header span:first-child {
	font-weight: 700;
	color: var(--ctlc-white);
}
.ctlc-progress-bar-container {
	width: 100%;
	background: rgba(255, 255, 255, 0.12);
	height: 8px;
	border-radius: 999px;
	margin-bottom: 40px;
	overflow: hidden;
}
.ctlc-progress-bar {
	height: 100%;
	border-radius: 999px;
	background: linear-gradient(90deg, #4d7bff, #0046ff);
	box-shadow: 0 0 16px rgba(77, 123, 255, 0.6);
	position: relative;
	overflow: hidden;
	transition: width 0.4s ease;
}
.ctlc-progress-bar::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
	transform: translateX(-100%);
	animation: ctlc-shimmer 2.2s infinite;
}
@keyframes ctlc-shimmer {
	100% { transform: translateX(100%); }
}

.ctlc-q-header-flex {
	display: flex;
	align-items: center;
	gap: 22px;
	margin-bottom: 34px;
}
.ctlc-q-header-flex svg {
	color: var(--ctlc-white);
}
.ctlc-q-icon-wrap {
	width: 68px;
	height: 68px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	background: var(--ctlc-blue-grad) !important;
	box-shadow: 0 12px 30px rgba(0, 70, 255, 0.4);
}
.ctlc-q-icon-svg {
	width: 2.6rem !important;
	height: 2.6rem !important;
}
.ctlc-q-title-new {
	font-size: 23px;
	font-weight: 700;
	color: var(--ctlc-white);
	margin: 0 0 6px 0;
	font-family: var(--ctlc-font) !important;
	line-height: 1.25;
}
.ctlc-q-subtitle-new {
	font-size: 16px;
	color: var(--ctlc-muted);
	margin: 0;
	line-height: 1.5;
	font-family: var(--ctlc-font) !important;
	width: 82%;
}

.ctlc-category-box-new {
	padding: 24px;
}
.ctlc-cat-columns {
	display: flex;
	gap: 22px;
	align-items: center;
}
.ctlc-cat-tasks-col {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.ctlc-cat-options-col {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.ctlc-task-row {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 10px 14px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.06);
}
.ctlc-task-icon-wrap {
	width: 2.9rem;
	height: 2.9rem;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	background: rgba(77, 123, 255, 0.16);
	color: var(--ctlc-blue-soft);
}
.ctlc-icon-purple,
.ctlc-icon-blue,
.ctlc-icon-pink,
.ctlc-icon-orange,
.ctlc-icon-green {
	background: rgba(77, 123, 255, 0.16);
	color: var(--ctlc-blue-soft);
}
.ctlc-icon-blue-text,
.ctlc-icon-pink-text,
.ctlc-icon-purple-text,
.ctlc-icon-green-text,
.ctlc-icon-orange-text {
	color: #ffffff;
}
.ctlc-task-icon-svg {
	width: 2.1rem;
	height: 2.1rem;
}
.ctlc-task-name {
	font-size: 16px;
	color: var(--ctlc-text);
	font-weight: 500;
}

/* Radios */
.ctlc-radio-group {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}
.ctlc-vertical-radio {
	flex-direction: column;
}
.ctlc-radio-label {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 20px;
	border: 1px solid var(--ctlc-border);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.04);
	cursor: pointer;
	transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.ctlc-radio-label:hover {
	border-color: rgba(120, 150, 255, 0.55);
	background: rgba(255, 255, 255, 0.07);
	transform: translateY(-1px);
}
.ctlc-radio-label.ctlc-label-selected {
	border-color: var(--ctlc-blue-bright);
	background: rgba(0, 70, 255, 0.16);
	box-shadow: 0 0 0 1px var(--ctlc-blue-bright), 0 10px 26px rgba(0, 70, 255, 0.28);
}
.ctlc-radio-label input[type="radio"] {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}
.ctlc-radio-custom {
	width: 22px;
	height: 22px;
	border: 2px solid var(--ctlc-border-strong);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: border-color 0.2s ease;
}
.ctlc-radio-label.ctlc-label-selected .ctlc-radio-custom {
	border-color: var(--ctlc-blue-bright);
}
.ctlc-radio-custom::after {
	content: '';
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--ctlc-blue-bright);
	box-shadow: 0 0 10px rgba(77, 123, 255, 0.9);
	opacity: 0;
	transform: scale(0.4);
	transition: opacity 0.2s ease, transform 0.2s ease;
}
.ctlc-radio-label.ctlc-label-selected .ctlc-radio-custom::after {
	opacity: 1;
	transform: scale(1);
}
.ctlc-option-text {
	font-size: 15px;
	font-weight: 600;
	color: var(--ctlc-text);
}
.ctlc-option-text span {
	font-size: 13px;
	color: var(--ctlc-faint);
}

/* Nav buttons */
.ctlc-nav-buttons {
	display: flex;
	gap: 15px;
	justify-content: space-between;
	align-items: center;
	margin-top: 32px;
}
.ctlc-btn-next-gradient {
	background: var(--ctlc-blue-grad);
	color: var(--ctlc-white);
	border: none;
	padding: 15px 34px;
	border-radius: 14px;
	font-weight: 700;
	font-size: 16px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--ctlc-font) !important;
	box-shadow: 0 14px 30px rgba(0, 70, 255, 0.35);
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.ctlc-btn-next-gradient:hover:not(:disabled) {
	transform: translateY(-2px);
	box-shadow: 0 20px 44px rgba(0, 70, 255, 0.45);
	filter: brightness(1.05);
}
.ctlc-btn-next-gradient:disabled {
	background: rgba(255, 255, 255, 0.08);
	color: var(--ctlc-faint);
	cursor: not-allowed;
	box-shadow: none;
}
.ctlc-btn-outline {
	background: rgba(255, 255, 255, 0.05);
	color: var(--ctlc-text);
	border: 1px solid var(--ctlc-border);
	padding: 14px 30px;
	border-radius: 14px;
	font-weight: 700;
	font-size: 16px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-family: var(--ctlc-font) !important;
	-webkit-backdrop-filter: var(--ctlc-blur);
	backdrop-filter: var(--ctlc-blur);
	transition: background-color 0.2s ease, border-color 0.2s ease;
}
.ctlc-btn-outline:hover,
.ctlc-btn-outline.ctlc-prev-btn:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--ctlc-border-strong);
}

/* ============================================================
   LOADING
   ============================================================ */
.ctlc-lead-title {
	font-size: 28px;
	font-weight: 800;
	color: var(--ctlc-white);
	margin-bottom: 10px;
	line-height: 1.2;
	text-align: center;
	font-family: var(--ctlc-font) !important;
}
.ctlc-loading {
	text-align: center;
	padding: 50px 0;
}
.ctlc-skeleton-bars {
	max-width: 300px;
	margin: 24px auto;
}
.ctlc-skeleton {
	height: 10px;
	background: linear-gradient(90deg, #4d7bff, #0046ff);
	box-shadow: 0 0 14px rgba(77, 123, 255, 0.5);
	margin-bottom: 15px;
	border-radius: 999px;
	animation: pulse 1.5s infinite;
}
@keyframes pulse {
	0% { opacity: 1; }
	50% { opacity: 0.4; }
	100% { opacity: 1; }
}
.ctlc-loading-text-box {
	background: var(--ctlc-glass);
	border: 1px solid var(--ctlc-border);
	-webkit-backdrop-filter: var(--ctlc-blur);
	backdrop-filter: var(--ctlc-blur);
	padding: 15px;
	border-radius: 14px;
	margin: 20px auto 0;
	max-width: 340px;
	font-family: var(--ctlc-font) !important;
	color: var(--ctlc-text);
	font-weight: 600;
}

/* ============================================================
   RESULTS
   ============================================================ */
.ctlc-result-step {
	display: flex;
	flex-direction: column;
	gap: 18px;
	text-align: left;
	padding-top: 2px;
}
.ctlc-result-heading {
	font-size: 18px;
	font-weight: 800;
	margin: 0;
	text-transform: uppercase;
	line-height: 1.1;
	letter-spacing: 0.01em;
	color: var(--ctlc-white);
}
.ctlc-result-card {
	padding: 2.75rem;
	margin: 0;
}
.ctlc-section-header {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 22px;
	justify-content: center;
}
.ctlc-section-header-copy {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.ctlc-section-icon {
	width: 3.6rem;
	height: 3.6rem;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.ctlc-result-card.ctlc-whats-next-section .ctlc-section-header {
	justify-content: left;
	gap: 1.25rem;
}
.ctlc-section-icon-pink,
.ctlc-section-icon-green {
	background: rgba(77, 123, 255, 0.16);
	color: var(--ctlc-blue-soft);
	box-shadow: inset 0 0 0 1px rgba(77, 123, 255, 0.25);
}
.ctlc-section-icon-purple {
	background: rgba(224, 173, 61, 0.16);
	color: var(--ctlc-gold);
	box-shadow: inset 0 0 0 1px rgba(224, 173, 61, 0.25);
}
.ctlc-section-icon-svg {
	width: 2.6rem;
	height: 2.6rem;
}

/* Breakdown bars */
.ctlc-breakdown-bars {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.ctlc-bar-row {
	display: flex;
	align-items: center;
	gap: 2.5rem;
	font-size: 13px;
}
.ctlc-bar-label {
	width: 170px;
	display: flex;
	align-items: center;
	gap: 12px;
	text-align: left;
	flex-shrink: 0;
}
.ctlc-bar-icon {
	width: 2.9rem;
	height: 2.9rem;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	background: rgba(77, 123, 255, 0.16) !important;
	color: var(--ctlc-blue-soft) !important;
}
.ctlc-bar-icon-svg {
	width: 2.2rem;
	height: 2.2rem;
}
.ctlc-cat-name {
	font-weight: 700;
	color: var(--ctlc-white);
	font-size: 16px;
	line-height: 1.2;
}
.ctlc-bar-track {
	flex: 1;
	background: rgba(255, 255, 255, 0.1);
	height: 14px;
	border-radius: 999px;
	overflow: hidden;
	min-width: 0;
}
.ctlc-bar-fill {
	height: 100%;
	border-radius: 999px;
}
.ctlc-bar-fill-pink {
	background: linear-gradient(90deg, #4d7bff, #0046ff);
	box-shadow: 0 0 16px rgba(77, 123, 255, 0.55);
}
.ctlc-bar-value {
	min-width: 120px;
	text-align: right;
	font-weight: 700;
	color: var(--ctlc-text);
	flex-shrink: 0;
	font-size: 15px;
	line-height: 1.2;
	white-space: nowrap;
	font-family: var(--ctlc-font) !important;
}

/* Calculate boxes */
.ctlc-calculate-boxes {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-bottom: 14px;
}
.ctlc-calc-box {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--ctlc-border);
	border-radius: 16px;
	padding: 22px 14px;
	text-align: center;
	min-height: 76px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.ctlc-calc-label {
	font-size: 13px;
	color: var(--ctlc-muted);
	margin-bottom: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-family: var(--ctlc-font) !important;
}
.ctlc-calc-val {
	font-size: 46px;
	font-weight: 800;
	letter-spacing: -0.03em;
	font-family: var(--ctlc-font) !important;
	line-height: 1;
	background: linear-gradient(135deg, #8fb0ff 0%, #2f6bff 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: var(--ctlc-blue-soft);
}

/* Delegate box */
.ctlc-delegate-box {
	display: grid;
	grid-template-columns: 176px minmax(0, 1fr);
	gap: 22px;
	align-items: center;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--ctlc-border);
	border-radius: 18px;
	padding: 20px;
	margin: 2.5rem 0 0;
}
.ctlc-delegate-illustration {
	background: transparent;
	border-radius: 14px;
	padding: 10px 6px 4px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.ctlc-delegate-illustration-svg {
	width: 100%;
	height: auto;
	display: block;
	filter: drop-shadow(0 10px 24px rgba(0, 40, 140, 0.4));
}
.ctlc-delegate-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.ctlc-delegate-title {
	font-size: 18px;
	line-height: 1.3;
	font-weight: 800;
	color: var(--ctlc-white);
	margin: 0 0 10px;
}
.ctlc-delegate-copy {
	font-size: 16px;
	line-height: 1.4;
	color: var(--ctlc-muted);
	margin: 0 0 6px;
	font-family: var(--ctlc-font) !important;
}
.ctlc-delegate-cta {
	margin-top: 14px;
	font-weight: 700;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
}
.ctlc-delegate-text {
	font-size: 16px;
	color: var(--ctlc-blue-soft);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: 800;
}
.ctlc-delegate-text::before {
	content: "";
	display: block;
	width: 52px;
	height: 3px;
	margin-bottom: 12px;
	border-radius: 999px;
	background: var(--ctlc-blue-grad);
	box-shadow: 0 0 14px rgba(77, 123, 255, 0.6);
}
.ctlc-result-cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 48px;
	padding: 0 24px;
	border-radius: 12px;
	text-decoration: none !important;
	box-shadow: 0 14px 30px rgba(0, 70, 255, 0.35) !important;
	background: var(--ctlc-blue-grad);
	font-size: 17px;
	font-weight: 700 !important;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	font-family: var(--ctlc-font) !important !important;
	color: var(--ctlc-white) !important;
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.ctlc-result-cta-btn:hover {
	transform: translateY(-2px);
	filter: brightness(1.06);
	box-shadow: 0 20px 44px rgba(0, 70, 255, 0.45) !important;
}

/* Download section */
.ctlc-download-section {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.ctlc-download-content {
	display: flex;
	align-items: center;
	gap: 16px;
}
.ctlc-download-copy h3 {
	font-size: 18px;
	letter-spacing: 0.01em;
	margin: 0 0 3px;
	color: var(--ctlc-white);
	font-weight: 800;
}
.ctlc-download-copy p {
	font-size: 14px;
	color: var(--ctlc-muted);
	text-transform: uppercase;
	margin: 0;
	font-weight: 700;
	letter-spacing: 0.04em;
	font-family: var(--ctlc-font) !important;
}
.ctlc-download-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 40px;
	padding: 14px 22px;
	border-radius: 12px;
	border: 1px solid rgba(224, 173, 61, 0.5);
	background: rgba(224, 173, 61, 0.12);
	color: var(--ctlc-gold) !important;
	font-weight: 700;
	font-size: 16px;
	text-decoration: none !important;
	white-space: nowrap;
	font-family: var(--ctlc-font) !important;
	transition: background-color 0.2s ease, transform 0.2s ease;
}
.ctlc-download-btn:hover {
	background: rgba(224, 173, 61, 0.22);
	transform: translateY(-2px);
}

/* What's next */
.ctlc-section-header-copy .ctlc-result-heading {
	margin-bottom: 6px;
}
.ctlc-next-intro {
	margin: 0;
	font-size: 16px;
	line-height: 1.6;
	color: var(--ctlc-muted);
	max-width: 470px;
	font-family: var(--ctlc-font) !important;
}
.ctlc-next-intro strong {
	color: var(--ctlc-blue-soft);
}
.ctlc-audit-box {
	text-align: left;
	max-width: 82%;
	margin: 1.75rem auto;
	font-size: 14px;
	color: var(--ctlc-text);
	line-height: 1.6;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--ctlc-border);
	padding: 1.5rem 1.75rem;
	border-radius: 14px;
}
.ctlc-audit-box h3 {
	font-size: 1.25rem;
	margin: 0 0 1rem;
	font-weight: 700;
	color: var(--ctlc-white);
}
.ctlc-audit-box h3 strong {
	color: var(--ctlc-blue-soft);
}
.ctlc-audit-box ul {
	margin: 0;
}
.ctlc-audit-box li {
	font-size: 16px;
	list-style: disc;
	margin: 0 0 0.6rem 1rem;
	color: var(--ctlc-muted);
}
.ctlc-no-pressure {
	font-size: 14px;
	margin: 16px 0 20px;
	text-align: center;
	color: var(--ctlc-faint);
}
.ctlc-book-call-btn {
	min-width: 170px;
	margin: 0 auto;
}
.ctlc-btn-pink.ctlc-result-cta-btn.ctlc-book-call-btn {
	justify-content: center;
	margin: 0 auto;
	text-align: center;
	align-items: center;
	display: flex;
	width: fit-content;
}

/* ============================================================
   CINEMATIC VIDEO BACKGROUND (full page, behind everything)
   ============================================================ */
.ctlc-bg-video-wrap {
	position: fixed;
	inset: 0;
	z-index: -1;
	overflow: hidden;
	pointer-events: none;
}
.ctlc-bg-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.ctlc-bg-overlay {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(120% 90% at 50% -10%, rgba(0, 54, 160, 0.5) 0%, transparent 55%),
		linear-gradient(180deg, rgba(4, 8, 20, 0.72) 0%, rgba(4, 8, 22, 0.74) 45%, rgba(2, 4, 12, 0.85) 100%);
}
.ctlc-scorecard-inner {
	position: relative;
	z-index: 1;
	padding: 2.75rem;
}

/* ============================================================
   "COMING SOON" MODAL (temporary gate on the Start button)
   ============================================================ */
.ctlc-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
	font-family: var(--ctlc-font) !important;
}
.ctlc-modal.ctlc-modal-open {
	display: flex;
}
.ctlc-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(2, 4, 12, 0.72);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
}
.ctlc-modal-dialog {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 460px;
	text-align: center;
	background: var(--ctlc-glass-elev);
	-webkit-backdrop-filter: var(--ctlc-blur);
	backdrop-filter: var(--ctlc-blur);
	border: 1px solid var(--ctlc-border);
	border-radius: var(--ctlc-radius);
	box-shadow: var(--ctlc-glow);
	padding: 38px 34px 34px;
	animation: ctlc-modal-in 0.25s ease;
}
@keyframes ctlc-modal-in {
	from { opacity: 0; transform: translateY(14px) scale(0.98); }
	to { opacity: 1; transform: none; }
}
.ctlc-modal-icon {
	width: 66px;
	height: 66px;
	margin: 0 auto 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(77, 123, 255, 0.16);
	color: var(--ctlc-blue-soft);
	box-shadow: inset 0 0 0 1px rgba(77, 123, 255, 0.25);
}
.ctlc-modal-icon-svg {
	width: 30px;
	height: 30px;
}
.ctlc-modal-title {
	font-size: 26px;
	font-weight: 800;
	color: var(--ctlc-white);
	text-transform: uppercase;
	letter-spacing: 0.01em;
	margin: 0 0 16px;
}
.ctlc-modal-message {
	font-size: 15px;
	line-height: 1.6;
	color: var(--ctlc-muted);
	margin: 0 0 12px;
}
.ctlc-modal-close {
	margin-top: 16px;
	min-width: 150px;
	min-height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
	.ctlc-scorecard-container {
		max-width: 100%;
	}
	.ctlc-scorecard-inner {
		padding: 20px;
	}
	.ctlc-step-block {
		padding-top: 0;
	}
	.ctlc-brand-logo {
		font-size: 34px;
	}
	.ctlc-welcome-tagline {
		font-size: 18px;
		max-width: 100%;
	}
	.ctlc-subtitle-text {
		font-size: 15px;
		max-width: 100%;
		margin-bottom: 22px;
	}
	.ctlc-welcome-meta {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
		max-width: 100%;
	}
	.ctlc-welcome-meta-item {
		justify-content: flex-start;
	}
	.ctlc-welcome-benefits {
		grid-template-columns: 1fr;
	}
	.ctlc-lead-box {
		padding: 24px 18px;
	}
	.ctlc-welcome-lead-box {
		margin-bottom: 32px;
	}
	.ctlc-welcome-trustline {
		flex-wrap: wrap;
		row-gap: 6px;
	}
	.ctlc-q-header-flex,
	.ctlc-cat-columns,
	.ctlc-nav-buttons {
		flex-direction: column;
		align-items: stretch;
	}
	.ctlc-q-header-flex {
		gap: 16px;
		margin-bottom: 26px;
		text-align: center;
		align-items: center;
	}
	.ctlc-q-subtitle-new {
		width: 100%;
	}
	.ctlc-cat-columns {
		gap: 20px;
	}
	.ctlc-category-box-new {
		padding: 18px;
	}
	.ctlc-radio-label {
		padding: 16px 18px;
		font-size: 15px;
	}
	.ctlc-nav-buttons {
		gap: 12px;
	}
	.ctlc-lead-title {
		font-size: 26px;
	}
	.ctlc-result-card {
		padding: 22px 18px;
	}
	.ctlc-section-header,
	.ctlc-download-section {
		align-items: flex-start;
	}
	.ctlc-bar-row {
		flex-wrap: wrap;
		gap: 1.25rem;
	}
	.ctlc-bar-label,
	.ctlc-bar-value {
		width: auto;
	}
	.ctlc-bar-track {
		width: 100%;
		order: 3;
	}
	.ctlc-calculate-boxes {
		grid-template-columns: 1fr;
	}
	.ctlc-calc-box {
		min-height: 80px;
	}
	.ctlc-delegate-box {
		grid-template-columns: 1fr;
		gap: 18px;
	}
	.ctlc-delegate-illustration {
		max-width: 240px;
		margin: 0 auto;
	}
	.ctlc-audit-box {
		margin-left: 0;
		max-width: 100%;
	}
	.ctlc-btn-outline,
	.ctlc-btn-next-gradient,
	.ctlc-btn-pink {
		width: 100%;
	}
	.ctlc-download-btn,
	.ctlc-result-cta-btn {
		width: 100%;
	}
}

@media (max-width: 600px) {
	.ctlc-bar-label {
		width: 100%;
		justify-content: center;
	}
	.ctlc-bar-track {
		width: 100%;
	}
	.ctlc-bar-value {
		width: 100%;
		text-align: center;
	}
	.ctlc-bar-row {
		border: 1px solid var(--ctlc-border);
		padding: 1rem;
		border-radius: 14px;
		gap: 1.25rem;
		background: rgba(255, 255, 255, 0.03);
	}
	.ctlc-result-heading {
		font-size: 22px !important;
		text-align: center;
	}
	.ctlc-delegate-title,
	.ctlc-delegate-copy {
		text-align: center;
	}
	.ctlc-delegate-content {
		align-items: center;
	}
	.ctlc-delegate-cta {
		align-items: center;
		width: 100%;
	}
	.ctlc-result-card.ctlc-download-section {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		text-align: center;
	}
	.ctlc-download-content {
		flex-direction: column;
		text-align: center;
	}
	.ctlc-result-card.ctlc-whats-next-section .ctlc-section-header {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		text-align: center;
	}
	.ctlc-audit-box {
		text-align: center;
		margin: 1rem 0;
		width: 100%;
		max-width: 100%;
	}
	.ctlc-audit-box li {
		list-style-position: inside;
		margin-left: 0;
	}
	.ctlc-btn-next-gradient:disabled,
	.ctlc-btn-next-gradient.ctlc-submit-btn {
		justify-content: center;
	}
}

/* Respect reduced-motion — drop the looping video + shimmer, keep the
   dark brand backdrop so everything stays readable. */
@media (prefers-reduced-motion: reduce) {
	.ctlc-bg-video {
		display: none;
	}
	.ctlc-progress-bar::after,
	.ctlc-skeleton {
		animation: none;
	}
}
