* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Inter, sans-serif;
            background: #000;
            color: white;
            overflow-x: hidden;
        }

        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }



        .nav-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 60px;
        }

        .nav-group {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .logo {
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        .logo img {
            height: 80px;
            width: auto;
        }



        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu li a {
            color: white;
            text-decoration: none;
            font-size: 14px;
            font-weight: 400;
            position: relative;
            padding: 0.5rem 0;
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .nav-menu li a:hover {
            color: #00ffff;
            opacity: 1;
            text-shadow: 0 0 20px rgba(0, 255, 255, 1);
        }

        .nav-menu li.active a {
            color: #00ffff;
            text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
        }

        .login-btn {
            position: relative;
            background: #000;
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .login-btn::before {
            content: '';
            position: absolute;
            top: -1px;
            left: -1px;
            right: -1px;
            bottom: -1px;
            background: linear-gradient(to top, #1F1F1F, #4E4E4E);
            border-radius: 9px;
            z-index: -1;
        }

        .login-btn:hover {
            color: #00ffff;
            text-shadow: 0 0 20px rgba(0, 255, 255, 1);
        }

        .hamburger {
            display: none !important;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: white;
            transition: 0.3s;
        }

        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem 0;
            text-align: center;
        }

        .mobile-menu.show {
            display: block;
        }

        .hero-cta-btn .desktop-text {
            display: inline;
        }

        .hero-cta-btn .mobile-text {
            display: none;
        }

        @media (max-width: 768px) {
            .hero-cta-btn .desktop-text {
                display: none;
            }

            .hero-cta-btn .mobile-text {
                display: inline;
            }

            .contact-name-phone-row {
                grid-template-columns: 1fr !important;
            }

            .hero-buttons {
                flex-direction: column !important;
                align-items: center !important;
            }

            .hero-buttons a {
                width: 225px !important;
            }
        }

        .mobile-menu ul {
            list-style: none;
        }

        .mobile-menu li {
            margin: 3rem 0;
        }

        .mobile-menu a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: opacity 0.3s ease;
        }

        .mobile-menu a:hover {
            opacity: 0.8;
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            nav {
                order: 3;
            }

            .hamburger {
                display: flex !important;
                order: 2;
            }

            .login-icon {
                order: 1;
            }

            .nav-container {
                padding: 0 1rem;
            }

            .nav-group {
                gap: 1rem;
            }
        }

        @media (max-width: 480px) {
            .nav-container {
                height: 50px;
            }

            .logo img {
                height: 64px;
            }

            .login-btn {
                padding: 0.4rem 0.8rem;
                font-size: 12px;
            }
        }

        /* RESET */

        *{
          margin:0;
          padding:0;
          box-sizing:border-box;
        }

        /* HERO SECTION */

        .hero-section{
          position:relative;
          min-height:60vh;
          overflow:hidden;

          display:flex;
          align-items:center;
        }

        /* UNICORN BACKGROUND */

        .unicorn-bg{
          position:absolute;
          inset:0;
          z-index:0;
        }

        /* DARK OVERLAY */

        .hero-overlay{
          position:absolute;
          inset:0;

          background:
            linear-gradient(
              90deg,
              rgba(0,0,0,0.72) 0%,
              rgba(0,0,0,0.45) 40%,
              rgba(0,0,0,0.2) 100%
            );

          z-index:1;
        }

        .unicorn-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }

        /* HERO CONTENT */

        .hero-content{
          position:relative;
          z-index:2;

          width:100%;

          padding: 0 40px;

          text-align: center;
        }

        /* TITLE */

        .hero-content h1{
          font-size:clamp(48px, 6vw, 80px);

          line-height:0.95;
          letter-spacing:-0.05em;

          max-width:950px;

          margin: 0 auto;

          font-weight:500;
        }

        /* GRADIENT TITLE */

        .hero-content h1 span{
          background:
            linear-gradient(
              90deg,
              #00e5ff,
              #67ff9b
            );

          -webkit-background-clip:text;
          -webkit-text-fill-color:transparent;
        }

        /* DESCRIPTION */

        .hero-content p{
          margin-top:32px;
          margin-left: auto;
          margin-right: auto;

          max-width:700px;

          font-size:22px;
          line-height:1.7;

  color:rgba(255,255,255,0.72);

  font-weight: 300;
}

        /* BUTTON */

        .hero-content button{
          margin-top:48px;
          margin-left: auto;
          margin-right: auto;

          height:64px;
          padding-inline:42px;

          border:1px solid white;

          border-radius:18px;

          color:white;

          font-size:16px;
          font-weight:600;

          cursor:pointer;

          background: #000;

          transition:0.3s ease;
        }

        /* BUTTON HOVER */

        .hero-content button:hover{
          transform: translateY(-3px);

          border-color: #00ffff;

          color: #00ffff;
        }

        /* HERO FEATURES */

        .hero-content .hero-features{
          margin-top:24px;

          font-size:14px;
          color:rgba(255,255,255,0.6);
          font-weight:400;
        }

        /* BUTTON ACTIVE */

        .hero-content button:active{
          transform:translateY(-1px);

          background: rgba(0,229,255,0.3);

          box-shadow:
            0 0 40px rgba(0,229,255,0.6),
            0 4px 30px rgba(0,0,0,0.2);
        }

        /* PRICING IMAGE */

        .pricing-image {
            width: 950px;
            max-width: 100%;
            height: auto;
        }

        /* TABLET */

        @media (max-width: 1024px) {
            .pricing-image {
                width: 700px;
            }
        }

        /* CARDS */

        .cards-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            margin-top: 2rem;
            width: 100%;
            max-width: 800px;
        }

        .card {
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 10px;
            padding: 1rem;
            text-align: center;
            background: #000;
        }

        .card-title {
            color: #00ffff;
            font-weight: bold;
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .card-text {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.8);
        }

        /* TABLET CARDS */

        @media (max-width: 1024px) {
            .cards-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* MOBILE CARDS */

        @media (max-width: 767px) {
            .cards-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* WORKFLOW CARDS */

        .workflow-cards {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            width: 100%;
            max-width: 800px;
        }

        .workflow-card {
            background: rgba(0, 0, 0, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 32px;
            padding: 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .workflow-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 229, 255, 0.3);
            border-color: rgba(0, 229, 255, 0.5);
        }

        .card-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 16px;
            margin-bottom: 1rem;
            transition: transform 0.3s ease;
        }

        .workflow-card:hover .card-image {
            transform: scale(1.05);
        }

        .step-number {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: linear-gradient(45deg, #00e5ff, #67ff9b);
            color: #000;
            font-size: 14px;
            font-weight: bold;
            padding: 0.5rem;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
        }

        .card-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #00e5ff;
        }

        .card-desc {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        /* DESKTOP H1 INCREASE */

        @media (min-width: 1200px) {
          .hero-content h1 {
            font-size: 60px;
          }
        }

        /* PAIN CARDS */

        .pain-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            width: 100%;
        }

        .pain-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 28px;
            padding: 2rem;
            text-align: left;
            transition: all 0.3s ease;
        }

        .pain-card:hover {
            transform: translateY(-5px);
        }

        .icon {
            display: inline-block;
            margin-bottom: 1rem;
        }

        .pain {
            margin-bottom: 0.5rem;
            font-weight: 400;
        }

        .solution {
            font-weight: 500;
        }

        /* TABLET PAIN CARDS */

        @media (max-width: 1024px) {
            .pain-cards {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* MOBILE PAIN CARDS */

        @media (max-width: 767px) {
            .pain-cards {
                grid-template-columns: 1fr;
            }
        }

        /* MOBILE */

        @media(max-width:768px){

          .hero-content{
            padding: 0 20px;
          }

          .hero-content h1{
            font-size:42px;
          }

          .hero-content p{
            font-size:18px;
          }

        }
        }



        /* MOBILE HERO */

        @media(max-width:768px){

          .hero-content{
            padding: 0 20px;
          }

          .hero-content h1{
            font-size:42px;
          }

          .hero-content p{
            font-size:18px;
          }

        }

          .hero-content h1{
            font-size:52px;
          }

          .hero-content p{
            font-size:18px;
          }

        }

          .hero-content h1{
            font-size:42px;
          }

          .hero-content p{
            font-size:18px;
          }

        }



        .hero-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            animation: fadeInUp 1.5s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.1;
            color: white;
            margin-bottom: 2rem;
            text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
            animation: textGlow 3s ease-in-out infinite alternate;
        }

        .hero-title .highlight {
            background: linear-gradient(45deg, #00ffff, #00ff00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        @keyframes textGlow {
            from { text-shadow: 0 0 20px rgba(0, 255, 255, 0.3); }
            to { text-shadow: 0 0 30px rgba(0, 255, 255, 0.5); }
        }

        .hero-subtitle {
            font-size: 1.25rem;
            font-weight: 400;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            margin-bottom: 3rem;
            animation: fadeInUp 1.5s ease-out 0.5s both;
        }

        .hero-cta {
            padding: 1rem 2rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            color: white;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            animation: fadeInUp 1.5s ease-out 1s both;
            position: relative;
            overflow: hidden;
        }

        .hero-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .hero-cta:hover::before {
            left: 100%;
        }

        .hero-cta:hover {
            background: rgba(0, 255, 255, 0.1);
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1rem;
                margin-bottom: 2rem;
            }

            .hero-cta {
                padding: 0.75rem 1.5rem;
            }

            .hero-container {
                padding: 0 1rem;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 0.9rem;
            }
        }

        /* ============================================
           DESKTOP TWO-COLUMN HERO LAYOUT
           ============================================ */

        .hero-inner {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 40px 80px;
            gap: 40px;
        }

        .hero-image {
            display: none; /* hidden by default (mobile/tablet) */
            width: 100%;
            max-height: 620px;
            object-fit: contain;
            border-radius: 16px;
        }

        /* DESKTOP: two columns */
        @media (min-width: 1024px) {
            .hero-section {
                min-height: 620px;
                align-items: center;
            }

            .hero-inner {
                display: grid;
                grid-template-columns: 1fr 720px;
                gap: 0;
                padding: 40px 60px;
                align-items: center;
            }

            .hero-content {
                text-align: center;
                padding: 0;
            }

            .hero-content h1 {
                text-align: center;
                max-width: 620px;
                font-size: 56px;
                line-height: 1.05;
                margin-left: auto;
                margin-right: auto;
            }

            .hero-content p {
                text-align: center;
                max-width: 520px;
                margin-left: auto;
                margin-right: auto;
            }

            /* Center buttons on desktop */
            .hero-content button {
                margin-left: auto;
                margin-right: auto;
            }

            /* Center the button row on desktop */
            .hero-content > div[style*="justify-content:center"] {
                justify-content: center !important;
            }

            .hero-image {
                display: block;
                width: 100%;
                height: auto;
                max-height: 520px;
                transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
            }

            .hero-image:hover {
                transform: translateY(-8px);
            }
        }

        /* Ensure image stays hidden on smaller screens */
        @media (max-width: 1023px) {
            .hero-image {
                display: none;
            }
        }
        #mmBot-launcher {
            display: none !important;
        }
        .chat-widget-btn {
            position: fixed;
            bottom: 28px;
            right: 28px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #00ffff, #4ade80);
            border: none;
            cursor: pointer;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(0, 229, 255, 0.3), 0 0 40px rgba(74, 222, 128, 0.15);
            transition: all 0.3s ease;
        }
        .chat-widget-btn:hover {
            transform: scale(1.08);
            box-shadow: 0 6px 28px rgba(0, 229, 255, 0.45), 0 0 50px rgba(74, 222, 128, 0.2);
        }
        .chat-widget-btn img.chat-icon {
            width: 32px;
            height: 32px;
            object-fit: contain;
        }
        .chat-widget-btn svg.chat-close {
            display: none;
            width: 22px;
            height: 22px;
            fill: #000;
        }
        .chat-widget-btn.active img.chat-icon {
            display: none;
        }
        .chat-widget-btn.active svg.chat-close {
            display: block;
            width: 22px;
            height: 22px;
            fill: #000;
        }
        .chat-widget-popup {
            position: fixed;
            bottom: 100px;
            right: 28px;
            width: 380px;
            height: 520px;
            border-radius: 20px;
            overflow: hidden;
            z-index: 9998;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px) scale(0.95);
            transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }
        .chat-widget-popup.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }
        .chat-widget-header {
            background: rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .chat-widget-header-logo {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, #00ffff, #4ade80);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .chat-widget-header-logo svg {
            width: 20px;
            height: 20px;
            fill: #000;
        }
        .chat-widget-header-text h4 {
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            margin: 0;
        }
        .chat-widget-header-text span {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
        }
        .chat-widget-iframe {
            width: 100%;
            height: calc(100% - 69px);
            border: none;
            background: #0a0a0a;
        }
        .chat-widget-ring {
            position: fixed;
            bottom: 22px;
            right: 22px;
            width: 72px;
            height: 72px;
            border-radius: 50%;
            border: 2px solid rgba(0, 255, 255, 0.2);
            z-index: 9997;
            animation: chat-ring 3s ease-in-out infinite;
            pointer-events: none;
        }
        @keyframes chat-ring {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.15); opacity: 0; }
        }
        @media (max-width: 480px) {
            .chat-widget-popup {
                width: calc(100% - 24px);
                height: calc(100vh - 140px);
                bottom: 88px;
                right: 12px;
            }
            .chat-widget-btn {
                bottom: 20px;
                right: 20px;
            }
            .chat-widget-ring {
                bottom: 14px;
                right: 14px;
            }
        }
    

                    .impact-cta-btn:hover {
                        transform: translateY(-3px);
                        border-color: #00ffff !important;
                        color: #00ffff !important;
                        box-shadow: 0 0 12px rgba(0, 255, 255, 0.3);
                    }
                    .impact-cta-btn:active {
                        transform: translateY(-1px);
                        background: rgba(0,229,255,0.3);
                    }
                

            /* CSS Variables - Easy to customize */
            :root {
                --cyan-glow: #00E5FF;
                --cyan-glow-2: #00C2FF;
                --cyan-glow-3: #38BDF8;
                --bar-bg: rgba(255,255,255,0.055);
                --bar-border: rgba(255,255,255,0.08);
            }

            .impact-row {
                position: relative;
                padding: 8px 0;
                transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
            }
            .impact-row:hover {
                transform: translateY(-2px);
            }

            .impact-label {
                font-family: Inter, system-ui, -apple-system, sans-serif;
                font-size: 15px;
                font-weight: 500;
                color: #e5e7eb;
                margin-bottom: 11px;
                letter-spacing: -0.01em;
            }

            .progress-wrapper {
                position: relative;
                height: 13px;
                background: var(--bar-bg);
                border-radius: 9999px;
                border: 1px solid var(--bar-border);
                overflow: hidden;
                box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
            }

            .progress-bar {
                position: absolute;
                top: 0; left: 0; height: 100%;
                border-radius: 9999px;
                background: linear-gradient(90deg, #00E5FF, #00FFA3);
                box-shadow: 
                    0 0 14px rgba(0,229,255,0.55),
                    0 0 28px rgba(0,229,255,0.28),
                    inset 0 1px 0 rgba(255,255,255,0.45);
                transition: width 0.1s linear;
                will-change: width, box-shadow;
            }

            /* Premium layered cyan neon glow */
            .progress-bar::after {
                content: '';
                position: absolute;
                inset: -3px;
                border-radius: 9999px;
                background: linear-gradient(90deg, transparent, rgba(0,229,255,0.65), transparent);
                opacity: 0;
                z-index: 1;
                pointer-events: none;
            }
            .progress-bar.active::after {
                opacity: 1;
                animation: shimmer-sweep 2.2s cubic-bezier(0.23,1,0.32,1) forwards;
            }

            /* Leading edge bloom */
            .progress-bar::before {
                content: '';
                position: absolute;
                top: -2px; right: -3px;
                width: 18px; height: 18px;
                background: radial-gradient(circle, #fff 8%, var(--cyan-glow) 45%, transparent 75%);
                border-radius: 50%;
                filter: blur(1.5px);
                box-shadow: 0 0 20px var(--cyan-glow);
                z-index: 2;
            }

            .impact-value {
                font-size: 15px;
                font-weight: 600;
                color: var(--cyan-glow);
                text-shadow: 0 0 12px rgba(0,229,255,0.55);
                font-variant-numeric: tabular-nums;
                min-width: 78px;
                text-align: right;
                white-space: nowrap;
            }

            .impact-row:hover .progress-bar {
                box-shadow: 
                    0 0 22px rgba(0,229,255,0.75),
                    0 0 42px rgba(0,229,255,0.38),
                    inset 0 1px 0 rgba(255,255,255,0.55);
            }

            @keyframes shimmer-sweep {
                0% { transform: translateX(-100%); }
                100% { transform: translateX(340%); }
            }

            @keyframes fadeUp {
                to { opacity: 1; transform: translateY(0); }
            }
        

                        @media (min-width: 1025px) {
                            #training-grid {
                                grid-template-columns: repeat(3, 1fr) !important;
                            }
                        }
                    

            @keyframes fadeUpContact {
                to { opacity: 1; transform: translateY(0); }
            }

            .premium-contact-btn:hover {
                transform: translateY(-3px);
                border-color: #00ffff !important;
                color: #00ffff !important;
                box-shadow: 0 0 16px rgba(0, 229, 255, 0.4);
            }
            .premium-contact-btn:active {
                transform: translateY(-1px);
                background: rgba(0,229,255,0.15);
            }
            .premium-contact-btn:disabled {
                opacity: 0.5;
                cursor: not-allowed;
                pointer-events: none;
                background: rgba(255, 255, 255, 0.05) !important;
                border-color: rgba(255, 255, 255, 0.2) !important;
                color: rgba(255, 255, 255, 0.4) !important;
                box-shadow: none !important;
                transform: none !important;
            }

            /* Focus glow on inputs */
            input:focus, textarea:focus {
                border-color: #00E5FF !important;
                box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.15) !important;
            }

            @keyframes fadeInAlert {
                from { opacity: 0; transform: translateY(10px); }
                to { opacity: 1; transform: translateY(0); }
            }

/* Hide default MMBot launcher to prevent overlapping with custom widget */
#mmBot-launcher {
    display: none !important;
}
