*{
          margin:0;
          padding:0;
          box-sizing:border-box;
        }
        body{
          font-family:Inter,sans-serif;
          background: #0B0F14 url('Images/grid_3.png') center/cover no-repeat;
          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);
        }
        .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;
            }
        }

        /* Primary CTA - matches site standard */
        .saas-cta {
            height: 56px;
            padding: 0 34px;
            border: 1px solid rgba(0,229,255,0.45);
            border-radius: 18px;
            color: #000;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            background: linear-gradient(to right, #00E5FF, #4ade80);
            transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
            box-shadow: 0 0 20px rgba(0,229,255,0.25);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        .saas-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(0,229,255,0.35);
            border-color: rgba(0,229,255,0.7);
        }

        .saas-cta:active {
            transform: translateY(0);
            box-shadow: 0 0 32px rgba(0,229,255,0.5);
        }

        /* Secondary button - matches site standard */
        .faq-secondary-btn {
            height: 56px;
            padding: 0 34px;
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 18px;
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .faq-secondary-btn:hover {
            border-color: #00e5ff;
            color: #00e5ff;
            transform: translateY(-1px);
        }

        /* Training specific CTA hover */
        .training-cta {
            border: 1px solid #ffffff;
        }
        .training-cta:hover {
            border-color: #00e5ff !important;
            color: #00e5ff !important;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr 1fr;
                gap: 60px;
            }
        }

        .hero-title {
            font-size: clamp(24px, 4.5vw, 56px);
        }

        @media (max-width: 768px) {
            .hero-title {
                /* Slightly larger on small screens */
                font-size: clamp(34px, 7vw, 52px);
            }
        }

        /* Hero image hover effects */
        .hero-image-wrap {
            transition: transform 0.45s cubic-bezier(0.23,1,0.32,1), box-shadow 0.45s ease;
        }
        .hero-image {
            transition: transform 0.6s cubic-bezier(0.23,1,0.32,1), filter 0.45s ease;
            will-change: transform;
        }
        .hero-image-wrap:hover .hero-image {
            transform: translateY(-8px) scale(1.02);
            filter: saturate(1.06) contrast(1.03);
        }
        .hero-image-wrap:hover {
            transform: translateY(-6px);
            box-shadow: 0 30px 80px rgba(0,0,0,0.55), 0 0 40px rgba(0,229,255,0.06);
        }

        .akarize-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
        .akarize-text { padding: 12px 0; }
        .akarize-text h3:first-of-type { margin-top: 0; }

        /* Image container maintains exact 530:519 aspect ratio at all sizes */
        .akarize-image {
            display: flex;
            justify-content: center;
            width: 100%;
        }
        .akarize-img-wrapper {
            width: 100%;
            max-width: 530px;
            aspect-ratio: 530 / 519;
        }
        .akarize-img-wrapper img {
            width: 100%;
            height: 100%;
            display: block;
        }

        @media (max-width: 1024px) {
            .akarize-inner { gap: 28px; }
            .akarize-text h3:nth-of-type(2) { font-size: 24px; }
        }
        @media (max-width: 768px) {
            .akarize-inner { grid-template-columns: 1fr; }
            .akarize-text { padding: 0 12px; text-align: left; }
            .akarize-image { order: 2; display:flex; justify-content:center; }
            .akarize-text { order: 1; }
            .akarize-text h3:nth-of-type(2) { font-size: 20px; }
            .akarize-text p { font-size: 15px; }
        }
    
        #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;
}
