/* MHB Pro design system — shared across all modern pages */
:root {
  --ink: #0a1224; --ink-2: #121b35; --ink-3: #1a2547;
  --paper: #ffffff; --paper-2: #f6f8fc; --paper-3: #eef1f8;
  --muted: #5b6478; --line: rgba(15, 23, 42, .08); --line-2: rgba(255, 255, 255, .12);
  --brand: #0a3df0; --brand-2: #1d6cff; --cyan: #06d6ce; --mint: #18e2a3; --coral: #ff7a59; --gold: #ffc94d;
  --grad-1: linear-gradient(135deg, #0a3df0 0%, #06d6ce 60%, #18e2a3 100%);
  --grad-2: linear-gradient(135deg, #ff7a59 0%, #ffc94d 100%);
  --grad-text: linear-gradient(90deg, #6df0e1 0%, #18e2a3 50%, #ffd57a 100%);
  --shadow-1: 0 1px 2px rgba(10,18,36,.04), 0 8px 24px rgba(10,18,36,.06);
  --shadow-2: 0 2px 6px rgba(10,18,36,.06), 0 24px 48px rgba(10,18,36,.10);
  --shadow-glow: 0 20px 60px -10px rgba(10,61,240,.45);
  --r-sm: 10px; --r-md: 16px; --r-lg: 22px; --r-xl: 32px;
}
.mhb { box-sizing: border-box; }
.mhb *, .mhb *::before, .mhb *::after { box-sizing: inherit; }
.mhb img, .mhb svg { display: block; max-width: 100%; }
html, body { margin: 0; padding: 0; }
body.mhb-page { font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; color: var(--ink); background: var(--paper); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; line-height: 1.55; overflow-x: hidden; }
.mhb h1, .mhb h2, .mhb h3, .mhb h4 { font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif; font-weight: 700; letter-spacing: -0.02em; margin: 0; line-height: 1.1; color: var(--ink); }
.mhb h1 { font-size: clamp(2.5rem, 5.6vw, 4.8rem); letter-spacing: -0.038em; }
.mhb h2 { font-size: clamp(1.85rem, 3.8vw, 3.1rem); letter-spacing: -0.028em; }
.mhb h3 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); }
.mhb p { margin: 0; }
.mhb a { color: inherit; text-decoration: none; }
.mhb ul { margin: 0; padding: 0; list-style: none; }
.mhb-container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }

.mhb-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; background: transparent; z-index: 100; pointer-events: none; }
.mhb-progress-bar { height: 100%; width: 0%; background: var(--grad-1); box-shadow: 0 0 18px rgba(6,214,206,.5); transition: width .08s linear; }

.mhb-nav { position: sticky; top: 0; z-index: 50; backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px); background: rgba(255, 255, 255, .82); border-bottom: 1px solid var(--line); transition: box-shadow .25s ease; }
.mhb-nav.is-stuck { box-shadow: 0 6px 24px rgba(10,18,36,.06); }
.mhb-nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.mhb-logo { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; }
.mhb-logo img { height: 52px; width: auto; max-width: 220px; display: block; object-fit: contain; }
.mhb-footer .mhb-logo img { filter: brightness(0) invert(1); opacity: .95; height: 56px; }
.mhb-nav-links { display: none; align-items: center; gap: 4px; font-size: 0.95rem; color: #2c3550; font-weight: 500; }
.mhb-nav-link { position: relative; padding: 8px 14px; border-radius: 8px; transition: color .2s, background .2s; }
.mhb-nav-link:hover { color: var(--brand); background: rgba(10,61,240,.05); }
.mhb-nav-cta { display: flex; align-items: center; gap: 10px; }
.mhb-nav-phone { display: none; }

/* Hamburger toggle (mobile only) */
.mhb-nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; padding: 10px; background: transparent; border: 0; cursor: pointer; margin-left: auto; order: 2; }
.mhb-nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .25s; }
.mhb-nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mhb-nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mhb-nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Dropdown */
.mhb-dd { position: relative; }
.mhb-dd-trigger { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border: 0; background: transparent; font: inherit; color: inherit; cursor: pointer; border-radius: 8px; transition: color .2s, background .2s; }
.mhb-dd-trigger:hover, .mhb-dd-trigger[aria-expanded="true"] { color: var(--brand); background: rgba(10,61,240,.06); }
.mhb-dd-trigger svg { transition: transform .2s; }
.mhb-dd-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.mhb-dd-panel { position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(-6px); min-width: 280px; background: white; border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: 0 24px 48px rgba(10,18,36,.12), 0 4px 12px rgba(10,18,36,.06); padding: 10px; opacity: 0; pointer-events: none; transition: opacity .18s, transform .18s; z-index: 60; }
.mhb-dd-trigger[aria-expanded="true"] + .mhb-dd-panel,
.mhb-dd:hover .mhb-dd-panel { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.mhb-dd-mega { min-width: 720px; padding: 14px; }
.mhb-dd-grid { display: grid; gap: 4px; grid-template-columns: 1fr 1fr; }
.mhb-dd-item { display: flex; gap: 12px; align-items: center; padding: 12px 14px; border-radius: 10px; transition: background .15s; color: var(--ink); }
.mhb-dd-item:hover { background: rgba(10,61,240,.06); color: var(--brand); }
.mhb-dd-item b { display: block; font-family: 'Plus Jakarta Sans'; font-size: .94rem; font-weight: 700; line-height: 1.2; color: inherit; }
.mhb-dd-item small { display: block; font-size: .78rem; color: var(--muted); margin-top: 3px; line-height: 1.35; }
.mhb-dd-ic { width: 36px; height: 36px; flex: none; border-radius: 10px; background: linear-gradient(135deg, rgba(10,61,240,.10), rgba(6,214,206,.10)); color: var(--brand); display: grid; place-items: center; }
.mhb-dd-item:hover .mhb-dd-ic { background: linear-gradient(135deg, var(--brand), var(--cyan)); color: white; }
.mhb-dd-item-all { margin-top: 6px; border-top: 1px solid var(--line); padding-top: 14px; justify-content: space-between; font-weight: 600; }
.mhb-dd-item-all svg { color: var(--brand); transition: transform .2s; }
.mhb-dd-item-all:hover svg { transform: translateX(3px); }
.mhb-nav-cta-mobile { display: none; }

@media (min-width: 720px) { .mhb-nav-phone { display: inline-flex; } }
@media (min-width: 1024px) {
  .mhb-nav-toggle { display: none; }
  .mhb-nav-links { display: flex; }
}
@media (max-width: 1023px) {
  .mhb-nav-cta .mhb-btn { display: none; }
  .mhb-nav-phone { display: none !important; }
  .mhb-nav-links { position: fixed; top: 76px; left: 0; right: 0; bottom: 0; background: white; flex-direction: column; align-items: stretch; gap: 0; padding: 16px 24px 100px; overflow-y: auto; transform: translateX(100%); transition: transform .3s ease; box-shadow: -10px 0 30px rgba(10,18,36,.06); }
  .mhb-nav-links.is-open { transform: translateX(0); display: flex; }
  .mhb-nav-link, .mhb-dd-trigger { padding: 16px 0; width: 100%; justify-content: space-between; border-bottom: 1px solid var(--line); border-radius: 0; font-size: 1.05rem; font-weight: 600; }
  .mhb-dd { width: 100%; }
  .mhb-dd-panel { position: static; transform: none; min-width: 0; box-shadow: none; border: 0; padding: 4px 0 16px 0; opacity: 0; max-height: 0; overflow: hidden; pointer-events: none; transition: opacity .2s, max-height .25s; }
  .mhb-dd-trigger[aria-expanded="true"] + .mhb-dd-panel { opacity: 1; pointer-events: auto; max-height: 800px; padding: 4px 0 16px 0; }
  .mhb-dd:hover .mhb-dd-panel { opacity: 0; pointer-events: none; max-height: 0; }
  .mhb-dd-trigger[aria-expanded="true"] + .mhb-dd-panel { opacity: 1 !important; pointer-events: auto !important; max-height: 800px !important; }
  .mhb-dd-mega { min-width: 0; }
  .mhb-dd-grid { grid-template-columns: 1fr; }
  .mhb-dd-item { padding: 12px 0 12px 16px; border-radius: 0; }
  .mhb-nav-cta-mobile { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
  .mhb-nav-cta-mobile .mhb-btn { width: 100%; justify-content: center; padding: 14px; }
}
@media (max-width: 720px) {
  .mhb-nav-inner { height: 76px; gap: 10px; }
  .mhb-logo img { height: 56px; max-width: 180px; }
}

.mhb-btn { position: relative; isolation: isolate; overflow: hidden; display: inline-flex; align-items: center; gap: 8px; padding: 14px 22px; border-radius: 999px; font-weight: 600; font-size: 0.95rem; border: 1px solid transparent; cursor: pointer; transition: transform .2s ease, box-shadow .25s ease; white-space: nowrap; }
.mhb-btn::before { content: ""; position: absolute; inset: 0; border-radius: inherit; background: radial-gradient(120px circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,.25), transparent 60%); opacity: 0; transition: opacity .25s ease; z-index: -1; pointer-events: none; }
.mhb-btn:hover::before { opacity: 1; }
.mhb-btn-primary { background: var(--ink); color: white; box-shadow: 0 6px 18px rgba(10,18,36,.18); }
.mhb-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(10,18,36,.32); }
.mhb-btn-grad { background: var(--grad-1); color: white; background-size: 200% 100%; background-position: 0% 50%; box-shadow: var(--shadow-glow); transition: transform .2s, box-shadow .25s, background-position .6s; }
.mhb-btn-grad:hover { transform: translateY(-2px); background-position: 100% 50%; box-shadow: 0 30px 70px -10px rgba(10,61,240,.55); }
.mhb-btn-grad svg.arr { transition: transform .25s; }
.mhb-btn-grad:hover svg.arr { transform: translateX(4px); }
.mhb-btn-ghost { background: rgba(10,18,36,.04); color: var(--ink); border-color: var(--line); }
.mhb-btn-ghost:hover { background: rgba(10,18,36,.08); transform: translateY(-1px); }
.mhb-btn-light { background: rgba(255,255,255,.12); color: white; border-color: rgba(255,255,255,.18); backdrop-filter: blur(8px); }
.mhb-btn-light:hover { background: rgba(255,255,255,.22); transform: translateY(-1px); }
.mhb-btn-sm { padding: 10px 16px; font-size: 0.875rem; }
body.mhb-page .mhb-btn-primary { background: var(--ink) !important; color: #fff !important; }
body.mhb-page .mhb-btn-primary svg { color: #fff !important; }
body.mhb-page .mhb-btn-grad { color: #fff !important; }
body.mhb-page .mhb-btn-grad svg { color: #fff !important; }
body.mhb-page .mhb-btn-light { color: #fff !important; }
body.mhb-page .mhb-btn-light svg { color: #fff !important; }
body.mhb-page .mhb-btn-ghost { color: var(--ink) !important; }
body.mhb-page .mhb-nav-audit { background: var(--grad-1) !important; color: #fff !important; box-shadow: 0 8px 22px rgba(10,61,240,.35); }

/* Hero */
.mhb-hero { position: relative; overflow: hidden; background: #0a1224; color: white; padding: 96px 0 120px; isolation: isolate; }
.mhb-hero-bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.mhb-hero-bg::before, .mhb-hero-bg::after, .mhb-hero-bg span { content:""; position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55; will-change: transform; }
.mhb-hero-bg::before { width: 560px; height: 560px; background: radial-gradient(circle, #1d6cff, transparent 60%); top: -10%; left: -10%; animation: mhbOrb1 18s ease-in-out infinite alternate; }
.mhb-hero-bg::after { width: 520px; height: 520px; background: radial-gradient(circle, #06d6ce, transparent 60%); top: 10%; right: -10%; animation: mhbOrb2 22s ease-in-out infinite alternate; }
.mhb-hero-bg span { width: 480px; height: 480px; background: radial-gradient(circle, #18e2a3, transparent 60%); bottom: -20%; left: 30%; animation: mhbOrb3 26s ease-in-out infinite alternate; }
@keyframes mhbOrb1 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(80px, 60px) scale(1.15); } }
@keyframes mhbOrb2 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(-100px, 80px) scale(1.1); } }
@keyframes mhbOrb3 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(60px, -80px) scale(1.2); } }
.mhb-hero::after { content: ""; position: absolute; inset: 0; background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' fill='none' stroke='rgba(255,255,255,0.07)' stroke-width='1.4'%3E%3Cpath d='M-100 100 Q 200 40 500 100 T 1100 100 T 1700 100'/%3E%3Cpath d='M-100 180 Q 200 110 500 180 T 1100 180 T 1700 180'/%3E%3Cpath d='M-100 260 Q 200 190 500 260 T 1100 260 T 1700 260'/%3E%3Cpath d='M-100 340 Q 200 270 500 340 T 1100 340 T 1700 340'/%3E%3Cpath d='M-100 420 Q 200 350 500 420 T 1100 420 T 1700 420'/%3E%3Cpath d='M-100 500 Q 200 430 500 500 T 1100 500 T 1700 500'/%3E%3C/svg%3E"); background-size: 1200px 600px; background-repeat: repeat; mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 85%); -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 85%); pointer-events: none; z-index: -1; }
.mhb-pulse { position: absolute; inset: 0; pointer-events: none; z-index: -1; overflow: hidden; }
.mhb-pulse i { position: absolute; left: 75%; top: 38%; width: 160px; height: 160px; border-radius: 50%; border: 1.5px solid rgba(109,240,225,.35); transform: translate(-50%, -50%) scale(.4); animation: mhbPulseRing 5s ease-out infinite; opacity: 0; }
.mhb-pulse i:nth-child(1) { animation-delay: 0s; }
.mhb-pulse i:nth-child(2) { animation-delay: 1.6s; }
.mhb-pulse i:nth-child(3) { animation-delay: 3.2s; }
@keyframes mhbPulseRing { 0% { transform: translate(-50%, -50%) scale(.3); opacity: .9; border-color: rgba(109,240,225,.6); } 100% { transform: translate(-50%, -50%) scale(2.6); opacity: 0; border-color: rgba(29,108,255,.05); } }
.mhb-aurora { position: absolute; inset: 0; pointer-events: none; z-index: -2; opacity: .85; }
.mhb-aurora::before, .mhb-aurora::after { content:""; position: absolute; border-radius: 50%; filter: blur(80px); }
.mhb-aurora::before { width: 70%; height: 70%; left: -10%; top: 20%; background: radial-gradient(circle, rgba(29,108,255,.45), transparent 60%); animation: mhbAuroraA 24s ease-in-out infinite alternate; }
.mhb-aurora::after { width: 60%; height: 60%; right: -10%; top: 0%; background: radial-gradient(circle, rgba(24,226,163,.35), transparent 60%); animation: mhbAuroraB 28s ease-in-out infinite alternate; }
@keyframes mhbAuroraA { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(20%, 10%) scale(1.3); } }
@keyframes mhbAuroraB { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(-15%, 20%) scale(1.2); } }
.mhb-ekg { position: absolute; left: 0; right: 0; bottom: 36px; height: 80px; z-index: -1; opacity: .9; pointer-events: none; overflow: hidden; filter: drop-shadow(0 0 10px rgba(24,226,163,.55)); }
.mhb-ekg-track { display: flex; width: 200%; height: 100%; animation: mhbEkgScroll 10s linear infinite; will-change: transform; }
.mhb-ekg-track svg { flex: 0 0 50%; height: 100%; display: block; }
.mhb-ekg-track path { stroke: #18e2a3; stroke-width: 2.4; fill: none; stroke-linecap: round; stroke-linejoin: round; }
@keyframes mhbEkgScroll { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-50%, 0, 0); } }
.mhb-beams { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.mhb-beams i { position: absolute; left: 50%; top: -20%; width: 2px; height: 60%; background: linear-gradient(180deg, transparent, rgba(109,240,225,.55), transparent); filter: blur(1px); transform-origin: top center; animation: mhbBeam 9s ease-in-out infinite; opacity: 0; }
.mhb-beams i:nth-child(1) { left: 18%; animation-delay: 0s; transform: rotate(14deg); }
.mhb-beams i:nth-child(2) { left: 42%; animation-delay: 2.4s; transform: rotate(-10deg); }
.mhb-beams i:nth-child(3) { left: 68%; animation-delay: 4.8s; transform: rotate(8deg); }
.mhb-beams i:nth-child(4) { left: 86%; animation-delay: 6.4s; transform: rotate(-6deg); }
@keyframes mhbBeam { 0% { opacity: 0; transform: translateY(-20%) rotate(var(--r,8deg)); } 20% { opacity: 1; } 60% { opacity: .7; } 100% { opacity: 0; transform: translateY(80%) rotate(var(--r,8deg)); } }
.mhb-particles { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.mhb-particles i { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: rgba(109,240,225,.7); box-shadow: 0 0 12px rgba(109,240,225,.6); animation: mhbParticle 16s linear infinite; }
.mhb-particles i:nth-child(1) { left: 12%; bottom: -10px; animation-delay: 0s; }
.mhb-particles i:nth-child(2) { left: 28%; bottom: -10px; animation-delay: -3s; opacity: .6; }
.mhb-particles i:nth-child(3) { left: 44%; bottom: -10px; animation-delay: -6s; opacity: .8; }
.mhb-particles i:nth-child(4) { left: 60%; bottom: -10px; animation-delay: -9s; opacity: .5; background: rgba(29,108,255,.7); box-shadow: 0 0 12px rgba(29,108,255,.6); }
.mhb-particles i:nth-child(5) { left: 76%; bottom: -10px; animation-delay: -12s; opacity: .9; }
.mhb-particles i:nth-child(6) { left: 92%; bottom: -10px; animation-delay: -15s; opacity: .55; background: rgba(24,226,163,.7); box-shadow: 0 0 12px rgba(24,226,163,.6); }
@keyframes mhbParticle { 0% { transform: translateY(0) translateX(0); opacity: 0; } 10% { opacity: 1; } 90% { opacity: .7; } 100% { transform: translateY(-110vh) translateX(40px); opacity: 0; } }

.mhb-hero h1 { color: white; }
.mhb-hero h1 .grad { background: var(--grad-text); background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: mhbShine 6s ease-in-out infinite; }
@keyframes mhbShine { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.mhb-hero-grid { display: grid; gap: 56px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .mhb-hero-grid { grid-template-columns: 1.05fr 1fr; gap: 72px; } }
.mhb-eyebrow { display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px; border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); font-size: 0.82rem; font-weight: 600; color: #cfe9ff; letter-spacing: 0.02em; }
.mhb-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 12px var(--mint); animation: mhbPulse 2.4s infinite; }
@keyframes mhbPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.85); } }
.mhb-hero-sub { margin-top: 22px; font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: rgba(229,237,255,.82); max-width: 560px; }
.mhb-hero-ctas { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }
.mhb-hero-trust { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 22px 28px; align-items: center; font-size: 0.86rem; color: rgba(229,237,255,.7); }
.mhb-hero-trust-item { display: inline-flex; align-items: center; gap: 8px; }
.mhb-hero-trust-item svg { color: var(--mint); }
.mhb-hero-visual { position: relative; }

/* Sections */
.mhb-section { padding: 110px 0; position: relative; }
.mhb-section-light { background: var(--paper); }
.mhb-section-soft { background: var(--paper-2); }
.mhb-section-dark { background: var(--ink); color: white; position: relative; overflow: hidden; }
.mhb-section-dark::before { content:""; position: absolute; inset: 0; background: radial-gradient(800px 500px at 0% 0%, rgba(29,108,255,.18), transparent 60%), radial-gradient(700px 500px at 100% 100%, rgba(24,226,163,.15), transparent 60%); pointer-events: none; }
.mhb-section-dark > * { position: relative; }
.mhb-section-dark h2 { color: white; }
.mhb-shead { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.mhb-shead .mhb-eyebrow { color: var(--brand); background: rgba(10,61,240,.08); border-color: rgba(10,61,240,.18); }
.mhb-shead .mhb-eyebrow .dot { background: var(--brand); box-shadow: 0 0 12px var(--brand-2); }
.mhb-shead h2 { margin-top: 18px; }
.mhb-shead p { margin-top: 16px; color: var(--muted); font-size: 1.08rem; }
.mhb-section-dark .mhb-shead p { color: rgba(229,237,255,.7); }
.mhb-section-dark .mhb-shead .mhb-eyebrow { color: #6df0e1; background: rgba(6,214,206,.12); border-color: rgba(6,214,206,.28); }

/* Feature grid (3-column cards) */
.mhb-features { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .mhb-features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .mhb-features { grid-template-columns: repeat(3, 1fr); } }
.mhb-feat { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px 28px; transition: transform .25s, box-shadow .25s, border-color .25s; }
.mhb-feat:hover { transform: translateY(-5px); box-shadow: var(--shadow-2); border-color: rgba(10,61,240,.18); }
.mhb-feat-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(10,61,240,.08); color: var(--brand); display: grid; place-items: center; border: 1px solid rgba(10,61,240,.14); transition: transform .3s ease; }
.mhb-feat:hover .mhb-feat-icon { transform: rotate(-8deg) scale(1.05); }
.mhb-feat h3 { margin-top: 18px; font-size: 1.18rem; }
.mhb-feat p { margin-top: 10px; color: var(--muted); font-size: .96rem; }

/* Steps */
.mhb-steps-wrap { position: relative; }
.mhb-steps-line { position: absolute; left: 0; right: 0; top: 30px; height: 2px; background: repeating-linear-gradient(90deg, rgba(10,61,240,.25) 0 8px, transparent 8px 16px); z-index: 0; display: none; }
@media (min-width: 900px) { .mhb-steps-line { display: block; } }
.mhb-steps { display: grid; gap: 24px; grid-template-columns: 1fr; position: relative; z-index: 1; }
@media (min-width: 900px) { .mhb-steps { grid-template-columns: repeat(3, 1fr); } }
.mhb-step { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 36px 32px 32px; position: relative; transition: transform .3s, box-shadow .3s; }
.mhb-step:hover { transform: translateY(-5px); box-shadow: var(--shadow-2); }
.mhb-step-num { position: relative; width: 56px; height: 56px; border-radius: 50%; background: var(--grad-1); color: white; display: grid; place-items: center; font-family: 'Plus Jakarta Sans'; font-weight: 800; font-size: 1.3rem; box-shadow: var(--shadow-glow); margin-top: -56px; margin-bottom: 22px; }
.mhb-step-num::after { content:""; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid var(--brand); opacity: .25; animation: mhbRing 2.4s ease-out infinite; }
@keyframes mhbRing { 0% { transform: scale(.9); opacity: .35; } 100% { transform: scale(1.5); opacity: 0; } }
.mhb-step h3 { margin-top: 0; }
.mhb-step p { margin-top: 10px; color: var(--muted); }
.mhb-step ul { margin-top: 18px; display: grid; gap: 8px; }
.mhb-step li { display: flex; gap: 8px; align-items: start; font-size: 0.92rem; }
.mhb-step li svg { flex: none; color: var(--brand); margin-top: 4px; }

/* Two-column highlight */
.mhb-split { display: grid; gap: 56px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .mhb-split { grid-template-columns: 1fr 1fr; } }
.mhb-split-img { position: relative; aspect-ratio: 4 / 3; border-radius: var(--r-xl); overflow: hidden; background: var(--paper-2); border: 1px solid var(--line); box-shadow: var(--shadow-2); }
.mhb-split-img img { width: 100%; height: 100%; object-fit: cover; }
.mhb-split ul { margin-top: 22px; display: grid; gap: 12px; }
.mhb-split li { display: flex; gap: 10px; align-items: start; font-size: .98rem; color: var(--ink); }
.mhb-split li svg { flex: none; color: var(--brand); margin-top: 4px; }
.mhb-split li b { display: inline; }

/* Stats bar */
.mhb-stats { display: grid; gap: 1px; grid-template-columns: repeat(2, 1fr); background: var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-1); }
@media (min-width: 720px) { .mhb-stats { grid-template-columns: repeat(4, 1fr); } }
.mhb-stat { background: var(--paper); padding: 36px 24px; text-align: center; position: relative; overflow: hidden; }
.mhb-stat-num { font-family: 'Plus Jakarta Sans'; font-weight: 800; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.035em; background: var(--grad-1); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.mhb-stat-label { color: var(--muted); margin-top: 6px; font-weight: 500; position: relative; }

/* Final CTA */
.mhb-finalcta { position: relative; overflow: hidden; background: var(--ink); color: white; border-radius: var(--r-xl); padding: 64px 48px; display: grid; gap: 32px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .mhb-finalcta { grid-template-columns: 1.4fr 1fr; padding: 80px 64px; } }
.mhb-finalcta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(800px 400px at 0% 0%, rgba(29,108,255,.45), transparent 60%), radial-gradient(600px 400px at 100% 100%, rgba(24,226,163,.35), transparent 60%); pointer-events: none; animation: mhbBgShift 14s ease-in-out infinite alternate; }
@keyframes mhbBgShift { 0% { transform: translate(0,0); } 100% { transform: translate(-30px, 20px); } }
.mhb-finalcta > * { position: relative; }
body.mhb-page .mhb-finalcta h2 { color: #fff !important; }
.mhb-finalcta p { margin-top: 16px; color: rgba(229,237,255,.78); font-size: 1.08rem; max-width: 520px; }
.mhb-finalcta-actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }
.mhb-finalcta-side { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-lg); padding: 28px; backdrop-filter: blur(8px); }
.mhb-finalcta-side h4 { color: white; font-family: 'Plus Jakarta Sans'; font-weight: 700; font-size: 1rem; margin: 0; }
.mhb-finalcta-side ul { margin-top: 14px; display: grid; gap: 10px; }
.mhb-finalcta-side li { display: flex; gap: 10px; align-items: start; font-size: 0.92rem; color: rgba(229,237,255,.86); }
.mhb-finalcta-side li svg { flex: none; color: var(--mint); margin-top: 4px; }

/* Trust */
.mhb-trust { display: grid; gap: 18px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .mhb-trust { grid-template-columns: repeat(4, 1fr); } }
.mhb-trust-item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); padding: 24px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; transition: transform .25s, box-shadow .25s, border-color .25s; }
.mhb-trust-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-1); border-color: rgba(10,61,240,.2); }
.mhb-trust-item svg { color: var(--brand); transition: transform .3s; }
.mhb-trust-item:hover svg { transform: scale(1.08) rotate(-4deg); }
.mhb-trust-item b { font-family: 'Plus Jakarta Sans'; font-size: 1rem; }
.mhb-trust-item small { color: var(--muted); font-size: 0.84rem; }

/* FAQ */
.mhb-faq { display: grid; gap: 14px; max-width: 820px; margin: 0 auto; }
.mhb-faq details { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); padding: 0 22px; transition: box-shadow .2s, border-color .2s; }
.mhb-faq details[open] { box-shadow: var(--shadow-1); border-color: rgba(10,61,240,.2); }
.mhb-faq summary { list-style: none; cursor: pointer; padding: 22px 0; font-weight: 600; font-size: 1.02rem; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.mhb-faq summary::-webkit-details-marker { display: none; }
.mhb-faq summary::after { content: ""; flex: none; width: 18px; height: 18px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a1224' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M5 9l7 7 7-7'/%3E%3C/svg%3E") center/contain no-repeat; transition: transform .2s; }
.mhb-faq details[open] summary::after { transform: rotate(180deg); }
.mhb-faq details p { padding-bottom: 22px; color: var(--muted); }
.mhb-faq .mhb-faq-a { padding-bottom: 22px; color: var(--muted); line-height: 1.65; }
.mhb-faq .mhb-faq-a p { padding-bottom: 0; margin: 0 0 12px; }
.mhb-faq .mhb-faq-a p:last-child { margin-bottom: 0; }
.mhb-faq .mhb-faq-a a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.mhb-faq .mhb-faq-a strong { color: var(--ink); }

/* Last-updated line */
.mhb-updated { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--muted); margin: 0 0 18px; padding: 6px 12px; border-radius: 999px; background: rgba(10,61,240,.06); border: 1px solid rgba(10,61,240,.12); }
.mhb-updated svg { color: var(--brand); }
.mhb-updated time { font-weight: 500; color: var(--ink); }

/* Related posts grid */
.mhb-related { display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr); margin-top: 32px; }
@media (max-width: 900px) { .mhb-related { grid-template-columns: 1fr; } }
.mhb-related-card { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: transform .25s, box-shadow .25s, border-color .25s; }
.mhb-related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: rgba(10,61,240,.2); }
.mhb-related-thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--paper-3); }
.mhb-related-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.mhb-related-card:hover .mhb-related-thumb img { transform: scale(1.04); }
.mhb-related-body { padding: 22px 22px 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.mhb-related-cat { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--brand); }
.mhb-related-card h3 { font-family: 'Plus Jakarta Sans'; font-size: 1.08rem; line-height: 1.3; color: var(--ink); margin: 0; }
.mhb-related-arrow { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 600; color: var(--brand); }
.mhb-related-card:hover .mhb-related-arrow svg { transform: translateX(4px); }
.mhb-related-arrow svg { transition: transform .2s; }

/* Footer */
.mhb-footer { background: #060b1a; color: rgba(229,237,255,.78); padding: 64px 0 32px; position: relative; }
.mhb-footer::before { content:""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(6,214,206,.5), transparent); }
.mhb-footer h5 { font-family: 'Plus Jakarta Sans'; font-size: 0.86rem; letter-spacing: 0.08em; text-transform: uppercase; color: white; margin: 0 0 16px; }
.mhb-footer-grid { display: grid; gap: 40px; grid-template-columns: 1.6fr 1fr 1fr 1fr; }
@media (max-width: 800px) { .mhb-footer-grid { grid-template-columns: 1fr 1fr; } }
.mhb-footer ul li { margin-bottom: 8px; font-size: 0.92rem; }
.mhb-footer a:hover { color: white; }
.mhb-footer-base { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.84rem; color: rgba(229,237,255,.55); }
.mhb-footer-social { display: flex; gap: 14px; margin-top: 20px; }
.mhb-footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); display: grid; place-items: center; transition: background .2s, transform .2s, border-color .2s; }
.mhb-footer-social a:hover { background: var(--brand); border-color: var(--brand); transform: translateY(-3px); }
.mhb-footer-contact { margin-top: 18px; font-size: 0.92rem; line-height: 1.7; }
.mhb-footer-contact a { color: white; }

/* Reveal */
.mhb-reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.mhb-reveal.is-in { opacity: 1; transform: translateY(0); }
.mhb-reveal.delay-1 { transition-delay: .08s; }
.mhb-reveal.delay-2 { transition-delay: .16s; }
.mhb-reveal.delay-3 { transition-delay: .24s; }
.mhb-reveal.delay-4 { transition-delay: .32s; }
.mhb-reveal.delay-5 { transition-delay: .40s; }
.mhb-reveal.delay-6 { transition-delay: .48s; }

@media (prefers-reduced-motion: reduce) {
  .mhb-reveal { opacity: 1; transform: none; transition: none; }
  .mhb-eyebrow .dot, .mhb-hero-bg::before, .mhb-hero-bg::after, .mhb-hero-bg span,
  .mhb-ekg, .mhb-aurora, .mhb-aurora::before, .mhb-aurora::after, .mhb-pulse i,
  .mhb-beams i, .mhb-particles i, .mhb-step-num::after, .mhb-finalcta::before { animation: none !important; }
}
#wpadminbar { z-index: 99999; }

/* Contact form alerts (success/error) */
.mhb-form-alert { display: flex; gap: 12px; align-items: flex-start; padding: 14px 18px; border-radius: 12px; margin-bottom: 18px; font-size: .92rem; line-height: 1.5; }
.mhb-form-alert svg { flex: none; margin-top: 1px; }
.mhb-form-alert-ok { background: rgba(24,226,163,.16); border: 1px solid rgba(24,226,163,.4); color: #6df0c5; }
.mhb-form-alert-err { background: rgba(255,122,89,.16); border: 1px solid rgba(255,122,89,.45); color: #ffb39b; }

/* Contact form */
.mhb-form { display: grid; gap: 16px; max-width: 560px; }
.mhb-form-row { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .mhb-form-row { grid-template-columns: 1fr 1fr; } }
.mhb-form label { font-size: .82rem; color: rgba(229,237,255,.7); display: block; margin-bottom: 6px; font-weight: 500; }
.mhb-form input, .mhb-form select, .mhb-form textarea { width: 100%; padding: 14px 16px; border-radius: 12px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.05); color: white; font-family: inherit; font-size: .96rem; transition: border-color .2s, background .2s; }
.mhb-form input::placeholder, .mhb-form textarea::placeholder { color: rgba(229,237,255,.4); }
.mhb-form input:focus, .mhb-form select:focus, .mhb-form textarea:focus { outline: none; border-color: var(--cyan); background: rgba(255,255,255,.08); }
.mhb-form textarea { resize: vertical; min-height: 120px; }
.mhb-form .mhb-btn { justify-self: start; }

/* Contact info card */
.mhb-info-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-lg); padding: 28px; backdrop-filter: blur(8px); display: grid; gap: 18px; }
.mhb-info-row { display: flex; gap: 14px; align-items: start; }
.mhb-info-row .ic { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,.08); color: var(--mint); display: grid; place-items: center; flex: none; }
.mhb-info-row b { display: block; font-family: 'Plus Jakarta Sans'; font-size: .94rem; color: white; }
.mhb-info-row a, .mhb-info-row span { color: rgba(229,237,255,.72); font-size: .92rem; line-height: 1.5; }
.mhb-info-row a:hover { color: white; }
