*{
          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: 500;
            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);
        }
        .login-icon:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: scale(1.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;
        }
        .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;
            }
        }
        body > main {
            padding: 2rem;
            min-height: calc(100vh - 60px);
        }
        h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 500;
        }
        p {
            font-size: 1.2rem;
            line-height: 1.6;
            font-weight: 300;
        }

        /* Custom styles for the hero section */
        .scrollbar-hide {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        .scrollbar-hide::-webkit-scrollbar {
            display: none;
        }
        .perspective-midrange {
            perspective: 1200px;
        }
        .rotate-x-5 {
            transform: rotateX(5deg);
        }
        .rotate-y-10 {
            transform: rotateY(10deg);
        }
        .rotate-x-5.rotate-y-10 {
            transform: rotateX(5deg) rotateY(10deg);
        }

        .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;
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

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

        .icon {
            display: inline-block;
            margin-right: 0.75rem;
            margin-bottom: 0;
            flex-shrink: 0;
        }

        .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;
            }
        }
    
        #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);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .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;
            }
        }

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