/* ═══════════════════════════════════════════════════════
   META ADS MASTERY — Premium Redesign
   BlackBox Learning · Space Grotesk · Navy + Orange/Blue
   ═══════════════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────────────── */
:root {
    --mx-bg:      #0a0a0a;
    --mx-bg2:     #111113;
    --mx-bg3:     #161618;
    --mx-bg4:     #1c1c1f;
    --mx-border:  rgba(255,255,255,0.07);
    --mx-bact:    rgba(255,107,0,0.3);
    --mx-text:    #f0f0f2;
    --mx-muted:   rgba(240,240,242,0.55);
    --mx-dim:     rgba(240,240,242,0.25);
    --mx-blue:    #2563eb;
    --mx-blue-l:  #60a5fa;
    --mx-violet:  #7c3aed;
    --mx-vio-l:   #a78bfa;
    --mx-amber:   #f59e0b;
    --mx-amb-l:   #fbbf24;
    --mx-green:   #10b981;
    --mx-grn-l:   #34d399;
    --mx-cyan:    #06b6d4;
    --mx-cyan-l:  #22d3ee;
    --mx-orange:  #ff6b00;
    --mx-org-l:   #ff8c33;
    --mx-red:     #ef4444;
    --mx-grad:    linear-gradient(135deg, #ff6b00 0%, #ff8c33 100%);
    --mx-grad-t:  linear-gradient(135deg, #ff8c33 0%, #ff6b00 100%);
    --mx-grad-bl: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    --mx-r:       14px;
    --mx-rl:      22px;
    --mx-rxl:     30px;
}

/* ── Base ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

.mx-body {
    background: var(--mx-bg);
    color: var(--mx-text);
    font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.mx-section { padding: 100px 0; position: relative; }

/* ── Gradient text ───────────────────────────────────── */
.mx-grad-text {
    background: var(--mx-grad-t);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ── Label pill ──────────────────────────────────────── */
.mx-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255,107,0,0.12);
    border: 1px solid rgba(255,107,0,0.3);
    color: var(--mx-org-l);
    margin-bottom: 14px;
}

/* ── Section heading shared ──────────────────────────── */
.mx-section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.mx-section-head .mx-label { margin-bottom: 14px; }

.mx-section-h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin: 0 0 16px;
    color: #fff;
}

.mx-section-head p {
    font-size: 1rem;
    color: var(--mx-muted);
    line-height: 1.7;
    margin: 0;
}

/* ── Buttons ─────────────────────────────────────────── */
.mx-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 12px;
    font-size: 0.93rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
    line-height: 1;
}

.mx-btn-primary {
    background: var(--mx-grad);
    color: #fff;
    box-shadow: 0 4px 24px rgba(255,107,0,0.4);
}
.mx-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255,107,0,0.55);
    color: #fff;
}

.mx-btn-outline {
    background: transparent;
    color: var(--mx-text);
    border: 1.5px solid rgba(255,255,255,0.15);
}
.mx-btn-outline:hover {
    border-color: var(--mx-org-l);
    color: var(--mx-org-l);
    transform: translateY(-2px);
}

.mx-btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: 14px; }

/* ══════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════ */
.mx-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 0 60px;
    background: var(--mx-bg);
    overflow: hidden;
}

/* ── Animated background ── */
.mx-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Rising bar chart */
.mx-graph-canvas {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 70%;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    padding: 0 60px 0 0;
    opacity: 0.6;
}

.mx-graph-bar {
    flex: 1;
    height: var(--h, 50%);
    background: var(--c, rgba(37,99,235,0.2));
    border-radius: 4px 4px 0 0;
    transform-origin: bottom;
    animation: mxBarRise 1.2s cubic-bezier(0.34,1.4,0.64,1) both, mxBarPulse 3s ease-in-out infinite;
    animation-delay: var(--d, 0s), calc(var(--d, 0s) + 1.5s);
}

/* Glow orbs */
.mx-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.mx-orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,107,0,0.07) 0%, transparent 70%);
    top: -100px; right: -80px;
    animation: mxOrbFloat 8s ease-in-out infinite;
}
.mx-orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(124,58,237,0.08) 0%, transparent 70%);
    bottom: -60px; left: 10%;
    animation: mxOrbFloat 10s ease-in-out infinite reverse;
}
.mx-orb-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(108,92,231,0.05) 0%, transparent 70%);
    top: 30%; left: 40%;
    animation: mxOrbFloat 12s ease-in-out infinite 2s;
}

/* SVG line graph */
.mx-line-graph {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    z-index: 0;
}
.mx-line-fill {
    fill: url(#fillGrad);
    animation: mxLineDraw 2s ease-out both;
}
.mx-line-path {
    fill: none;
    stroke: url(#lineGrad);
    stroke-width: 2;
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: mxLineDash 2.5s ease-out 0.3s both;
}
.mx-line-dot {
    fill: #ff8c33;
    filter: drop-shadow(0 0 6px rgba(255,140,51,0.8));
    opacity: 0;
    animation: mxDotPop 0.4s ease-out 2s both;
}

/* ── Hero layout ── */
.mx-hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* ── Left content ── */
.mx-hero-left {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mx-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    padding: 8px 14px 8px 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    margin-bottom: 18px;
    width: fit-content;
}

.mx-pulse-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
    animation: mxPulse 1.6s ease-in-out infinite;
    flex-shrink: 0;
}

.mx-badge-seats {
    background: rgba(255,107,0,0.18);
    border: 1px solid rgba(255,107,0,0.35);
    color: var(--mx-org-l);
    border-radius: 100px;
    padding: 3px 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.mx-hero-h1 {
    font-size: clamp(2.2rem, 4.5vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 16px;
}

.mx-hero-sub {
    font-size: clamp(0.9rem, 1.4vw, 1rem);
    color: var(--mx-muted);
    line-height: 1.65;
    margin-bottom: 24px;
    max-width: 500px;
}

.mx-hero-sub strong { color: var(--mx-text); font-weight: 600; }

.mx-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}

/* Google rating */
.mx-grating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.03);
    transition: background 0.25s ease;
    width: fit-content;
}
.mx-grating:hover { background: rgba(255,255,255,0.06); }

.mx-grating-info { display: flex; flex-direction: column; gap: 2px; }
.mx-grating-info strong { font-size: 1.05rem; font-weight: 700; color: #fff; }
.mx-grating-info small { font-size: 0.68rem; color: var(--mx-dim); }
.mx-stars { color: #fbbf24; font-size: 0.78rem; letter-spacing: 1px; }

/* ══════════════════════════════════════════════════════
   PHONE MOCKUP
   ══════════════════════════════════════════════════════ */
.mx-hero-right { display: flex; align-items: center; justify-content: center; }

.mx-phone-scene {
    position: relative;
    width: 280px;
    margin: 40px auto;
}

/* Floating metric badges */
.mx-fbadge {
    position: absolute;
    background: rgba(6,12,26,0.92);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(16px);
    border-radius: 14px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.mx-fbadge-roas { top: -20px; right: -60px; animation: mxFloat 3s ease-in-out infinite; }
.mx-fbadge-ctr  { top: 35%;  left: -70px; animation: mxFloat 3.5s ease-in-out infinite 0.5s; }
.mx-fbadge-cpl  { bottom: 120px; right: -55px; animation: mxFloat 4s ease-in-out infinite 1s; }
.mx-fbadge-reach{ bottom: 30px; left: -65px; animation: mxFloat 3.2s ease-in-out infinite 0.3s; }

.mx-fbadge-icon {
    width: 32px; height: 32px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.mx-fbi-blue   { background: rgba(124,58,237,0.2);  color: var(--mx-vio-l); border: 1px solid rgba(124,58,237,0.3); }
.mx-fbi-green  { background: rgba(16,185,129,0.18); color: var(--mx-grn-l);  border: 1px solid rgba(16,185,129,0.3); }
.mx-fbi-amber  { background: rgba(245,158,11,0.18); color: var(--mx-amb-l);  border: 1px solid rgba(245,158,11,0.3); }
.mx-fbi-violet { background: rgba(124,58,237,0.18); color: var(--mx-vio-l);  border: 1px solid rgba(124,58,237,0.3); }

.mx-fbadge-val { font-size: 1rem; font-weight: 700; color: #fff; line-height: 1.1; }
.mx-fbadge-lbl { font-size: 0.65rem; color: var(--mx-muted); font-weight: 500; }

/* Phone frame */
.mx-phone {
    width: 100%;
    height: 570px;
    border-radius: 40px;
    background: #1c1c1e;
    border: 9px solid #2c2c2e;
    box-shadow:
        0 50px 100px rgba(0,0,0,0.7),
        0 0 0 1px rgba(255,255,255,0.04),
        inset 0 1px 0 rgba(255,255,255,0.05);
    overflow: hidden;
    position: relative;
}

.mx-phone-island {
    width: 88px; height: 24px;
    background: #1c1c1e;
    border-radius: 0 0 18px 18px;
    margin: 0 auto;
    position: relative; z-index: 2;
}

.mx-phone-screen {
    background: #fff;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Instagram UI */
.mx-ig { display: flex; flex-direction: column; flex: 1; }

.mx-ig-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px 6px;
    background: #fff;
}
.mx-ig-logo {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: -apple-system, sans-serif;
}
.mx-ig-logo i { font-size: 16px; background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.mx-ig-icons { display: flex; gap: 12px; color: #1a1a1a; font-size: 16px; }

/* Stories */
.mx-ig-stories {
    display: flex;
    gap: 10px;
    padding: 8px 12px 10px;
    border-bottom: 1px solid #efefef;
    overflow: hidden;
}
.mx-ig-story { display: flex; flex-direction: column; align-items: center; gap: 4px; flex-shrink: 0; }
.mx-ig-story-ring {
    width: 52px; height: 52px;
    border-radius: 50%;
    padding: 2px;
    display: flex; align-items: center; justify-content: center;
}
.mx-ring-blue { background: linear-gradient(135deg,#2563eb,#7c3aed); }
.mx-ring-grad { background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af,#515bd4); }
.mx-ig-story-av {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid #fff;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    font-family: -apple-system, sans-serif;
}
.mx-ig-story span {
    font-size: 9px;
    color: #1a1a1a;
    font-family: -apple-system, sans-serif;
    max-width: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
}

/* Post */
.mx-ig-post { flex: 1; }
.mx-ig-post-hd {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
}
.mx-ig-av {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b00, #2563eb);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 12px;
    flex-shrink: 0;
}
.mx-ig-name {
    font-size: 11.5px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: -apple-system, sans-serif;
}
.mx-ig-spon {
    font-size: 10px;
    color: #8e8e8e;
    font-family: -apple-system, sans-serif;
}
.mx-ig-dots { margin-left: auto; color: #1a1a1a; font-size: 14px; }

/* Ad creative */
.mx-ig-creative {
    width: 100%;
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, #060c1a 0%, #1a2a5e 45%, #2d1b6b 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 16px 14px;
    position: relative;
    overflow: hidden;
}
.mx-ig-creative::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 30%, rgba(124,58,237,0.25) 0%, transparent 70%);
    pointer-events: none;
}

.mx-ig-cr-inner { position: relative; z-index: 1; }
.mx-ig-cr-chip {
    display: inline-block;
    font-size: 7.5px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    margin-bottom: 8px;
    font-family: -apple-system, sans-serif;
    border: 1px solid rgba(255,255,255,0.15);
    padding: 2px 7px;
    border-radius: 4px;
}
.mx-ig-cr-headline {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 6px;
    font-family: -apple-system, sans-serif;
}
.mx-ig-cr-sub {
    font-size: 8.5px;
    color: rgba(255,255,255,0.55);
    font-family: -apple-system, sans-serif;
    margin-bottom: 10px;
}
.mx-ig-cr-stats {
    display: flex;
    gap: 10px;
}
.mx-ig-cr-stats span {
    font-size: 8px;
    color: rgba(255,255,255,0.7);
    font-family: -apple-system, sans-serif;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 3px 7px;
    border-radius: 4px;
}
.mx-ig-cr-stats b { color: #ff8c33; }

/* Mini animated chart inside creative */
.mx-ig-mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 40px;
    position: relative; z-index: 1;
}
.mx-mc-bar {
    flex: 1;
    height: var(--bh, 50%);
    background: rgba(255,140,51,0.35);
    border-radius: 3px 3px 0 0;
    transform-origin: bottom;
    animation: mxBarRise 1s ease-out both, mxMiniPulse 2.5s ease-in-out infinite;
    animation-delay: calc(var(--bd, 0s) + 1s), calc(var(--bd, 0s) + 2.2s);
}

/* Post footer */
.mx-ig-post-ft { padding: 8px 12px 10px; background: #fff; }
.mx-ig-actions { display: flex; gap: 12px; margin-bottom: 5px; }
.mx-ig-actions i { font-size: 18px; color: #1a1a1a; }
.mx-ig-likes { font-size: 10.5px; font-weight: 700; color: #1a1a1a; font-family: -apple-system,sans-serif; margin-bottom: 3px; }
.mx-ig-cap { font-size: 10px; color: #1a1a1a; font-family: -apple-system,sans-serif; line-height: 1.4; margin-bottom: 6px; }
.mx-ig-cta {
    display: block;
    background: var(--mx-grad);
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
    text-align: center;
    padding: 8px 10px;
    border-radius: 6px;
    text-decoration: none;
    font-family: -apple-system,sans-serif;
    letter-spacing: 0.02em;
}


/* ══════════════════════════════════════════════════════
   WHY SECTION
   ══════════════════════════════════════════════════════ */
.mx-why-section { background: var(--mx-bg); }

.mx-why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.mx-why-left .mx-section-h2 { text-align: left; margin-bottom: 36px; }

.mx-problem-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mx-problem-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.mx-prob-num {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.05em;
    background: var(--mx-grad-t);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.35;
    flex-shrink: 0;
    width: 60px;
    margin-top: -4px;
}

.mx-prob-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--mx-text);
    margin: 0 0 6px;
}

.mx-prob-content p {
    font-size: 0.88rem;
    color: var(--mx-muted);
    line-height: 1.65;
    margin: 0;
}

/* Solution card */
.mx-solution-card {
    background: var(--mx-bg3);
    border: 1px solid var(--mx-border);
    border-top: 2px solid var(--mx-orange);
    border-radius: var(--mx-rl);
    padding: 36px 32px;
    position: sticky;
    top: 100px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 60px rgba(255,107,0,0.06);
}

.mx-sol-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--mx-border);
}

.mx-sol-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(255,107,0,0.12);
    border: 1px solid rgba(255,107,0,0.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    color: var(--mx-org-l);
    flex-shrink: 0;
}

.mx-sol-title { font-size: 1.05rem; font-weight: 700; color: #fff; }
.mx-sol-sub   { font-size: 0.8rem; color: var(--mx-muted); margin-top: 2px; }

.mx-sol-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.mx-sol-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    color: rgba(232,240,255,0.78);
    line-height: 1.55;
}

.mx-sol-item i {
    color: var(--mx-org-l);
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ══════════════════════════════════════════════════════
   CURRICULUM — Week Tabs
   ══════════════════════════════════════════════════════ */
.mx-curriculum-section {
    background: var(--mx-bg2);
    border-top: 1px solid var(--mx-border);
}

/* Week tab bar */
.mx-week-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.mx-wtab {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 28px;
    border-radius: var(--mx-r);
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--mx-border);
    cursor: pointer;
    transition: all 0.25s ease;
    min-width: 130px;
    gap: 3px;
}

.mx-wtab:hover {
    background: rgba(255,107,0,0.08);
    border-color: rgba(255,107,0,0.25);
}

.mx-wtab.active {
    background: rgba(255,107,0,0.12);
    border-color: var(--mx-orange);
    box-shadow: 0 0 0 1px rgba(255,107,0,0.15), 0 8px 24px rgba(255,107,0,0.12);
}

.mx-wt-num {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.mx-wt-lbl {
    font-size: 0.72rem;
    color: var(--mx-muted);
    font-weight: 500;
}

.mx-wtab.active .mx-wt-lbl { color: var(--mx-org-l); }

/* Week panels */
.mx-week-panel { display: none; }
.mx-week-panel.active { display: block; }

/* Module grid */
.mx-mod-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.mx-mod-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
    margin: 0 auto;
}

.mx-mod-card {
    background: var(--mx-bg3);
    border: 1px solid var(--mx-border);
    border-radius: var(--mx-rl);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.mx-mod-card:hover {
    border-color: rgba(255,107,0,0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 30px rgba(255,107,0,0.07);
}

.mx-mod-feat {
    border-color: rgba(255,107,0,0.2);
    background: linear-gradient(135deg, var(--mx-bg3) 0%, rgba(255,107,0,0.04) 100%);
}

.mx-mod-num {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 1;
    background: var(--mx-grad-t);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.5;
}

.mx-mod-body h3 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--mx-text);
    margin: 0 0 10px;
    line-height: 1.35;
}

.mx-mod-body ul {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.mx-mod-body ul li {
    font-size: 0.8rem;
    color: var(--mx-muted);
    line-height: 1.5;
    padding-left: 14px;
    position: relative;
}

.mx-mod-body ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--mx-org-l);
    font-size: 0.7rem;
    line-height: 1.6;
}

/* ══════════════════════════════════════════════════════
   SKILLS
   ══════════════════════════════════════════════════════ */
.mx-skills-section { background: var(--mx-bg); }

.mx-skills-layout {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 64px;
    align-items: start;
}

.mx-skills-hd .mx-section-h2 { text-align: left; }
.mx-skills-hd p { text-align: left; color: var(--mx-muted); margin-top: 12px; line-height: 1.65; }

.mx-skills-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: sticky;
    top: 100px;
}

.mx-skill-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--mx-border);
    transition: background 0.2s;
}

.mx-skill-row:first-child { border-top: 1px solid var(--mx-border); }

.mx-skill-ico {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.mx-si-blue   { background:rgba(255,107,0,0.12);  border:1px solid rgba(255,107,0,0.22);  color:var(--mx-org-l); }
.mx-si-violet { background:rgba(124,58,237,0.12); border:1px solid rgba(124,58,237,0.22); color:var(--mx-vio-l); }
.mx-si-green  { background:rgba(16,185,129,0.12); border:1px solid rgba(16,185,129,0.22); color:var(--mx-grn-l); }
.mx-si-amber  { background:rgba(245,158,11,0.12); border:1px solid rgba(245,158,11,0.22); color:var(--mx-amb-l); }
.mx-si-cyan   { background:rgba(6,182,212,0.12);  border:1px solid rgba(6,182,212,0.22);  color:var(--mx-cyan-l); }
.mx-si-orange { background:rgba(249,115,22,0.12); border:1px solid rgba(249,115,22,0.22); color:#fb923c; }

.mx-skill-info { flex: 1; }
.mx-skill-info h4 { font-size: 0.95rem; font-weight: 700; color: var(--mx-text); margin: 0 0 3px; }
.mx-skill-info p  { font-size: 0.8rem; color: var(--mx-muted); margin: 0; line-height: 1.5; }

.mx-skill-tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--mx-border);
    color: var(--mx-dim);
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════
   AUDIENCE / WHO IS THIS FOR
   ══════════════════════════════════════════════════════ */
.mx-audience-section {
    background: var(--mx-bg2);
    border-top: 1px solid var(--mx-border);
}

.mx-audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.mx-aud-card {
    border-radius: var(--mx-rl);
    padding: 28px 24px;
    border: 1px solid var(--mx-border);
    border-left-width: 3px;
    background: rgba(255,255,255,0.02);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}

.mx-aud-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.03);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.mx-ac-blue   { border-left-color: var(--mx-violet);  }
.mx-ac-violet { border-left-color: var(--mx-violet);  }
.mx-ac-green  { border-left-color: var(--mx-green);   }
.mx-ac-amber  { border-left-color: var(--mx-amber);   }
.mx-ac-cyan   { border-left-color: var(--mx-cyan);    }
.mx-ac-red    { border-left-color: var(--mx-red);     }

.mx-ac-emoji { font-size: 2rem; line-height: 1; }

.mx-aud-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--mx-text);
    margin: 0;
}

.mx-aud-card p {
    font-size: 0.84rem;
    color: var(--mx-muted);
    margin: 0;
    line-height: 1.55;
}

.mx-ac-outcome {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--mx-org-l);
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid var(--mx-border);
}
.mx-ac-outcome i { font-size: 0.72rem; }

/* ══════════════════════════════════════════════════════
   MENTORS
   ══════════════════════════════════════════════════════ */
.mx-mentors-section { background: var(--mx-bg); }



/* ══════════════════════════════════════════════════════
   SHARED TEAM COMPONENT — META ADS STYLES
   (Poster-card: image fills card, footer overlaid bottom)
   ══════════════════════════════════════════════════════ */
.mx-mentors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 900px;
    margin: 48px auto 0;
}

/* Card — fixed height, image fills it */
.mx-mentors-grid .bbx-team-card {
    position: relative;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--mx-border);
    background: var(--mx-bg2);
    display: block;
    transition: transform 0.3s ease, border-color 0.3s, box-shadow 0.3s;
}

.mx-mentors-grid .bbx-team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,107,0,0.4);
    box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 48px rgba(255,107,0,0.1);
}

/* Photo fills entire card */
.mx-mentors-grid .bbx-team-img-wrap {
    position: static;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.mx-mentors-grid .bbx-team-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.5s ease;
    filter: grayscale(15%);
}

.mx-mentors-grid .bbx-team-card:hover .bbx-team-img-wrap img {
    transform: scale(1.06);
    filter: grayscale(0%);
}

/* Experience badge */
.mx-mentors-grid .bbx-team-exp-float {
    display: flex !important;
    position: absolute;
    top: 16px;
    right: 16px;
    flex-direction: column;
    align-items: center;
    background: rgba(6,12,26,0.75);
    border: 1px solid rgba(255,107,0,0.5);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 8px 12px;
    text-align: center;
    line-height: 1.1;
}

.mx-mentors-grid .bbx-team-exp-num {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--mx-accent);
    line-height: 1;
}

.mx-mentors-grid .bbx-team-exp-text {
    font-size: 0.6rem;
    font-weight: 700;
    color: rgba(232,240,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 4px;
}

/* Footer — absolutely positioned at the bottom */
.mx-mentors-grid .bbx-team-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 22px;
    background: linear-gradient(to top, rgba(4,8,20,0.97) 0%, rgba(4,8,20,0.85) 60%, transparent 100%);
    padding-top: 48px;
    display: block;
}

.mx-mentors-grid .bbx-team-footer-inner { display: block; }

.mx-mentors-grid .bbx-team-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mx-mentors-grid .bbx-team-role {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--mx-accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 10px;
}

.mx-mentors-grid .bbx-team-desc {
    font-size: 0.8rem;
    color: rgba(232,240,255,0.72);
    line-height: 1.5;
    margin: 0 0 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.mx-mentors-grid .bbx-team-card:hover .bbx-team-desc { max-height: 80px; }

/* Skills */
.mx-mentors-grid .bbx-team-skills {
    display: flex !important;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.mx-mentors-grid .bbx-team-skills span {
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(232,240,255,0.75);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    padding: 3px 10px;
    background: rgba(255,255,255,0.06);
}

/* Socials */
.mx-mentors-grid .bbx-team-socials {
    display: flex;
    gap: 8px;
}

.mx-mentors-grid .bbx-team-socials a {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    color: rgba(232,240,255,0.7);
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.06);
    text-decoration: none;
    transition: all 0.2s;
}

.mx-mentors-grid .bbx-team-socials a:hover {
    background: var(--mx-accent);
    border-color: var(--mx-accent);
    color: #fff;
}

/* Hide unused elements */
.mx-mentors-grid .bbx-team-overlay,
.mx-mentors-grid .bbx-team-side-label,
.mx-mentors-grid .bbx-team-accent,
.mx-mentors-grid .bbx-hover-cta { display: none; }

/* ══════════════════════════════════════════════════════
   WHAT'S INCLUDED
   ══════════════════════════════════════════════════════ */
.mx-includes-section {
    background: var(--mx-bg2);
    border-top: 1px solid var(--mx-border);
}

.mx-includes-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: center;
}

.mx-inc-left .mx-section-h2 { text-align: left; }
.mx-inc-left p { color: var(--mx-muted); line-height: 1.65; margin: 0 0 28px; font-size: 0.95rem; }

.mx-inc-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.mx-inc-note {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    color: var(--mx-muted);
}
.mx-inc-note i { color: var(--mx-green); }

.mx-inc-card {
    background: var(--mx-bg3);
    border: 1px solid var(--mx-border);
    border-radius: var(--mx-rl);
    padding: 28px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.mx-inc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mx-inc-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 10px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--mx-border);
    font-size: 0.83rem;
    color: rgba(232,240,255,0.78);
    line-height: 1.4;
    transition: border-color 0.2s, background 0.2s;
}

.mx-inc-item:hover {
    border-color: rgba(255,107,0,0.2);
    background: rgba(255,107,0,0.04);
}

.mx-inc-item i {
    color: var(--mx-orange);
    font-size: 0.88rem;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════
   CAREER PATHS
   ══════════════════════════════════════════════════════ */
.mx-careers-section { background: var(--mx-bg); }

.mx-career-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mx-career-track {
    border-radius: var(--mx-rl);
    background: var(--mx-bg2);
    border: 1px solid var(--mx-border);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.mx-career-track:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.mx-ct-hd {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 24px 22px 20px;
    border-bottom: 1px solid var(--mx-border);
}

.mx-ct-level {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.mx-ct-sal {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
}

.mx-ct-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
}

.mx-ct-entry .mx-ct-level { color: var(--mx-grn-l); }
.mx-ct-entry .mx-ct-icon  { background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.2); color: var(--mx-grn-l); }
.mx-ct-entry              { border-top: 2px solid var(--mx-green); }

.mx-ct-mid .mx-ct-level   { color: var(--mx-vio-l); }
.mx-ct-mid .mx-ct-icon    { background: rgba(124,58,237,0.12); border: 1px solid rgba(124,58,237,0.2); color: var(--mx-vio-l); }
.mx-ct-mid                { border-top: 2px solid var(--mx-violet); }

.mx-ct-free .mx-ct-level  { color: var(--mx-vio-l); }
.mx-ct-free .mx-ct-icon   { background: rgba(124,58,237,0.12); border: 1px solid rgba(124,58,237,0.2); color: var(--mx-vio-l); }
.mx-ct-free               { border-top: 2px solid var(--mx-violet); }

.mx-ct-roles {
    padding: 18px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mx-ct-roles span {
    font-size: 0.84rem;
    color: var(--mx-muted);
    padding: 8px 12px;
    background: rgba(255,255,255,0.02);
    border-radius: 8px;
    border: 1px solid var(--mx-border);
    transition: color 0.2s, border-color 0.2s;
}

.mx-career-track:hover .mx-ct-roles span {
    color: var(--mx-text);
    border-color: rgba(255,255,255,0.1);
}

/* ══════════════════════════════════════════════════════
   FAQ — Minimal divider style
   ══════════════════════════════════════════════════════ */
.mx-faq-section {
    background: var(--mx-bg2);
    border-top: 1px solid var(--mx-border);
}

.mx-faq-layout {
    display: grid;
    grid-template-columns: 0.7fr 1.4fr;
    gap: 72px;
    align-items: flex-start;
}

.mx-faq-left {
    position: sticky;
    top: 100px;
}

.mx-faq-left .mx-section-h2 { text-align: left; }
.mx-faq-left p { color: var(--mx-muted); font-size: 0.92rem; line-height: 1.65; margin: 0; }
.mx-faq-wa {
    color: var(--mx-org-l);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,140,51,0.3);
    transition: border-color 0.2s;
}
.mx-faq-wa:hover { border-bottom-color: var(--mx-orange); }

.mx-faq-list { display: flex; flex-direction: column; }

.mx-faq-item { border-bottom: 1px solid var(--mx-border); }

.mx-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--mx-text);
    user-select: none;
    transition: color 0.2s;
}

.mx-faq-q:hover { color: var(--mx-org-l); }

.mx-faq-item.active .mx-faq-q { color: #fff; }

.mx-faq-q i {
    font-size: 0.85rem;
    color: var(--mx-dim);
    flex-shrink: 0;
    transition: transform 0.3s ease, color 0.2s;
}

.mx-faq-item.active .mx-faq-q i {
    transform: rotate(45deg);
    color: var(--mx-orange);
}

.mx-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.mx-faq-item.active .mx-faq-a { max-height: 300px; }

.mx-faq-a p {
    padding: 0 4px 22px;
    margin: 0;
    font-size: 0.9rem;
    color: var(--mx-muted);
    line-height: 1.7;
}

/* ══════════════════════════════════════════════════════
   CTA — Vivid gradient background
   ══════════════════════════════════════════════════════ */
.mx-cta-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(160deg, #0f0f0f 0%, #1a1018 50%, #0f0f0f 100%);
    overflow: hidden;
    text-align: center;
}

/* Subtle animated chart bars in CTA background */
.mx-cta-chart-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    gap: 20px;
    padding: 0 5% 0;
    pointer-events: none;
    opacity: 0.35;
}

.mx-cta-bar {
    flex: 1;
    height: var(--ch, 50%);
    background: rgba(255,255,255,0.06);
    border-radius: 4px 4px 0 0;
    transform-origin: bottom;
    animation: mxBarRise 1.5s ease-out both, mxCtaPulse 4s ease-in-out infinite;
    animation-delay: calc(var(--cd, 0s)), calc(var(--cd, 0s) + 2s);
}

/* CTA glow effect */
.mx-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 20% 50%, rgba(255,107,0,0.1) 0%, transparent 60%),
        radial-gradient(ellipse 55% 65% at 80% 50%, rgba(124,58,237,0.12) 0%, transparent 60%);
    pointer-events: none;
}

/* Grid overlay */
.mx-cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.mx-cta-content { position: relative; z-index: 3; }

.mx-cta-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.04em;
    margin-bottom: 28px;
}

.mx-pulse-white {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
    animation: mxPulse 1.6s ease-in-out infinite;
    flex-shrink: 0;
}

.mx-cta-h2 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: rgba(255,255,255,0.7);
    margin: 0 0 14px;
}

.mx-cta-h2 span {
    color: #fff;
    display: block;
}

.mx-cta-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin: 0 0 44px;
}

.mx-cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.mx-cta-primary {
    background: #fff;
    color: #1a1a2e;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 14px;
    font-size: 1rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.mx-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    color: #1a1a2e;
}

.mx-cta-white {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.2);
    padding: 16px 36px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: background 0.2s, transform 0.2s;
    backdrop-filter: blur(8px);
}
.mx-cta-white:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
    color: #fff;
}

.mx-cta-ghost {
    background: transparent;
    color: rgba(255,255,255,0.6);
    border: 1.5px solid rgba(255,255,255,0.12);
    padding: 16px 36px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: color 0.2s, border-color 0.2s;
}
.mx-cta-ghost:hover {
    color: rgba(255,255,255,0.9);
    border-color: rgba(255,255,255,0.25);
}

.mx-cta-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    font-size: 0.83rem;
    color: rgba(255,255,255,0.5);
}

.mx-cta-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.mx-cta-trust i { color: rgba(255,255,255,0.7); font-size: 0.78rem; }

/* ══════════════════════════════════════════════════════
   STICKY MOBILE BAR
   ══════════════════════════════════════════════════════ */
.mx-sticky-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 999;
    background: var(--mx-bg2);
    border-top: 1px solid var(--mx-border);
    padding: 12px 20px;
    display: none;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s, transform 0.3s;
}

.mx-sticky-bar.visible {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 992px) { .mx-sticky-bar { display: none !important; } }

/* ══════════════════════════════════════════════════════
   FLOATING BUTTONS
   ══════════════════════════════════════════════════════ */
.mx-float-wrap {
    position: fixed;
    bottom: 20px; right: 20px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mx-float-wa, .mx-float-top {
    width: 46px; height: 46px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    border: none;
}

.mx-float-wa {
    background: #25d366;
    color: #fff;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
}
.mx-float-wa:hover { background: #1ebe5d; transform: scale(1.1); color: #fff; }

.mx-float-top {
    background: var(--mx-bg2);
    border: 1px solid var(--mx-border);
    color: var(--mx-text);
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.mx-float-top:hover {
    background: rgba(255,107,0,0.12);
    border-color: rgba(255,107,0,0.35);
    color: var(--mx-org-l);
    transform: translateY(-3px);
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — Tablet (≤ 991px)
   ══════════════════════════════════════════════════════ */
@media (max-width: 991px) {
    .mx-hero-layout       { grid-template-columns: 1fr; }
    .mx-hero-right        { order: -1; }
    .mx-phone-scene       { margin: 0 auto; }
    .mx-why-layout        { grid-template-columns: 1fr; }
    .mx-solution-card     { position: static; }
    .mx-skills-layout     { grid-template-columns: 1fr; gap: 40px; }
    .mx-skills-list       { position: static; }
    .mx-skills-hd .mx-section-h2 { font-size: 2rem; }
    .mx-mod-grid          { grid-template-columns: repeat(2, 1fr); }
    .mx-audience-grid     { grid-template-columns: repeat(2, 1fr); }
    .mx-mentors-grid      { grid-template-columns: repeat(2, 1fr); }
    .mx-includes-layout   { grid-template-columns: 1fr; }
    .mx-career-grid       { grid-template-columns: 1fr; }
    .mx-faq-layout        { grid-template-columns: 1fr; gap: 40px; }
    .mx-faq-left          { position: static; }
    .mx-hero-sub          { max-width: 100%; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — Mobile (≤ 768px)
   ══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .mx-section           { padding: 70px 0; }
    .mx-hero              { padding: 90px 0 50px; min-height: unset; }
    .mx-hero-right        { display: none; }
    .mx-phone-scene       { width: 200px; }
    .mx-fbadge-ctr        { left: -50px; }
    .mx-fbadge-roas       { right: -40px; }
    .mx-fbadge-cpl        { right: -40px; }
    .mx-fbadge-reach      { left: -50px; }
    .mx-hero-actions      { flex-direction: column; }
    .mx-hero-actions .mx-btn-lg { justify-content: center; }
    .mx-mod-grid          { grid-template-columns: 1fr; }
    .mx-mod-grid-2        { grid-template-columns: 1fr; }
    .mx-inc-grid          { grid-template-columns: 1fr; }
    .mx-mentors-grid      { grid-template-columns: 1fr; }
    .mx-mentors-grid .bbx-team-card { height: 500px; }
    .mx-mentors-grid .bbx-team-img-wrap img { object-position: center 8%; }
    .mx-audience-grid     { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — Small mobile (≤ 576px)
   ══════════════════════════════════════════════════════ */
@media (max-width: 576px) {
    .mx-phone-scene       { width: 190px; }
    .mx-fbadge            { display: none; }
    .mx-cta-actions       { flex-direction: column; align-items: center; }
    .mx-cta-primary, .mx-cta-white, .mx-cta-ghost { width: 100%; justify-content: center; }
    .mx-section-h2        { font-size: 1.9rem; }
}

/* ══════════════════════════════════════════════════════
   KEYFRAME ANIMATIONS
   ══════════════════════════════════════════════════════ */

/* Bar rise from bottom */
@keyframes mxBarRise {
    from { transform: scaleY(0); transform-origin: bottom; }
    to   { transform: scaleY(1); transform-origin: bottom; }
}

/* Bar breathing pulse */
@keyframes mxBarPulse {
    0%,100% { opacity: 0.6; }
    50%      { opacity: 0.85; }
}

/* Mini chart bars pulse */
@keyframes mxMiniPulse {
    0%,100% { opacity: 0.5; }
    50%      { opacity: 0.9; }
}

/* CTA bars pulse */
@keyframes mxCtaPulse {
    0%,100% { opacity: 0.3; }
    50%      { opacity: 0.6; }
}

/* Orb drift */
@keyframes mxOrbFloat {
    0%,100% { transform: translate(0,0) scale(1); }
    33%      { transform: translate(20px,-15px) scale(1.05); }
    66%      { transform: translate(-10px,10px) scale(0.97); }
}

/* Floating badges */
@keyframes mxFloat {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

/* SVG line draw */
@keyframes mxLineDash {
    from { stroke-dashoffset: 1200; }
    to   { stroke-dashoffset: 0; }
}

@keyframes mxLineDraw {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Dot pop */
@keyframes mxDotPop {
    from { opacity: 0; transform: scale(0); }
    to   { opacity: 1; transform: scale(1); }
}

/* Pulse dot */
@keyframes mxPulse {
    0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }
    50%      { box-shadow: 0 0 0 6px rgba(34,197,94,0.05); }
}
