/**
 * Broker Engine — front-end design system.
 * Professional financial-services aesthetic: deep navy trust palette,
 * restrained gold accent for CTAs/scores, generous whitespace, real
 * typographic hierarchy. Scoped under .icbe- so it layers cleanly over
 * any theme instead of fighting it.
 *
 * IMPORTANT: color/background/typography declarations below use
 * !important deliberately. This stylesheet is injected into an unknown
 * third-party theme (investingcube.net's live theme, not something we
 * control) and real-world testing showed the host theme's own global
 * `h1/p/a` color rules were winning the cascade — e.g. white hero text
 * rendering as black-on-navy and unreadable. A plugin that must guarantee
 * correct, on-brand rendering regardless of host theme has to defend its
 * own visual identity explicitly; !important here is scoped only to our
 * own uniquely-named .icbe-* classes, never to bare element selectors,
 * so it cannot leak out and affect the rest of the site.
 */

:root {
	--icbe-navy-900: #0a1930;
	--icbe-navy-800: #10233f;
	--icbe-navy-700: #16304f;
	--icbe-navy-600: #1e3f66;
	--icbe-blue-600: #2563eb;
	--icbe-blue-50: #eff6ff;
	--icbe-teal-500: #0d9488;
	--icbe-teal-50: #f0fdfa;
	--icbe-gold-500: #c8922a;
	--icbe-gold-600: #a97918;
	--icbe-green-600: #16803c;
	--icbe-green-50: #f0fdf4;
	--icbe-red-600: #c0362c;
	--icbe-red-50: #fef2f2;
	--icbe-gray-50: #f8fafc;
	--icbe-gray-100: #f1f5f9;
	--icbe-gray-200: #e4e9f0;
	--icbe-gray-300: #cbd5e1;
	--icbe-gray-400: #94a3b8;
	--icbe-gray-600: #4b5768;
	--icbe-gray-700: #33404f;
	--icbe-gray-900: #0f172a;
	--icbe-white: #ffffff;
	--icbe-radius-sm: 8px;
	--icbe-radius: 14px;
	--icbe-radius-lg: 20px;
	--icbe-shadow-sm: 0 1px 2px rgba(15, 23, 42, .06);
	--icbe-shadow: 0 1px 2px rgba(15,23,42,.04), 0 10px 30px -8px rgba(15, 23, 42, .12);
	--icbe-shadow-lg: 0 20px 50px -12px rgba(10, 25, 48, .25);
	--icbe-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
	--icbe-max-width: 1160px;
	--icbe-surface: #ffffff;
	--icbe-surface-2: #f8fafc;
	--icbe-border: #e4e9f0;
	--icbe-text: #0f172a;
	--icbe-text-muted: #4b5768;
}

@media (prefers-color-scheme: dark) {
	:root {
		--icbe-surface: #0f1a2c;
		--icbe-surface-2: #14213a;
		--icbe-border: #223350;
		--icbe-text: #e6ecf5;
		--icbe-text-muted: #93a3bd;
	}
}

/* ---------- Defensive base reset ---------- */
/* Neutralizes host-theme global typography rules (font-family/list-style/
   text-decoration on bare h1-h6/p/ul/a selectors) inside our container,
   without touching anything outside it. */
.icbe-page,
.icbe-page * {
	box-sizing: border-box;
}
.icbe-page,
.icbe-page h1, .icbe-page h2, .icbe-page h3, .icbe-page h4, .icbe-page h5,
.icbe-page p, .icbe-page span, .icbe-page div, .icbe-page a, .icbe-page li {
	font-family: var(--icbe-font) !important;
	line-height: 1.6;
}
.icbe-page ul, .icbe-page ol { margin: 0; padding: 0; }
.icbe-page { color: var(--icbe-text) !important; background: transparent; }
.icbe-container { max-width: var(--icbe-max-width); margin: 0 auto; padding: 0 24px; }

/* Many themes render their own "page title bar" independent of the
   singular template content. Since Broker Engine renders its own H1
   inside a styled hero, suppress the most common theme title-bar class
   names on our post types so there's never a duplicate/unstyled H1
   above our content. Safe no-op if the theme doesn't use these classes. */
body.single-broker .entry-title,
body.single-broker .page-title,
body.single-broker .entry-header > h1,
body.single-best_list .entry-title,
body.single-best_list .page-title,
body.single-best_list .entry-header > h1,
body.single-broker_comparison .entry-title,
body.single-broker_comparison .page-title,
body.single-broker_comparison .entry-header > h1 {
	display: none !important;
}

/* ---------- Disclosure banner (§12.5) ---------- */
.icbe-disclosure {
	background: var(--icbe-surface-2) !important;
	border: 1px solid var(--icbe-border);
	border-radius: var(--icbe-radius-sm);
	padding: 12px 16px;
	font-size: 13px;
	color: var(--icbe-text-muted) !important;
	margin: 20px 0;
	display: flex;
	gap: 8px;
	align-items: flex-start;
}
.icbe-disclosure a { color: inherit !important; text-decoration: underline !important; }

/* ---------- Breadcrumb ---------- */
.icbe-breadcrumb { font-size: 13px; color: var(--icbe-text-muted) !important; margin: 18px 0 8px; }
.icbe-breadcrumb a { color: inherit !important; text-decoration: none !important; }
.icbe-breadcrumb a:hover { text-decoration: underline !important; }
.icbe-breadcrumb .sep { margin: 0 6px; opacity: .5; }

/* ================= Broker Review Hero ================= */
.icbe-hero {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 28px;
	align-items: center;
	background: linear-gradient(135deg, var(--icbe-navy-900), var(--icbe-navy-700)) !important;
	border-radius: var(--icbe-radius-lg);
	padding: 32px;
	margin: 12px 0 32px;
	box-shadow: var(--icbe-shadow-lg);
}
.icbe-hero, .icbe-hero * { color: #fff !important; }
@media (max-width: 780px) { .icbe-hero { grid-template-columns: 1fr; text-align: center; } .icbe-hero-cta { align-items: center; } }
.icbe-hero-logo {
	width: 84px; height: 84px; border-radius: var(--icbe-radius);
	background: #fff !important; display: flex; align-items: center; justify-content: center;
	overflow: hidden; flex-shrink: 0; margin: 0 auto;
}
.icbe-hero-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.icbe-hero-body h1 {
	margin: 0 0 6px !important; padding: 0 !important; border: none !important;
	font-size: 30px !important; font-weight: 800 !important; letter-spacing: -0.02em !important;
	line-height: 1.2 !important; background: none !important; text-transform: none !important;
}
.icbe-hero-sub { color: #c7d3e6 !important; font-size: 14px; margin: 0 0 14px; }
.icbe-hero-quickfacts { display: flex; flex-wrap: wrap; gap: 18px; font-size: 13px; color: #dbe4f3 !important; justify-content: center; }
@media (min-width: 781px) { .icbe-hero-quickfacts { justify-content: flex-start; } }
.icbe-hero-quickfacts strong { color: #fff !important; display: block; font-size: 15px; font-weight: 700 !important; }
.icbe-hero-cta { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }

.icbe-score-badge {
	width: 76px; height: 76px; border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, var(--icbe-gold-500), var(--icbe-gold-600)) !important;
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	font-weight: 800; box-shadow: 0 6px 18px rgba(200, 146, 42, .35); flex-shrink: 0; margin: 0 auto;
}
.icbe-score-badge, .icbe-score-badge * { color: #241905 !important; }
.icbe-score-badge .num { display: block !important; font-size: 22px !important; line-height: 1.15 !important; }
.icbe-score-badge .max { display: block !important; font-size: 10px !important; opacity: .75; }

/*
 * Every box-model property here is !important, not just color — a real
 * deployment showed the host theme's own link/button resets (padding,
 * border-radius, display) fighting ours too, not only color, which made
 * the CTA buttons look squished/inconsistent. Fully locking the shape
 * down is the only reliable fix short of an iframe.
 */
.icbe-btn {
	display: inline-flex !important; align-items: center !important; justify-content: center !important;
	gap: 8px !important; box-sizing: border-box !important;
	padding: 13px 26px !important; min-width: 128px !important;
	border-radius: 999px !important; font-weight: 700 !important; font-size: 14.5px !important;
	line-height: 1.2 !important; text-decoration: none !important; border: none !important; outline: none !important;
	cursor: pointer; margin: 0 !important; text-align: center !important; text-transform: none !important;
	letter-spacing: 0 !important; vertical-align: middle !important;
	transition: transform .15s ease, box-shadow .15s ease;
	white-space: nowrap !important;
}
.icbe-btn::after { content: "→"; font-weight: 700; transition: transform .15s ease; }
.icbe-btn:hover::after { transform: translateX(3px); }
.icbe-btn-primary {
	background: linear-gradient(135deg, var(--icbe-gold-500), var(--icbe-gold-600)) !important;
	box-shadow: 0 8px 20px -6px rgba(200, 146, 42, .55) !important;
}
.icbe-btn-primary, .icbe-btn-primary * { color: #241905 !important; }
.icbe-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 26px -6px rgba(200, 146, 42, .7) !important; }
.icbe-btn-outline { background: transparent !important; border: 1.5px solid rgba(255,255,255,.6) !important; }
.icbe-btn-outline, .icbe-btn-outline * { color: #fff !important; }
.icbe-btn-secondary { background: var(--icbe-navy-800) !important; }
.icbe-btn-secondary, .icbe-btn-secondary * { color: #fff !important; }
.icbe-btn-sm { padding: 9px 18px !important; min-width: 96px !important; font-size: 13px !important; }
.icbe-btn-block { width: 100% !important; }

/* ---------- Quick verdict callout ---------- */
.icbe-quick-verdict {
	display: flex; gap: 14px; align-items: flex-start;
	background: var(--icbe-blue-50) !important; border: 1px solid #bfdbfe;
	border-radius: var(--icbe-radius); padding: 18px 22px; margin: 24px 0;
}
@media (prefers-color-scheme: dark) { .icbe-quick-verdict { background: var(--icbe-surface-2) !important; border-color: var(--icbe-border); } }
.icbe-quick-verdict .icbe-qv-icon {
	flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
	background: var(--icbe-blue-600) !important; color: #fff !important;
	display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px;
}
.icbe-quick-verdict strong { display: block; font-size: 12.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--icbe-blue-600) !important; margin-bottom: 4px; }
.icbe-quick-verdict p { margin: 0; color: var(--icbe-text) !important; font-size: 15px; }

/* ---------- Pros & Cons ---------- */
.icbe-pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 28px 0; }
@media (max-width: 640px) { .icbe-pros-cons { grid-template-columns: 1fr; } }
.icbe-pc-card { border-radius: var(--icbe-radius); padding: 20px 22px; border: 1px solid var(--icbe-border); }
.icbe-pc-card.pros { background: var(--icbe-green-50) !important; border-color: #cdeed9; }
.icbe-pc-card.cons { background: var(--icbe-red-50) !important; border-color: #f6d4d1; }
.icbe-pc-card h3 { margin: 0 0 12px !important; font-size: 14px !important; text-transform: uppercase !important; letter-spacing: .06em !important; border: none !important; padding: 0 !important; }
.icbe-pc-card.pros h3 { color: var(--icbe-green-600) !important; }
.icbe-pc-card.cons h3 { color: var(--icbe-red-600) !important; }
.icbe-pc-card ul { margin: 0; padding: 0; list-style: none !important; display: flex; flex-direction: column; gap: 8px; }
.icbe-pc-card li { display: flex; gap: 8px; font-size: 14.5px; color: var(--icbe-gray-900) !important; }
.icbe-pc-card.pros li::before { content: "✓"; color: var(--icbe-green-600) !important; font-weight: 700; }
.icbe-pc-card.cons li::before { content: "✕"; color: var(--icbe-red-600) !important; font-weight: 700; }

/* ---------- Ratings breakdown ---------- */
/* ---------- Radar / pentagon ratings chart ---------- */
.icbe-radar-wrap { display: flex !important; flex-direction: column !important; align-items: center !important; justify-content: center !important; padding: 6px 0; }
.icbe-radar { width: 100% !important; max-width: 300px !important; height: auto !important; overflow: visible; }
.icbe-radar-grid { fill: none !important; stroke: var(--icbe-border) !important; stroke-width: 1 !important; }
.icbe-radar-axis { stroke: var(--icbe-border) !important; stroke-width: 1 !important; }
/*
 * Layered animation, but content is never invisible: the shape is fully
 * opaque and correctly colored from frame one (fill-opacity/scale floor
 * never reaches 0), animation only adds motion on top — see the note
 * below on why an entrance that starts fully-hidden is a real risk here.
 */
.icbe-radar-fill {
	fill: rgba(200, 146, 42, .28) !important; stroke: var(--icbe-gold-500) !important; stroke-width: 2.5 !important;
	stroke-linejoin: round; stroke-linecap: round; transform-box: fill-box; transform-origin: center;
	stroke-dasharray: 1000; stroke-dashoffset: 1000;
	animation:
		icbe-radar-in .9s cubic-bezier(.22, 1, .36, 1) both,
		icbe-radar-draw 1.3s ease-out .05s both,
		icbe-radar-glow 3s ease-in-out 1.4s infinite;
}
.icbe-radar-dot {
	fill: var(--icbe-gold-600) !important; stroke: #fff !important; stroke-width: 1.5 !important;
	transform-box: fill-box; transform-origin: center; animation: icbe-dot-in .5s cubic-bezier(.34,1.56,.64,1) both;
}
.icbe-radar-dot:nth-of-type(1) { animation-delay: .7s; }
.icbe-radar-dot:nth-of-type(2) { animation-delay: .8s; }
.icbe-radar-dot:nth-of-type(3) { animation-delay: .9s; }
.icbe-radar-dot:nth-of-type(4) { animation-delay: 1.0s; }
.icbe-radar-dot:nth-of-type(5) { animation-delay: 1.1s; }
.icbe-radar-label { font: 700 11px/1 var(--icbe-font) !important; fill: var(--icbe-text) !important; }
.icbe-radar-label-score { font: 800 12px/1 var(--icbe-font) !important; fill: var(--icbe-gold-600) !important; }
.icbe-radar-center-score { font: 800 26px/1 var(--icbe-font) !important; fill: var(--icbe-navy-800) !important; }
@media (prefers-color-scheme: dark) { .icbe-radar-center-score { fill: #fff !important; } }
.icbe-radar-center-label { font: 700 9px/1 var(--icbe-font) !important; fill: var(--icbe-text-muted) !important; letter-spacing: .06em; }

.icbe-radar-wrap:hover .icbe-radar-fill { filter: drop-shadow(0 0 8px rgba(200, 146, 42, .55)); }
.icbe-radar-wrap:hover .icbe-radar-fill-a { filter: drop-shadow(0 0 8px rgba(200, 146, 42, .5)); }
.icbe-radar-wrap:hover .icbe-radar-fill-b { filter: drop-shadow(0 0 8px rgba(37, 99, 235, .5)); }

/*
 * Transform floor of 0.7 (not 0) and stroke-dashoffset draw-in, never
 * opacity: an entrance animation that starts fully hidden is a real
 * content-visibility risk if it fails to fire or complete in some host
 * environment — a real, previously-hit failure mode on this project
 * (theme CSS has repeatedly interfered with our styles in ways this
 * codebase couldn't reproduce locally). The shape must always be legible
 * even with zero animation support; motion is additive polish only.
 */
@keyframes icbe-radar-in {
	from { transform: scale(0.7); }
	to   { transform: scale(1); }
}
@keyframes icbe-radar-draw {
	to { stroke-dashoffset: 0; }
}
@keyframes icbe-radar-glow {
	0%, 100% { filter: drop-shadow(0 0 0 rgba(200, 146, 42, 0)); }
	50%      { filter: drop-shadow(0 0 7px rgba(200, 146, 42, .45)); }
}
@keyframes icbe-dot-in {
	from { transform: scale(0); }
	to   { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
	.icbe-radar-fill, .icbe-radar-fill-a, .icbe-radar-fill-b, .icbe-radar-dot { animation: none !important; stroke-dashoffset: 0 !important; }
}

/* ---------- Info grid: Rating Index + Trading Environment ---------- */
.icbe-info-grid { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 20px !important; margin: 24px 0 !important; align-items: stretch; }
@media (max-width: 720px) { .icbe-info-grid { grid-template-columns: 1fr !important; } }
.icbe-info-card, .icbe-env-card {
	background: var(--icbe-surface) !important; border: 1px solid var(--icbe-border) !important;
	border-radius: var(--icbe-radius-lg) !important; padding: 22px 24px !important; box-shadow: var(--icbe-shadow-sm);
}
.icbe-info-card h3, .icbe-env-card h3 {
	margin: 0 0 6px !important; font-size: 13px !important; text-transform: uppercase !important; letter-spacing: .06em !important;
	color: var(--icbe-text-muted) !important; border: none !important; padding: 0 !important; font-weight: 800 !important;
}

.icbe-env-top { display: flex !important; align-items: center !important; gap: 14px !important; margin: 14px 0 18px !important; }
.icbe-env-grade {
	flex-shrink: 0; width: 58px !important; height: 58px !important; border-radius: 50% !important;
	display: flex !important; align-items: center !important; justify-content: center !important;
	font-weight: 800 !important; font-size: 15px !important; color: #fff !important;
	background: linear-gradient(135deg, var(--icbe-teal-500), var(--icbe-blue-600)) !important;
	box-shadow: 0 6px 16px -4px rgba(13, 148, 136, .5) !important;
}
.icbe-env-grade-bbb, .icbe-env-grade-bb, .icbe-env-grade-b { background: linear-gradient(135deg, var(--icbe-gold-500), var(--icbe-gold-600)) !important; box-shadow: 0 6px 16px -4px rgba(200, 146, 42, .5) !important; }
.icbe-env-top strong { display: block !important; font-size: 15px !important; color: var(--icbe-text) !important; }
/* Scoped to the nested <div><strong/><span/></div>, not .icbe-env-top's
   direct-child .icbe-env-grade span — a bare "span" descendant selector
   here previously matched both (it's a span too) and, being more
   specific than a single class, won and broke the badge's centering. */
.icbe-env-top div span { display: block !important; font-size: 12px !important; color: var(--icbe-text-muted) !important; margin-top: 2px; }
.icbe-env-facts { display: grid !important; gap: 10px !important; margin: 0 !important; }
.icbe-env-facts > div { display: flex !important; justify-content: space-between !important; gap: 10px; padding-top: 10px; border-top: 1px solid var(--icbe-border); font-size: 13.5px; }
.icbe-env-facts > div:first-child { padding-top: 0; border-top: none; }
.icbe-env-facts dt { color: var(--icbe-text-muted) !important; margin: 0 !important; font-weight: 500 !important; }
.icbe-env-facts dd { color: var(--icbe-text) !important; margin: 0 !important; font-weight: 700 !important; text-align: right; }
.icbe-env-facts dd.yes { color: var(--icbe-green-600) !important; }
.icbe-env-facts dd.no { color: var(--icbe-text-muted) !important; font-weight: 500 !important; }

/* ---------- Body content (card-wrapped, with heading accents) ---------- */
.icbe-body-card {
	background: var(--icbe-surface) !important;
	border: 1px solid var(--icbe-border);
	border-radius: var(--icbe-radius-lg);
	box-shadow: var(--icbe-shadow-sm);
	padding: 8px 36px 12px;
	margin: 28px 0;
}
@media (max-width: 640px) { .icbe-body-card { padding: 4px 20px 8px; } }
.icbe-body h2 {
	font-size: 21px !important; margin: 40px 0 14px !important; padding-top: 22px !important;
	border-top: 1px solid var(--icbe-border) !important; font-weight: 800 !important; letter-spacing: -.01em !important;
	color: var(--icbe-text) !important; display: flex; align-items: center; gap: 10px; background: none !important;
}
.icbe-body h2::before {
	content: ""; display: inline-block; width: 9px; height: 9px; border-radius: 3px;
	background: var(--icbe-gold-500) !important; flex-shrink: 0;
}
.icbe-body h2:first-child { border-top: none !important; padding-top: 24px !important; margin-top: 0 !important; }
.icbe-body p { color: var(--icbe-text) !important; font-size: 15.5px; margin: 0 0 16px; }
.icbe-body ul, .icbe-body ol { color: var(--icbe-text) !important; margin: 0 0 16px 22px; padding: 0; }
.icbe-body a { color: var(--icbe-blue-600) !important; }

/* ---------- On-page table of contents ---------- */
.icbe-content-layout { display: grid; grid-template-columns: 220px 1fr; gap: 28px; align-items: start; }
@media (max-width: 900px) { .icbe-content-layout { grid-template-columns: 1fr; } .icbe-toc { display: none; } }
.icbe-toc {
	position: sticky; top: 20px; background: var(--icbe-surface) !important; border: 1px solid var(--icbe-border);
	border-radius: var(--icbe-radius); padding: 18px 20px;
}
.icbe-toc h3 { margin: 0 0 10px !important; font-size: 12px !important; text-transform: uppercase !important; letter-spacing: .06em !important; color: var(--icbe-text-muted) !important; border: none !important; }
.icbe-toc ol { list-style: none !important; margin: 0 !important; padding: 0 !important; counter-reset: icbe-toc; display: flex; flex-direction: column; gap: 2px; }
.icbe-toc li { counter-increment: icbe-toc; }
.icbe-toc a {
	display: flex; gap: 8px; padding: 7px 8px; border-radius: 6px; font-size: 13px !important;
	color: var(--icbe-text-muted) !important; text-decoration: none !important; line-height: 1.35;
}
.icbe-toc a::before { content: counter(icbe-toc); color: var(--icbe-gold-600) !important; font-weight: 700; flex-shrink: 0; }
.icbe-toc a:hover { background: var(--icbe-surface-2) !important; color: var(--icbe-text) !important; }

/* ---------- Verdict ---------- */
.icbe-verdict-box { background: var(--icbe-surface-2) !important; border-left: 4px solid var(--icbe-gold-500) !important; border-radius: 0 var(--icbe-radius) var(--icbe-radius) 0; padding: 20px 24px; margin: 4px 0 28px; }
.icbe-verdict-box p { color: var(--icbe-text) !important; margin: 0 0 12px; }
.icbe-verdict-box p:last-child { margin-bottom: 0; }

/* ---------- FAQ (accordion) ---------- */
.icbe-faq-list { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.icbe-faq-item { border: 1px solid var(--icbe-border); border-radius: var(--icbe-radius-sm); background: var(--icbe-surface) !important; overflow: hidden; }
.icbe-faq-item summary {
	cursor: pointer; padding: 15px 18px; font-weight: 600 !important; font-size: 14.5px;
	list-style: none; display: flex; justify-content: space-between; gap: 12px; align-items: center;
	color: var(--icbe-text) !important;
}
.icbe-faq-item summary::-webkit-details-marker { display: none; }
.icbe-faq-item summary::after { content: "+"; font-size: 20px; color: var(--icbe-text-muted) !important; flex-shrink: 0; }
.icbe-faq-item[open] summary::after { content: "–"; }
.icbe-faq-item .icbe-faq-answer { padding: 0 18px 16px; color: var(--icbe-text-muted) !important; font-size: 14px; }
.icbe-faq-item .icbe-faq-answer p { color: var(--icbe-text-muted) !important; margin: 0; }

/* ---------- Also Featured In ---------- */
.icbe-featured-in { margin: 32px 0; padding: 22px 24px; background: var(--icbe-blue-50) !important; border-radius: var(--icbe-radius); }
@media (prefers-color-scheme: dark) { .icbe-featured-in { background: var(--icbe-surface-2) !important; } }
.icbe-featured-in h3 { margin: 0 0 12px !important; font-size: 14px !important; text-transform: uppercase !important; letter-spacing: .06em !important; color: var(--icbe-blue-600) !important; border: none !important; }
.icbe-chip-list { display: flex !important; flex-wrap: wrap; gap: 10px; list-style: none !important; margin: 0 !important; padding: 0 !important; }
.icbe-chip {
	display: inline-flex !important; align-items: center !important; gap: 6px !important;
	padding: 8px 14px !important; border-radius: 999px !important; box-sizing: border-box !important;
	background: var(--icbe-surface) !important; border: 1px solid var(--icbe-border); font-size: 13.5px !important; font-weight: 600 !important;
	text-decoration: none !important; color: var(--icbe-text) !important; line-height: 1.2 !important;
}
.icbe-chip:hover { border-color: var(--icbe-blue-600); color: var(--icbe-blue-600) !important; }
.icbe-chip::before { content: "✓"; color: var(--icbe-green-600) !important; }

/* ================= Broker Query Block: Cards ================= */
.icbe-broker-list { margin: 24px 0; display: flex; flex-direction: column; gap: 14px; }
.icbe-broker-card {
	position: relative;
	display: grid; grid-template-columns: 40px 56px 1fr auto auto; gap: 18px; align-items: center;
	background: var(--icbe-surface) !important; border: 1px solid var(--icbe-border); border-radius: var(--icbe-radius);
	padding: 18px 20px; box-shadow: var(--icbe-shadow-sm); transition: box-shadow .15s ease, transform .15s ease;
}
.icbe-broker-card.icbe-rank-1 { border-color: var(--icbe-gold-500); box-shadow: 0 0 0 1px var(--icbe-gold-500), var(--icbe-shadow); }
.icbe-broker-card:hover { box-shadow: var(--icbe-shadow); transform: translateY(-1px); }
.icbe-editors-choice {
	position: absolute; top: -11px; left: 20px; background: linear-gradient(135deg, var(--icbe-gold-500), var(--icbe-gold-600)) !important;
	color: #241905 !important; font-size: 10.5px !important; font-weight: 800 !important; text-transform: uppercase; letter-spacing: .04em;
	padding: 4px 10px; border-radius: 999px; box-shadow: 0 4px 10px rgba(200,146,42,.4);
}
.icbe-broker-rank { font-size: 20px; font-weight: 800 !important; color: var(--icbe-gray-300) !important; text-align: center; }
.icbe-broker-rank.top { color: var(--icbe-gold-500) !important; }
.icbe-broker-logo { width: 56px; height: 56px; border-radius: 10px; background: var(--icbe-gray-50) !important; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.icbe-broker-logo img { max-width: 80%; max-height: 80%; object-fit: contain; }
.icbe-broker-main a.icbe-broker-name { font-size: 16.5px; font-weight: 700 !important; color: var(--icbe-text) !important; text-decoration: none !important; }
.icbe-broker-main a.icbe-broker-name:hover { color: var(--icbe-blue-600) !important; }
.icbe-broker-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.icbe-badge { display: inline-block !important; font-size: 11.5px !important; font-weight: 600 !important; padding: 3px 9px !important; border-radius: 999px !important; box-sizing: border-box !important; line-height: 1.5 !important; background: var(--icbe-gray-100) !important; color: var(--icbe-gray-700) !important; }
@media (prefers-color-scheme: dark) { .icbe-badge { background: var(--icbe-surface-2) !important; color: var(--icbe-text-muted) !important; } }
.icbe-broker-score { text-align: center !important; line-height: 1.3 !important; }
.icbe-broker-score .num { display: block !important; font-size: 19px !important; font-weight: 800 !important; color: var(--icbe-navy-800) !important; }
@media (prefers-color-scheme: dark) { .icbe-broker-score .num { color: #fff !important; } }
.icbe-broker-score .lbl { display: block !important; font-size: 10.5px !important; color: var(--icbe-text-muted) !important; text-transform: uppercase !important; letter-spacing: .04em; }

@media (max-width: 680px) {
	.icbe-broker-card { grid-template-columns: 32px 44px 1fr; }
	.icbe-broker-score, .icbe-broker-cta { grid-column: 1 / -1; }
}

/* ---------- Compact list mode ---------- */
.icbe-broker-compact-list { list-style: none !important; margin: 20px 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.icbe-broker-compact-list li { display: flex; justify-content: space-between; padding: 10px 14px; border-bottom: 1px solid var(--icbe-border); font-size: 14.5px; color: var(--icbe-text) !important; }
.icbe-broker-compact-list a { color: var(--icbe-text) !important; text-decoration: none !important; font-weight: 600 !important; }
.icbe-broker-compact-list .icbe-score-chip { color: var(--icbe-gold-600) !important; font-weight: 700 !important; }

/* ---------- Comparison / data table ---------- */
.icbe-table-wrap { overflow-x: auto; margin: 24px 0; border-radius: var(--icbe-radius); border: 1px solid var(--icbe-border); }
table.icbe-table { width: 100%; border-collapse: collapse; font-size: 14px; background: var(--icbe-surface) !important; }
table.icbe-table th, table.icbe-table td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--icbe-border); color: var(--icbe-text) !important; }
table.icbe-table thead th { background: var(--icbe-surface-2) !important; font-weight: 700 !important; font-size: 12.5px; text-transform: uppercase; letter-spacing: .04em; color: var(--icbe-text-muted) !important; }
table.icbe-table tbody tr:last-child td { border-bottom: none; }
table.icbe-table tbody tr:hover { background: var(--icbe-surface-2) !important; }
table.icbe-table td.icbe-cta-cell { text-align: right; }
table.icbe-table .yes { color: var(--icbe-green-600) !important; font-weight: 700 !important; }
table.icbe-table .no { color: var(--icbe-red-600) !important; font-weight: 700 !important; }

/* ================= Best Page ================= */
.icbe-best-header { text-align: center; max-width: 760px; margin: 32px auto 12px; }
.icbe-best-header h1 { font-size: 34px !important; font-weight: 800 !important; letter-spacing: -.02em !important; margin: 0 0 10px !important; padding: 0 !important; border: none !important; color: var(--icbe-text) !important; background: none !important; line-height: 1.2 !important; }
.icbe-best-header .icbe-updated { font-size: 13px; color: var(--icbe-text-muted) !important; }
.icbe-methodology { background: var(--icbe-surface-2) !important; border-radius: var(--icbe-radius); padding: 24px 26px; margin: 28px 0; }
.icbe-methodology h2 { margin-top: 0 !important; border: none !important; padding-top: 0 !important; }
.icbe-methodology p { color: var(--icbe-text) !important; }

/* ---------- Related pages ---------- */
.icbe-related { margin: 40px 0 20px; padding-top: 28px; border-top: 1px solid var(--icbe-border); }
.icbe-related h3 { font-size: 15px !important; text-transform: uppercase !important; letter-spacing: .06em !important; color: var(--icbe-text-muted) !important; margin-bottom: 14px !important; border: none !important; }
.icbe-related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.icbe-related-card { display: block !important; box-sizing: border-box !important; padding: 16px 18px !important; border-radius: var(--icbe-radius-sm) !important; border: 1px solid var(--icbe-border); text-decoration: none !important; color: var(--icbe-text) !important; font-weight: 600 !important; font-size: 14px !important; background: var(--icbe-surface) !important; }
.icbe-related-card:hover { border-color: var(--icbe-blue-600); color: var(--icbe-blue-600) !important; }

/* ---------- Comparison page ---------- */
.icbe-vs-header { display: grid !important; grid-template-columns: 1fr auto 1fr !important; align-items: center !important; gap: 20px !important; margin: 28px 0 24px !important; }
@media (max-width: 680px) { .icbe-vs-header { grid-template-columns: 1fr !important; } }
.icbe-vs-side {
	position: relative; text-align: center !important; background: var(--icbe-surface) !important;
	border: 1px solid var(--icbe-border); border-radius: var(--icbe-radius-lg) !important; padding: 28px 22px !important;
	box-shadow: var(--icbe-shadow-sm); display: flex !important; flex-direction: column !important; align-items: center !important; gap: 4px;
}
.icbe-vs-side.icbe-vs-winner { border-color: var(--icbe-gold-500) !important; box-shadow: 0 0 0 1px var(--icbe-gold-500), var(--icbe-shadow) !important; }
.icbe-vs-ribbon { position: static !important; margin-bottom: 6px !important; }
.icbe-vs-logo { width: 72px !important; height: 72px !important; border-radius: var(--icbe-radius) !important; background: var(--icbe-gray-50) !important; display: flex !important; align-items: center !important; justify-content: center !important; overflow: hidden; margin-bottom: 6px; }
.icbe-vs-logo img { max-width: 80% !important; max-height: 80% !important; object-fit: contain; }
.icbe-vs-logo .icbe-logo-placeholder { font-size: 22px !important; font-weight: 800 !important; color: var(--icbe-navy-800) !important; }
.icbe-vs-side h2 { margin: 4px 0 !important; font-size: 19px !important; border: none !important; padding: 0 !important; }
.icbe-vs-side h2 a { color: var(--icbe-text) !important; text-decoration: none !important; }
.icbe-vs-badges { display: flex !important; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 6px; }
.icbe-vs-score { margin: 8px 0 !important; }
.icbe-vs-quickfacts {
	display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 4px !important;
	width: 100% !important; padding: 12px 4px !important; margin: 4px 0 !important;
	border-top: 1px solid var(--icbe-border) !important; border-bottom: 1px solid var(--icbe-border) !important;
}
.icbe-vs-quickfacts > div { text-align: center !important; }
.icbe-vs-quickfacts strong { display: block !important; font-size: 14px !important; font-weight: 800 !important; color: var(--icbe-text) !important; }
.icbe-vs-quickfacts span { display: block !important; font-size: 10.5px !important; color: var(--icbe-text-muted) !important; text-transform: uppercase; letter-spacing: .03em; margin-top: 2px; }
.icbe-vs-ctas { display: flex !important; flex-direction: column !important; gap: 8px !important; width: 100% !important; margin-top: 6px; }
.icbe-vs-badge { font-weight: 800 !important; font-size: 22px; color: var(--icbe-gray-300) !important; }

/* ---------- Key Differences summary ---------- */
.icbe-key-diffs {
	background: linear-gradient(135deg, var(--icbe-navy-900), var(--icbe-navy-700)) !important;
	border-radius: var(--icbe-radius-lg) !important; padding: 24px 28px !important; margin: 24px 0 !important;
}
.icbe-key-diffs h3 {
	margin: 0 0 14px !important; font-size: 13px !important; text-transform: uppercase !important; letter-spacing: .06em !important;
	font-weight: 800 !important; border: none !important; padding: 0 !important;
}
.icbe-key-diffs, .icbe-key-diffs h3 { color: #fff !important; }
.icbe-key-diffs ul { list-style: none !important; margin: 0 !important; padding: 0 !important; display: grid !important; gap: 10px !important; }
.icbe-key-diffs li { position: relative; padding-left: 26px !important; font-size: 14.5px !important; color: #e7ecf5 !important; line-height: 1.5 !important; }
.icbe-key-diffs li::before {
	content: "→"; position: absolute; left: 0; top: 0; color: var(--icbe-gold-500) !important; font-weight: 800 !important;
}

.icbe-radar-card-centered { max-width: 460px !important; margin-left: auto !important; margin-right: auto !important; text-align: center; }
.icbe-compare-hint { font-size: 12.5px !important; color: var(--icbe-text-muted) !important; margin: 0 0 4px !important; }
.icbe-compare-table-card table.icbe-table { margin: 0; }

/* Dual radar (comparison page): brand gold for broker A, teal-blue for B. */
.icbe-radar-fill-a {
	fill: rgba(200, 146, 42, .25) !important; stroke: var(--icbe-gold-500) !important; stroke-width: 2.5 !important;
	stroke-linejoin: round; stroke-linecap: round; transform-box: fill-box; transform-origin: center;
	stroke-dasharray: 1000; stroke-dashoffset: 1000;
	animation: icbe-radar-in .8s cubic-bezier(.22,1,.36,1) both, icbe-radar-draw 1.2s ease-out .05s both;
}
.icbe-radar-fill-b {
	fill: rgba(37, 99, 235, .18) !important; stroke: var(--icbe-blue-600) !important; stroke-width: 2.5 !important;
	stroke-linejoin: round; stroke-linecap: round; transform-box: fill-box; transform-origin: center;
	stroke-dasharray: 1000; stroke-dashoffset: 1000;
	animation: icbe-radar-in 1s cubic-bezier(.22,1,.36,1) .1s both, icbe-radar-draw 1.2s ease-out .3s both;
}
.icbe-radar-legend { display: flex !important; justify-content: center !important; gap: 20px !important; margin-top: 8px; }
.icbe-radar-legend-item { display: inline-flex !important; align-items: center !important; gap: 6px !important; font-size: 12.5px !important; font-weight: 600 !important; color: var(--icbe-text) !important; }
.icbe-legend-dot { display: inline-block !important; width: 10px !important; height: 10px !important; border-radius: 50% !important; }
.icbe-legend-dot-a { background: var(--icbe-gold-500) !important; }
.icbe-legend-dot-b { background: var(--icbe-blue-600) !important; }

/* Winner highlighting in the comparison table */
table.icbe-table td.icbe-winner-cell { background: var(--icbe-green-50) !important; font-weight: 800 !important; color: var(--icbe-green-600) !important; }
.icbe-winner-check { color: var(--icbe-green-600) !important; margin-right: 4px; }

/* ---------- Author / trust bar (E-E-A-T, §7.5 / §16.8) ---------- */
.icbe-trust-bar { display: flex; align-items: center; gap: 14px; margin: 8px 0 24px; padding: 14px 18px; background: var(--icbe-surface-2) !important; border-radius: var(--icbe-radius-sm); font-size: 13px; color: var(--icbe-text-muted) !important; flex-wrap: wrap; }
.icbe-trust-bar .icbe-author { font-weight: 700 !important; color: var(--icbe-text) !important; }
.icbe-trust-bar a { color: inherit !important; }

/* ---------- Empty / thin states ---------- */
.icbe-empty-state { text-align: center; padding: 40px 20px; color: var(--icbe-text-muted) !important; font-size: 14px; }
