/* ============================================================================
 * wuc-contact-page.css — Production stylesheet for /contact-us/ redesign
 * Target: body.page-id-14861 only (Contact Form 7 page in Elementor)
 * Splice class on first install: hook-behavior (new wp_enqueue_scripts handler)
 * Subsequent edits: template-edit (touch + 65s opcache)
 * Owner/mode: daemon:daemon 644
 * Version: 1.0.0  (2026-05-09)
 * ============================================================================ */

/* Local CSS variables — namespaced under .wuc-cp- to avoid collision with site-wide vars */
body.page-id-14861 {
	--cp-blue-50:   #eef4fc;
	--cp-blue-100:  #d6e4f6;
	--cp-blue-300:  #6fa3e0;
	--cp-blue-500:  #0052b8;
	--cp-blue-600:  #00449b;
	--cp-blue-700:  #003578;
	--cp-slate-900: #0f172a;
	--cp-slate-800: #1e293b;
	--cp-slate-700: #334155;
	--cp-slate-600: #475569;
	--cp-slate-500: #64748b;
	--cp-slate-400: #94a3b8;
	--cp-slate-300: #cbd5e1;
	--cp-slate-200: #e2e8f0;
	--cp-slate-100: #f1f5f9;
	--cp-slate-50:  #f8fafc;
	--cp-navy:      #04080f;
	--cp-navy-2:    #0a1525;
	--cp-green:     #10b981;
	--cp-amber:     #f59e0b;
	--cp-red:       #ef4444;
	--cp-shadow-sm: 0 1px 2px rgba(15,23,42,.04);
	--cp-shadow-md: 0 4px 6px -2px rgba(15,23,42,.04), 0 12px 24px -4px rgba(15,23,42,.06);
	--cp-shadow-lg: 0 4px 6px -2px rgba(15,23,42,.03), 0 12px 24px -4px rgba(15,23,42,.05), 0 24px 48px -8px rgba(15,23,42,.08);
	--cp-shadow-xl: 0 25px 50px -12px rgba(15,23,42,.12);
	--cp-ease: cubic-bezier(.16, 1, .3, 1);
}

/* Mono helper class for technical numerics */
body.page-id-14861 .cp-mono {
	font-family: 'JetBrains Mono', ui-monospace, 'SF Mono', Consolas, monospace;
}

/* ============================================================================
 * HERO MONITOR WIDGET
 * ============================================================================ */
body.page-id-14861 .cp-hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: rgba(255,255,255,.7);
	margin-bottom: 20px;
}
body.page-id-14861 .cp-hero-eyebrow::before {
	content: "";
	width: 8px; height: 8px;
	background: var(--cp-green);
	border-radius: 50%;
	animation: cp-pulseDot 2.4s ease-in-out infinite;
}
@keyframes cp-pulseDot {
	0%,100% { opacity: .55; transform: scale(1); }
	50%     { opacity: 1;   transform: scale(1.2); }
}
body.page-id-14861 .cp-h1-accent {
	background: linear-gradient(90deg, #6fa3e0, #fff);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
body.page-id-14861 .cp-hero-pills {
	display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px;
}
body.page-id-14861 .cp-hero-pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 16px 8px 12px;
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 500;
	color: rgba(255,255,255,.92);
	transition: all .2s var(--cp-ease);
}
body.page-id-14861 .cp-hero-pill:hover {
	background: rgba(255,255,255,.14);
	transform: translateY(-1px);
}
body.page-id-14861 .cp-hero-pill svg {
	width: 14px; height: 14px; flex-shrink: 0;
}

body.page-id-14861 .cp-live-monitor {
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.1);
	border-radius: 16px;
	padding: 24px;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	box-shadow: 0 30px 60px -20px rgba(0,0,0,.5);
	color: #fff;
}
body.page-id-14861 .cp-lm-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 12px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: rgba(255,255,255,.6);
	margin-bottom: 18px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(255,255,255,.08);
}
body.page-id-14861 .cp-lm-status {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--cp-green);
	letter-spacing: 0;
	text-transform: none;
	font-size: 12px;
	font-weight: 500;
}
body.page-id-14861 .cp-lm-status::before {
	content: "";
	width: 7px; height: 7px;
	border-radius: 50%;
	background: var(--cp-green);
	box-shadow: 0 0 0 0 rgba(16,185,129,.6);
	animation: cp-ringPulse 1.6s infinite;
}
@keyframes cp-ringPulse {
	0%   { box-shadow: 0 0 0 0 rgba(16,185,129,.6); }
	70%  { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
	100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}
body.page-id-14861 .cp-lm-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 18px;
}
body.page-id-14861 .cp-lm-stat {
	background: rgba(255,255,255,.03);
	border: 1px solid rgba(255,255,255,.06);
	border-radius: 10px;
	padding: 14px 16px;
}
body.page-id-14861 .cp-lm-stat-label {
	font-size: 11px;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: rgba(255,255,255,.55);
	margin-bottom: 6px;
}
body.page-id-14861 .cp-lm-stat-value {
	font-family: 'JetBrains Mono', monospace;
	font-size: 24px;
	font-weight: 600;
	color: #fff;
	letter-spacing: -.02em;
	display: flex;
	align-items: baseline;
	gap: 4px;
}
body.page-id-14861 .cp-lm-stat-value .cp-unit {
	font-size: 13px;
	color: rgba(255,255,255,.5);
	font-weight: 400;
}
body.page-id-14861 .cp-lm-stat-trend {
	font-size: 11px;
	color: var(--cp-green);
	margin-top: 4px;
	font-family: 'JetBrains Mono', monospace;
}
body.page-id-14861 .cp-lm-stat-trend.cp-down { color: var(--cp-amber); }

body.page-id-14861 .cp-lm-sparkline {
	height: 60px;
	margin: 8px -4px 0;
	position: relative;
}
body.page-id-14861 .cp-lm-sparkline svg { width: 100%; height: 100%; }
body.page-id-14861 .cp-lm-sparkline-label {
	font-size: 11px;
	color: rgba(255,255,255,.6);
	margin-top: 8px;
	font-family: 'JetBrains Mono', monospace;
	display: flex;
	justify-content: space-between;
}
body.page-id-14861 .cp-lm-foot {
	font-size: 11px;
	color: rgba(255,255,255,.4);
	font-family: 'JetBrains Mono', monospace;
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid rgba(255,255,255,.06);
}

/* ============================================================================
 * TICKER STRIP
 * ============================================================================ */
body.page-id-14861 .cp-ticker-strip {
	background: var(--cp-slate-900);
	color: rgba(255,255,255,.85);
	padding: 18px 0;
	overflow: hidden;
	position: relative;
}
body.page-id-14861 .cp-ticker-strip::before,
body.page-id-14861 .cp-ticker-strip::after {
	content: "";
	position: absolute;
	top: 0; bottom: 0;
	width: 60px;
	z-index: 2;
	pointer-events: none;
}
body.page-id-14861 .cp-ticker-strip::before {
	left: 0;
	background: linear-gradient(90deg, var(--cp-slate-900), transparent);
}
body.page-id-14861 .cp-ticker-strip::after {
	right: 0;
	background: linear-gradient(-90deg, var(--cp-slate-900), transparent);
}
body.page-id-14861 .cp-ticker-track {
	display: flex;
	gap: 48px;
	animation: cp-tickerScroll 40s linear infinite;
	white-space: nowrap;
	width: max-content;
}
body.page-id-14861 .cp-ticker-item {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	font-family: 'JetBrains Mono', monospace;
	letter-spacing: .02em;
}
body.page-id-14861 .cp-ticker-item .cp-label { color: rgba(255,255,255,.5); }
body.page-id-14861 .cp-ticker-item .cp-value { color: #fff; font-weight: 500; }
body.page-id-14861 .cp-ticker-item .cp-dot {
	width: 6px; height: 6px;
	border-radius: 50%;
	background: var(--cp-green);
}
@keyframes cp-tickerScroll {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
	body.page-id-14861 .cp-ticker-track { animation: none; }
}

/* ============================================================================
 * CF7 FORM CARD — overrides default CF7 styling
 * ============================================================================ */
body.page-id-14861 .wpcf7-form {
	background: #fff;
	border: 1px solid var(--cp-slate-200);
	border-radius: 16px;
	padding: 36px;
	box-shadow: var(--cp-shadow-lg);
}
body.page-id-14861 .cp-form-step-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 18px;
}
body.page-id-14861 .cp-form-step-label {
	font-size: 13px;
	font-weight: 600;
	color: var(--cp-blue-500);
	letter-spacing: .04em;
	text-transform: uppercase;
}
body.page-id-14861 .cp-form-step-percent {
	font-family: 'JetBrains Mono', monospace;
	font-size: 13px;
	color: var(--cp-slate-500);
}
body.page-id-14861 .cp-form-progress {
	height: 6px;
	background: var(--cp-slate-100);
	border-radius: 999px;
	overflow: hidden;
	margin-bottom: 28px;
}
body.page-id-14861 .cp-form-progress-fill {
	height: 100%;
	background: linear-gradient(90deg, var(--cp-blue-500), #2563eb);
	border-radius: 999px;
	transition: width .5s var(--cp-ease);
}
body.page-id-14861 .cp-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 18px;
}
body.page-id-14861 .cp-form-row.cp-single { grid-template-columns: 1fr; }
body.page-id-14861 .cp-form-field { display: flex; flex-direction: column; }
body.page-id-14861 .cp-form-field label {
	font-size: 13px;
	font-weight: 600;
	color: var(--cp-slate-700);
	margin-bottom: 6px;
	display: flex;
	align-items: center;
	gap: 4px;
}
body.page-id-14861 .cp-form-field label .cp-required {
	color: var(--cp-red);
	font-weight: 700;
}
body.page-id-14861 .wpcf7-form input[type="text"],
body.page-id-14861 .wpcf7-form input[type="email"],
body.page-id-14861 .wpcf7-form input[type="tel"],
body.page-id-14861 .wpcf7-form select,
body.page-id-14861 .wpcf7-form textarea {
	font-family: inherit;
	font-size: 16px;       /* 16px+ prevents iOS auto-zoom on focus */
	padding: 12px 14px;
	border: 1px solid var(--cp-slate-200);
	border-radius: 8px;
	background: #fff;
	color: var(--cp-slate-900);
	min-height: 48px;
	transition: border-color .2s var(--cp-ease), box-shadow .2s var(--cp-ease);
	width: 100%;
	box-sizing: border-box;
}
body.page-id-14861 .wpcf7-form textarea {
	min-height: 120px;
	resize: vertical;
}
body.page-id-14861 .wpcf7-form input:focus,
body.page-id-14861 .wpcf7-form select:focus,
body.page-id-14861 .wpcf7-form textarea:focus {
	outline: none;
	border-color: var(--cp-blue-500);
	box-shadow: 0 0 0 3px rgba(0,82,184,.15);
}
body.page-id-14861 .wpcf7-form input.wpcf7-not-valid,
body.page-id-14861 .wpcf7-form select.wpcf7-not-valid,
body.page-id-14861 .wpcf7-form textarea.wpcf7-not-valid {
	border-color: var(--cp-red);
	background: #fef2f2;
}
body.page-id-14861 .wpcf7-not-valid-tip {
	color: var(--cp-red);
	font-size: 12px;
	margin-top: 4px;
	display: block;
}
body.page-id-14861 .cp-form-field .cp-helper {
	font-size: 12px;
	color: var(--cp-slate-500);
	margin-top: 6px;
}
body.page-id-14861 .cp-consent-row {
	margin: 24px 0;
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 13px;
	line-height: 1.5;
	color: var(--cp-slate-700);
}
body.page-id-14861 .cp-consent-row input[type="checkbox"] {
	margin-top: 2px;
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	accent-color: var(--cp-blue-500);
}
body.page-id-14861 .cp-form-actions {
	display: flex;
	gap: 12px;
	margin-top: 24px;
}
body.page-id-14861 .cp-btn-primary,
body.page-id-14861 .wpcf7-submit {
	background: var(--cp-blue-500);
	color: #fff;
	border: 0;
	min-height: 52px;
	padding: 14px 28px;
	font-size: 15px;
	font-weight: 600;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	box-shadow: 0 1px 2px rgba(0,82,184,.25);
	transition: all .26s var(--cp-ease);
	cursor: pointer;
	font-family: inherit;
}
body.page-id-14861 .cp-btn-primary:hover,
body.page-id-14861 .wpcf7-submit:hover {
	background: var(--cp-blue-600);
	transform: translateY(-1px);
	box-shadow: 0 6px 16px -2px rgba(0,82,184,.35);
}
body.page-id-14861 .cp-btn-primary svg {
	width: 16px; height: 16px;
	transition: transform .2s var(--cp-ease);
}
body.page-id-14861 .cp-btn-primary:hover svg { transform: translateX(3px); }
body.page-id-14861 .cp-btn-secondary {
	background: transparent;
	color: var(--cp-slate-700);
	border: 1px solid var(--cp-slate-300);
	min-height: 52px;
	padding: 14px 24px;
	font-size: 15px;
	font-weight: 500;
	border-radius: 10px;
	transition: all .2s var(--cp-ease);
	cursor: pointer;
	font-family: inherit;
}
body.page-id-14861 .cp-btn-secondary:hover {
	background: var(--cp-slate-50);
	border-color: var(--cp-slate-400);
}

/* Multi-step show/hide */
body.page-id-14861 .cp-form-step { display: none; }
body.page-id-14861 .cp-form-step.cp-active { display: block; animation: cp-fadeIn .35s var(--cp-ease); }
@keyframes cp-fadeIn {
	from { opacity: 0; transform: translateY(8px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* Honeypot — invisible to users + AT */
body.page-id-14861 .wpcf7-form input[name="wuc_website"],
body.page-id-14861 .cp-honeypot {
	position: absolute !important;
	left: -9999px !important;
	opacity: 0 !important;
	pointer-events: none !important;
	width: 1px !important;
	height: 1px !important;
}

/* ============================================================================
 * TECHNICAL SIDEBAR
 * ============================================================================ */
body.page-id-14861 .cp-tech-sidebar {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
body.page-id-14861 .cp-tech-card {
	background: #fff;
	border: 1px solid var(--cp-slate-200);
	border-radius: 10px;
	padding: 24px;
	box-shadow: var(--cp-shadow-sm);
}
body.page-id-14861 .cp-tech-card-title {
	font-size: 14px;
	font-weight: 700;
	color: var(--cp-slate-900);
	margin: 0 0 14px;
	display: flex;
	align-items: center;
	gap: 8px;
	letter-spacing: -.01em;
}
body.page-id-14861 .cp-tech-card-title svg {
	width: 18px; height: 18px;
	color: var(--cp-blue-500);
	flex-shrink: 0;
}
body.page-id-14861 .cp-tech-checklist {
	list-style: none;
	padding: 0; margin: 0;
}
body.page-id-14861 .cp-tech-checklist li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 10px 0;
	font-size: 14px;
	line-height: 1.45;
	color: var(--cp-slate-700);
	border-bottom: 1px dashed var(--cp-slate-200);
}
body.page-id-14861 .cp-tech-checklist li:last-child { border-bottom: 0; }
body.page-id-14861 .cp-tech-checklist .cp-check {
	width: 18px; height: 18px;
	border-radius: 50%;
	background: var(--cp-blue-50);
	color: var(--cp-blue-500);
	display: grid;
	place-items: center;
	flex-shrink: 0;
	margin-top: 2px;
}
body.page-id-14861 .cp-tech-checklist .cp-check svg { width: 11px; height: 11px; }

body.page-id-14861 .cp-standby-card {
	background: linear-gradient(135deg, rgba(16,185,129,.08), rgba(0,82,184,.04));
	border: 1px solid rgba(16,185,129,.2);
	border-radius: 10px;
	padding: 18px 20px;
	display: flex;
	align-items: center;
	gap: 14px;
}
body.page-id-14861 .cp-standby-pulse {
	width: 36px; height: 36px;
	border-radius: 50%;
	background: rgba(16,185,129,.15);
	display: grid;
	place-items: center;
	flex-shrink: 0;
	position: relative;
}
body.page-id-14861 .cp-standby-pulse::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: var(--cp-green);
	opacity: .4;
	animation: cp-standbyPulse 2.4s ease-out infinite;
}
@keyframes cp-standbyPulse {
	0%   { transform: scale(.6); opacity: .6; }
	100% { transform: scale(1.4); opacity: 0; }
}
body.page-id-14861 .cp-standby-pulse .cp-core {
	width: 12px; height: 12px;
	background: var(--cp-green);
	border-radius: 50%;
	z-index: 1;
}
body.page-id-14861 .cp-standby-text strong {
	display: block;
	font-size: 14px;
	color: var(--cp-slate-900);
	margin-bottom: 2px;
}
body.page-id-14861 .cp-standby-text span {
	font-size: 12px;
	color: var(--cp-slate-600);
	font-family: 'JetBrains Mono', monospace;
}

body.page-id-14861 .cp-deliverables-list {
	list-style: none;
	padding: 0; margin: 0;
	display: grid;
	gap: 8px;
}
body.page-id-14861 .cp-deliverables-list li {
	background: var(--cp-slate-50);
	padding: 10px 14px;
	border-radius: 6px;
	font-size: 13px;
	color: var(--cp-slate-700);
	display: flex;
	align-items: center;
	gap: 10px;
	transition: background .2s var(--cp-ease);
}
body.page-id-14861 .cp-deliverables-list li:hover { background: var(--cp-blue-50); }
body.page-id-14861 .cp-deliverables-list .cp-icon {
	width: 24px; height: 24px;
	background: #fff;
	border: 1px solid var(--cp-slate-200);
	border-radius: 4px;
	display: grid;
	place-items: center;
	color: var(--cp-slate-500);
	flex-shrink: 0;
}
body.page-id-14861 .cp-deliverables-list .cp-icon svg { width: 12px; height: 12px; }

body.page-id-14861 .cp-contact-card {
	background: var(--cp-slate-900);
	color: #fff;
	border-radius: 10px;
	padding: 24px;
}
body.page-id-14861 .cp-contact-card-label {
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: rgba(255,255,255,.55);
	margin-bottom: 12px;
}
body.page-id-14861 .cp-contact-card-email {
	font-size: 16px;
	font-weight: 600;
	color: #fff !important;     /* defeats theme cascade */
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: 'JetBrains Mono', monospace;
	letter-spacing: -.01em;
	margin-bottom: 16px;
}
body.page-id-14861 .cp-contact-card-email:hover {
	color: var(--cp-blue-300) !important;
}
body.page-id-14861 .cp-contact-card-meta {
	font-size: 12px;
	color: rgba(255,255,255,.6);
	line-height: 1.6;
	border-top: 1px solid rgba(255,255,255,.1);
	padding-top: 14px;
	font-family: 'JetBrains Mono', monospace;
}

/* ============================================================================
 * SAVINGS PROBE
 * ============================================================================ */
body.page-id-14861 .cp-probe {
	max-width: 880px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid var(--cp-slate-200);
	border-radius: 16px;
	padding: 36px;
	box-shadow: var(--cp-shadow-md);
}
body.page-id-14861 .cp-probe-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
	margin-bottom: 28px;
}
body.page-id-14861 .cp-probe-input { display: flex; flex-direction: column; }
body.page-id-14861 .cp-probe-input label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--cp-slate-500);
	margin-bottom: 10px;
}
body.page-id-14861 .cp-probe-input input[type="range"] {
	width: 100%;
	-webkit-appearance: none;
	appearance: none;
	height: 6px;
	background: var(--cp-slate-200);
	border-radius: 999px;
	outline: none;
}
body.page-id-14861 .cp-probe-input input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 24px; height: 24px;
	background: var(--cp-blue-500);
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 0 0 0 4px rgba(0,82,184,.18);
	transition: transform .15s var(--cp-ease);
}
body.page-id-14861 .cp-probe-input input[type="range"]::-moz-range-thumb {
	width: 24px; height: 24px;
	background: var(--cp-blue-500);
	border-radius: 50%;
	cursor: pointer;
	border: 0;
	box-shadow: 0 0 0 4px rgba(0,82,184,.18);
}
body.page-id-14861 .cp-probe-input input[type="range"]::-webkit-slider-thumb:hover {
	transform: scale(1.1);
}
body.page-id-14861 .cp-value-display {
	font-family: 'JetBrains Mono', monospace;
	font-size: 24px;
	font-weight: 600;
	color: var(--cp-slate-900);
	margin-top: 12px;
}
body.page-id-14861 .cp-value-display .cp-unit {
	font-size: 13px;
	color: var(--cp-slate-500);
	font-weight: 400;
	margin-left: 4px;
}

body.page-id-14861 .cp-probe-result {
	background: linear-gradient(135deg, var(--cp-blue-500), #2563eb);
	color: #fff;
	border-radius: 10px;
	padding: 28px 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
body.page-id-14861 .cp-probe-result-label {
	font-size: 12px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: rgba(255,255,255,.7);
	margin-bottom: 6px;
}
body.page-id-14861 .cp-probe-result-value {
	font-family: 'JetBrains Mono', monospace;
	font-size: clamp(26px, 4vw, 36px);
	font-weight: 700;
	letter-spacing: -.02em;
}
body.page-id-14861 .cp-probe-result-range {
	font-size: 13px;
	color: rgba(255,255,255,.7);
	margin-top: 4px;
	font-family: 'JetBrains Mono', monospace;
}
body.page-id-14861 .cp-probe-disclaimer {
	font-size: 12px;
	color: var(--cp-slate-500);
	margin-top: 18px;
	text-align: center;
	font-style: italic;
}

/* ============================================================================
 * CAPABILITY MATRIX
 * ============================================================================ */
body.page-id-14861 .cp-matrix-table-wrap {
	border: 1px solid var(--cp-slate-200);
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
	box-shadow: var(--cp-shadow-sm);
	max-width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}
body.page-id-14861 .cp-matrix-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
	min-width: 600px;
}
body.page-id-14861 .cp-matrix-table th {
	background: var(--cp-slate-50);
	padding: 14px 12px;
	text-align: left;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--cp-slate-600);
	border-bottom: 1px solid var(--cp-slate-200);
}
body.page-id-14861 .cp-matrix-table td {
	padding: 14px 12px;
	border-bottom: 1px solid var(--cp-slate-100);
}
body.page-id-14861 .cp-matrix-table tr:last-child td { border-bottom: 0; }
body.page-id-14861 .cp-matrix-table tr:hover { background: var(--cp-slate-50); }
body.page-id-14861 .cp-matrix-vendor {
	font-weight: 600;
	color: var(--cp-slate-900);
}
body.page-id-14861 .cp-matrix-vendor-sub {
	display: block;
	font-weight: 400;
	font-size: 11px;
	color: var(--cp-slate-500);
	font-family: 'JetBrains Mono', monospace;
	margin-top: 2px;
}
body.page-id-14861 .cp-matrix-cell { text-align: center; }
body.page-id-14861 .cp-matrix-check {
	width: 22px; height: 22px;
	border-radius: 50%;
	background: rgba(16,185,129,.12);
	color: var(--cp-green);
	display: inline-grid;
	place-items: center;
}
body.page-id-14861 .cp-matrix-check svg { width: 11px; height: 11px; }
body.page-id-14861 .cp-matrix-count {
	font-family: 'JetBrains Mono', monospace;
	font-size: 13px;
	font-weight: 600;
	color: var(--cp-blue-500);
}
body.page-id-14861 .cp-matrix-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
body.page-id-14861 .cp-matrix-stat {
	background: var(--cp-slate-50);
	border-left: 3px solid var(--cp-blue-500);
	padding: 14px 16px;
	border-radius: 4px;
}
body.page-id-14861 .cp-matrix-stat-value {
	font-family: 'JetBrains Mono', monospace;
	font-size: 22px;
	font-weight: 700;
	color: var(--cp-slate-900);
	line-height: 1;
}
body.page-id-14861 .cp-matrix-stat-label {
	font-size: 12px;
	color: var(--cp-slate-600);
	margin-top: 4px;
}

/* ============================================================================
 * TIMELINE
 * ============================================================================ */
body.page-id-14861 .cp-timeline {
	max-width: 920px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
body.page-id-14861 .cp-timeline-item {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 28px;
	padding: 24px 0;
	border-bottom: 1px solid rgba(255,255,255,.08);
}
body.page-id-14861 .cp-timeline-item:last-child { border-bottom: 0; }
body.page-id-14861 .cp-timeline-time {
	font-family: 'JetBrains Mono', monospace;
	font-size: 12px;
	color: var(--cp-blue-300);
	padding-top: 4px;
	letter-spacing: .04em;
}
body.page-id-14861 .cp-timeline-time .cp-delta {
	display: block;
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	margin-top: 2px;
}
body.page-id-14861 .cp-timeline-content h4 {
	font-size: 16px;
	font-weight: 600;
	margin: 0 0 6px;
	color: #fff;
}
body.page-id-14861 .cp-timeline-content p {
	font-size: 14px;
	color: rgba(255,255,255,.7);
	margin: 0;
	line-height: 1.55;
}
body.page-id-14861 .cp-timeline-content .cp-tags {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
	margin-top: 10px;
}
body.page-id-14861 .cp-timeline-content .cp-tag {
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	background: rgba(255,255,255,.08);
	color: rgba(255,255,255,.8);
	padding: 3px 8px;
	border-radius: 4px;
	border: 1px solid rgba(255,255,255,.08);
}

/* ============================================================================
 * COMPLIANCE GRID
 * ============================================================================ */
body.page-id-14861 .cp-compliance-grid {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: 14px;
	max-width: 1000px;
	margin: 0 auto;
}
body.page-id-14861 .cp-compliance-badge {
	border: 1px solid var(--cp-slate-200);
	border-radius: 8px;
	padding: 16px 12px;
	text-align: center;
	background: #fff;
	transition: all .2s var(--cp-ease);
}
body.page-id-14861 .cp-compliance-badge:hover {
	border-color: var(--cp-blue-300);
	transform: translateY(-2px);
	box-shadow: var(--cp-shadow-md);
}
body.page-id-14861 .cp-compliance-badge .cp-name {
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	font-weight: 600;
	color: var(--cp-slate-700);
	letter-spacing: .02em;
}
body.page-id-14861 .cp-compliance-badge .cp-icon-svg {
	width: 24px; height: 24px;
	margin: 0 auto 8px;
	color: var(--cp-blue-500);
}

/* ============================================================================
 * ALT CTA
 * ============================================================================ */
body.page-id-14861 .cp-alt-cta-card {
	max-width: 760px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid var(--cp-slate-200);
	border-radius: 16px;
	padding: 36px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	box-shadow: var(--cp-shadow-sm);
}
body.page-id-14861 .cp-alt-cta-text h3 {
	font-size: 20px;
	margin: 0 0 6px;
	color: var(--cp-slate-900);
	font-weight: 700;
}
body.page-id-14861 .cp-alt-cta-text p {
	font-size: 14px;
	color: var(--cp-slate-600);
	margin: 0;
}

/* ============================================================================
 * CALENDLY MODAL
 * ============================================================================ */
body.page-id-14861 .cp-modal {
	position: fixed;
	inset: 0;
	background: rgba(4,8,15,.78);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
	opacity: 0;
	transition: opacity .25s var(--cp-ease);
}
body.page-id-14861 .cp-modal.cp-open {
	display: flex;
	opacity: 1;
}
body.page-id-14861 .cp-modal-shell {
	background: #fff;
	border-radius: 16px;
	max-width: 720px;
	width: 100%;
	height: min(720px, calc(100vh - 48px));
	padding: 0;
	position: relative;
	box-shadow: var(--cp-shadow-xl);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
body.page-id-14861 .cp-modal-close {
	position: absolute;
	top: 12px; right: 12px;
	background: rgba(15,23,42,.06);
	border: 0;
	width: 36px; height: 36px;
	border-radius: 50%;
	font-size: 22px;
	color: var(--cp-slate-700);
	cursor: pointer;
	z-index: 5;
}
body.page-id-14861 .cp-modal-close:hover { background: rgba(15,23,42,.14); }
body.page-id-14861 .cp-modal-host {
	flex: 1 1 auto;
	width: 100%;
	height: 100%;
}
body.page-id-14861 .cp-modal-host iframe {
	width: 100%; height: 100%;
	border: 0; display: block;
}
body.page-id-14861.cp-modal-locked {
	overflow: hidden;
}

/* ============================================================================
 * FORM SUCCESS STATE
 * ============================================================================ */
body.page-id-14861 .cp-form-success {
	display: none;
	text-align: center;
	padding: 32px 8px;
}
body.page-id-14861 .cp-form-success.cp-active {
	display: block;
	animation: cp-fadeIn .4s var(--cp-ease);
}
body.page-id-14861 .cp-form-success-icon {
	width: 64px; height: 64px;
	margin: 0 auto 20px;
	background: rgba(16,185,129,.12);
	color: var(--cp-green);
	border-radius: 50%;
	display: grid;
	place-items: center;
}
body.page-id-14861 .cp-form-success h3 {
	font-size: 22px;
	margin: 0 0 10px;
	color: var(--cp-slate-900);
}
body.page-id-14861 .cp-form-success p {
	color: var(--cp-slate-600);
	margin: 0 0 18px;
}
body.page-id-14861 .cp-form-success .cp-reference {
	font-family: 'JetBrains Mono', monospace;
	font-size: 12px;
	background: var(--cp-slate-50);
	padding: 10px 16px;
	border-radius: 6px;
	display: inline-block;
	color: var(--cp-slate-700);
}

/* ============================================================================
 * RESPONSIVE BREAKPOINTS
 * ============================================================================ */
@media (max-width: 1024px) {
	body.page-id-14861 .cp-probe-grid { grid-template-columns: 1fr; }
	body.page-id-14861 .cp-compliance-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
	body.page-id-14861 .wpcf7-form { padding: 24px 20px; border-radius: 12px; }
	body.page-id-14861 .cp-form-row { grid-template-columns: 1fr; }
	body.page-id-14861 .cp-probe { padding: 24px 20px; }
	body.page-id-14861 .cp-probe-result {
		flex-direction: column;
		align-items: flex-start;
		padding: 24px;
	}
	body.page-id-14861 .cp-timeline-item { grid-template-columns: 1fr; gap: 4px; }
	body.page-id-14861 .cp-alt-cta-card {
		flex-direction: column;
		align-items: flex-start;
	}
	body.page-id-14861 .cp-compliance-grid { grid-template-columns: repeat(3, 1fr); }
	body.page-id-14861 .cp-matrix-stats { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
	body.page-id-14861 .cp-compliance-grid { grid-template-columns: repeat(2, 1fr); }
	body.page-id-14861 .cp-lm-grid { grid-template-columns: 1fr; }
}
