/* =========================================================
   MULTIDIAGNÓSTICO — Design System
   Paleta: azul profundo + gradiente elétrico + glass
   ========================================================= */

:root {
	/* Colors — deep navy + electric blue + cyan accent */
	--mdx-navy-950: #050b1e;
	--mdx-navy-900: #0a1332;
	--mdx-navy-800: #10214f;
	--mdx-navy-700: #1a3576;
	--mdx-navy-600: #2a4fa8;
	--mdx-blue-600: #1e5eff;
	--mdx-blue-500: #3a7bff;
	--mdx-blue-400: #5b93ff;
	--mdx-cyan-500: #00d4ff;
	--mdx-cyan-400: #4ce0ff;

	--mdx-white:     #ffffff;
	--mdx-cloud:     #f5f8ff;
	--mdx-mist:      #eaf0fb;
	--mdx-ink:       #0f172a;
	--mdx-ink-2:     #334155;
	--mdx-ink-3:     #64748b;
	--mdx-line:      #dbe4f0;

	/* Gradients */
	--mdx-grad-hero:   linear-gradient(135deg, #050b1e 0%, #10214f 45%, #1e5eff 100%);
	--mdx-grad-blue:   linear-gradient(120deg, #1e5eff 0%, #00d4ff 100%);
	--mdx-grad-soft:   linear-gradient(180deg, #f5f8ff 0%, #ffffff 100%);
	--mdx-grad-card:   linear-gradient(160deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,.03) 100%);

	/* Type */
	--mdx-font-body: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
	--mdx-font-head: 'Manrope', 'Inter', system-ui, sans-serif;
	--mdx-font-mono: 'Space Grotesk', 'Inter', sans-serif;

	/* Space */
	--mdx-r-sm: 10px;
	--mdx-r:    16px;
	--mdx-r-lg: 24px;
	--mdx-r-xl: 32px;

	/* Shadow */
	--mdx-shadow-sm: 0 2px 8px rgba(30, 94, 255, .08);
	--mdx-shadow:    0 10px 30px rgba(15, 45, 130, .10);
	--mdx-shadow-lg: 0 30px 60px rgba(15, 45, 130, .18);
	--mdx-shadow-blue: 0 20px 40px rgba(30, 94, 255, .30);

	/* Container */
	--mdx-container-pad: clamp(16px, 4vw, 40px);
}

/* Reset & base */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--mdx-font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--mdx-ink);
	background: var(--mdx-white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--mdx-blue-600); text-decoration: none; }
a:hover { color: var(--mdx-navy-700); }
h1, h2, h3, h4, h5, h6 {
	font-family: var(--mdx-font-head);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--mdx-ink);
	line-height: 1.15;
	margin: 0 0 .5em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p  { margin: 0 0 1em; color: var(--mdx-ink-2); }
p:last-child { margin-bottom: 0; }

/* Skip link */
.mdx-skip {
	position: absolute; left: -9999px; top: 12px;
	background: var(--mdx-navy-900); color: #fff;
	padding: 10px 16px; border-radius: 8px; z-index: 999;
}
.mdx-skip:focus { left: 12px; }

/* =========================================================
   LAYOUT — FULL WIDTH + fluid gutter
   ========================================================= */
.mdx-wrap {
	width: 100%;
	padding-inline: var(--mdx-container-pad);
	margin-inline: auto;
}
.mdx-section {
	padding-block: clamp(64px, 10vw, 120px);
}
.mdx-section--tight { padding-block: clamp(48px, 6vw, 80px); }

/* =========================================================
   ANNOUNCEMENT BAR — pré-inauguração
   ========================================================= */
.mdx-announce {
	background: var(--mdx-grad-blue);
	color: white;
	font-size: 14px;
	font-weight: 500;
	position: relative;
	overflow: hidden;
}
.mdx-announce::before {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.12) 50%, transparent 100%);
	transform: translateX(-100%);
	animation: mdxShine 4s ease-in-out infinite;
	pointer-events: none;
}
@keyframes mdxShine {
	0%, 20% { transform: translateX(-100%); }
	60%, 100% { transform: translateX(100%); }
}
.mdx-announce__inner {
	display: flex; align-items: center; justify-content: center; gap: 16px 24px;
	padding-block: 10px;
	flex-wrap: wrap;
	text-align: center;
	position: relative; z-index: 1;
}
.mdx-announce__text {
	font-weight: 600;
	letter-spacing: -0.01em;
}
.mdx-announce__cta {
	display: inline-flex; align-items: center; gap: 4px;
	background: rgba(255,255,255,.18);
	color: white;
	padding: 4px 12px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 13px;
	transition: background .15s;
	backdrop-filter: blur(4px);
}
.mdx-announce__cta:hover { background: rgba(255,255,255,.28); color: white; }
@media (max-width: 640px) {
	.mdx-announce { font-size: 13px; }
	.mdx-announce__inner { padding-block: 8px; gap: 8px 16px; }
}

/* Badge EM BREVE ao lado da marca */
.mdx-brand__badge {
	display: inline-flex; align-items: center;
	background: linear-gradient(120deg, var(--mdx-cyan-500), var(--mdx-blue-500));
	color: white;
	font-family: var(--mdx-font-mono);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .1em;
	padding: 3px 8px;
	border-radius: 6px;
	margin-left: 6px;
	line-height: 1;
	box-shadow: 0 4px 12px rgba(0, 212, 255, .35);
	animation: mdxPulseBadge 2.4s ease-in-out infinite;
}
@keyframes mdxPulseBadge {
	0%, 100% { transform: scale(1); }
	50%      { transform: scale(1.05); }
}
@media (max-width: 480px) {
	.mdx-brand__badge { display: none; }
}

/* =========================================================
   HEADER — sticky glass
   ========================================================= */
.mdx-header {
	position: sticky; top: 0; left: 0; right: 0;
	z-index: 100;
	background: rgba(255,255,255,.72);
	backdrop-filter: saturate(180%) blur(18px);
	-webkit-backdrop-filter: saturate(180%) blur(18px);
	border-bottom: 1px solid rgba(20, 40, 90, .08);
	transition: background .2s;
}
.mdx-header__inner {
	display: flex; align-items: center; justify-content: space-between;
	gap: 24px; padding-block: 14px;
}
.mdx-brand {
	font-family: var(--mdx-font-head);
	font-weight: 800;
	font-size: 22px;
	letter-spacing: -0.02em;
	color: var(--mdx-navy-900);
	display: inline-flex; align-items: center; gap: 10px;
}
.mdx-brand__mark {
	display: inline-grid; place-items: center;
	width: 40px; height: 40px;
	border-radius: 12px;
	background: var(--mdx-grad-blue);
	color: white;
	font-family: var(--mdx-font-mono);
	font-weight: 700;
	box-shadow: var(--mdx-shadow-sm);
}
.mdx-brand__mark svg { width: 22px; height: 22px; }
.mdx-brand strong { color: var(--mdx-blue-600); font-weight: 800; }

.mdx-nav {
	display: flex; align-items: center; gap: 4px;
}
.mdx-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 4px; align-items: center; }
.mdx-nav a {
	display: block; padding: 10px 14px;
	color: var(--mdx-navy-900);
	font-weight: 500; font-size: 15px;
	border-radius: 10px;
	transition: all .15s;
}
.mdx-nav a:hover { background: var(--mdx-mist); color: var(--mdx-blue-600); }
.mdx-nav .current-menu-item a,
.mdx-nav .current_page_item a { color: var(--mdx-blue-600); font-weight: 600; }

.mdx-header__cta {
	display: flex; align-items: center; gap: 10px;
}
.mdx-header__phone {
	display: inline-flex; align-items: center; gap: 8px;
	color: var(--mdx-navy-900); font-weight: 600; font-size: 15px;
	padding: 8px 12px; border-radius: 10px;
	transition: background .15s;
}
.mdx-header__phone:hover { background: var(--mdx-mist); color: var(--mdx-blue-600); }
.mdx-header__phone svg { width: 16px; height: 16px; color: var(--mdx-blue-600); }

/* Mobile menu toggle */
.mdx-burger {
	display: none;
	width: 44px; height: 44px;
	background: transparent; border: 0;
	border-radius: 10px;
	cursor: pointer;
	padding: 0;
	position: relative;
}
.mdx-burger span {
	position: absolute; left: 12px; right: 12px; height: 2px;
	background: var(--mdx-navy-900); border-radius: 2px;
	transition: transform .2s, top .2s, opacity .2s;
}
.mdx-burger span:nth-child(1) { top: 15px; }
.mdx-burger span:nth-child(2) { top: 21px; }
.mdx-burger span:nth-child(3) { top: 27px; }
.mdx-burger[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.mdx-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mdx-burger[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* =========================================================
   BUTTONS
   ========================================================= */
.mdx-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 14px 22px;
	font-family: var(--mdx-font-body);
	font-weight: 600; font-size: 15px; line-height: 1;
	border-radius: 12px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform .15s, box-shadow .15s, background .15s, color .15s, border-color .15s;
	text-align: center;
	min-height: 48px;
	white-space: nowrap;
}
.mdx-btn--primary {
	background: var(--mdx-grad-blue);
	color: white;
	box-shadow: var(--mdx-shadow-blue);
}
.mdx-btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 25px 50px rgba(30, 94, 255, .40);
	color: white;
}
.mdx-btn--ghost {
	background: transparent;
	color: var(--mdx-navy-900);
	border-color: rgba(15, 30, 80, .18);
}
.mdx-btn--ghost:hover {
	background: var(--mdx-navy-900);
	color: white;
	border-color: var(--mdx-navy-900);
}
.mdx-btn--light {
	background: rgba(255,255,255,.10);
	color: white;
	border: 1px solid rgba(255,255,255,.22);
	backdrop-filter: blur(8px);
}
.mdx-btn--light:hover {
	background: rgba(255,255,255,.18);
	color: white;
}
.mdx-btn--big { padding: 18px 28px; font-size: 16px; min-height: 56px; }
.mdx-btn svg { width: 18px; height: 18px; }

/* =========================================================
   HERO — dramatic gradient + glass card + animated shapes
   ========================================================= */
.mdx-hero {
	position: relative;
	background: var(--mdx-grad-hero);
	color: white;
	overflow: hidden;
	padding-block: clamp(90px, 14vw, 160px) clamp(90px, 12vw, 140px);
	isolation: isolate;
}
.mdx-hero::before,
.mdx-hero::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: .55;
	z-index: -1;
	pointer-events: none;
}
.mdx-hero::before {
	width: 55vw; height: 55vw; max-width: 700px; max-height: 700px;
	top: -20%; right: -10%;
	background: radial-gradient(circle, var(--mdx-cyan-500) 0%, transparent 70%);
	animation: mdxFloat 18s ease-in-out infinite;
}
.mdx-hero::after {
	width: 40vw; height: 40vw; max-width: 500px; max-height: 500px;
	bottom: -15%; left: -8%;
	background: radial-gradient(circle, var(--mdx-blue-500) 0%, transparent 70%);
	animation: mdxFloat 22s ease-in-out infinite reverse;
}
@keyframes mdxFloat {
	0%,100% { transform: translate(0,0) scale(1); }
	50%     { transform: translate(30px,-40px) scale(1.08); }
}

.mdx-hero__grid {
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	gap: clamp(40px, 6vw, 80px);
	align-items: center;
}
.mdx-hero__super {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 8px 16px;
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.16);
	border-radius: 999px;
	font-family: var(--mdx-font-mono);
	font-size: 12px; font-weight: 600;
	letter-spacing: .12em; text-transform: uppercase;
	color: var(--mdx-cyan-400);
	backdrop-filter: blur(8px);
	margin-bottom: 24px;
}
.mdx-hero__super::before {
	content: ""; width: 8px; height: 8px; border-radius: 50%;
	background: var(--mdx-cyan-400);
	box-shadow: 0 0 12px var(--mdx-cyan-500);
	animation: mdxPulse 2s ease-in-out infinite;
}
@keyframes mdxPulse { 50% { opacity: .35; transform: scale(.8); } }

.mdx-hero__title {
	color: white;
	font-size: clamp(2.4rem, 5.5vw, 4.25rem);
	line-height: 1.05;
	margin-bottom: 24px;
}
.mdx-hero__title em {
	font-style: normal;
	background: linear-gradient(120deg, var(--mdx-cyan-400) 0%, var(--mdx-blue-400) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.mdx-hero__sub {
	color: rgba(255,255,255,.85);
	font-size: clamp(1rem, 1.6vw, 1.2rem);
	max-width: 42em;
	margin-bottom: 40px;
}
.mdx-hero__cta {
	display: flex; flex-wrap: wrap; gap: 12px;
}

/* Glass card com estatísticas */
.mdx-hero__card {
	background: var(--mdx-grad-card);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255,255,255,.18);
	border-radius: var(--mdx-r-xl);
	padding: 32px;
	box-shadow: var(--mdx-shadow-lg);
	position: relative;
	overflow: hidden;
}
.mdx-hero__card::before {
	content: "";
	position: absolute; inset: 0;
	background: radial-gradient(circle at top right, rgba(0, 212, 255, .10), transparent 50%);
	pointer-events: none;
}
.mdx-hero__card h3 {
	color: white; font-size: 1.15rem; margin-bottom: 20px;
	display: flex; align-items: center; gap: 10px;
}
.mdx-stats {
	display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.mdx-stat__num {
	font-family: var(--mdx-font-mono);
	font-size: clamp(1.75rem, 3.6vw, 2.5rem);
	font-weight: 700;
	color: white;
	line-height: 1;
	margin-bottom: 6px;
	display: flex; align-items: baseline; gap: 4px;
}
.mdx-stat__num span {
	font-size: .55em;
	color: var(--mdx-cyan-400);
}
.mdx-stat__label {
	color: rgba(255,255,255,.7);
	font-size: 13px;
	line-height: 1.4;
}
.mdx-hero__quickinfo {
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid rgba(255,255,255,.15);
	display: grid; grid-template-columns: auto 1fr; gap: 10px 14px;
	font-size: 14px;
	color: rgba(255,255,255,.85);
}
.mdx-hero__quickinfo strong { color: white; font-weight: 600; }
.mdx-hero__quickinfo .k { color: var(--mdx-cyan-400); font-weight: 600; }

/* Trust bar após hero */
.mdx-trust {
	background: var(--mdx-navy-950);
	color: rgba(255,255,255,.8);
	padding-block: 32px;
	border-top: 1px solid rgba(255,255,255,.06);
}
.mdx-trust__inner {
	display: flex; flex-wrap: wrap; align-items: center;
	justify-content: space-between; gap: 24px;
}
.mdx-trust__label {
	font-family: var(--mdx-font-mono);
	text-transform: uppercase;
	font-size: 12px; letter-spacing: .15em;
	color: rgba(255,255,255,.5);
}
.mdx-trust__badges {
	display: flex; flex-wrap: wrap; gap: 12px 20px;
	font-weight: 600; font-size: 14px;
}
.mdx-trust__badge {
	display: inline-flex; align-items: center; gap: 6px;
	color: rgba(255,255,255,.75);
}
.mdx-trust__badge svg { color: var(--mdx-cyan-400); }

/* =========================================================
   SECTION HEADERS
   ========================================================= */
.mdx-shead {
	max-width: 780px;
	margin-bottom: clamp(40px, 6vw, 64px);
}
.mdx-shead--center { margin-inline: auto; text-align: center; }
.mdx-shead__eyebrow {
	display: inline-block;
	font-family: var(--mdx-font-mono);
	font-weight: 600; font-size: 12px;
	letter-spacing: .15em; text-transform: uppercase;
	color: var(--mdx-blue-600);
	margin-bottom: 12px;
}
.mdx-shead__title {
	font-size: clamp(1.85rem, 3.8vw, 2.6rem);
	color: var(--mdx-navy-900);
	margin-bottom: 12px;
}
.mdx-shead__title em {
	font-style: normal;
	background: var(--mdx-grad-blue);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.mdx-shead__sub {
	font-size: clamp(1rem, 1.4vw, 1.125rem);
	color: var(--mdx-ink-3);
	max-width: 45em;
}
.mdx-shead--center .mdx-shead__sub { margin-inline: auto; }

/* =========================================================
   EXAM GRID — cards with icon and hover reveal
   ========================================================= */
.mdx-exgrid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
}
.mdx-excard {
	background: white;
	border: 1px solid var(--mdx-line);
	border-radius: var(--mdx-r-lg);
	padding: 28px;
	transition: transform .18s, box-shadow .18s, border-color .18s;
	position: relative;
	overflow: hidden;
	display: flex; flex-direction: column;
}
.mdx-excard:hover {
	transform: translateY(-4px);
	box-shadow: var(--mdx-shadow-lg);
	border-color: transparent;
}
.mdx-excard__icon {
	display: inline-grid; place-items: center;
	width: 56px; height: 56px;
	border-radius: 16px;
	background: var(--mdx-mist);
	font-size: 26px;
	color: var(--mdx-blue-600);
	margin-bottom: 20px;
	transition: transform .18s, background .18s;
}
.mdx-excard:hover .mdx-excard__icon {
	background: var(--mdx-grad-blue);
	transform: scale(1.05) rotate(-6deg);
}
.mdx-excard__title {
	font-size: 1.15rem; font-weight: 700;
	color: var(--mdx-navy-900);
	margin-bottom: 8px;
}
.mdx-excard__desc {
	color: var(--mdx-ink-3);
	font-size: 14px; line-height: 1.55;
	margin-bottom: 20px;
	flex: 1;
}
.mdx-excard__meta {
	display: flex; flex-wrap: wrap; gap: 6px;
	margin-bottom: 16px;
}
.mdx-tag {
	display: inline-flex; align-items: center; gap: 4px;
	padding: 4px 10px;
	background: var(--mdx-mist);
	color: var(--mdx-navy-700);
	font-size: 12px; font-weight: 500;
	border-radius: 999px;
}
.mdx-tag svg { width: 12px; height: 12px; }
.mdx-excard__link {
	display: inline-flex; align-items: center; gap: 6px;
	color: var(--mdx-blue-600);
	font-weight: 600; font-size: 14px;
	margin-top: auto;
}
.mdx-excard__link:hover { color: var(--mdx-navy-900); gap: 10px; }

/* =========================================================
   CATEGORY TABS FILTER
   ========================================================= */
.mdx-catbar {
	display: flex; flex-wrap: wrap; gap: 8px;
	margin-bottom: 32px;
}
.mdx-catbar__btn {
	padding: 10px 18px;
	background: white;
	border: 1px solid var(--mdx-line);
	border-radius: 999px;
	font-family: var(--mdx-font-body);
	font-weight: 500; font-size: 14px;
	color: var(--mdx-ink-2);
	cursor: pointer;
	transition: all .15s;
}
.mdx-catbar__btn:hover { border-color: var(--mdx-blue-500); color: var(--mdx-blue-600); }
.mdx-catbar__btn.is-active {
	background: var(--mdx-navy-900);
	color: white;
	border-color: var(--mdx-navy-900);
}

/* =========================================================
   SPLIT (two-column) SECTION
   ========================================================= */
.mdx-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(32px, 5vw, 64px);
	align-items: center;
}
.mdx-split--image { background: var(--mdx-navy-900); color: white; padding: 64px 48px; border-radius: var(--mdx-r-xl); position: relative; overflow: hidden; }
.mdx-split--image h2 { color: white; }
.mdx-split--image p { color: rgba(255,255,255,.75); }
.mdx-split--image::before {
	content: ""; position: absolute; inset: 0; z-index: 0; opacity: .3;
	background: radial-gradient(circle at bottom right, var(--mdx-cyan-500), transparent 60%);
}
.mdx-split--image > * { position: relative; z-index: 1; }

/* =========================================================
   HOW IT WORKS — timeline
   ========================================================= */
.mdx-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 24px;
	counter-reset: mdxstep;
}
.mdx-step {
	position: relative;
	padding-top: 60px;
}
.mdx-step::before {
	counter-increment: mdxstep;
	content: counter(mdxstep, decimal-leading-zero);
	position: absolute; top: 0; left: 0;
	font-family: var(--mdx-font-mono);
	font-size: 48px; font-weight: 700;
	color: transparent;
	-webkit-text-stroke: 1.5px var(--mdx-blue-500);
	line-height: 1;
}
.mdx-step h3 {
	font-size: 1.15rem;
	margin-bottom: 8px;
	color: var(--mdx-navy-900);
}
.mdx-step p { color: var(--mdx-ink-3); font-size: 15px; }

/* =========================================================
   SPECIALTY PILL LIST
   ========================================================= */
.mdx-esplist {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 16px;
}
.mdx-esp {
	background: white;
	border: 1px solid var(--mdx-line);
	border-radius: var(--mdx-r);
	padding: 22px;
	transition: all .18s;
	display: flex; align-items: center; gap: 14px;
}
.mdx-esp:hover {
	border-color: transparent;
	background: var(--mdx-grad-blue);
	color: white;
	transform: translateX(4px);
	box-shadow: var(--mdx-shadow-blue);
}
.mdx-esp__icon {
	width: 44px; height: 44px; flex: 0 0 44px;
	display: grid; place-items: center;
	background: var(--mdx-mist);
	border-radius: 12px;
	font-size: 22px;
	transition: all .18s;
}
.mdx-esp:hover .mdx-esp__icon { background: rgba(255,255,255,.20); }
.mdx-esp__name {
	font-weight: 600; font-size: 15px;
	color: var(--mdx-navy-900);
}
.mdx-esp:hover .mdx-esp__name { color: white; }

/* =========================================================
   CONVÊNIOS
   ========================================================= */
.mdx-convs {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 12px;
}
.mdx-conv {
	background: white;
	border: 1px solid var(--mdx-line);
	border-radius: var(--mdx-r);
	padding: 22px 12px;
	text-align: center;
	font-weight: 600;
	color: var(--mdx-navy-900);
	transition: all .15s;
}
.mdx-conv:hover {
	border-color: var(--mdx-blue-500);
	color: var(--mdx-blue-600);
	transform: scale(1.03);
}

/* =========================================================
   CTA BAND — big gradient banner before footer
   ========================================================= */
.mdx-ctaband {
	background: var(--mdx-grad-hero);
	color: white;
	border-radius: var(--mdx-r-xl);
	padding: clamp(48px, 8vw, 80px) clamp(28px, 5vw, 56px);
	position: relative;
	overflow: hidden;
	text-align: center;
	isolation: isolate;
}
.mdx-ctaband::before {
	content: "";
	position: absolute; inset: -20% -10% auto auto;
	width: 60%; height: 200%;
	background: radial-gradient(ellipse, var(--mdx-cyan-500) 0%, transparent 60%);
	filter: blur(60px); opacity: .35;
	z-index: -1;
}
.mdx-ctaband h2 { color: white; margin-bottom: 16px; }
.mdx-ctaband p { color: rgba(255,255,255,.85); max-width: 40em; margin-inline: auto; margin-bottom: 32px; }
.mdx-ctaband__cta {
	display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}

/* =========================================================
   FOOTER
   ========================================================= */
.mdx-footer {
	background: var(--mdx-navy-950);
	color: rgba(255,255,255,.75);
	padding-block: 64px 32px;
}
.mdx-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}
.mdx-footer h4 {
	color: white; font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .1em;
	margin-bottom: 16px;
}
.mdx-footer a { color: rgba(255,255,255,.7); font-size: 14px; }
.mdx-footer a:hover { color: var(--mdx-cyan-400); }
.mdx-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.mdx-footer__brand { max-width: 340px; }
.mdx-footer__brand p { color: rgba(255,255,255,.65); font-size: 14px; margin-top: 12px; }
.mdx-footer__contact { font-size: 14px; display: flex; flex-direction: column; gap: 8px; }
.mdx-footer__contact strong { color: white; }
.mdx-footer__bottom {
	border-top: 1px solid rgba(255,255,255,.10);
	padding-top: 24px;
	display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
	font-size: 13px; color: rgba(255,255,255,.5);
}

/* =========================================================
   BREADCRUMB
   ========================================================= */
.mdx-crumb {
	padding-block: 20px;
	font-size: 14px;
	color: var(--mdx-ink-3);
	background: var(--mdx-cloud);
	border-bottom: 1px solid var(--mdx-line);
}
.mdx-crumb a { color: var(--mdx-ink-2); }
.mdx-crumb a:hover { color: var(--mdx-blue-600); }
.mdx-crumb__sep { margin: 0 8px; color: var(--mdx-line); }

/* =========================================================
   SINGLE EXAM PAGE
   ========================================================= */
.mdx-exhero {
	background: var(--mdx-grad-soft);
	padding-block: clamp(48px, 8vw, 96px);
	border-bottom: 1px solid var(--mdx-line);
}
.mdx-exhero__grid {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 32px;
	align-items: center;
}
.mdx-exhero__icon {
	width: 96px; height: 96px;
	display: grid; place-items: center;
	background: var(--mdx-grad-blue);
	color: white;
	font-size: 44px;
	border-radius: 24px;
	box-shadow: var(--mdx-shadow-blue);
}
.mdx-exhero__meta {
	display: flex; flex-wrap: wrap; gap: 12px 24px;
	font-size: 14px;
	color: var(--mdx-ink-2);
	margin-top: 12px;
}
.mdx-exhero__meta strong { color: var(--mdx-navy-900); }

.mdx-content {
	padding-block: clamp(48px, 6vw, 80px);
	max-width: 780px;
}
.mdx-content h2, .mdx-content h3 { margin-top: 1.6em; }
.mdx-content ul, .mdx-content ol { padding-left: 20px; margin-bottom: 1em; }
.mdx-content li { margin-bottom: .4em; color: var(--mdx-ink-2); }

/* =========================================================
   MOBILE
   ========================================================= */
@media (max-width: 960px) {
	.mdx-hero__grid { grid-template-columns: 1fr; }
	.mdx-hero__card { order: 2; }
	.mdx-split { grid-template-columns: 1fr; }
	.mdx-split--image { padding: 40px 28px; }
	.mdx-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
	.mdx-burger { display: block; }
	.mdx-nav {
		position: fixed;
		top: 72px; left: 0; right: 0; bottom: 0;
		background: white;
		flex-direction: column;
		padding: 24px var(--mdx-container-pad);
		transform: translateX(-100%);
		transition: transform .25s;
		overflow-y: auto;
		gap: 4px;
		z-index: 99;
	}
	.mdx-nav[data-open="true"] { transform: translateX(0); }
	.mdx-nav ul { flex-direction: column; align-items: stretch; width: 100%; gap: 4px; }
	.mdx-nav a { padding: 16px; font-size: 17px; }
	.mdx-header__phone span { display: none; }
	.mdx-header__cta .mdx-btn { display: none; }
	.mdx-exhero__grid { grid-template-columns: 1fr; text-align: left; }
	.mdx-footer__grid { grid-template-columns: 1fr; }
	.mdx-hero__cta { flex-direction: column; align-items: stretch; }
	.mdx-hero__cta .mdx-btn { width: 100%; }
	.mdx-trust__inner { flex-direction: column; align-items: flex-start; gap: 12px; }
	.mdx-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
	.mdx-stats { grid-template-columns: 1fr; }
	.mdx-hero__quickinfo { grid-template-columns: 1fr; }
}

/* =========================================================
   Reveal on scroll — very subtle
   ========================================================= */
.mdx-reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s, transform .5s; }
.mdx-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Focus states — a11y */
:focus-visible {
	outline: 3px solid var(--mdx-blue-500);
	outline-offset: 2px;
	border-radius: 4px;
}
